diff --git a/.babelrc.js b/.babelrc.js index a53b8f97fdf..cfb34539d89 100644 --- a/.babelrc.js +++ b/.babelrc.js @@ -43,7 +43,7 @@ module.exports = { overrides: [ { test: './examples/vue-kitchen-sink', - presets: ['babel-preset-vue'], + presets: ['@vue/babel-preset-jsx'], env: { test: withTests, }, diff --git a/.gitignore b/.gitignore index 9dda5bf50ef..834e9ba0455 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,4 @@ cypress/videos cypress/screenshots examples/ember-cli/ember-output .verdaccio-cache +tsconfig.tsbuildinfo diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dbd9b6bae1..25b6bf8b109 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,54 @@ +## 6.0.0-beta.14 (May 25, 2020) + +### Breaking Changes + +- CSF: Hoist story annotation object ([#10907](https://github.com/storybookjs/storybook/pull/10907)) +- Vue: Remove babel-preset-vue ([#10909](https://github.com/storybookjs/storybook/pull/10909)) + +### Features + +- Angular: Support `workspace.json` in nx workspace ([#10881](https://github.com/storybookjs/storybook/pull/10881)) + +### Bug Fixes + +- Addon-docs: Fix single item width in Preview block ([#10877](https://github.com/storybookjs/storybook/pull/10877)) +- UI: Center toolbar icon buttons ([#10897](https://github.com/storybookjs/storybook/pull/10897)) +- Core: Fix double rendering on startup ([#10892](https://github.com/storybookjs/storybook/pull/10892)) + +### Maintenance + +- Core: Use dedicated loader for es6 modules ([#10783](https://github.com/storybookjs/storybook/pull/10783)) +- Core: Fix yarn test command on windows ([#10904](https://github.com/storybookjs/storybook/pull/10904)) + +## 5.3.19 (May 24, 2020) + +### Bug Fixes + +- UI: Fix search stories ([#10539](https://github.com/storybookjs/storybook/pull/10539)) + +### Security + +- Upgrade markdown-to-jsx to 6.11.4 ([#10873](https://github.com/storybookjs/storybook/pull/10873)) + +## 6.0.0-beta.13 (May 23, 2020) + +### Bug Fixes + +- Core: Fix ts/tsx resolution in the manager ([#10886](https://github.com/storybookjs/storybook/pull/10886)) +- Core: Fix typo in projectRoot node_modules detection ([#10848](https://github.com/storybookjs/storybook/pull/10848)) +- Addon-docs: Fix story inline rendering ([#10875](https://github.com/storybookjs/storybook/pull/10875)) +- Core: Fix CRA filter for built-in webpack settings ([#10861](https://github.com/storybookjs/storybook/pull/10861)) +- Addon-docs: Fix react forwardRefs with destructured props ([#10864](https://github.com/storybookjs/storybook/pull/10864)) + +### Maintenance + +- React: Upgrade preset-create-react-app in examples ([#10867](https://github.com/storybookjs/storybook/pull/10867)) +- Core: Close server when e2e test failed ([#10868](https://github.com/storybookjs/storybook/pull/10868)) + +### Dependency Upgrades + +- Upgrade markdown-to-jsx to 6.11.4 ([#10873](https://github.com/storybookjs/storybook/pull/10873)) + ## 6.0.0-beta.12 (May 21, 2020) ### Breaking Changes diff --git a/MIGRATION.md b/MIGRATION.md index e6c0919ea7d..0cb1cf778fd 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -1,6 +1,7 @@

Migration

- [From version 5.3.x to 6.0.x](#from-version-53x-to-60x) + - [Hoisted CSF annotations](#hoisted-csf-annotations) - [Zero config typescript](#zero-config-typescript) - [Correct globs in main.js](#correct-globs-in-main-js) - [Backgrounds addon has a new api](#backgrounds-addon-has-a-new-api) @@ -15,6 +16,7 @@ - [Imported types](#imported-types) - [Rolling back](#rolling-back) - [New addon presets](#new-addon-presets) + - [Removed babel-preset-vue from Vue preset](#removed-babel-preset-vue-from-vue-preset) - [Removed Deprecated APIs](#removed-deprecated-apis) - [New setStories event](#new-setstories-event) - [Client API changes](#client-api-changes) @@ -115,6 +117,48 @@ ## From version 5.3.x to 6.0.x +### Hoisted CSF annotations + +Storybook 6 introduces hoisted CSF annotations and deprecates the `StoryFn.story` object-style annotation. + +In 5.x CSF, you would annotate a story like this: + +```js +export const Basic = () => -); +export const defaultView = () => ; ``` You can add the backgrounds to all stories by using `parameters` in `.storybook/preview.js`: @@ -78,42 +77,35 @@ import React from 'react'; export default { title: 'Button', -} +}; -export const defaultView = () => ( - -); +export const defaultView = () => ; -defaultView.story = { - parameters: { - backgrounds: { - default: 'red', - values: [ - { name: 'red', value: 'rgba(255, 0, 0)' }, - ], - }, - } +defaultView.parameters = { + backgrounds: { + default: 'red', + values: [{ name: 'red', value: 'rgba(255, 0, 0)' }], + }, }; ``` Once you have defined backgrounds for your stories (as can be seen in the examples above), you can set a default background per story by passing the `default` property using a name from the available backgrounds: + ```jsx import React from 'react'; /* * Button.stories.js - * Applies default background to the Stories + * Applies default background to the Stories */ export default { title: 'Button', parameters: { backgrounds: { default: 'twitter' }, }, -} +}; -export const twitterColorSelected = () => ( - -); +export const twitterColorSelected = () => ; ``` If you don't want to use backgrounds for a story, you can set the `backgrounds` parameter to `{ disable: true }` to skip the addon: @@ -123,19 +115,15 @@ import React from 'react'; /* * Button.stories.js - * Disables backgrounds for one Story + * Disables backgrounds for one Story */ export default { title: 'Button', -} +}; -export const disabledBackgrounds = () => ( - -); +export const disabledBackgrounds = () => ; -disabledBackgrounds.story = { - parameters: { - backgrounds: { disable: true }, - }, +disabledBackgrounds.parameters = { + backgrounds: { disable: true }, }; ``` diff --git a/addons/backgrounds/package.json b/addons/backgrounds/package.json index f8cd9ae9283..ab601db0ded 100644 --- a/addons/backgrounds/package.json +++ b/addons/backgrounds/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-backgrounds", - "version": "6.0.0-beta.12", + "version": "6.0.0-beta.14", "description": "A storybook addon to show different backgrounds for your preview", "keywords": [ "addon", @@ -32,12 +32,12 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "6.0.0-beta.12", - "@storybook/api": "6.0.0-beta.12", - "@storybook/client-logger": "6.0.0-beta.12", - "@storybook/components": "6.0.0-beta.12", - "@storybook/core-events": "6.0.0-beta.12", - "@storybook/theming": "6.0.0-beta.12", + "@storybook/addons": "6.0.0-beta.14", + "@storybook/api": "6.0.0-beta.14", + "@storybook/client-logger": "6.0.0-beta.14", + "@storybook/components": "6.0.0-beta.14", + "@storybook/core-events": "6.0.0-beta.14", + "@storybook/theming": "6.0.0-beta.14", "core-js": "^3.0.1", "memoizerific": "^1.11.3", "react": "^16.8.3", diff --git a/addons/cssresources/package.json b/addons/cssresources/package.json index 59ef5a42ae1..76aa0c7926a 100644 --- a/addons/cssresources/package.json +++ b/addons/cssresources/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-cssresources", - "version": "6.0.0-beta.12", + "version": "6.0.0-beta.14", "description": "A storybook addon to switch between css resources at runtime for your story", "keywords": [ "addon", @@ -32,11 +32,11 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "6.0.0-beta.12", - "@storybook/api": "6.0.0-beta.12", - "@storybook/components": "6.0.0-beta.12", - "@storybook/core-events": "6.0.0-beta.12", - "@storybook/theming": "6.0.0-beta.12", + "@storybook/addons": "6.0.0-beta.14", + "@storybook/api": "6.0.0-beta.14", + "@storybook/components": "6.0.0-beta.14", + "@storybook/core-events": "6.0.0-beta.14", + "@storybook/theming": "6.0.0-beta.14", "core-js": "^3.0.1", "global": "^4.3.2", "react": "^16.8.3", diff --git a/addons/design-assets/package.json b/addons/design-assets/package.json index 2c51dc50475..59c0f4dddab 100644 --- a/addons/design-assets/package.json +++ b/addons/design-assets/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-design-assets", - "version": "6.0.0-beta.12", + "version": "6.0.0-beta.14", "description": "Design asset preview for storybook", "keywords": [ "addon", @@ -34,12 +34,12 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "6.0.0-beta.12", - "@storybook/api": "6.0.0-beta.12", - "@storybook/client-logger": "6.0.0-beta.12", - "@storybook/components": "6.0.0-beta.12", - "@storybook/core-events": "6.0.0-beta.12", - "@storybook/theming": "6.0.0-beta.12", + "@storybook/addons": "6.0.0-beta.14", + "@storybook/api": "6.0.0-beta.14", + "@storybook/client-logger": "6.0.0-beta.14", + "@storybook/components": "6.0.0-beta.14", + "@storybook/core-events": "6.0.0-beta.14", + "@storybook/theming": "6.0.0-beta.14", "core-js": "^3.0.1", "global": "^4.3.2", "react": "^16.8.3", diff --git a/addons/docs/README.md b/addons/docs/README.md index 112ab151d30..3590efc6a47 100644 --- a/addons/docs/README.md +++ b/addons/docs/README.md @@ -226,12 +226,7 @@ addParameters({ ## TypeScript configuration -SB Docs for React uses `babel-plugin-react-docgen` to extract Docgen comments from your code automatically. However, if you're using TypeScript, some extra configuration maybe required to get this information included in your docs. - -1. You can add [react-docgen-typescript-loader](https://www.npmjs.com/package/react-docgen-typescript-loader) to your project by following the instructions there. -2. You can use [@storybook/preset-typescript](https://www.npmjs.com/package/@storybook/preset-typescript) which includes `react-docgen-typescript-loader`. - -Install the preset with care. If you've already configured Typescript manually, that configuration may conflict with the preset. You can [debug your final webpack configuration with `--debug-webpack`](https://storybook.js.org/docs/configurations/custom-webpack-config/#debug-the-default-webpack-config). +As of SB6 [TypeScript is zero-config](https://github.com/storybookjs/storybook/blob/next/docs/src/pages/configurations/typescript-config/index.md) and should work with SB Docs out of the box. For advanced configuration options, refer to the [Props documentation](./docs/props-tables.md). ## More resources diff --git a/addons/docs/angular/README.md b/addons/docs/angular/README.md index 87f20d8fa26..ccbe633aed8 100644 --- a/addons/docs/angular/README.md +++ b/addons/docs/angular/README.md @@ -12,6 +12,7 @@ To learn more about Storybook Docs, read the [general documentation](../README.m - [Installation](#installation) - [DocsPage](#docspage) +- [Props tables](#props-tables) - [MDX](#mdx) - [IFrame height](#iframe-height) - [More resources](#more-resources) @@ -36,7 +37,9 @@ module.exports = { When you [install docs](#installation) you should get basic [DocsPage](../docs/docspage.md) documentation automagically for all your stories, available in the `Docs` tab of the Storybook UI. -Props tables for your components requires a few more steps. Docs for Angular relies on [Compodoc](https://compodoc.app/), the excellent API documentation tool. It supports `inputs`, `outputs`, `properties`, `methods`, `view/content child/children` as first class prop types. +## Props tables + +Getting [Props tables](../docs/props-tables.md) for your components requires a few more steps. Docs for Angular relies on [Compodoc](https://compodoc.app/), the excellent API documentation tool. It supports `inputs`, `outputs`, `properties`, `methods`, `view/content child/children` as first class prop types. To get this, you'll first need to install Compodoc: @@ -192,8 +195,8 @@ For `DocsPage`, you need to update the parameter locally in a story: ```ts export const basic = () => ... -basic.story = { - parameters: { docs: { iframeHeight: 400 } } +basic.parameters = { + docs: { iframeHeight: 400 } } ``` diff --git a/addons/docs/common/README.md b/addons/docs/common/README.md index 6230aba8cd3..8e702811702 100644 --- a/addons/docs/common/README.md +++ b/addons/docs/common/README.md @@ -80,8 +80,8 @@ For `DocsPage`, you need to update the parameter locally in a story: ```ts export const basic = () => ... -basic.story = { - parameters: { docs: { iframeHeight: 400 } } +basic.parameters = { + docs: { iframeHeight: 400 } } ``` diff --git a/addons/docs/docs/docspage.md b/addons/docs/docs/docspage.md index c0aa3cf07bf..ec30d485b2c 100644 --- a/addons/docs/docs/docspage.md +++ b/addons/docs/docs/docspage.md @@ -110,8 +110,8 @@ export default { import { Button } from './Button'; // export default { ... } export const basic => () => -basic.story = { - parameters: { docs: { page: null } } +basic.parameters = { + docs: { page: null } } ``` diff --git a/addons/docs/docs/props-tables.md b/addons/docs/docs/props-tables.md index 3e1c9399296..c6bf85a714f 100644 --- a/addons/docs/docs/props-tables.md +++ b/addons/docs/docs/props-tables.md @@ -7,20 +7,13 @@ Storybook Docs automatically generates props tables for components in supported frameworks. This document is a consolidated summary of prop tables, provides instructions for reporting bugs, and list known limitations for each framework. - [Usage](#usage) -- [Args Controls](#args-controls) +- [Controls](#controls) - [DocsPage](#docspage) - [MDX](#mdx) - [Controls customization](#controls-customization) - [Rows customization](#rows-customization) - [Reporting a bug](#reporting-a-bug) - [Known limitations](#known-limitations) - - [React](#react) - - [Fully support React.FC](#fully-support-reactfc) - - [Imported types](#imported-types) - - [Vue](#vue) - - [Angular](#angular) - - [Web components](#web-components) - - [Ember](#ember) - [More resources](#more-resources) ## Usage @@ -52,9 +45,9 @@ import { MyComponent } from './MyComponent'; ``` -## Args Controls +## Controls -Starting in SB 6.0, the `Props` block has built-in controls (formerly known as "knobs") for editing stories dynamically. +Starting in SB 6.0, the `Props` block has built-in `Controls` (formerly known as "knobs") for editing stories dynamically.
@@ -155,20 +148,18 @@ export const Batch = ({ labels, padding }) => ( In this case, the args are basically unrelated to the underlying component's props, and are instead related to the individual story. To generate a prop table for the story, you can configure the Story's metadata: ```js -Batch.story = { - argTypes: { - labels: { - description: 'A comma-separated list of labels to display', - defaultValue: 'a,b,c', - control: { type: 'array' } - } - padding: { - description: 'The padding to space out labels int he story', - defaultValue: 4, - control: { type: 'range', min: 0, max: 20, step: 2 }, - } - } -} +Batch.argTypes = { + labels: { + description: 'A comma-separated list of labels to display', + defaultValue: 'a,b,c', + control: { type: 'array' }, + }, + padding: { + description: 'The padding to space out labels int he story', + defaultValue: 4, + control: { type: 'range', min: 0, max: 20, step: 2 }, + }, +}; ``` In this case, the user-specified `argTypes` are not a subset of the component's props, so Storybook shows ONLY the user-specified `argTypes`, and shows the component's props (without controls) in a separate tab. @@ -197,57 +188,13 @@ If the problem appears to be an issue with the sub-package, please file an issue This package relies on a variety of sub-packages to extract property information from components. Many of the bugs in this package correspond to bugs in a sub-package. Since we don't maintain the sub-packages, the best we can do for now is (1) document these limitations, (2) provide clean reproductions to the sub-package, (3) optionally provide PRs to those packages to fix the problems. -### React - -SB Docs for React uses `babel-plugin-react-docgen`/`react-docgen` for both JS PropTypes prop tables and, as of 6.0, TypeScript-driven props tables. - -#### Fully support React.FC - -The biggest known issue is https://github.com/reactjs/react-docgen/issues/387, which means that the following common pattern **DOESN'T WORK**: - -```tsx -import React, { FC } from 'react'; -interface IProps { ... }; -const MyComponent: FC = ({ ... }) => ... -``` - -The following workaround is needed: - -```tsx -const MyComponent: FC = ({ ... }: IProps) => ... -``` - -Please upvote https://github.com/reactjs/react-docgen/issues/387 if this is affecting your productivity, or better yet, submit a fix! - -#### Imported types - -Another major issue is support for imported types. - -```js -import React, { FC } from 'react'; -import SomeType from './someFile'; - -type NewType = SomeType & { foo: string }; -const MyComponent: FC = ... -``` - -This was also an issue in RDTL so it doesn't get worse with `react-docgen`. There's an open PR for this https://github.com/reactjs/react-docgen/pull/352 which you can upvote if it affects you. - -### Vue - -SB Docs for Vue uses `vue-docgen-loader`/`vue-docgen-api` for SFC and JSX components. - -### Angular - -SB Docs for Angular uses `compodoc` for prop table information. - -### Web components - -SB Docs for Web-components uses `custom-elements.json` for prop table information. - -### Ember - -SB Docs for Ember uses `yui-doc` for prop table information. +| Framework | Underlying library | Docs | Open issues | +| -------------- | ---------------------------------------- | ------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| React | `react-docgen` `react-docgen-typescript` | [Docs](../react/README.md#props-tables) | [Open issues](https://github.com/storybookjs/storybook/issues?q=is%3Aopen+is%3Aissue+label%3A%22block%3A+props%22+label%3Abug+label%3A%22app%3A+react%22) | +| Vue | `vue-docgen-api` | [Docs](../vue/README.md#props-tables) | [Open issues](https://github.com/storybookjs/storybook/issues?q=is%3Aopen+is%3Aissue+label%3A%22block%3A+props%22+label%3Abug+label%3A%22app%3A+vue%22) | +| Angular | `compodoc` | [Docs](../angular/README.md#props-tables) | [Open issues](https://github.com/storybookjs/storybook/issues?q=is%3Aopen+is%3Aissue+label%3A%22block%3A+props%22+label%3Abug+label%3A%22app%3A+angular%22) | +| Web-components | `custom-elements.json` | [Docs](../web-components/README.md#props-tables) | [Open issues](https://github.com/storybookjs/storybook/issues?q=is%3Aopen+is%3Aissue+label%3A%22block%3A+props%22+label%3Abug+label%3A%22app%3A+web-components%22) | +| Ember | `yui-doc` | [Docs](../ember/README.md#props-tables) | [Open issues](https://github.com/storybookjs/storybook/issues?q=is%3Aopen+is%3Aissue+label%3A%22block%3A+props%22+label%3Abug+label%3A%22app%3A+ember%22) | ## More resources diff --git a/addons/docs/docs/recipes.md b/addons/docs/docs/recipes.md index c514e37f036..5ee6a4ee1c5 100644 --- a/addons/docs/docs/recipes.md +++ b/addons/docs/docs/recipes.md @@ -51,8 +51,8 @@ export default { }; export const basic = () => ; -basic.story = { - parameters: { foo: 'bar' }, +basic.parameters = { + foo: 'bar', }; ``` @@ -199,7 +199,7 @@ User defines stories in CSF and renders docs using DocsPage, but wishes to exclu ```js export const foo = () => ; -foo.story = { parameters: { docs: { disable: true } } }; +foo.parameters = { docs: { disable: true } }; ``` ### MDX Stories @@ -220,11 +220,9 @@ Based on user feedback, it's also possible to control the view mode for an indiv ```js export const Foo = () => ; -Foo.story = { - parameters: { - // reset the view mode to "story" whenever the user navigates to this story - viewMode: 'story', - }, +Foo.parameters = { + // reset the view mode to "story" whenever the user navigates to this story + viewMode: 'story', }; ``` @@ -245,10 +243,8 @@ If you override the `docs.source.code` parameter, the `Source` block will render ```js const Example = () => ; -componentNotes.story = {}; -componentNotes.story.name = 'component notes'; -componentNotes.story.parameters = { storySource: { source: '' } }; +componentNotes.storyName = 'component notes'; +componentNotes.parameters = { storySource: { source: '' } }; const componentMeta = { title: 'Button', diff --git a/addons/docs/src/mdx/__testfixtures__/component-id.output.snapshot b/addons/docs/src/mdx/__testfixtures__/component-id.output.snapshot index 99349f78adf..c0ce6f96d3f 100644 --- a/addons/docs/src/mdx/__testfixtures__/component-id.output.snapshot +++ b/addons/docs/src/mdx/__testfixtures__/component-id.output.snapshot @@ -33,9 +33,8 @@ function MDXContent({ components, ...props }) { MDXContent.isMDXComponent = true; export const componentNotes = () => ; -componentNotes.story = {}; -componentNotes.story.name = 'component notes'; -componentNotes.story.parameters = { storySource: { source: '' } }; +componentNotes.storyName = 'component notes'; +componentNotes.parameters = { storySource: { source: '' } }; const componentMeta = { title: 'Button', diff --git a/addons/docs/src/mdx/__testfixtures__/decorators.output.snapshot b/addons/docs/src/mdx/__testfixtures__/decorators.output.snapshot index 8f5cd338f61..b79d26aa359 100644 --- a/addons/docs/src/mdx/__testfixtures__/decorators.output.snapshot +++ b/addons/docs/src/mdx/__testfixtures__/decorators.output.snapshot @@ -52,10 +52,9 @@ function MDXContent({ components, ...props }) { MDXContent.isMDXComponent = true; export const one = () => ; -one.story = {}; -one.story.name = 'one'; -one.story.parameters = { storySource: { source: '' } }; -one.story.decorators = [(storyFn) =>
{storyFn()}
]; +one.storyName = 'one'; +one.parameters = { storySource: { source: '' } }; +one.decorators = [(storyFn) =>
{storyFn()}
]; const componentMeta = { title: 'Button', diff --git a/addons/docs/src/mdx/__testfixtures__/docs-only.output.snapshot b/addons/docs/src/mdx/__testfixtures__/docs-only.output.snapshot index 22b6f0ffd24..9b920702c18 100644 --- a/addons/docs/src/mdx/__testfixtures__/docs-only.output.snapshot +++ b/addons/docs/src/mdx/__testfixtures__/docs-only.output.snapshot @@ -38,7 +38,7 @@ export const __page = () => { throw new Error('Docs-only story'); }; -__page.story = { parameters: { docsOnly: true } }; +__page.parameters = { docsOnly: true }; const componentMeta = { title: 'docs-only', includeStories: ['__page'] }; diff --git a/addons/docs/src/mdx/__testfixtures__/meta-quotes-in-title.output.snapshot b/addons/docs/src/mdx/__testfixtures__/meta-quotes-in-title.output.snapshot index 8390bcd785c..48f6b3857e4 100644 --- a/addons/docs/src/mdx/__testfixtures__/meta-quotes-in-title.output.snapshot +++ b/addons/docs/src/mdx/__testfixtures__/meta-quotes-in-title.output.snapshot @@ -32,7 +32,7 @@ export const __page = () => { throw new Error('Docs-only story'); }; -__page.story = { parameters: { docsOnly: true } }; +__page.parameters = { docsOnly: true }; const componentMeta = { title: \\"Addons/Docs/what's in a title?\\", includeStories: ['__page'] }; diff --git a/addons/docs/src/mdx/__testfixtures__/non-story-exports.output.snapshot b/addons/docs/src/mdx/__testfixtures__/non-story-exports.output.snapshot index 636ba74022c..10a7d2266b0 100644 --- a/addons/docs/src/mdx/__testfixtures__/non-story-exports.output.snapshot +++ b/addons/docs/src/mdx/__testfixtures__/non-story-exports.output.snapshot @@ -40,14 +40,12 @@ function MDXContent({ components, ...props }) { MDXContent.isMDXComponent = true; export const one = () => ; -one.story = {}; -one.story.name = 'one'; -one.story.parameters = { storySource: { source: '' } }; +one.storyName = 'one'; +one.parameters = { storySource: { source: '' } }; export const helloStory = () => ; -helloStory.story = {}; -helloStory.story.name = 'hello story'; -helloStory.story.parameters = { storySource: { source: '' } }; +helloStory.storyName = 'hello story'; +helloStory.parameters = { storySource: { source: '' } }; const componentMeta = { title: 'Button', includeStories: ['one', 'helloStory'] }; diff --git a/addons/docs/src/mdx/__testfixtures__/parameters.output.snapshot b/addons/docs/src/mdx/__testfixtures__/parameters.output.snapshot index 2997e2174c8..15ef9b0d4cc 100644 --- a/addons/docs/src/mdx/__testfixtures__/parameters.output.snapshot +++ b/addons/docs/src/mdx/__testfixtures__/parameters.output.snapshot @@ -49,14 +49,12 @@ function MDXContent({ components, ...props }) { MDXContent.isMDXComponent = true; export const componentNotes = () => ; -componentNotes.story = {}; -componentNotes.story.name = 'component notes'; -componentNotes.story.parameters = { storySource: { source: '' } }; +componentNotes.storyName = 'component notes'; +componentNotes.parameters = { storySource: { source: '' } }; export const storyNotes = () => ; -storyNotes.story = {}; -storyNotes.story.name = 'story notes'; -storyNotes.story.parameters = { +storyNotes.storyName = 'story notes'; +storyNotes.parameters = { storySource: { source: '' }, ...{ notes: 'story notes', diff --git a/addons/docs/src/mdx/__testfixtures__/previews.output.snapshot b/addons/docs/src/mdx/__testfixtures__/previews.output.snapshot index de56c22acaa..17b6711fa28 100644 --- a/addons/docs/src/mdx/__testfixtures__/previews.output.snapshot +++ b/addons/docs/src/mdx/__testfixtures__/previews.output.snapshot @@ -53,14 +53,12 @@ function MDXContent({ components, ...props }) { MDXContent.isMDXComponent = true; export const helloButton = () => ; -helloButton.story = {}; -helloButton.story.name = 'hello button'; -helloButton.story.parameters = { storySource: { source: '' } }; +helloButton.storyName = 'hello button'; +helloButton.parameters = { storySource: { source: '' } }; export const two = () => ; -two.story = {}; -two.story.name = 'two'; -two.story.parameters = { storySource: { source: '' } }; +two.storyName = 'two'; +two.parameters = { storySource: { source: '' } }; const componentMeta = { title: 'Button', diff --git a/addons/docs/src/mdx/__testfixtures__/story-args.output.snapshot b/addons/docs/src/mdx/__testfixtures__/story-args.output.snapshot index 93181c4aacc..ef73decd103 100644 --- a/addons/docs/src/mdx/__testfixtures__/story-args.output.snapshot +++ b/addons/docs/src/mdx/__testfixtures__/story-args.output.snapshot @@ -49,9 +49,8 @@ function MDXContent({ components, ...props }) { MDXContent.isMDXComponent = true; export const componentNotes = () => ; -componentNotes.story = {}; -componentNotes.story.name = 'component notes'; -componentNotes.story.argTypes = { +componentNotes.storyName = 'component notes'; +componentNotes.argTypes = { a: { name: 'A', }, @@ -59,11 +58,11 @@ componentNotes.story.argTypes = { name: 'B', }, }; -componentNotes.story.args = { +componentNotes.args = { a: 1, b: 2, }; -componentNotes.story.parameters = { storySource: { source: '' } }; +componentNotes.parameters = { storySource: { source: '' } }; const componentMeta = { title: 'Button', includeStories: ['componentNotes'] }; diff --git a/addons/docs/src/mdx/__testfixtures__/story-def-text-only.output.snapshot b/addons/docs/src/mdx/__testfixtures__/story-def-text-only.output.snapshot index 2ea1eac8200..b8029e35582 100644 --- a/addons/docs/src/mdx/__testfixtures__/story-def-text-only.output.snapshot +++ b/addons/docs/src/mdx/__testfixtures__/story-def-text-only.output.snapshot @@ -33,9 +33,8 @@ function MDXContent({ components, ...props }) { MDXContent.isMDXComponent = true; export const text = () => 'Plain text'; -text.story = {}; -text.story.name = 'text'; -text.story.parameters = { storySource: { source: \\"'Plain text'\\" } }; +text.storyName = 'text'; +text.parameters = { storySource: { source: \\"'Plain text'\\" } }; const componentMeta = { title: 'Text', includeStories: ['text'] }; diff --git a/addons/docs/src/mdx/__testfixtures__/story-definitions.output.snapshot b/addons/docs/src/mdx/__testfixtures__/story-definitions.output.snapshot index 59a02bdedb4..eb138416630 100644 --- a/addons/docs/src/mdx/__testfixtures__/story-definitions.output.snapshot +++ b/addons/docs/src/mdx/__testfixtures__/story-definitions.output.snapshot @@ -43,24 +43,20 @@ function MDXContent({ components, ...props }) { MDXContent.isMDXComponent = true; export const one = () => ; -one.story = {}; -one.story.name = 'one'; -one.story.parameters = { storySource: { source: '' } }; +one.storyName = 'one'; +one.parameters = { storySource: { source: '' } }; export const helloStory = () => ; -helloStory.story = {}; -helloStory.story.name = 'hello story'; -helloStory.story.parameters = { storySource: { source: '' } }; +helloStory.storyName = 'hello story'; +helloStory.parameters = { storySource: { source: '' } }; export const wPunctuation = () => ; -wPunctuation.story = {}; -wPunctuation.story.name = 'w/punctuation'; -wPunctuation.story.parameters = { storySource: { source: '' } }; +wPunctuation.storyName = 'w/punctuation'; +wPunctuation.parameters = { storySource: { source: '' } }; export const _1FineDay = () => ; -_1FineDay.story = {}; -_1FineDay.story.name = '1 fine day'; -_1FineDay.story.parameters = { storySource: { source: '' } }; +_1FineDay.storyName = '1 fine day'; +_1FineDay.parameters = { storySource: { source: '' } }; const componentMeta = { title: 'Button', diff --git a/addons/docs/src/mdx/__testfixtures__/story-function-var.output.snapshot b/addons/docs/src/mdx/__testfixtures__/story-function-var.output.snapshot index 1dbc262f146..aa80e8d0d73 100644 --- a/addons/docs/src/mdx/__testfixtures__/story-function-var.output.snapshot +++ b/addons/docs/src/mdx/__testfixtures__/story-function-var.output.snapshot @@ -37,9 +37,8 @@ function MDXContent({ components, ...props }) { MDXContent.isMDXComponent = true; export const basic = assertIsFn(basicFn); -basic.story = {}; -basic.story.name = 'basic'; -basic.story.parameters = { storySource: { source: 'basicFn' } }; +basic.storyName = 'basic'; +basic.parameters = { storySource: { source: 'basicFn' } }; const componentMeta = { title: 'story-function-var', includeStories: ['basic'] }; diff --git a/addons/docs/src/mdx/__testfixtures__/story-function.output.snapshot b/addons/docs/src/mdx/__testfixtures__/story-function.output.snapshot index 8e22bd13ba9..fd2ebef1d98 100644 --- a/addons/docs/src/mdx/__testfixtures__/story-function.output.snapshot +++ b/addons/docs/src/mdx/__testfixtures__/story-function.output.snapshot @@ -39,9 +39,8 @@ export const functionStory = () => { btn.addEventListener('click', action('Click')); return btn; }; -functionStory.story = {}; -functionStory.story.name = 'function'; -functionStory.story.parameters = { +functionStory.storyName = 'function'; +functionStory.parameters = { storySource: { source: \\"() => {\\\\n const btn = document.createElement('button');\\\\n btn.innerHTML = 'Hello Button';\\\\n btn.addEventListener('click', action('Click'));\\\\n return btn;\\\\n}\\", diff --git a/addons/docs/src/mdx/__testfixtures__/story-multiple-children.output.snapshot b/addons/docs/src/mdx/__testfixtures__/story-multiple-children.output.snapshot index 90340f85192..e760b63f1e6 100644 --- a/addons/docs/src/mdx/__testfixtures__/story-multiple-children.output.snapshot +++ b/addons/docs/src/mdx/__testfixtures__/story-multiple-children.output.snapshot @@ -39,9 +39,8 @@ export const multipleChildren = () => (

Hello Child #2

); -multipleChildren.story = {}; -multipleChildren.story.name = 'multiple children'; -multipleChildren.story.parameters = { +multipleChildren.storyName = 'multiple children'; +multipleChildren.parameters = { storySource: { source: '

Hello Child #1

\\\\n

Hello Child #2

' }, }; diff --git a/addons/docs/src/mdx/__testfixtures__/story-object.output.snapshot b/addons/docs/src/mdx/__testfixtures__/story-object.output.snapshot index 1a3490092c9..aab6752d89d 100644 --- a/addons/docs/src/mdx/__testfixtures__/story-object.output.snapshot +++ b/addons/docs/src/mdx/__testfixtures__/story-object.output.snapshot @@ -51,9 +51,8 @@ export const toStorybook = () => ({ declarations: [Welcome], }, }); -toStorybook.story = {}; -toStorybook.story.name = 'to storybook'; -toStorybook.story.parameters = { +toStorybook.storyName = 'to storybook'; +toStorybook.parameters = { storySource: { source: '{\\\\n template: \`\`,\\\\n props: {\\\\n showApp: linkTo(\\\\'Button\\\\')\\\\n },\\\\n moduleMetadata: {\\\\n declarations: [Welcome]\\\\n }\\\\n}', diff --git a/addons/docs/src/mdx/__testfixtures__/title-template-string.output.snapshot b/addons/docs/src/mdx/__testfixtures__/title-template-string.output.snapshot index 7d4d463ad80..bf2d68da561 100644 --- a/addons/docs/src/mdx/__testfixtures__/title-template-string.output.snapshot +++ b/addons/docs/src/mdx/__testfixtures__/title-template-string.output.snapshot @@ -33,7 +33,7 @@ export const __page = () => { throw new Error('Docs-only story'); }; -__page.story = { parameters: { docsOnly: true } }; +__page.parameters = { docsOnly: true }; const componentMeta = { title: \`\${titleFunction('template')}\`, includeStories: ['__page'] }; diff --git a/addons/docs/src/mdx/mdx-compiler-plugin.js b/addons/docs/src/mdx/mdx-compiler-plugin.js index 39f36407206..be7d6952ba2 100644 --- a/addons/docs/src/mdx/mdx-compiler-plugin.js +++ b/addons/docs/src/mdx/mdx-compiler-plugin.js @@ -102,16 +102,15 @@ function genStoryExport(ast, context) { } statements.push(`export const ${storyKey} = ${storyVal};`); - statements.push(`${storyKey}.story = {};`); // always preserve the name, since CSF exports can get modified by displayName - statements.push(`${storyKey}.story.name = '${storyName}';`); + statements.push(`${storyKey}.storyName = '${storyName}';`); const argTypes = genAttribute('argTypes', ast.openingElement); - if (argTypes) statements.push(`${storyKey}.story.argTypes = ${argTypes};`); + if (argTypes) statements.push(`${storyKey}.argTypes = ${argTypes};`); const args = genAttribute('args', ast.openingElement); - if (args) statements.push(`${storyKey}.story.args = ${args};`); + if (args) statements.push(`${storyKey}.args = ${args};`); let parameters = getAttr(ast.openingElement, 'parameters'); parameters = parameters && parameters.expression; @@ -119,16 +118,16 @@ function genStoryExport(ast, context) { const sourceParam = `storySource: { source: '${source}' }`; if (parameters) { const { code: params } = generate(parameters, {}); - statements.push(`${storyKey}.story.parameters = { ${sourceParam}, ...${params} };`); + statements.push(`${storyKey}.parameters = { ${sourceParam}, ...${params} };`); } else { - statements.push(`${storyKey}.story.parameters = { ${sourceParam} };`); + statements.push(`${storyKey}.parameters = { ${sourceParam} };`); } let decorators = getAttr(ast.openingElement, 'decorators'); decorators = decorators && decorators.expression; if (decorators) { const { code: decos } = generate(decorators, {}); - statements.push(`${storyKey}.story.decorators = ${decos};`); + statements.push(`${storyKey}.decorators = ${decos};`); } // eslint-disable-next-line no-param-reassign @@ -336,7 +335,7 @@ function extractExports(node, options) { if (metaExport) { if (!storyExports.length) { storyExports.push('export const __page = () => { throw new Error("Docs-only story"); };'); - storyExports.push('__page.story = { parameters: { docsOnly: true } };'); + storyExports.push('__page.parameters = { docsOnly: true };'); includeStories.push('__page'); } } else { diff --git a/addons/docs/vue/README.md b/addons/docs/vue/README.md index 3cb2204138c..925e4c7a3f2 100644 --- a/addons/docs/vue/README.md +++ b/addons/docs/vue/README.md @@ -13,6 +13,7 @@ To learn more about Storybook Docs, read the [general documentation](../README.m - [Installation](#installation) - [Preset options](#preset-options) - [DocsPage](#docspage) +- [Props tables](#props-tables) - [MDX](#mdx) - [Inline Stories](#inline-stories) - [More resources](#more-resources) @@ -62,7 +63,9 @@ The `vueDocgenOptions` is an object for configuring `vue-docgen-api`. See [`vue- When you [install docs](#installation) you should get basic [DocsPage](../docs/docspage.md) documentation automagically for all your stories, available in the `Docs` tab of the Storybook UI. -Props tables for your components requires a few more steps. Docs for Vue relies on [`vue-docgen-loader`](https://github.com/pocka/vue-docgen-loader). It supports `props`, `events`, and `slots` as first class prop types. +## Props tables + +Getting [Props tables](../docs/props-tables.md) for your components requires a few more steps. Docs for Vue relies on [`vue-docgen-loader`](https://github.com/pocka/vue-docgen-loader). It supports `props`, `events`, and `slots` as first class prop types. Finally, be sure to fill in the `component` field in your story metadata: diff --git a/addons/docs/web-components/README.md b/addons/docs/web-components/README.md index fdcb145b473..0f5cfb8c641 100644 --- a/addons/docs/web-components/README.md +++ b/addons/docs/web-components/README.md @@ -1,4 +1,9 @@ -# Storybook Docs for Web Components +

Storybook Docs for Web Components

+ +- [Installation](#installation) +- [Props tables](#props-tables) +- [Stories not inline](#stories-not-inline) +- [More resources](#more-resources) ## Installation @@ -22,9 +27,9 @@ }; ``` -### custom-elements.json +## Props tables -In order to get documentation for web-components you will need to have a [custom-elements.json](https://github.com/webcomponents/custom-elements-json) file. +In order to get [Props tables](..docs/../../docs/props-tables.md) documentation for web-components you will need to have a [custom-elements.json](https://github.com/webcomponents/custom-elements-json) file. You can hand write it or better generate it. Depending on the web components sugar you are choosing your milage may vary. @@ -44,7 +49,7 @@ To generate this file with Stencil, add `docs-vscode` to outputTargets in `stenc }, ``` -The file looks somewthing like this: +The file looks something like this: ```json { diff --git a/addons/essentials/package.json b/addons/essentials/package.json index 218d0b383b6..efb907d1c36 100644 --- a/addons/essentials/package.json +++ b/addons/essentials/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-essentials", - "version": "6.0.0-beta.12", + "version": "6.0.0-beta.14", "description": "Curated addons to bring out the best of Storybook", "keywords": [ "addon", @@ -28,13 +28,13 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addon-actions": "6.0.0-beta.12", - "@storybook/addon-backgrounds": "6.0.0-beta.12", - "@storybook/addon-docs": "6.0.0-beta.12", - "@storybook/addon-viewport": "6.0.0-beta.12", - "@storybook/addons": "6.0.0-beta.12", - "@storybook/api": "6.0.0-beta.12", - "@storybook/node-logger": "6.0.0-beta.12", + "@storybook/addon-actions": "6.0.0-beta.14", + "@storybook/addon-backgrounds": "6.0.0-beta.14", + "@storybook/addon-docs": "6.0.0-beta.14", + "@storybook/addon-viewport": "6.0.0-beta.14", + "@storybook/addons": "6.0.0-beta.14", + "@storybook/api": "6.0.0-beta.14", + "@storybook/node-logger": "6.0.0-beta.14", "core-js": "^3.0.1", "regenerator-runtime": "^0.13.3", "ts-dedent": "^1.1.1" diff --git a/addons/events/package.json b/addons/events/package.json index ec95f8679e7..eee61a82276 100644 --- a/addons/events/package.json +++ b/addons/events/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-events", - "version": "6.0.0-beta.12", + "version": "6.0.0-beta.14", "description": "Add events to your Storybook stories.", "keywords": [ "addon", @@ -31,11 +31,11 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "6.0.0-beta.12", - "@storybook/api": "6.0.0-beta.12", - "@storybook/client-api": "6.0.0-beta.12", - "@storybook/core-events": "6.0.0-beta.12", - "@storybook/theming": "6.0.0-beta.12", + "@storybook/addons": "6.0.0-beta.14", + "@storybook/api": "6.0.0-beta.14", + "@storybook/client-api": "6.0.0-beta.14", + "@storybook/core-events": "6.0.0-beta.14", + "@storybook/theming": "6.0.0-beta.14", "core-js": "^3.0.1", "format-json": "^1.0.3", "lodash": "^4.17.15", diff --git a/addons/google-analytics/package.json b/addons/google-analytics/package.json index fbfc0b314c4..702fe8eb3a4 100644 --- a/addons/google-analytics/package.json +++ b/addons/google-analytics/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-google-analytics", - "version": "6.0.0-beta.12", + "version": "6.0.0-beta.14", "description": "Storybook addon for google analytics", "keywords": [ "addon", @@ -20,8 +20,8 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "6.0.0-beta.12", - "@storybook/core-events": "6.0.0-beta.12", + "@storybook/addons": "6.0.0-beta.14", + "@storybook/core-events": "6.0.0-beta.14", "core-js": "^3.0.1", "global": "^4.3.2", "react-ga": "^2.5.7", diff --git a/addons/graphql/package.json b/addons/graphql/package.json index ceb8ba4d433..5d63438d07b 100644 --- a/addons/graphql/package.json +++ b/addons/graphql/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-graphql", - "version": "6.0.0-beta.12", + "version": "6.0.0-beta.14", "description": "Storybook addon to display the GraphiQL IDE", "keywords": [ "addon", @@ -31,8 +31,8 @@ "dependencies": { "@babel/core": "^7.9.0", "@babel/plugin-transform-classes": "^7.9.2", - "@storybook/addons": "6.0.0-beta.12", - "@storybook/api": "6.0.0-beta.12", + "@storybook/addons": "6.0.0-beta.14", + "@storybook/api": "6.0.0-beta.14", "@types/webpack": "^4.41.9", "babel-loader": "^8.0.6", "core-js": "^3.0.1", diff --git a/addons/jest/README.md b/addons/jest/README.md index c78ad31d620..d39272d310a 100644 --- a/addons/jest/README.md +++ b/addons/jest/README.md @@ -73,8 +73,8 @@ within `.storybook/main.js`: ```js module.exports = { - addons: ['@storybook/addon-jest'] -} + addons: ['@storybook/addon-jest'], +}; ``` ## Usage @@ -92,13 +92,9 @@ export default { decorators: [withTests({ results })], }; -export const defaultView = () => ( -
Jest results in storybook
-); -defaultView.story = { - parameters: { - jest: ['MyComponent.test.js', 'MyOtherComponent.test.js'], - }, +export const defaultView = () =>
Jest results in storybook
; +defaultView.parameters = { + jest: ['MyComponent.test.js', 'MyOtherComponent.test.js'], }; ``` @@ -126,13 +122,9 @@ export default { title: 'MyComponent', }; -export const defaultView = () => ( -
Jest results in storybook
-); -defaultView.story = { - parameters: { - jest: ['MyComponent.test.js', 'MyOtherComponent.test.js'], - }, +export const defaultView = () =>
Jest results in storybook
; +defaultView.parameters = { + jest: ['MyComponent.test.js', 'MyOtherComponent.test.js'], }; ``` @@ -147,13 +139,9 @@ export default { title: 'MyComponent', }; -export const defaultView = () => ( -
Jest results in storybook
-); -defaultView.story = { - parameters: { - jest: { disable: true }, - }, +export const defaultView = () =>
Jest results in storybook
; +defaultView.parameters = { + jest: { disable: true }, }; ``` diff --git a/addons/jest/package.json b/addons/jest/package.json index e323fc93e9c..66300b5b729 100644 --- a/addons/jest/package.json +++ b/addons/jest/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-jest", - "version": "6.0.0-beta.12", + "version": "6.0.0-beta.14", "description": "React storybook addon that show component jest report", "keywords": [ "addon", @@ -35,11 +35,11 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "6.0.0-beta.12", - "@storybook/api": "6.0.0-beta.12", - "@storybook/components": "6.0.0-beta.12", - "@storybook/core-events": "6.0.0-beta.12", - "@storybook/theming": "6.0.0-beta.12", + "@storybook/addons": "6.0.0-beta.14", + "@storybook/api": "6.0.0-beta.14", + "@storybook/components": "6.0.0-beta.14", + "@storybook/core-events": "6.0.0-beta.14", + "@storybook/theming": "6.0.0-beta.14", "core-js": "^3.0.1", "global": "^4.3.2", "react": "^16.8.3", diff --git a/addons/knobs/README.md b/addons/knobs/README.md index 223fee37eb0..a7bcd2683c4 100644 --- a/addons/knobs/README.md +++ b/addons/knobs/README.md @@ -23,35 +23,34 @@ within `.storybook/main.js`: ```js module.exports = { - addons: ['@storybook/addon-knobs'] -} + addons: ['@storybook/addon-knobs'], +}; ``` Now, write your stories with Knobs. ### With React + ```js -import React from "react"; -import { withKnobs, text, boolean, number } from "@storybook/addon-knobs"; +import React from 'react'; +import { withKnobs, text, boolean, number } from '@storybook/addon-knobs'; export default { - title: "Storybook Knobs", - decorators: [withKnobs] + title: 'Storybook Knobs', + decorators: [withKnobs], }; // Add the `withKnobs` decorator to add knobs support to your stories. // You can also configure `withKnobs` as a global decorator. // Knobs for React props export const withAButton = () => ( - + ); // Knobs as dynamic variables. export const asDynamicVariables = () => { - const name = text("Name", "James"); - const age = number("Age", 35); + const name = text('Name', 'James'); + const age = number('Age', 35); const content = `I am ${name} and I'm ${age} years old.`; return
{content}
; @@ -59,7 +58,9 @@ export const asDynamicVariables = () => { ``` ### With Vue.js + MyButton.story.js: + ```js import { storiesOf } from '@storybook/vue'; import { withKnobs, text, boolean } from '@storybook/addon-knobs'; @@ -67,8 +68,8 @@ import { withKnobs, text, boolean } from '@storybook/addon-knobs'; import MyButton from './MyButton.vue'; export default { - title: "Storybook Knobs", - decorators: [withKnobs] + title: 'Storybook Knobs', + decorators: [withKnobs], }; // Assign `props` to the story's component, calling @@ -80,17 +81,18 @@ export const exampleWithKnobs = () => ({ components: { MyButton }, props: { isDisabled: { - default: boolean('Disabled', false) + default: boolean('Disabled', false), }, text: { - default: text('Text', 'Hello Storybook') - } + default: text('Text', 'Hello Storybook'), + }, }, - template: `{{ text }}` + template: `{{ text }}`, }); ``` MyButton.vue: + ```vue