-
Notifications
You must be signed in to change notification settings - Fork 77
SB10 (ESM-only) #272
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
SB10 (ESM-only) #272
Changes from 11 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
460b5b5
feat(figma): migrate urls to use embed kit v2
roigiladi 31c18c2
feat(figma): change migrateEmbedURL to a cleaner createEmbedURL
roigiladi 77be2a4
Update packages/storybook-addon-designs/src/manager/components/Figma.tsx
roigiladi 83c4f65
Merge pull request #270 from roigiladi/feature/embed-kit-v2
ghengeveld 8e3c5b0
Update CHANGELOG.md [skip ci]
pocka fb34867
upgrade to sb10 (esm-only)
ndelangen e9d1d01
version ranges for sb10
ndelangen 9646218
switch to hoisted devDependencies, switch to vite
ndelangen 41b5726
Upgrade @auto-it/released and auto to version 11.3.0 in package.json …
ndelangen 1c6b59c
Add build step and check for git changes in release workflow
ndelangen 20142ee
Refactor release script in package.json to remove redundant test command
ndelangen 752a20c
Update packages/storybook-addon-designs/tsconfig.json
ndelangen d764f1f
Update package.json to modify exports for default and block modules
ndelangen 67522d1
Merge branch 'norbert/sb10' of github.com:storybookjs/addon-designs i…
ndelangen 1b99100
Merge branch 'next' into norbert/sb10
ndelangen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 +1 @@ | ||
| v18.19.0 | ||
| v22 |
This file contains hidden or 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,3 @@ | ||
| { | ||
| "typescript.tsdk": "node_modules/typescript/lib" | ||
| } |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,11 +1,17 @@ | ||
| import { fileURLToPath } from "node:url"; | ||
|
|
||
| export const managerEntries = ( | ||
| entries = [], | ||
| options: { renderTarget?: "tab" | "panel" } = {}, | ||
| ) => { | ||
| return [ | ||
| ...entries, | ||
| options.renderTarget === "tab" | ||
| ? require.resolve("./register-tab.mjs") | ||
| : require.resolve("./register-panel.mjs"), | ||
| ? fileURLToPath( | ||
| import.meta.resolve("@storybook/addon-designs/register-tab"), | ||
| ) | ||
| : fileURLToPath( | ||
| import.meta.resolve("@storybook/addon-designs/register-panel"), | ||
| ), | ||
| ]; | ||
| }; |
This file contains hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.