forked from asyncapi/studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into form-component
- Loading branch information
Showing
18 changed files
with
1,199 additions
and
27,764 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,11 +35,12 @@ jobs: | |
- name: Create Release Pull Request or Release | ||
uses: changesets/action@v1 | ||
with: | ||
publish: npm run publish | ||
publish: npm run publish-packages | ||
version: npm run version-packages | ||
commit: "version packages" | ||
title: "chore: version packages" | ||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
GIT_AUTHOR_NAME: asyncapi-bot | ||
GIT_AUTHOR_EMAIL: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# @asyncapi/studio | ||
|
||
## 0.20.0 | ||
|
||
### Minor Changes | ||
|
||
- 5129432: start publishing studio. | ||
|
||
## 0.19.1 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { create } from '@ebay/nice-modal-react'; | ||
import { NewFileModal } from './NewFileModal'; | ||
import { ConfirmModal } from './ConfirmModal'; | ||
import { show as showModal } from '@ebay/nice-modal-react'; | ||
|
||
export const ConfirmNewFileModal = create(() => { | ||
const onConfirm = () => { | ||
showModal(NewFileModal) | ||
}; | ||
|
||
return ( | ||
<ConfirmModal | ||
containerClassName="sm:max-w-6xl" | ||
title="Confirm New File" | ||
confirmText="Create New File" | ||
confirmDisabled={false} | ||
onSubmit={onConfirm} | ||
> | ||
<div className="flex content-center justify-center flex-col"> | ||
<div className="w-full overflow-auto"> | ||
<div> | ||
Would you like to create a new file? | ||
<p> | ||
<b className='text-pink-500'>All the existing changes will be lost and overwritten.</b> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</ConfirmModal> | ||
); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.