Merge remote-tracking branch 'origin/next' into 14579-undefined-inputs

This commit is contained in:
Tom Coleman 2021-05-14 15:21:08 +10:00
commit 1a2d67752d
107 changed files with 1403 additions and 1192 deletions

View File

@ -195,7 +195,7 @@ jobs:
command: yarn wait-on http://localhost:6000
- run:
name: Run E2E tests
command: yarn test:e2e-framework --clean --skip angular --skip vue3 --skip web_components_typescript --skip cra
command: yarn test:e2e-framework --clean --skip angular11 --skip angular --skip vue3 --skip web_components_typescript --skip cra
- store_artifacts:
path: /tmp/storybook/cypress
destination: cypress
@ -218,8 +218,8 @@ jobs:
command: yarn wait-on http://localhost:6000
- run:
name: Run E2E tests
# Do not test CRA nor Web Components here because it's done in PnP part
command: yarn test:e2e-framework vue3 angular
# Do not test CRA here because it's done in PnP part and add `angular` as soon as SB will support Angular 12
command: yarn test:e2e-framework vue3 angular11 web_components_typescript
- store_artifacts:
path: /tmp/storybook/cypress
destination: cypress
@ -266,7 +266,7 @@ jobs:
command: yarn wait-on http://localhost:6000
- run:
name: run e2e tests
command: yarn test:e2e-framework --pnp sfcVue cra web_components_typescript
command: yarn test:e2e-framework --pnp sfcVue cra
- store_artifacts:
path: /tmp/storybook/cypress
destination: cypress

View File

@ -8,7 +8,8 @@ labels: needs triage, bug
A clear and concise description of what the bug is.
**To Reproduce**
Link to a reproduction repo that demonstrates the bug, plus instructions on how to trigger it.
Please create a reproduction repo by running `npx sb@next repro` and following the instructions.
When you're done, please link the repo here. We prioritize issues with reproductions over those without.
**System**
Please paste the results of `npx sb@next info` here.

View File

@ -1,5 +1,11 @@
blank_issues_enabled: false
contact_links:
- name: Storybook Discord
- name: Documentation 📚
url: https://storbyook.js.org/docs/
about: Check out the official docs for answers to common questions
- name: Questions & discussions 🤔
url: https://github.com/storybookjs/storybook/discussions
about: Ask questions, request features & discuss RFCs
- name: Community Discord 💬
url: https://discord.gg/storybook
about: Community discussions, interactive support, contributor help

View File

@ -5,13 +5,13 @@ labels: needs triage, feature request
---
**Is your feature request related to a problem? Please describe**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
A clear and concise description of the problem. E.g. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
What would you like to see added to Storybook to solve problem?
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
Any alternative solutions or features you've considered.
**Are you able to assist to bring the feature to reality?**
no | yes, I can...

View File

@ -1,14 +0,0 @@
---
name: Questions 🤔
about: Documentation missing or you just need help? Let us know here.
labels: needs triage, question / support
---
**What's the problem?**
Clear and concise statement of what's troubling you.
**Is there documentation on this?**
If this is documented at https://storybook.js.org/docs/ but the documentation is incomplete or unclear, link to it here.
**Additional context**
Add any other context about the problem here.

View File

@ -1,3 +1,27 @@
## 6.3.0-alpha.26 (May 14, 2021)
### Bug Fixes
- Addon-controls: Fix duplicate color swatch id's in Color control ([#14925](https://github.com/storybookjs/storybook/pull/14925))
### Maintenance
- CLI: Add preamble instructions to `sb repro` ([#14924](https://github.com/storybookjs/storybook/pull/14924))
- Webpack5: Always set `resolve.fallback.crypto` to `false` ([#14914](https://github.com/storybookjs/storybook/pull/14914))
- Build: Add missing dependencies ([#14919](https://github.com/storybookjs/storybook/pull/14919))
- Build: Put E2E tests back on track ([#14917](https://github.com/storybookjs/storybook/pull/14917))
### Dependency Upgrades
- Addon-storyshots: Make @storybook/react dependency optional ([#14891](https://github.com/storybookjs/storybook/pull/14891))
## 6.3.0-alpha.25 (May 13, 2021)
### Maintenance
- Builder-Webpack5: Use native features instead of plugins ([#14281](https://github.com/storybookjs/storybook/pull/14281))
- CLI: Repro refinements per feedback ([#14888](https://github.com/storybookjs/storybook/pull/14888))
## 6.3.0-alpha.24 (May 11, 2021)
### Features

View File

@ -224,6 +224,9 @@ export const parameters = {
Please also file an issue if you need to opt out. We plan to remove the legacy renderer in 7.0.
#### Components Without Selectors
When the new Angular renderer is used, all Angular Story components must either have a selector, or be added to the `entryComponents` array of the story's `moduleMetadata`. If the component has any `Input`s or `Output`s to be controlled with `args`, a selector should be added.
### Packages now available as ESModules
Many Storybook packages are now available as ESModules in addition to CommonJS. If your jest tests stop working, this is likely why. One common culprit is doc blocks, which [is fixed in 6.3](#deprecated-scoped-blocks-imports). In 6.2, you can configure jest to transform the packages like so ([more info](https://jestjs.io/docs/configuration#transformignorepatterns-arraystring)):

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/addon-a11y",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Test component compliance with web accessibility standards",
"keywords": [
"a11y",
@ -45,14 +45,14 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.24",
"@storybook/channels": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/components": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/channels": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/client-logger": "6.3.0-alpha.26",
"@storybook/components": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/theming": "6.3.0-alpha.26",
"axe-core": "^4.2.0",
"core-js": "^3.8.2",
"global": "^4.4.0",
@ -81,7 +81,7 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4",
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733",
"storybook": {
"displayName": "Accessibility",
"icon": "https://user-images.githubusercontent.com/263385/101991665-47042f80-3c7c-11eb-8f00-64b5a18f498a.png",

View File

@ -1,4 +1,3 @@
/* eslint-disable no-param-reassign */
function managerEntries(entry = []) {
return [...entry, require.resolve('./dist/esm/register')];
}
@ -11,17 +10,4 @@ function config(entry = []) {
];
}
async function webpack(webpackConfig, options) {
const core = await options.presets.apply('core');
if ((core && core.builder) !== 'webpack5') {
return webpackConfig;
}
if (!webpackConfig.resolve.fallback) {
webpackConfig.resolve.fallback = {};
}
webpackConfig.resolve.fallback.crypto = false;
return webpackConfig;
}
module.exports = { managerEntries, config, webpack };
module.exports = { managerEntries, config };

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/addon-actions",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Get UI feedback when an action is performed on an interactive element",
"keywords": [
"storybook",
@ -41,12 +41,12 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/components": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/components": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/theming": "6.3.0-alpha.26",
"core-js": "^3.8.2",
"fast-deep-equal": "^3.1.3",
"global": "^4.4.0",
@ -78,7 +78,7 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4",
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733",
"storybook": {
"displayName": "Actions",
"unsupportedFrameworks": [

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/addon-backgrounds",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Switch backgrounds to view components in different settings",
"keywords": [
"addon",
@ -45,12 +45,12 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/components": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/client-logger": "6.3.0-alpha.26",
"@storybook/components": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/theming": "6.3.0-alpha.26",
"core-js": "^3.8.2",
"global": "^4.4.0",
"memoizerific": "^1.11.3",
@ -76,7 +76,7 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4",
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733",
"storybook": {
"displayName": "Backgrounds",
"icon": "https://user-images.githubusercontent.com/263385/101991667-479cc600-3c7c-11eb-96d3-410e936252e7.png",

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/addon-controls",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Interact with component inputs dynamically in the Storybook UI",
"keywords": [
"addon",
@ -45,12 +45,12 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/components": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/components": "6.3.0-alpha.26",
"@storybook/node-logger": "6.3.0-alpha.26",
"@storybook/theming": "6.3.0-alpha.26",
"core-js": "^3.8.2",
"ts-dedent": "^2.0.0"
},
@ -69,7 +69,7 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4",
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733",
"storybook": {
"displayName": "Controls",
"icon": "https://user-images.githubusercontent.com/263385/101991669-479cc600-3c7c-11eb-93d9-38b67e8371f2.png",

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/addon-docs",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Document component usage and properties in Markdown",
"keywords": [
"addon",
@ -63,19 +63,19 @@
"@mdx-js/loader": "^1.6.22",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.24",
"@storybook/builder-webpack4": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/components": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/builder-webpack4": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/client-logger": "6.3.0-alpha.26",
"@storybook/components": "6.3.0-alpha.26",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/csf": "0.0.1",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/postinstall": "6.3.0-alpha.24",
"@storybook/source-loader": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.26",
"@storybook/postinstall": "6.3.0-alpha.26",
"@storybook/source-loader": "6.3.0-alpha.26",
"@storybook/theming": "6.3.0-alpha.26",
"acorn": "^7.4.1",
"acorn-jsx": "^5.3.1",
"acorn-walk": "^7.2.0",
@ -102,11 +102,11 @@
"@babel/core": "^7.12.10",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"@storybook/angular": "6.3.0-alpha.24",
"@storybook/lit": "6.3.0-alpha.24",
"@storybook/react": "6.3.0-alpha.24",
"@storybook/vue": "6.3.0-alpha.24",
"@storybook/web-components": "6.3.0-alpha.24",
"@storybook/angular": "6.3.0-alpha.26",
"@storybook/lit": "6.3.0-alpha.26",
"@storybook/react": "6.3.0-alpha.26",
"@storybook/vue": "6.3.0-alpha.26",
"@storybook/web-components": "6.3.0-alpha.26",
"@types/cross-spawn": "^6.0.2",
"@types/doctrine": "^0.0.3",
"@types/enzyme": "^3.10.8",
@ -136,11 +136,11 @@
"zone.js": "^0.11.3"
},
"peerDependencies": {
"@storybook/angular": "6.3.0-alpha.24",
"@storybook/lit": "6.3.0-alpha.24",
"@storybook/vue": "6.3.0-alpha.24",
"@storybook/vue3": "6.3.0-alpha.24",
"@storybook/web-components": "6.3.0-alpha.24",
"@storybook/angular": "6.3.0-alpha.26",
"@storybook/lit": "6.3.0-alpha.26",
"@storybook/vue": "6.3.0-alpha.26",
"@storybook/vue3": "6.3.0-alpha.26",
"@storybook/web-components": "6.3.0-alpha.26",
"lit": "^2.0.0-rc.1",
"lit-html": "^1.0.0",
"react": "^16.8.0 || ^17.0.0",
@ -194,7 +194,7 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4",
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733",
"storybook": {
"displayName": "Docs",
"icon": "https://user-images.githubusercontent.com/263385/101991672-48355c80-3c7c-11eb-82d9-95fa12438f64.png",

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/addon-essentials",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Curated addons to bring out the best of Storybook",
"keywords": [
"addon",
@ -39,29 +39,29 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addon-actions": "6.3.0-alpha.24",
"@storybook/addon-backgrounds": "6.3.0-alpha.24",
"@storybook/addon-controls": "6.3.0-alpha.24",
"@storybook/addon-docs": "6.3.0-alpha.24",
"@storybook/addon-toolbars": "6.3.0-alpha.24",
"@storybook/addon-viewport": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/addon-actions": "6.3.0-alpha.26",
"@storybook/addon-backgrounds": "6.3.0-alpha.26",
"@storybook/addon-controls": "6.3.0-alpha.26",
"@storybook/addon-docs": "6.3.0-alpha.26",
"@storybook/addon-toolbars": "6.3.0-alpha.26",
"@storybook/addon-viewport": "6.3.0-alpha.26",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/node-logger": "6.3.0-alpha.26",
"core-js": "^3.8.2",
"regenerator-runtime": "^0.13.7",
"ts-dedent": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@storybook/vue": "6.3.0-alpha.24",
"@storybook/vue": "6.3.0-alpha.26",
"@types/jest": "^26.0.16",
"@types/webpack-env": "^1.16.0"
},
"peerDependencies": {
"@babel/core": "^7.9.6",
"@storybook/vue": "6.3.0-alpha.24",
"@storybook/web-components": "6.3.0-alpha.24",
"@storybook/vue": "6.3.0-alpha.26",
"@storybook/web-components": "6.3.0-alpha.26",
"babel-loader": "^8.0.0",
"lit-html": "^1.0.0",
"react": "^16.8.0 || ^17.0.0",
@ -91,5 +91,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/addon-jest",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "React storybook addon that show component jest report",
"keywords": [
"addon",
@ -47,11 +47,11 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.24",
"@storybook/components": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/components": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/theming": "6.3.0-alpha.26",
"core-js": "^3.8.2",
"global": "^4.4.0",
"react-sizeme": "^3.0.1",
@ -76,7 +76,7 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4",
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733",
"storybook": {
"displayName": "Jest",
"icon": "https://pbs.twimg.com/profile_images/821713465245102080/mMtKIMax_400x400.jpg",

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/addon-links",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Link stories together to build demos and prototypes with your UI components",
"keywords": [
"addon",
@ -41,11 +41,11 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/client-logger": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/csf": "0.0.1",
"@storybook/router": "6.3.0-alpha.24",
"@storybook/router": "6.3.0-alpha.26",
"@types/qs": "^6.9.5",
"core-js": "^3.8.2",
"global": "^4.4.0",
@ -72,7 +72,7 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4",
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733",
"storybook": {
"displayName": "Links",
"icon": "https://user-images.githubusercontent.com/263385/101991673-48355c80-3c7c-11eb-9b6e-b627c96a75f6.png",

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/addon-storyshots",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Take a code snapshot of every story automatically with Jest",
"keywords": [
"addon",
@ -45,10 +45,10 @@
},
"dependencies": {
"@jest/transform": "^26.6.2",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.16",
"@types/jest-specific-snapshot": "^0.5.3",
@ -67,11 +67,11 @@
"devDependencies": {
"@angular/core": "^11.2.0",
"@angular/platform-browser-dynamic": "^11.2.0",
"@storybook/addon-docs": "6.3.0-alpha.24",
"@storybook/angular": "6.3.0-alpha.24",
"@storybook/react": "6.3.0-alpha.24",
"@storybook/vue": "6.3.0-alpha.24",
"@storybook/vue3": "6.3.0-alpha.24",
"@storybook/addon-docs": "6.3.0-alpha.26",
"@storybook/angular": "6.3.0-alpha.26",
"@storybook/react": "6.3.0-alpha.26",
"@storybook/vue": "6.3.0-alpha.26",
"@storybook/vue3": "6.3.0-alpha.26",
"babel-loader": "^8.2.2",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.1",
@ -108,6 +108,9 @@
"@storybook/angular": {
"optional": true
},
"@storybook/react": {
"optional": true
},
"@storybook/vue": {
"optional": true
},
@ -145,7 +148,7 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4",
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733",
"storybook": {
"displayName": "Storyshots",
"icon": "https://user-images.githubusercontent.com/263385/101991676-48cdf300-3c7c-11eb-8aa1-944dab6ab29b.png",

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/addon-storyshots-puppeteer",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Image snapshots addition to StoryShots based on puppeteer",
"keywords": [
"addon",
@ -41,7 +41,7 @@
},
"dependencies": {
"@storybook/csf": "0.0.1",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.26",
"@types/jest-image-snapshot": "^4.1.3",
"@wordpress/jest-puppeteer-axe": "^3.0.3",
"core-js": "^3.8.2",
@ -53,7 +53,7 @@
"@types/puppeteer": "^5.4.0"
},
"peerDependencies": {
"@storybook/addon-storyshots": "6.3.0-alpha.24",
"@storybook/addon-storyshots": "6.3.0-alpha.26",
"puppeteer": "^2.0.0 || ^3.0.0"
},
"peerDependenciesMeta": {
@ -64,5 +64,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/addon-storysource",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "View a storys source code to see how it works and paste into your app",
"keywords": [
"addon",
@ -41,13 +41,13 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/components": "6.3.0-alpha.24",
"@storybook/router": "6.3.0-alpha.24",
"@storybook/source-loader": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/client-logger": "6.3.0-alpha.26",
"@storybook/components": "6.3.0-alpha.26",
"@storybook/router": "6.3.0-alpha.26",
"@storybook/source-loader": "6.3.0-alpha.26",
"@storybook/theming": "6.3.0-alpha.26",
"core-js": "^3.8.2",
"estraverse": "^5.2.0",
"loader-utils": "^2.0.0",
@ -75,7 +75,7 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4",
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733",
"storybook": {
"displayName": "Storysource",
"icon": "https://user-images.githubusercontent.com/263385/101991675-48cdf300-3c7c-11eb-9400-58de5ac6daa7.png",

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/addon-toolbars",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Create your own toolbar items that control story rendering",
"keywords": [
"addon",
@ -45,10 +45,10 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/components": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/components": "6.3.0-alpha.26",
"core-js": "^3.8.2"
},
"peerDependencies": {
@ -66,7 +66,7 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4",
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733",
"storybook": {
"displayName": "Toolbars",
"icon": "https://user-images.githubusercontent.com/263385/101991677-48cdf300-3c7c-11eb-93b4-19b0e3366959.png",

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/addon-viewport",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Build responsive components by adjusting Storybooks viewport size and orientation",
"keywords": [
"addon",
@ -42,12 +42,12 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/components": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/client-logger": "6.3.0-alpha.26",
"@storybook/components": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/theming": "6.3.0-alpha.26",
"core-js": "^3.8.2",
"global": "^4.4.0",
"memoizerific": "^1.11.3",
@ -69,7 +69,7 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4",
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733",
"storybook": {
"displayName": "Viewport",
"icon": "https://user-images.githubusercontent.com/263385/101991678-48cdf300-3c7c-11eb-9764-f8af293c1b28.png",

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/angular",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook for Angular: Develop Angular Components in isolation with Hot Reloading.",
"keywords": [
"storybook"
@ -45,11 +45,11 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"@storybook/node-logger": "6.3.0-alpha.26",
"@types/webpack-env": "^1.16.0",
"autoprefixer": "^9.8.6",
"core-js": "^3.8.2",
@ -124,5 +124,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/ember",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook for Ember: Develop Ember Component in isolation with Hot Reloading.",
"homepage": "https://github.com/storybookjs/storybook/tree/master/app/ember",
"bugs": {
@ -43,8 +43,8 @@
},
"dependencies": {
"@ember/test-helpers": "^2.1.4",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"core-js": "^3.8.2",
"global": "^4.4.0",
"react": "16.14.0",
@ -65,5 +65,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/html",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook for HTML: View HTML snippets in isolation with Hot Reloading.",
"keywords": [
"storybook"
@ -45,10 +45,10 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"@types/webpack-env": "^1.16.0",
"core-js": "^3.8.2",
"global": "^4.4.0",
@ -68,5 +68,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/lit",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook for lit: View web components snippets in isolation with Hot Reloading.",
"keywords": [
"lit",
@ -45,10 +45,10 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"@types/webpack-env": "^1.16.0",
"core-js": "^3.8.2",
"global": "^4.4.0",
@ -70,5 +70,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/preact",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook for Preact: Develop Preact Component in isolation.",
"keywords": [
"storybook"
@ -46,9 +46,9 @@
},
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"@types/webpack-env": "^1.16.0",
"core-js": "^3.8.2",
"global": "^4.4.0",
@ -72,5 +72,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/react",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook for React: Develop React Component in isolation with Hot Reloading.",
"keywords": [
"storybook"
@ -49,10 +49,10 @@
"@babel/preset-flow": "^7.12.1",
"@babel/preset-react": "^7.12.10",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"@storybook/node-logger": "6.3.0-alpha.26",
"@storybook/semver": "^7.3.2",
"@types/webpack-env": "^1.16.0",
"babel-plugin-add-react-displayname": "^0.0.5",
@ -71,7 +71,7 @@
"webpack": "4"
},
"devDependencies": {
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.26",
"@types/node": "^14.14.20",
"@types/prompts": "^2.0.9"
},
@ -94,5 +94,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/server",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook for Server: View HTML snippets from a server in isolation with Hot Reloading.",
"keywords": [
"storybook"
@ -45,12 +45,12 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"@storybook/node-logger": "6.3.0-alpha.26",
"@types/webpack-env": "^1.16.0",
"core-js": "^3.8.2",
"global": "^4.4.0",
@ -70,5 +70,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/svelte",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook for Svelte: Develop Svelte Component in isolation with Hot Reloading.",
"keywords": [
"storybook"
@ -45,9 +45,9 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"core-js": "^3.8.2",
"global": "^4.4.0",
"react": "16.14.0",
@ -73,5 +73,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/vue",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook for Vue: Develop Vue Component in isolation with Hot Reloading.",
"keywords": [
"storybook"
@ -45,9 +45,9 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"@types/webpack-env": "^1.16.0",
"core-js": "^3.8.2",
"global": "^4.4.0",
@ -81,5 +81,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/vue3",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook for Vue 3: Develop Vue 3 Components in isolation with Hot Reloading.",
"keywords": [
"storybook"
@ -45,9 +45,9 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"@types/webpack-env": "^1.16.0",
"core-js": "^3.8.2",
"global": "^4.4.0",
@ -80,5 +80,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/web-components",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook for web-components: View web components snippets in isolation with Hot Reloading.",
"keywords": [
"lit-html",
@ -50,10 +50,10 @@
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.12.11",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"@types/webpack-env": "^1.16.0",
"babel-plugin-bundled-import-meta": "^0.3.1",
"core-js": "^3.8.2",
@ -78,5 +78,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -13,7 +13,7 @@ The actions addon is used to display data received by event handler (callback) a
## Action args
Actions works via supplying special Storybook-generated “action” arguments (referred to as "args" for short) to your stories. There are two ways to get an action arg:
Actions work via supplying special Storybook-generated “action” arguments (referred to as "args" for short) to your stories. There are two ways to get an action arg:
### Action argType annotation

View File

@ -86,6 +86,6 @@ Stories are also useful for checking that UI continues to look correct as you ma
/>
</video>
Checking a components stories as you develop helps prevent accidental regressions. Tools that integrate with Storybook can also [automate](../workflows/testing-with-storybook.md) this for you.
Checking components stories as you develop helps prevent accidental regressions. Tools that integrate with Storybook can also [automate](../workflows/testing-with-storybook.md) this for you.
Now weve seen the basic anatomy of a story, lets see how we use Storybooks UI to develop stories.

View File

@ -1,5 +1,5 @@
```js
// Button.stories.js
// Button.stories.js | Button.stories.jsx
import React from 'react';

View File

@ -0,0 +1,19 @@
```js
// Button.stories.js | Button.stories.jsx
import React from 'react';
import Button from './Button';
export default {
title: 'Button',
component: Button,
decorators: [
(Story) => (
<div style={{ margin: '3em' }}>
{Story()}
</div>
),
],
};
```

View File

@ -0,0 +1,21 @@
```ts
// Button.stories.ts | Button.stories.tsx
import React from 'react';
import { Story, Meta } from '@storybook/react';
import { Button, ButtonProps } from './Button';
export default {
title: 'Example/Button',
component: Button,
decorators: [
(Story) => (
<div style={{ margin: '3em' }}>
{Story()}
</div>
),
],
} as Meta;
```

View File

@ -1,5 +1,5 @@
```ts
// Button.stories.tsx
// Button.stories.ts | Button.stories.tsx
import React from 'react';

View File

@ -1,6 +1,6 @@
```js
// Button.stories.js
// Button.stories.js | Button.stories.jsx | Button.stories.ts | Button.stories.tsx
export const Primary = …
Primary.decorators = [(Story) => <div style={{ margin: '3em' }}><Story/></div>]
Primary.decorators = [(Story) => <div style={{ margin: '3em' }}><Story/></div>];
```

View File

@ -0,0 +1,6 @@
```js
// Button.stories.js | Button.stories.jsx | Button.stories.ts | Button.stories.tsx
export const Primary = …
Primary.decorators = [(Story) => <div style={{ margin: '3em' }}>{Story()}</div>];
```

View File

@ -1,6 +0,0 @@
```ts
// Button.stories.tsx
export const Primary = …
Primary.decorators = [(Story) => <div style={{ margin: '3em' }}><Story/></div>]
```

View File

@ -11,7 +11,7 @@ export default {
const Template = (args, { argTypes }) => (
<Page {...args}>
<footer>{args.footer}</footer
<footer>{args.footer}</footer>
</Page>
);
@ -19,4 +19,4 @@ export const CustomFooter = Template.bind({});
CustomFooter.args = {
footer: 'Built with Storybook',
};
```
```

View File

@ -0,0 +1,13 @@
```js
// .storybook/preview.js
import React from "react";
export const decorators = [
(Story) => (
<div style={{ margin: '3em' }}>
{Story()}
</div>
),
];
```

View File

@ -0,0 +1,15 @@
```js
// .storybook/preview.js
import React from "react";
import { ThemeProvider } from "styled-components";
export const decorators = [
(Story) => (
<ThemeProvider theme="default">
{Story()}
</ThemeProvider>
),
];
```

View File

@ -1,8 +1,14 @@
```js
// YourComponent.stories.js
// YourComponent.stories.js | YourComponent.stories.jsx
export default {
component: YourComponent,
decorators: [(Story) => <div style={{ margin: '3em' }}><Story/></div>]
decorators: [
(Story) => (
<div style={{ margin: '3em' }}>
<Story/>
</div>
),
],
}
```

View File

@ -0,0 +1,16 @@
```js
// YourComponent.stories.js | YourComponent.stories.jsx
// Replacing the <Story/> element with a Story function is also a good way of writing decorators.
// Useful to prevent the full remount of the component's story.
export default {
component: YourComponent,
decorators: [
(Story) => (
<div style={{ margin: '3em' }}>
{Story()}
</div>
),
],
}
```

View File

@ -0,0 +1,18 @@
```ts
// YourComponent.stories.ts | YourComponent.stories.tsx
import { Meta } from '@storybook/react';
// Replacing the <Story/> element with a Story function is also a good way of writing decorators.
// Useful to prevent the full remount of the component's story.
export default {
component: YourComponent,
decorators: [
(Story) => (
<div style={{ margin: '3em' }}>
{Story()}
</div>
),
],
} as Meta;
```

View File

@ -1,8 +1,16 @@
```ts
// YourComponent.stories.tsx
// YourComponent.stories.ts | YourComponent.stories.tsx
import { Meta } from '@storybook/react';
export default {
component: YourComponent,
decorators: [(Story) => <div style={{ margin: '3em' }}><Story/></div>]
}
decorators: [
(Story) => (
<div style={{ margin: '3em' }}>
<Story/>
</div>
),
],
} as Meta;
```

View File

@ -1 +1 @@
{"version":"6.3.0-alpha.24","info":{"plain":"### Features\n\n- CLI: Add repro/link commands for creating/running reproductions ([#14594](https://github.com/storybookjs/storybook/pull/14594))\n\n### Bug Fixes\n\n- UI: Only show addons in mobile if docsOnly is false ([#14810](https://github.com/storybookjs/storybook/pull/14810))"}}
{"version":"6.3.0-alpha.26","info":{"plain":"### Bug Fixes\n\n- Addon-controls: Fix duplicate color swatch id's in Color control ([#14925](https://github.com/storybookjs/storybook/pull/14925))\n\n### Maintenance\n\n- CLI: Add preamble instructions to `sb repro` ([#14924](https://github.com/storybookjs/storybook/pull/14924))\n- Webpack5: Always set `resolve.fallback.crypto` to `false` ([#14914](https://github.com/storybookjs/storybook/pull/14914))\n- Build: Add missing dependencies ([#14919](https://github.com/storybookjs/storybook/pull/14919))\n- Build: Put E2E tests back on track ([#14917](https://github.com/storybookjs/storybook/pull/14917))\n\n### Dependency Upgrades\n\n- Addon-storyshots: Make @storybook/react dependency optional ([#14891](https://github.com/storybookjs/storybook/pull/14891))"}}

View File

@ -2,13 +2,13 @@
title: 'Decorators'
---
A decorator is a way to wrap a story in extra “rendering” functionality. Many addons define decorators in order to augment your stories with extra rendering or gather details about how your story is rendered.
A decorator is a way to wrap a story in extra “rendering” functionality. Many addons define decorators to augment your stories with extra rendering or gather details about how your story is rendered.
When writing stories, decorators are typically used to wrap stories with extra markup or context mocking.
## Wrap stories with extra markup
Some components require a “harness” to render in a useful way. For instance if a component runs right up to its edges, you might want to space it inside Storybook. Use a decorator to add spacing for all stories of the component.
Some components require a “harness” to render in a useful way. For instance, if a component runs right up to its edges, you might want to space it inside Storybook. Use a decorator to add spacing for all stories of the component.
![Story without padding](./decorators-no-padding.png)
@ -17,7 +17,9 @@ Some components require a “harness” to render in a useful way. For instance
<CodeSnippets
paths={[
'react/your-component-with-decorator.js.mdx',
'react/your-component-with-decorator.story-function-js.js.mdx',
'react/your-component-with-decorator.ts.mdx',
'react/your-component-with-decorator.story-function-ts.ts.mdx',
'vue/your-component-with-decorator.js.mdx',
'angular/your-component-with-decorator.ts.mdx',
'svelte/your-component-with-decorator.js.mdx',
@ -32,29 +34,37 @@ Some components require a “harness” to render in a useful way. For instance
## “Context” for mocking
Some libraries require components higher up in the component hierarchy to render properly. For example in Styled Components, a `ThemeProvider` is required if your components make use of themes. Add a single global decorator that adds this context to all stories in [`.storybook/preview.js`](../configure/overview.md#configure-story-rendering):
Some libraries require components higher up in the component hierarchy to render correctly. For example, in Styled Components, a `ThemeProvider` is necessary if your components use themes. Add a single global decorator that adds this context to all stories in [`.storybook/preview.js`](../configure/overview.md#configure-story-rendering):
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'react/storybook-preview-with-styled-components-decorator.js.mdx',
'react/storybook-preview-with-styled-components-decorator.story-function.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
In the example above, the theme is hardcoded to a mock value of `default` but you may want to vary that value, either on a per-story basis (if it is data you are mocking that is relevant to the other args of the story) or in a user controlled way (for instance to provide a theme switcher).
In the example above, the theme is hardcoded to a mock value of `default`. Still, you may want to vary that value, either on a per-story basis (if it is data you are mocking that is relevant to the other args of the story) or in a user-controlled way (for instance, to provide a theme switcher).
The second argument to a decorator function is the **story context** which in particular contains the keys:
- `args` - the story arguments. You can use some args in your decorators and drop them in the story implementation itself.
- `args` - the story arguments. You can use some [`args`](./args.md) in your decorators and drop them in the story implementation itself.
- `argTypes`- Storybook's [argTypes](../api/argtypes.md) allow you to customize and fine-tune your stories [`args`](./args.md).
- `globals` - Storybook-wide [globals](../essentials/toolbars-and-globals.md#globals). In particular you can use the [toolbars feature](../essentials/toolbars-and-globals.md#global-types-toolbar-annotations) to allow you to change these values using Storybooks UI.
- `hooks` - Storybook's API hooks (e.g., useArgs).
- `parameters`- the story's static metadata, most commonly used to control Storybook's behavior of features and addons.
- `viewMode`- Storybook's current active window (e.g., canvas, docs).
- `globals` - the Storybook-wide [globals](../essentials/toolbars-and-globals.md#globals). In particular you can use the [toolbars feature](../essentials/toolbars-and-globals.md#global-types-toolbar-annotations) to allow you to change these values using Storybooks UI.
<div class="aside">
💡 <strong>Note:</strong> This pattern can also be applied to your own stories. Some of Storybook's supported frameworks already use it (e.g., vue 2).
</div>
### Using decorators to provide data
If your components are “connected” and require side-loaded data to render, you can use decorators to provide that data in a mocked way, without having to refactor your components to take that data as an arg. There are several techniques to achieve this, depending on exactly how you are loading that data -- read more in the [building pages in Storybook](../workflows/build-pages-with-storybook.md) section.
If your components are “connected” and require side-loaded data to render, you can use decorators to provide that data in a mocked way without having to refactor your components to take that data as an arg. There are several techniques to achieve this. Depending on exactly how you are loading that data -- read more in the [building pages in Storybook](../workflows/build-pages-with-storybook.md) section.
## Story decorators
@ -65,7 +75,7 @@ To define a decorator for a single story, use the `decorators` key on a named ex
<CodeSnippets
paths={[
'react/button-story-decorator.js.mdx',
'react/button-story-decorator.ts.mdx',
'react/button-story-decorator.story-function.js.mdx',
'vue/button-story-decorator.js.mdx',
'angular/button-story-decorator.ts.mdx',
'svelte/button-story-decorator.js.mdx',
@ -75,7 +85,7 @@ To define a decorator for a single story, use the `decorators` key on a named ex
<!-- prettier-ignore-end -->
This is useful to ensure that the story remains a “pure” rendering of the component under test and any extra HTML or components you need to add dont pollute that. In particular the [Source](../writing-docs/doc-blocks.md#source) docblock works best when you do this.
It is useful to ensure that the story remains a “pure” rendering of the component under test, and any extra HTML or components you need to add dont pollute that. In particular the [Source](../writing-docs/doc-blocks.md#source) docblock works best when you do this.
## Component decorators
@ -86,7 +96,9 @@ To define a decorator for all stories of a component, use the `decorators` key o
<CodeSnippets
paths={[
'react/button-story-component-decorator.js.mdx',
'react/button-story-component-decorator.story-function-js.js.mdx',
'react/button-story-component-decorator.ts.mdx',
'react/button-story-component-decorator.story-function-ts.ts.mdx',
'vue/button-story-component-decorator.js.mdx',
'angular/button-story-component-decorator.ts.mdx',
'svelte/button-story-component-decorator.js.mdx',
@ -106,6 +118,7 @@ We can also set a decorator for **all stories** via the `decorators` export of y
<CodeSnippets
paths={[
'react/storybook-preview-global-decorator.js.mdx',
'react/storybook-preview-global-decorator.story-function.js.mdx',
'vue/storybook-preview-global-decorator.js.mdx',
'angular/storybook-preview-global-decorator.ts.mdx',
'svelte/storybook-preview-global-decorator.js.mdx',
@ -117,10 +130,10 @@ We can also set a decorator for **all stories** via the `decorators` export of y
## Decorator inheritance
Like parameters, decorators can be defined globally, at the component level and for a single story (as weve seen).
Like parameters, decorators can be defined globally, at the component level, and for a single story (as weve seen).
All decorators, defined at all levels that apply to a story will run whenever that story is rendered, in the order:
All decorators, defined at all levels that apply to a story, will run whenever that story is rendered, in the order:
- Global decorators, in the order they are defined
- Component decorators, in the order they are defined
- Story decorators, in the order they are defined.
- Story decorators, in the order they are defined.

View File

@ -1,6 +1,6 @@
{
"name": "angular-cli",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"license": "MIT",
"scripts": {
@ -37,18 +37,18 @@
"@angular/compiler-cli": "^11.2.0",
"@angular/elements": "^11.2.0",
"@compodoc/compodoc": "^1.1.11",
"@storybook/addon-a11y": "6.3.0-alpha.24",
"@storybook/addon-actions": "6.3.0-alpha.24",
"@storybook/addon-backgrounds": "6.3.0-alpha.24",
"@storybook/addon-controls": "6.3.0-alpha.24",
"@storybook/addon-docs": "6.3.0-alpha.24",
"@storybook/addon-jest": "6.3.0-alpha.24",
"@storybook/addon-links": "6.3.0-alpha.24",
"@storybook/addon-storyshots": "6.3.0-alpha.24",
"@storybook/addon-storysource": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/angular": "6.3.0-alpha.24",
"@storybook/source-loader": "6.3.0-alpha.24",
"@storybook/addon-a11y": "6.3.0-alpha.26",
"@storybook/addon-actions": "6.3.0-alpha.26",
"@storybook/addon-backgrounds": "6.3.0-alpha.26",
"@storybook/addon-controls": "6.3.0-alpha.26",
"@storybook/addon-docs": "6.3.0-alpha.26",
"@storybook/addon-jest": "6.3.0-alpha.26",
"@storybook/addon-links": "6.3.0-alpha.26",
"@storybook/addon-storyshots": "6.3.0-alpha.26",
"@storybook/addon-storysource": "6.3.0-alpha.26",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/angular": "6.3.0-alpha.26",
"@storybook/source-loader": "6.3.0-alpha.26",
"@types/core-js": "^2.5.4",
"@types/jest": "^26.0.16",
"@types/node": "^14.14.20",

View File

@ -1,6 +1,6 @@
{
"name": "cra-kitchen-sink",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"scripts": {
"build": "react-scripts build",
@ -11,7 +11,7 @@
"test": "react-scripts test --env=jsdom"
},
"dependencies": {
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.26",
"global": "^4.4.0",
"prop-types": "^15.7.2",
"react": "16.14.0",
@ -21,18 +21,18 @@
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@storybook/addon-a11y": "6.3.0-alpha.24",
"@storybook/addon-actions": "6.3.0-alpha.24",
"@storybook/addon-backgrounds": "6.3.0-alpha.24",
"@storybook/addon-docs": "6.3.0-alpha.24",
"@storybook/addon-jest": "6.3.0-alpha.24",
"@storybook/addon-links": "6.3.0-alpha.24",
"@storybook/addon-storyshots": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/builder-webpack4": "6.3.0-alpha.24",
"@storybook/addon-a11y": "6.3.0-alpha.26",
"@storybook/addon-actions": "6.3.0-alpha.26",
"@storybook/addon-backgrounds": "6.3.0-alpha.26",
"@storybook/addon-docs": "6.3.0-alpha.26",
"@storybook/addon-jest": "6.3.0-alpha.26",
"@storybook/addon-links": "6.3.0-alpha.26",
"@storybook/addon-storyshots": "6.3.0-alpha.26",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/builder-webpack4": "6.3.0-alpha.26",
"@storybook/preset-create-react-app": "^3.1.6",
"@storybook/react": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/react": "6.3.0-alpha.26",
"@storybook/theming": "6.3.0-alpha.26",
"webpack": "4"
},
"storybook": {

View File

@ -1,6 +1,6 @@
{
"name": "cra-react15",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"scripts": {
"build": "react-scripts build",
@ -18,13 +18,13 @@
"react-scripts": "3.4.4"
},
"devDependencies": {
"@storybook/addon-actions": "6.3.0-alpha.24",
"@storybook/addon-links": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/builder-webpack4": "6.3.0-alpha.24",
"@storybook/addon-actions": "6.3.0-alpha.26",
"@storybook/addon-links": "6.3.0-alpha.26",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/builder-webpack4": "6.3.0-alpha.26",
"@storybook/preset-create-react-app": "^3.1.6",
"@storybook/react": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/react": "6.3.0-alpha.26",
"@storybook/theming": "6.3.0-alpha.26",
"babel-core": "6",
"babel-runtime": "6",
"webpack": "4"

View File

@ -1,6 +1,6 @@
{
"name": "cra-ts-essentials",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"scripts": {
"build": "react-scripts build",
@ -34,11 +34,11 @@
"typescript": "^3.9.7"
},
"devDependencies": {
"@storybook/addon-essentials": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/builder-webpack4": "6.3.0-alpha.24",
"@storybook/addon-essentials": "6.3.0-alpha.26",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/builder-webpack4": "6.3.0-alpha.26",
"@storybook/preset-create-react-app": "^3.1.6",
"@storybook/react": "6.3.0-alpha.24",
"@storybook/react": "6.3.0-alpha.26",
"webpack": "4"
},
"storybook": {

View File

@ -1,6 +1,6 @@
{
"name": "cra-ts-kitchen-sink",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"scripts": {
"build": "react-scripts build",
@ -34,14 +34,14 @@
"typescript": "^3.9.7"
},
"devDependencies": {
"@storybook/addon-a11y": "6.3.0-alpha.24",
"@storybook/addon-actions": "6.3.0-alpha.24",
"@storybook/addon-docs": "6.3.0-alpha.24",
"@storybook/addon-links": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/builder-webpack4": "6.3.0-alpha.24",
"@storybook/addon-a11y": "6.3.0-alpha.26",
"@storybook/addon-actions": "6.3.0-alpha.26",
"@storybook/addon-docs": "6.3.0-alpha.26",
"@storybook/addon-links": "6.3.0-alpha.26",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/builder-webpack4": "6.3.0-alpha.26",
"@storybook/preset-create-react-app": "^3.1.6",
"@storybook/react": "6.3.0-alpha.24",
"@storybook/react": "6.3.0-alpha.26",
"@types/enzyme": "^3.10.8",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.9.1",

View File

@ -1,6 +1,6 @@
{
"name": "ember-example",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"scripts": {
"build": "ember build --output-path ember-output",
@ -17,18 +17,18 @@
"devDependencies": {
"@babel/core": "^7.12.10",
"@ember/optional-features": "^2.0.0",
"@storybook/addon-a11y": "6.3.0-alpha.24",
"@storybook/addon-actions": "6.3.0-alpha.24",
"@storybook/addon-backgrounds": "6.3.0-alpha.24",
"@storybook/addon-controls": "6.3.0-alpha.24",
"@storybook/addon-docs": "6.3.0-alpha.24",
"@storybook/addon-links": "6.3.0-alpha.24",
"@storybook/addon-storysource": "6.3.0-alpha.24",
"@storybook/addon-viewport": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/ember": "6.3.0-alpha.24",
"@storybook/addon-a11y": "6.3.0-alpha.26",
"@storybook/addon-actions": "6.3.0-alpha.26",
"@storybook/addon-backgrounds": "6.3.0-alpha.26",
"@storybook/addon-controls": "6.3.0-alpha.26",
"@storybook/addon-docs": "6.3.0-alpha.26",
"@storybook/addon-links": "6.3.0-alpha.26",
"@storybook/addon-storysource": "6.3.0-alpha.26",
"@storybook/addon-viewport": "6.3.0-alpha.26",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/ember": "6.3.0-alpha.26",
"@storybook/ember-cli-storybook": "^0.2.1",
"@storybook/source-loader": "6.3.0-alpha.24",
"@storybook/source-loader": "6.3.0-alpha.26",
"babel-loader": "^8",
"broccoli-asset-rev": "^3.0.0",
"cross-env": "^7.0.3",

View File

@ -1,6 +1,6 @@
{
"name": "html-kitchen-sink",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"description": "",
"keywords": [],
@ -13,23 +13,23 @@
"storybook": "start-storybook -p 9006"
},
"devDependencies": {
"@storybook/addon-a11y": "6.3.0-alpha.24",
"@storybook/addon-actions": "6.3.0-alpha.24",
"@storybook/addon-backgrounds": "6.3.0-alpha.24",
"@storybook/addon-controls": "6.3.0-alpha.24",
"@storybook/addon-docs": "6.3.0-alpha.24",
"@storybook/addon-jest": "6.3.0-alpha.24",
"@storybook/addon-links": "6.3.0-alpha.24",
"@storybook/addon-a11y": "6.3.0-alpha.26",
"@storybook/addon-actions": "6.3.0-alpha.26",
"@storybook/addon-backgrounds": "6.3.0-alpha.26",
"@storybook/addon-controls": "6.3.0-alpha.26",
"@storybook/addon-docs": "6.3.0-alpha.26",
"@storybook/addon-jest": "6.3.0-alpha.26",
"@storybook/addon-links": "6.3.0-alpha.26",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-storyshots": "6.3.0-alpha.24",
"@storybook/addon-storysource": "6.3.0-alpha.24",
"@storybook/addon-viewport": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/html": "6.3.0-alpha.24",
"@storybook/source-loader": "6.3.0-alpha.24",
"@storybook/addon-storyshots": "6.3.0-alpha.26",
"@storybook/addon-storysource": "6.3.0-alpha.26",
"@storybook/addon-viewport": "6.3.0-alpha.26",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/html": "6.3.0-alpha.26",
"@storybook/source-loader": "6.3.0-alpha.26",
"autoprefixer": "^10.0.1",
"eventemitter3": "^4.0.7",
"format-json": "^1.0.3",

View File

@ -1,6 +1,6 @@
{
"name": "lit-kitchen-sink",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"description": "",
"keywords": [],

View File

@ -1,6 +1,6 @@
{
"name": "official-storybook",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"scripts": {
"build-storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true build-storybook -c ./",
@ -14,27 +14,27 @@
"devDependencies": {
"@packtracker/webpack-plugin": "^2.3.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@storybook/addon-a11y": "6.3.0-alpha.24",
"@storybook/addon-actions": "6.3.0-alpha.24",
"@storybook/addon-backgrounds": "6.3.0-alpha.24",
"@storybook/addon-controls": "6.3.0-alpha.24",
"@storybook/addon-docs": "6.3.0-alpha.24",
"@storybook/addon-jest": "6.3.0-alpha.24",
"@storybook/addon-links": "6.3.0-alpha.24",
"@storybook/addon-storyshots": "6.3.0-alpha.24",
"@storybook/addon-storyshots-puppeteer": "6.3.0-alpha.24",
"@storybook/addon-storysource": "6.3.0-alpha.24",
"@storybook/addon-toolbars": "6.3.0-alpha.24",
"@storybook/addon-viewport": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/cli": "6.3.0-alpha.24",
"@storybook/components": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/addon-a11y": "6.3.0-alpha.26",
"@storybook/addon-actions": "6.3.0-alpha.26",
"@storybook/addon-backgrounds": "6.3.0-alpha.26",
"@storybook/addon-controls": "6.3.0-alpha.26",
"@storybook/addon-docs": "6.3.0-alpha.26",
"@storybook/addon-jest": "6.3.0-alpha.26",
"@storybook/addon-links": "6.3.0-alpha.26",
"@storybook/addon-storyshots": "6.3.0-alpha.26",
"@storybook/addon-storyshots-puppeteer": "6.3.0-alpha.26",
"@storybook/addon-storysource": "6.3.0-alpha.26",
"@storybook/addon-toolbars": "6.3.0-alpha.26",
"@storybook/addon-viewport": "6.3.0-alpha.26",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/cli": "6.3.0-alpha.26",
"@storybook/components": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/design-system": "^5.4.7",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/react": "6.3.0-alpha.24",
"@storybook/source-loader": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.26",
"@storybook/react": "6.3.0-alpha.26",
"@storybook/source-loader": "6.3.0-alpha.26",
"@storybook/theming": "6.3.0-alpha.26",
"chromatic": "^5.6.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",

View File

@ -1,6 +1,6 @@
{
"name": "preact-example",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
@ -15,16 +15,16 @@
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@storybook/addon-a11y": "6.3.0-alpha.24",
"@storybook/addon-actions": "6.3.0-alpha.24",
"@storybook/addon-backgrounds": "6.3.0-alpha.24",
"@storybook/addon-links": "6.3.0-alpha.24",
"@storybook/addon-storyshots": "6.3.0-alpha.24",
"@storybook/addon-storysource": "6.3.0-alpha.24",
"@storybook/addon-viewport": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/preact": "6.3.0-alpha.24",
"@storybook/source-loader": "6.3.0-alpha.24",
"@storybook/addon-a11y": "6.3.0-alpha.26",
"@storybook/addon-actions": "6.3.0-alpha.26",
"@storybook/addon-backgrounds": "6.3.0-alpha.26",
"@storybook/addon-links": "6.3.0-alpha.26",
"@storybook/addon-storyshots": "6.3.0-alpha.26",
"@storybook/addon-storysource": "6.3.0-alpha.26",
"@storybook/addon-viewport": "6.3.0-alpha.26",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/preact": "6.3.0-alpha.26",
"@storybook/source-loader": "6.3.0-alpha.26",
"@types/prop-types": "^15.7.3",
"@types/react": "^17",
"@types/react-dom": "^17",

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/example-react-ts-webpack4",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"scripts": {
"build-storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true build-storybook -c ./",
@ -8,10 +8,10 @@
"storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true start-storybook -p 9011 -c ./"
},
"dependencies": {
"@storybook/addon-controls": "6.3.0-alpha.24",
"@storybook/addon-essentials": "6.3.0-alpha.24",
"@storybook/builder-webpack4": "6.3.0-alpha.24",
"@storybook/react": "6.3.0-alpha.24",
"@storybook/addon-controls": "6.3.0-alpha.26",
"@storybook/addon-essentials": "6.3.0-alpha.26",
"@storybook/builder-webpack4": "6.3.0-alpha.26",
"@storybook/react": "6.3.0-alpha.26",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"prop-types": "15.7.2",

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/example-react-ts",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"scripts": {
"build-storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true build-storybook -c ./",
@ -8,9 +8,9 @@
"storybook": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true start-storybook -p 9011 -c ./"
},
"dependencies": {
"@storybook/addon-controls": "6.3.0-alpha.24",
"@storybook/addon-essentials": "6.3.0-alpha.24",
"@storybook/react": "6.3.0-alpha.24",
"@storybook/addon-controls": "6.3.0-alpha.26",
"@storybook/addon-essentials": "6.3.0-alpha.26",
"@storybook/react": "6.3.0-alpha.26",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"prop-types": "15.7.2",

View File

@ -1,6 +1,6 @@
{
"name": "server-kitchen-sink",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"description": "",
"keywords": [],
@ -14,13 +14,13 @@
"storybook": "SERVER_PORT=1137 start-storybook -p 9006 --quiet"
},
"devDependencies": {
"@storybook/addon-a11y": "6.3.0-alpha.24",
"@storybook/addon-actions": "6.3.0-alpha.24",
"@storybook/addon-backgrounds": "6.3.0-alpha.24",
"@storybook/addon-controls": "6.3.0-alpha.24",
"@storybook/addon-links": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/server": "6.3.0-alpha.24",
"@storybook/addon-a11y": "6.3.0-alpha.26",
"@storybook/addon-actions": "6.3.0-alpha.26",
"@storybook/addon-backgrounds": "6.3.0-alpha.26",
"@storybook/addon-controls": "6.3.0-alpha.26",
"@storybook/addon-links": "6.3.0-alpha.26",
"@storybook/node-logger": "6.3.0-alpha.26",
"@storybook/server": "6.3.0-alpha.26",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"express": "~4.17.1",

View File

@ -1,12 +1,12 @@
{
"name": "standalone-preview",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"scripts": {
"storybook": "parcel ./storybook.html --port 1337"
},
"devDependencies": {
"@storybook/react": "6.3.0-alpha.24",
"@storybook/react": "6.3.0-alpha.26",
"parcel": "^1.12.4",
"react": "16.14.0",
"react-dom": "16.14.0"

View File

@ -1,6 +1,6 @@
{
"name": "svelte-example",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"scripts": {
"build-storybook": "build-storybook -s public",
@ -10,18 +10,18 @@
"global": "^4.4.0"
},
"devDependencies": {
"@storybook/addon-a11y": "6.3.0-alpha.24",
"@storybook/addon-actions": "6.3.0-alpha.24",
"@storybook/addon-backgrounds": "6.3.0-alpha.24",
"@storybook/addon-controls": "6.3.0-alpha.24",
"@storybook/addon-docs": "6.3.0-alpha.24",
"@storybook/addon-links": "6.3.0-alpha.24",
"@storybook/addon-storyshots": "6.3.0-alpha.24",
"@storybook/addon-storysource": "6.3.0-alpha.24",
"@storybook/addon-viewport": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/source-loader": "6.3.0-alpha.24",
"@storybook/svelte": "6.3.0-alpha.24",
"@storybook/addon-a11y": "6.3.0-alpha.26",
"@storybook/addon-actions": "6.3.0-alpha.26",
"@storybook/addon-backgrounds": "6.3.0-alpha.26",
"@storybook/addon-controls": "6.3.0-alpha.26",
"@storybook/addon-docs": "6.3.0-alpha.26",
"@storybook/addon-links": "6.3.0-alpha.26",
"@storybook/addon-storyshots": "6.3.0-alpha.26",
"@storybook/addon-storysource": "6.3.0-alpha.26",
"@storybook/addon-viewport": "6.3.0-alpha.26",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/source-loader": "6.3.0-alpha.26",
"@storybook/svelte": "6.3.0-alpha.26",
"svelte-jester": "1.3.0",
"svelte-preprocess": "4.6.8"
},

View File

@ -1,6 +1,6 @@
{
"name": "vue-3-cli-example",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"scripts": {
"build": "vue-cli-service build",
@ -14,11 +14,11 @@
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@storybook/addon-actions": "6.3.0-alpha.24",
"@storybook/addon-essentials": "6.3.0-alpha.24",
"@storybook/addon-links": "6.3.0-alpha.24",
"@storybook/addon-storyshots": "6.3.0-alpha.24",
"@storybook/vue3": "6.3.0-alpha.24",
"@storybook/addon-actions": "6.3.0-alpha.26",
"@storybook/addon-essentials": "6.3.0-alpha.26",
"@storybook/addon-links": "6.3.0-alpha.26",
"@storybook/addon-storyshots": "6.3.0-alpha.26",
"@storybook/vue3": "6.3.0-alpha.26",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "~4.5.0",

View File

@ -1,6 +1,6 @@
{
"name": "vue-cli-example",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"scripts": {
"build": "vue-cli-service build",
@ -15,11 +15,11 @@
"vue-property-decorator": "^9.1.2"
},
"devDependencies": {
"@storybook/addon-controls": "6.3.0-alpha.24",
"@storybook/addon-essentials": "6.3.0-alpha.24",
"@storybook/addon-controls": "6.3.0-alpha.26",
"@storybook/addon-essentials": "6.3.0-alpha.26",
"@storybook/preset-scss": "^1.0.3",
"@storybook/source-loader": "6.3.0-alpha.24",
"@storybook/vue": "6.3.0-alpha.24",
"@storybook/source-loader": "6.3.0-alpha.26",
"@storybook/vue": "6.3.0-alpha.26",
"@vue/cli-plugin-babel": "~4.3.1",
"@vue/cli-plugin-typescript": "~4.3.1",
"@vue/cli-service": "~4.3.1",

View File

@ -1,6 +1,6 @@
{
"name": "vue-example",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
@ -14,18 +14,18 @@
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@storybook/addon-a11y": "6.3.0-alpha.24",
"@storybook/addon-actions": "6.3.0-alpha.24",
"@storybook/addon-backgrounds": "6.3.0-alpha.24",
"@storybook/addon-controls": "6.3.0-alpha.24",
"@storybook/addon-docs": "6.3.0-alpha.24",
"@storybook/addon-links": "6.3.0-alpha.24",
"@storybook/addon-storyshots": "6.3.0-alpha.24",
"@storybook/addon-storysource": "6.3.0-alpha.24",
"@storybook/addon-viewport": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/source-loader": "6.3.0-alpha.24",
"@storybook/vue": "6.3.0-alpha.24",
"@storybook/addon-a11y": "6.3.0-alpha.26",
"@storybook/addon-actions": "6.3.0-alpha.26",
"@storybook/addon-backgrounds": "6.3.0-alpha.26",
"@storybook/addon-controls": "6.3.0-alpha.26",
"@storybook/addon-docs": "6.3.0-alpha.26",
"@storybook/addon-links": "6.3.0-alpha.26",
"@storybook/addon-storyshots": "6.3.0-alpha.26",
"@storybook/addon-storysource": "6.3.0-alpha.26",
"@storybook/addon-viewport": "6.3.0-alpha.26",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/source-loader": "6.3.0-alpha.26",
"@storybook/vue": "6.3.0-alpha.26",
"@vue/babel-preset-jsx": "^1.2.4",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",

View File

@ -1,6 +1,6 @@
{
"name": "web-components-kitchen-sink",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"private": true,
"description": "",
"keywords": [],
@ -12,22 +12,22 @@
"storybook": "start-storybook -p 9006"
},
"devDependencies": {
"@storybook/addon-a11y": "6.3.0-alpha.24",
"@storybook/addon-actions": "6.3.0-alpha.24",
"@storybook/addon-backgrounds": "6.3.0-alpha.24",
"@storybook/addon-controls": "6.3.0-alpha.24",
"@storybook/addon-docs": "6.3.0-alpha.24",
"@storybook/addon-jest": "6.3.0-alpha.24",
"@storybook/addon-links": "6.3.0-alpha.24",
"@storybook/addon-storyshots": "6.3.0-alpha.24",
"@storybook/addon-storysource": "6.3.0-alpha.24",
"@storybook/addon-viewport": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/source-loader": "6.3.0-alpha.24",
"@storybook/web-components": "6.3.0-alpha.24",
"@storybook/addon-a11y": "6.3.0-alpha.26",
"@storybook/addon-actions": "6.3.0-alpha.26",
"@storybook/addon-backgrounds": "6.3.0-alpha.26",
"@storybook/addon-controls": "6.3.0-alpha.26",
"@storybook/addon-docs": "6.3.0-alpha.26",
"@storybook/addon-jest": "6.3.0-alpha.26",
"@storybook/addon-links": "6.3.0-alpha.26",
"@storybook/addon-storyshots": "6.3.0-alpha.26",
"@storybook/addon-storysource": "6.3.0-alpha.26",
"@storybook/addon-viewport": "6.3.0-alpha.26",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/source-loader": "6.3.0-alpha.26",
"@storybook/web-components": "6.3.0-alpha.26",
"babel-loader": "^8.2.2",
"eventemitter3": "^4.0.7",
"format-json": "^1.0.3",

View File

@ -2,5 +2,5 @@
"npmClient": "yarn",
"useWorkspaces": true,
"registry": "https://registry.npmjs.org",
"version": "6.3.0-alpha.24"
"version": "6.3.0-alpha.26"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/addons",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook addons store",
"keywords": [
"storybook"
@ -40,12 +40,12 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/api": "6.3.0-alpha.24",
"@storybook/channels": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/router": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/channels": "6.3.0-alpha.26",
"@storybook/client-logger": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/router": "6.3.0-alpha.26",
"@storybook/theming": "6.3.0-alpha.26",
"core-js": "^3.8.2",
"global": "^4.4.0",
"regenerator-runtime": "^0.13.7"
@ -57,5 +57,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/api",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Core Storybook API & Context",
"keywords": [
"storybook"
@ -39,13 +39,13 @@
},
"dependencies": {
"@reach/router": "^1.3.4",
"@storybook/channels": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/channels": "6.3.0-alpha.26",
"@storybook/client-logger": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/csf": "0.0.1",
"@storybook/router": "6.3.0-alpha.24",
"@storybook/router": "6.3.0-alpha.26",
"@storybook/semver": "^7.3.2",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.26",
"@types/reach__router": "^1.3.7",
"core-js": "^3.8.2",
"fast-deep-equal": "^3.1.3",
@ -72,5 +72,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1 +1 @@
export const version = '6.3.0-alpha.24';
export const version = '6.3.0-alpha.26';

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/builder-webpack4",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook framework-agnostic API",
"keywords": [
"storybook"
@ -61,20 +61,20 @@
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.24",
"@storybook/channel-postmessage": "6.3.0-alpha.24",
"@storybook/channels": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/components": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/router": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/channel-postmessage": "6.3.0-alpha.26",
"@storybook/channels": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/client-logger": "6.3.0-alpha.26",
"@storybook/components": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/node-logger": "6.3.0-alpha.26",
"@storybook/router": "6.3.0-alpha.26",
"@storybook/semver": "^7.3.2",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/ui": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.26",
"@storybook/ui": "6.3.0-alpha.26",
"@types/node": "^14.0.10",
"@types/webpack": "^4.41.26",
"autoprefixer": "^9.8.6",
@ -132,5 +132,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/builder-webpack5",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook framework-agnostic API",
"keywords": [
"storybook"
@ -60,19 +60,19 @@
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.24",
"@storybook/channel-postmessage": "6.3.0-alpha.24",
"@storybook/channels": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/components": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/router": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/channel-postmessage": "6.3.0-alpha.26",
"@storybook/channels": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/client-logger": "6.3.0-alpha.26",
"@storybook/components": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/node-logger": "6.3.0-alpha.26",
"@storybook/router": "6.3.0-alpha.26",
"@storybook/semver": "^7.3.2",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.26",
"@types/node": "^14.0.10",
"babel-loader": "^8.2.2",
"babel-plugin-macros": "^3.0.1",
@ -81,20 +81,16 @@
"core-js": "^3.8.2",
"css-loader": "^5.0.1",
"dotenv-webpack": "^6.0.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.0.4",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"glob-promise": "^3.4.0",
"html-webpack-plugin": "^5.0.0",
"pnp-webpack-plugin": "1.6.4",
"raw-loader": "^4.0.2",
"react-dev-utils": "^11.0.3",
"stable": "^0.1.8",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.3",
"ts-dedent": "^2.0.0",
"url-loader": "^4.1.1",
"util-deprecate": "^1.0.2",
"webpack": "^5.9.0",
"webpack-dev-middleware": "^4.1.0",
@ -122,5 +118,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -53,25 +53,35 @@ export async function createDefaultWebpackConfig(
cssLoaders,
{
test: /\.(svg|ico|jpg|jpeg|png|apng|gif|eot|otf|webp|ttf|woff|woff2|cur|ani|pdf)(\?.*)?$/,
loader: require.resolve('file-loader'),
options: {
esModule: false,
name: isProd
type: 'asset/resource',
generator: {
filename: isProd
? 'static/media/[name].[contenthash:8].[ext]'
: 'static/media/[path][name].[ext]',
},
},
{
test: /\.(mp4|webm|wav|mp3|m4a|aac|oga)(\?.*)?$/,
loader: require.resolve('url-loader'),
options: {
limit: 10000,
name: isProd
type: 'asset',
parser: {
dataUrlCondition: {
maxSize: 10000,
},
},
generator: {
filename: isProd
? 'static/media/[name].[contenthash:8].[ext]'
: 'static/media/[path][name].[ext]',
},
},
],
},
resolve: {
...storybookBaseConfig.resolve,
fallback: {
...storybookBaseConfig.resolve?.fallback,
crypto: false,
},
},
};
}

View File

@ -7,7 +7,6 @@ import CaseSensitivePathsPlugin from 'case-sensitive-paths-webpack-plugin';
import WatchMissingNodeModulesPlugin from 'react-dev-utils/WatchMissingNodeModulesPlugin';
import TerserWebpackPlugin from 'terser-webpack-plugin';
import VirtualModulePlugin from 'webpack-virtual-modules';
import PnpWebpackPlugin from 'pnp-webpack-plugin';
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
import themingPaths from '@storybook/theming/paths';
@ -184,11 +183,7 @@ export default async ({
es6Transpiler() as any,
{
test: /\.md$/,
use: [
{
loader: require.resolve('raw-loader'),
},
],
type: 'asset/source',
},
],
},
@ -202,16 +197,8 @@ export default async ({
react: path.dirname(require.resolve('react/package.json')),
'react-dom': path.dirname(require.resolve('react-dom/package.json')),
},
plugins: [
// Transparently resolve packages via PnP when needed; noop otherwise
PnpWebpackPlugin,
],
fallback: { path: false },
},
resolveLoader: {
plugins: [PnpWebpackPlugin.moduleLoader(module)],
},
optimization: {
splitChunks: {
chunks: 'all',

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/channel-postmessage",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "",
"keywords": [
"storybook"
@ -40,9 +40,9 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/channels": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/channels": "6.3.0-alpha.26",
"@storybook/client-logger": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"core-js": "^3.8.2",
"global": "^4.4.0",
"qs": "^6.10.0",
@ -51,5 +51,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/channel-websocket",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "",
"keywords": [
"storybook"
@ -40,7 +40,7 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/channels": "6.3.0-alpha.24",
"@storybook/channels": "6.3.0-alpha.26",
"core-js": "^3.8.2",
"global": "^4.4.0",
"telejson": "^5.2.0"
@ -48,5 +48,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/channels",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "",
"keywords": [
"storybook"
@ -47,5 +47,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "sb",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook CLI",
"keywords": [
"storybook"
@ -24,10 +24,10 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/cli": "6.3.0-alpha.24"
"@storybook/cli": "6.3.0-alpha.26"
},
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "storybook",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook CLI",
"keywords": [
"storybook"
@ -27,10 +27,10 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/cli": "6.3.0-alpha.24"
"@storybook/cli": "6.3.0-alpha.26"
},
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/cli",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook's CLI - easiest method of adding storybook to your projects",
"keywords": [
"cli",
@ -48,9 +48,10 @@
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@storybook/codemod": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/codemod": "6.3.0-alpha.26",
"@storybook/node-logger": "6.3.0-alpha.26",
"@storybook/semver": "^7.3.2",
"boxen": "^4.2.0",
"chalk": "^4.1.0",
"commander": "^6.2.1",
"core-js": "^3.8.2",
@ -69,10 +70,11 @@
"read-pkg-up": "^7.0.1",
"shelljs": "^0.8.4",
"strip-json-comments": "^3.0.1",
"ts-dedent": "^2.0.0",
"update-notifier": "^5.0.1"
},
"devDependencies": {
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.26",
"@types/cross-spawn": "^6.0.2",
"@types/prompts": "^2.0.9",
"@types/puppeteer-core": "^2.1.0",
@ -88,5 +90,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -103,6 +103,12 @@ export const angular10: Parameters = {
version: 'v10-lts',
};
export const angular11: Parameters = {
...baseAngular,
name: 'angular11',
version: 'v11-lts',
};
export const angular: Parameters = baseAngular;
// #endregion

View File

@ -1,7 +1,7 @@
/* eslint-disable no-irregular-whitespace */
import path from 'path';
import { writeJSON } from 'fs-extra';
import shell, { ExecOptions } from 'shelljs';
import chalk from 'chalk';
const logger = console;
@ -39,39 +39,50 @@ export interface Options extends Parameters {
pnp: boolean;
}
export const exec = async (command: string, options: ExecOptions = {}) =>
new Promise((resolve, reject) => {
shell.exec(command, options, (code) => {
export const exec = async (
command: string,
options: ExecOptions = {},
{ startMessage, errorMessage }: { startMessage?: string; errorMessage?: string } = {}
) => {
if (startMessage) {
logger.info(startMessage);
}
logger.debug(command);
return new Promise((resolve, reject) => {
const defaultOptions: ExecOptions = {
silent: true,
};
shell.exec(command, { ...defaultOptions, ...options }, (code, stdout, stderr) => {
if (code === 0) {
resolve(undefined);
} else {
reject(new Error(`command exited with code: ${code}`));
logger.error(chalk.red(`An error occurred while executing: \`${command}\``));
logger.error(`Command output was:${chalk.yellow(`\n${stdout}\n${stderr}`)}`);
if (errorMessage) {
logger.error(errorMessage);
}
reject(new Error(`command exited with code: ${code}: `));
}
});
});
};
const installYarn2 = async ({ cwd, pnp }: Options) => {
const commands = [
const command = [
`yarn set version berry`,
`yarn config set enableGlobalCache true`,
`yarn config set nodeLinker ${pnp ? 'pnp' : 'node-modules'}`,
];
].join(' && ');
const command = commands.join(' && ');
logger.info(`🧶Installing Yarn 2`);
logger.debug(command);
try {
await exec(command, { cwd });
} catch (e) {
logger.error(`🚨Installing Yarn 2 failed`);
throw e;
}
await exec(
command,
{ cwd },
{ startMessage: `🧶 Installing Yarn 2`, errorMessage: `🚨 Installing Yarn 2 failed` }
);
};
const configureYarn2ForE2E = async ({ cwd }: Options) => {
const commands = [
const command = [
// ⚠️ Need to set registry because Yarn 2 is not using the conf of Yarn 1 (URL is hardcoded in CircleCI config.yml)
`yarn config set npmScopes --json '{ "storybook": { "npmRegistryServer": "http://localhost:6000/" } }'`,
// Some required magic to be able to fetch deps from local registry
@ -82,72 +93,68 @@ const configureYarn2ForE2E = async ({ cwd }: Options) => {
`yarn config set enableImmutableInstalls false`,
// Discard all YN0013 - FETCH_NOT_CACHED messages
`yarn config set logFilters --json '[ { "code": "YN0013", "level": "discard" } ]'`,
];
].join(' && ');
const command = commands.join(' && ');
logger.info(`🎛Configuring Yarn 2`);
logger.debug(command);
try {
await exec(command, { cwd });
} catch (e) {
logger.error(`🚨Configuring Yarn 2 failed`);
throw e;
}
await exec(
command,
{ cwd },
{ startMessage: `🎛 Configuring Yarn 2`, errorMessage: `🚨 Configuring Yarn 2 failed` }
);
};
const generate = async ({ cwd, name, appName, version, generator }: Options) => {
const command = generator.replace(/{{appName}}/g, appName).replace(/{{version}}/g, version);
logger.info(`🏗Bootstrapping ${name} project`);
logger.debug(command);
try {
await exec(command, { cwd });
} catch (e) {
logger.error(`🚨Bootstrapping ${name} failed`);
throw e;
}
await exec(
command,
{ cwd },
{
startMessage: `🏗 Bootstrapping ${name} project (this might take a few minutes)`,
errorMessage: `🚨 Bootstrapping ${name} failed`,
}
);
};
const initStorybook = async ({ cwd, autoDetect = true, name, e2e }: Options) => {
logger.info(`🎨Initializing Storybook with @storybook/cli`);
try {
const type = autoDetect ? '' : `--type ${name}`;
const linkable = e2e ? '' : '--linkable';
const sbCLICommand = useLocalSbCli
? `node ${path.join(__dirname, '../../esm/generate')}`
: `yarn dlx -p @storybook/cli sb`;
const type = autoDetect ? '' : `--type ${name}`;
const linkable = e2e ? '' : '--linkable';
const sbCLICommand = useLocalSbCli
? `node ${path.join(__dirname, '../../esm/generate')}`
: `yarn dlx -p @storybook/cli sb`;
await exec(`${sbCLICommand} init --yes ${type} ${linkable}`, { cwd });
} catch (e) {
logger.error(`🚨Storybook initialization failed`);
throw e;
}
const command = `${sbCLICommand} init --yes ${type} ${linkable}`;
await exec(
command,
{ cwd },
{
startMessage: `🎨 Initializing Storybook with @storybook/cli`,
errorMessage: `🚨 Storybook initialization failed`,
}
);
};
const addRequiredDeps = async ({ cwd, additionalDeps }: Options) => {
logger.info(`🌍Adding needed deps & installing all deps`);
try {
// Remove any lockfile generated without Yarn 2
shell.rm(path.join(cwd, 'package-lock.json'), path.join(cwd, 'yarn.lock'));
if (additionalDeps && additionalDeps.length > 0) {
await exec(`yarn add -D ${additionalDeps.join(' ')}`, {
cwd,
});
} else {
await exec(`yarn install`, {
cwd,
});
// Remove any lockfile generated without Yarn 2
shell.rm(path.join(cwd, 'package-lock.json'), path.join(cwd, 'yarn.lock'));
const command =
additionalDeps && additionalDeps.length > 0
? `yarn add -D ${additionalDeps.join(' ')}`
: `yarn install`;
await exec(
command,
{ cwd },
{
startMessage: `🌍 Adding needed deps & installing all deps`,
errorMessage: `🚨 Dependencies installation failed`,
}
} catch (e) {
logger.error(`🚨Dependencies installation failed`);
throw e;
}
);
};
const addTypescript = async ({ cwd }: Options) => {
logger.info(`👮🏻 Adding typescript and tsconfig.json`);
logger.info(`👮 Adding typescript and tsconfig.json`);
try {
await exec(`yarn add -D typescript@latest`, { cwd });
const tsConfig = {
@ -163,7 +170,7 @@ const addTypescript = async ({ cwd }: Options) => {
const tsConfigJsonPath = path.resolve(cwd, 'tsconfig.json');
await writeJSON(tsConfigJsonPath, tsConfig, { encoding: 'utf8', spaces: 2 });
} catch (e) {
logger.error(`🚨Creating tsconfig.json failed`);
logger.error(`🚨 Creating tsconfig.json failed`);
throw e;
}
};
@ -196,20 +203,16 @@ export const createAndInit = async (
};
logger.log();
logger.info(`🏃‍♀️ Starting for ${name} ${version}`);
logger.info(`🏃 Starting for ${name} ${version}`);
logger.log();
logger.debug(options);
logger.log();
console.log({ creationPath: options.creationPath });
await doTask(generate, { ...options, cwd: options.creationPath });
await doTask(installYarn2, options);
if (e2e) {
await doTask(configureYarn2ForE2E, options);
}
await doTask(configureYarn2ForE2E, options, e2e);
await doTask(addTypescript, options, !!options.typescript);
await doTask(addRequiredDeps, options);

View File

@ -1,10 +1,15 @@
import prompts from 'prompts';
import { logger } from '@storybook/node-logger';
import fs from 'fs';
import path from 'path';
import chalk from 'chalk';
import boxen from 'boxen';
import dedent from 'ts-dedent';
import { createAndInit, Parameters, exec } from './repro-generators/scripts';
import * as configs from './repro-generators/configs';
import { SupportedFrameworks } from './project_types';
const logger = console;
interface ReproOptions {
outputDirectory: string;
framework?: SupportedFrameworks;
@ -34,8 +39,23 @@ export const repro = async ({
e2e,
pnp,
}: ReproOptions) => {
logger.info(
boxen(
dedent`
🤗 Welcome to ${chalk.yellow('sb repro')}! 🤗
Create a ${chalk.green('new project')} to minimally reproduce Storybook issues.
1. select an environment that most closely matches your project setup.
2. select a location for the reproduction, outside of your project.
After the reproduction is ready, we'll guide you through the next steps.
`.trim(),
{ borderStyle: 'round', padding: 1, borderColor: '#F1618C' } as any
)
);
if (list) {
logger.info('Available templates');
logger.info('🌈 Available templates');
Object.entries(FRAMEWORKS).forEach(([fmwrk, templates]) => {
logger.info(fmwrk);
templates.forEach((t) => logger.info(`- ${t.name}`));
@ -46,35 +66,25 @@ export const repro = async ({
return;
}
let selectedDirectory = outputDirectory;
if (!selectedDirectory) {
const { directory } = await prompts({
type: 'text',
message: 'Enter the output directory',
name: 'directory',
});
selectedDirectory = directory;
// if (fs.existsSync(selectedDirectory)) {
// throw new Error(`Repro: ${selectedDirectory} already exists`);
// }
}
let selectedTemplate = template;
let selectedFramework = framework;
if (!selectedTemplate && !generator) {
if (!selectedFramework) {
const { framework: frameworkOpt } = await prompts({
type: 'select',
message: 'Select the repro framework',
message: '🌈 Select the repro framework',
name: 'framework',
choices: Object.keys(FRAMEWORKS).map((f) => ({ title: f, value: f })),
});
selectedFramework = frameworkOpt;
}
if (!selectedFramework) {
throw new Error('🚨 Repro: please select a framework!');
}
selectedTemplate = (
await prompts({
type: 'select',
message: 'Select the repro base template',
message: '📝 Select the repro base template',
name: 'template',
choices: FRAMEWORKS[selectedFramework as SupportedFrameworks].map((f) => ({
title: f.name,
@ -93,7 +103,20 @@ export const repro = async ({
};
if (!selectedConfig) {
throw new Error('Repro: please specify a valid template type');
throw new Error('🚨 Repro: please specify a valid template type');
}
let selectedDirectory = outputDirectory;
if (!selectedDirectory) {
const { directory } = await prompts({
type: 'text',
message: 'Enter the output directory',
name: 'directory',
});
selectedDirectory = directory;
if (fs.existsSync(selectedDirectory)) {
throw new Error(`🚨 Repro: ${selectedDirectory} already exists`);
}
}
try {
@ -101,7 +124,7 @@ export const repro = async ({
? selectedDirectory
: path.join(process.cwd(), selectedDirectory);
logger.info(`Running ${selectedTemplate} into ${cwd}`);
logger.info(`🏃 Running ${selectedTemplate} into ${cwd}`);
await createAndInit(cwd, selectedConfig, {
e2e: !!e2e,
@ -111,8 +134,28 @@ export const repro = async ({
if (!e2e) {
await initGitRepo(cwd);
}
logger.info(
boxen(
dedent`
🎉 Your Storybook reproduction project is ready to use! 🎉
${chalk.yellow(`cd ${selectedDirectory}`)}
${chalk.yellow(`yarn storybook`)}
Once you've recreated the problem you're experiencing, please:
1. Document any additional steps in ${chalk.cyan('README.md')}
2. Publish the repository to github
3. Link to the repro repository in your issue
Having a clean repro helps us solve your issue faster! 🙏
`.trim(),
{ borderStyle: 'round', padding: 1, borderColor: '#F1618C' } as any
)
);
} catch (error) {
logger.error('Failed to create repro');
logger.error('🚨 Failed to create repro');
}
};

View File

@ -1,54 +1,54 @@
{
"@storybook/addon-a11y": "6.3.0-alpha.24",
"@storybook/addon-actions": "6.3.0-alpha.24",
"@storybook/addon-backgrounds": "6.3.0-alpha.24",
"@storybook/addon-controls": "6.3.0-alpha.24",
"@storybook/addon-docs": "6.3.0-alpha.24",
"@storybook/addon-essentials": "6.3.0-alpha.24",
"@storybook/addon-jest": "6.3.0-alpha.24",
"@storybook/addon-links": "6.3.0-alpha.24",
"@storybook/addon-storyshots": "6.3.0-alpha.24",
"@storybook/addon-storyshots-puppeteer": "6.3.0-alpha.24",
"@storybook/addon-storysource": "6.3.0-alpha.24",
"@storybook/addon-toolbars": "6.3.0-alpha.24",
"@storybook/addon-viewport": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/angular": "6.3.0-alpha.24",
"@storybook/api": "6.3.0-alpha.24",
"@storybook/aurelia": "6.3.0-alpha.24",
"@storybook/builder-webpack4": "6.3.0-alpha.24",
"@storybook/builder-webpack5": "6.3.0-alpha.24",
"@storybook/channel-postmessage": "6.3.0-alpha.24",
"@storybook/channel-websocket": "6.3.0-alpha.24",
"@storybook/channels": "6.3.0-alpha.24",
"@storybook/cli": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/codemod": "6.3.0-alpha.24",
"@storybook/components": "6.3.0-alpha.24",
"@storybook/core": "6.3.0-alpha.24",
"@storybook/core-client": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/core-server": "6.3.0-alpha.24",
"@storybook/ember": "6.3.0-alpha.24",
"@storybook/html": "6.3.0-alpha.24",
"@storybook/marionette": "6.3.0-alpha.24",
"@storybook/marko": "6.3.0-alpha.24",
"@storybook/mithril": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/postinstall": "6.3.0-alpha.24",
"@storybook/preact": "6.3.0-alpha.24",
"@storybook/rax": "6.3.0-alpha.24",
"@storybook/react": "6.3.0-alpha.24",
"@storybook/riot": "6.3.0-alpha.24",
"@storybook/router": "6.3.0-alpha.24",
"@storybook/server": "6.3.0-alpha.24",
"@storybook/source-loader": "6.3.0-alpha.24",
"@storybook/svelte": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/ui": "6.3.0-alpha.24",
"@storybook/vue": "6.3.0-alpha.24",
"@storybook/vue3": "6.3.0-alpha.24",
"@storybook/web-components": "6.3.0-alpha.24"
"@storybook/addon-a11y": "6.3.0-alpha.26",
"@storybook/addon-actions": "6.3.0-alpha.26",
"@storybook/addon-backgrounds": "6.3.0-alpha.26",
"@storybook/addon-controls": "6.3.0-alpha.26",
"@storybook/addon-docs": "6.3.0-alpha.26",
"@storybook/addon-essentials": "6.3.0-alpha.26",
"@storybook/addon-jest": "6.3.0-alpha.26",
"@storybook/addon-links": "6.3.0-alpha.26",
"@storybook/addon-storyshots": "6.3.0-alpha.26",
"@storybook/addon-storyshots-puppeteer": "6.3.0-alpha.26",
"@storybook/addon-storysource": "6.3.0-alpha.26",
"@storybook/addon-toolbars": "6.3.0-alpha.26",
"@storybook/addon-viewport": "6.3.0-alpha.26",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/angular": "6.3.0-alpha.26",
"@storybook/api": "6.3.0-alpha.26",
"@storybook/aurelia": "6.3.0-alpha.26",
"@storybook/builder-webpack4": "6.3.0-alpha.26",
"@storybook/builder-webpack5": "6.3.0-alpha.26",
"@storybook/channel-postmessage": "6.3.0-alpha.26",
"@storybook/channel-websocket": "6.3.0-alpha.26",
"@storybook/channels": "6.3.0-alpha.26",
"@storybook/cli": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/client-logger": "6.3.0-alpha.26",
"@storybook/codemod": "6.3.0-alpha.26",
"@storybook/components": "6.3.0-alpha.26",
"@storybook/core": "6.3.0-alpha.26",
"@storybook/core-client": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/core-server": "6.3.0-alpha.26",
"@storybook/ember": "6.3.0-alpha.26",
"@storybook/html": "6.3.0-alpha.26",
"@storybook/marionette": "6.3.0-alpha.26",
"@storybook/marko": "6.3.0-alpha.26",
"@storybook/mithril": "6.3.0-alpha.26",
"@storybook/node-logger": "6.3.0-alpha.26",
"@storybook/postinstall": "6.3.0-alpha.26",
"@storybook/preact": "6.3.0-alpha.26",
"@storybook/rax": "6.3.0-alpha.26",
"@storybook/react": "6.3.0-alpha.26",
"@storybook/riot": "6.3.0-alpha.26",
"@storybook/router": "6.3.0-alpha.26",
"@storybook/server": "6.3.0-alpha.26",
"@storybook/source-loader": "6.3.0-alpha.26",
"@storybook/svelte": "6.3.0-alpha.26",
"@storybook/theming": "6.3.0-alpha.26",
"@storybook/ui": "6.3.0-alpha.26",
"@storybook/vue": "6.3.0-alpha.26",
"@storybook/vue3": "6.3.0-alpha.26",
"@storybook/web-components": "6.3.0-alpha.26"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/client-api",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook Client API",
"keywords": [
"storybook"
@ -40,11 +40,11 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/channel-postmessage": "6.3.0-alpha.24",
"@storybook/channels": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/channel-postmessage": "6.3.0-alpha.26",
"@storybook/channels": "6.3.0-alpha.26",
"@storybook/client-logger": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/csf": "0.0.1",
"@types/qs": "^6.9.5",
"@types/webpack-env": "^1.16.0",
@ -66,5 +66,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/client-logger",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "",
"keywords": [
"storybook"
@ -46,5 +46,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/codemod",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "A collection of codemod scripts written with JSCodeshift",
"keywords": [
"storybook"
@ -43,7 +43,7 @@
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@storybook/csf": "0.0.1",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.26",
"core-js": "^3.8.2",
"cross-spawn": "^7.0.3",
"globby": "^11.0.2",
@ -60,5 +60,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/components",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Core Storybook Components",
"keywords": [
"storybook"
@ -41,9 +41,9 @@
},
"dependencies": {
"@popperjs/core": "^2.6.0",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.26",
"@storybook/csf": "0.0.1",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.26",
"@types/color-convert": "^2.0.0",
"@types/overlayscrollbars": "^1.12.0",
"@types/react-syntax-highlighter": "11.0.5",
@ -76,5 +76,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -303,9 +303,10 @@ export const ColorControl: FC<ColorProps> = ({
/>
{presets.length > 0 && (
<Swatches>
{presets.map((preset) => (
{presets.map((preset, index: number) => (
<WithTooltip
key={preset.value}
// eslint-disable-next-line react/no-array-index-key
key={`${preset.value}-${index}`}
hasChrome={false}
tooltip={<Note note={preset.keyword || preset.value} />}
>

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/core-client",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook framework-agnostic API",
"keywords": [
"storybook"
@ -40,13 +40,13 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/channel-postmessage": "6.3.0-alpha.24",
"@storybook/client-api": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/core-events": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/channel-postmessage": "6.3.0-alpha.26",
"@storybook/client-api": "6.3.0-alpha.26",
"@storybook/client-logger": "6.3.0-alpha.26",
"@storybook/core-events": "6.3.0-alpha.26",
"@storybook/csf": "0.0.1",
"@storybook/ui": "6.3.0-alpha.24",
"@storybook/ui": "6.3.0-alpha.26",
"ansi-to-html": "^0.6.11",
"core-js": "^3.8.2",
"global": "^4.4.0",
@ -70,5 +70,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/core-common",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook framework-agnostic API",
"keywords": [
"storybook"
@ -61,7 +61,7 @@
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@babel/register": "^7.12.1",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.26",
"@storybook/semver": "^7.3.2",
"@types/glob-base": "^0.3.0",
"@types/micromatch": "^4.0.1",
@ -107,5 +107,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/core-events",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Event names used in storybook core",
"keywords": [
"storybook"
@ -45,5 +45,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/core-server",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook framework-agnostic API",
"keywords": [
"storybook"
@ -45,14 +45,14 @@
"@babel/core": "^7.12.10",
"@babel/plugin-transform-template-literals": "^7.12.1",
"@babel/preset-react": "^7.12.10",
"@storybook/addons": "6.3.0-alpha.24",
"@storybook/builder-webpack4": "6.3.0-alpha.24",
"@storybook/core-client": "6.3.0-alpha.24",
"@storybook/core-common": "6.3.0-alpha.24",
"@storybook/node-logger": "6.3.0-alpha.24",
"@storybook/addons": "6.3.0-alpha.26",
"@storybook/builder-webpack4": "6.3.0-alpha.26",
"@storybook/core-client": "6.3.0-alpha.26",
"@storybook/core-common": "6.3.0-alpha.26",
"@storybook/node-logger": "6.3.0-alpha.26",
"@storybook/semver": "^7.3.2",
"@storybook/theming": "6.3.0-alpha.24",
"@storybook/ui": "6.3.0-alpha.24",
"@storybook/theming": "6.3.0-alpha.26",
"@storybook/ui": "6.3.0-alpha.26",
"@types/node": "^14.0.10",
"@types/node-fetch": "^2.5.7",
"@types/pretty-hrtime": "^1.0.0",
@ -98,7 +98,7 @@
"webpack-virtual-modules": "^0.2.2"
},
"devDependencies": {
"@storybook/builder-webpack5": "6.3.0-alpha.24",
"@storybook/builder-webpack5": "6.3.0-alpha.26",
"@types/case-sensitive-paths-webpack-plugin": "^2.1.4",
"@types/compression": "^1.7.0",
"@types/dotenv-webpack": "^3.0.0",
@ -110,7 +110,7 @@
"jest-specific-snapshot": "^4.0.0"
},
"peerDependencies": {
"@storybook/builder-webpack5": "6.3.0-alpha.24",
"@storybook/builder-webpack5": "6.3.0-alpha.26",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
@ -125,5 +125,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/core",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook framework-agnostic API",
"keywords": [
"storybook"
@ -40,11 +40,11 @@
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/core-client": "6.3.0-alpha.24",
"@storybook/core-server": "6.3.0-alpha.24"
"@storybook/core-client": "6.3.0-alpha.26",
"@storybook/core-server": "6.3.0-alpha.26"
},
"peerDependencies": {
"@storybook/builder-webpack5": "6.3.0-alpha.24",
"@storybook/builder-webpack5": "6.3.0-alpha.26",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
@ -59,5 +59,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/node-logger",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "",
"keywords": [
"storybook"
@ -52,5 +52,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/postinstall",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Storybook addons postinstall utilities",
"keywords": [
"api",
@ -51,5 +51,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

View File

@ -1,6 +1,6 @@
{
"name": "@storybook/router",
"version": "6.3.0-alpha.24",
"version": "6.3.0-alpha.26",
"description": "Core Storybook Router",
"keywords": [
"storybook"
@ -41,7 +41,7 @@
},
"dependencies": {
"@reach/router": "^1.3.4",
"@storybook/client-logger": "6.3.0-alpha.24",
"@storybook/client-logger": "6.3.0-alpha.26",
"@types/reach__router": "^1.3.7",
"core-js": "^3.8.2",
"fast-deep-equal": "^3.1.3",
@ -58,5 +58,5 @@
"publishConfig": {
"access": "public"
},
"gitHead": "a8870128bc9684f9b54083decbd10664bf26bcc4"
"gitHead": "10b42ef0cd54ad9a248287d6ffc9d5d92f5eb733"
}

Some files were not shown because too many files have changed in this diff Show More