diff --git a/docs/snippets/vue/app-story-with-mock.js.mdx b/docs/snippets/vue/app-story-with-mock.js.mdx index f6266eb076a..6890cf9d796 100644 --- a/docs/snippets/vue/app-story-with-mock.js.mdx +++ b/docs/snippets/vue/app-story-with-mock.js.mdx @@ -5,34 +5,39 @@ import App from './App.vue'; export default { /* πŸ‘‡ The title prop is optional. - * See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading - * to learn how to generate automatic titles - */ + * See https://storybook.js.org/docs/7.0/vue/configure/overview#configure-story-loading + * to learn how to generate automatic titles + */ title: 'App', component: App, }; +/* + *πŸ‘‡ Render functions are a framework specific feature to allow you control on how the component renders. + * See https://storybook.js.org/docs/7.0/vue/api/csf + * to learn how to use render functions. + */ -const Template = () => ({ - components: { App }, - template: '', -}); - -export const Success = Template.bind({}); -Success.parameters = { - fetch: { - json: { - JavaScript: 3390991, - "C++": 44974, - TypeScript: 15530, - CoffeeScript: 12253, - Python: 9383, - C: 5341, - Shell: 5115, - HTML: 3420, - CSS: 3171, - Makefile: 189 - } - } +export const Success = { + parameters: { + fetch: { + json: { + JavaScript: 3390991, + 'C++': 44974, + TypeScript: 15530, + CoffeeScript: 12253, + Python: 9383, + C: 5341, + Shell: 5115, + HTML: 3420, + CSS: 3171, + Makefile: 189, + }, + }, + }, + render: (args) => ({ + components: { App }, + template: '', + }), }; ``` \ No newline at end of file diff --git a/docs/snippets/vue/badge-story-starter-example.mdx.mdx b/docs/snippets/vue/badge-story-starter-example.mdx.mdx index 3b228d2840a..8dc01331a33 100644 --- a/docs/snippets/vue/badge-story-starter-example.mdx.mdx +++ b/docs/snippets/vue/badge-story-starter-example.mdx.mdx @@ -8,30 +8,32 @@ import Icon from './Icon.vue'; + + # Badge Let's define a story for our `Badge` component: - - {() => { - return { - components: { Badge }, - template: `Positive`, - }; - }} - + ({ + components: { Badge }, + template: `Positive`, + })} /> We can drop it in a `Canvas` to get a code snippet: - - {() => { - return { - components: { Badge }, - template: `Negative`, - }; - }} - + ({ + components: { Badge }, + template: `Negative`, + })} /> We can even preview multiple stories in a block. This @@ -39,41 +41,33 @@ gets rendered as a group, but defines individual stories with unique URLs and isolated snapshot tests. - - {() => { - return { - components: { Badge }, - template: `Warning`, - }; - }} - - - {() => { - return { - components: { Badge }, - template: `Neutral`, - }; - }} - - - {() => { - return { - components: { Badge }, - template: `Error`, - }; - }} - - - {() => { - return { - components: { Badge, Icon }, - template: ` - - - with icon - `, - }; - }} - + ({ + components: { Badge }, + template: `Warning`, + })} /> + ({ + components: { Badge }, + template: `Neutral`, + })} /> + ({ + components: { Badge }, + template: `Error`, + })} /> + ({ + components: { Badge, Icon }, + template: ` + + + with icon + `, + })} /> ``` \ No newline at end of file diff --git a/docs/snippets/vue/badge-story.mdx-2.mdx.mdx b/docs/snippets/vue/badge-story.mdx-2.mdx.mdx index 32ed8f0726b..464655e4279 100644 --- a/docs/snippets/vue/badge-story.mdx-2.mdx.mdx +++ b/docs/snippets/vue/badge-story.mdx-2.mdx.mdx @@ -7,24 +7,27 @@ import Badge from './Badge.vue'; -export const Template = (args, { argTypes }) => ({ - props: Object.keys(argTypes), - components: { Badge }, - template: '', -}); + # Badge Let's define a story for our `Badge` component: - - {Template.bind({})} - + }} + render={(args, { argTypes }) => ({ + props: Object.keys(argTypes), + components: { Badge }, + template: '', + })} /> We can drop it in a `Canvas` to get a code snippet: @@ -34,9 +37,12 @@ We can drop it in a `Canvas` to get a code snippet: args={{ status: 'negative', label: 'Negative', - }}> - {Template.bind({})} - + }} + render={(args, { argTypes }) => ({ + props: Object.keys(argTypes), + components: { Badge }, + template: '', + })} /> We can even preview multiple Stories in a block. This @@ -49,24 +55,33 @@ with unique URLs, which is great for review and testing. args={{ status: 'warning', label: 'Warning', - }}> - {Template.bind({})} - + }} + render={(args, { argTypes }) => ({ + props: Object.keys(argTypes), + components: { Badge }, + template: '', + })} /> - {Template.bind({})} - + }} + render={(args, { argTypes }) => ({ + props: Object.keys(argTypes), + components: { Badge }, + template: '', + })} /> - {Template.bind({})} - + }} + render={(args, { argTypes }) => ({ + props: Object.keys(argTypes), + components: { Badge }, + template: '', + })} /> ``` \ No newline at end of file diff --git a/docs/snippets/vue/badge-story.mdx-3.mdx.mdx b/docs/snippets/vue/badge-story.mdx-3.mdx.mdx index d4909ef78c7..b6010a1cd55 100644 --- a/docs/snippets/vue/badge-story.mdx-3.mdx.mdx +++ b/docs/snippets/vue/badge-story.mdx-3.mdx.mdx @@ -7,13 +7,11 @@ import Badge from './Badge.vue'; -export const Template = (args) => ({ - components: { Badge }, - setup() { - return { args }; - }, - template: '', -}); + # Badge @@ -24,9 +22,14 @@ Let's define a story for our `Badge` component: args={{ status: 'positive', label: 'Positive' - }}> - {Template.bind({})} - + }} + render={(args) => ({ + components: { Badge }, + setup() { + return { args }; + }, + template: '', + })} /> We can drop it in a `Canvas` to get a code snippet: @@ -36,9 +39,14 @@ We can drop it in a `Canvas` to get a code snippet: args={{ status: 'negative', label: 'Negative', - }}> - {Template.bind({})} - + }} + render={(args) => ({ + components: { Badge }, + setup() { + return { args }; + }, + template: '', + })} /> We can even preview multiple Stories in a block. This @@ -51,24 +59,39 @@ with unique URLs, which is great for review and testing. args={{ status: 'warning', label: 'Warning', - }}> - {Template.bind({})} - + }} + render={(args) => ({ + components: { Badge }, + setup() { + return { args }; + }, + template: '', + })} /> - {Template.bind({})} - + }} + render={(args) => ({ + components: { Badge }, + setup() { + return { args }; + }, + template: '', + })} /> - {Template.bind({})} - + }} + render={(args) => ({ + components: { Badge }, + setup() { + return { args }; + }, + template: '', + })} /> ``` \ No newline at end of file diff --git a/docs/snippets/vue/button-group-story.2.js.mdx b/docs/snippets/vue/button-group-story.2.js.mdx index a083bfbce03..62e2e493416 100644 --- a/docs/snippets/vue/button-group-story.2.js.mdx +++ b/docs/snippets/vue/button-group-story.2.js.mdx @@ -8,25 +8,27 @@ import * as ButtonStories from './Button.stories'; export default { /* πŸ‘‡ The title prop is optional. - * See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading - * to learn how to generate automatic titles - */ + * See https://storybook.js.org/docs/7.0/vue/configure/overview#configure-story-loading + * to learn how to generate automatic titles + */ title: 'ButtonGroup', component: ButtonGroup, }; -const Template = (args, { argTypes }) => ({ - components: { ButtonGroup }, - props: Object.keys(argTypes), - template: '', -}); - -export const Pair = Template.bind({}); -Pair.args = { - buttons: [ - { ...ButtonStories.Primary.args }, - { ...ButtonStories.Secondary.args } - ], - orientation: 'horizontal', +/* + *πŸ‘‡ Render functions are a framework specific feature to allow you control on how the component renders. + * See https://storybook.js.org/docs/7.0/vue/api/csf + * to learn how to use render functions. + */ +export const Pair = { + render: (args, { argTypes }) => ({ + components: { ButtonGroup }, + props: Object.keys(argTypes), + template: '', + }), + args: { + buttons: [{ ...ButtonStories.Primary.args }, { ...ButtonStories.Secondary.args }], + orientation: 'horizontal', + }, }; ``` \ No newline at end of file diff --git a/docs/snippets/vue/button-group-story.3.js.mdx b/docs/snippets/vue/button-group-story.3.js.mdx index 6197ffd73ae..f4f074c61a1 100644 --- a/docs/snippets/vue/button-group-story.3.js.mdx +++ b/docs/snippets/vue/button-group-story.3.js.mdx @@ -8,27 +8,29 @@ import * as ButtonStories from './Button.stories'; export default { /* πŸ‘‡ The title prop is optional. - * See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading - * to learn how to generate automatic titles - */ + * See https://storybook.js.org/docs/7.0/vue/configure/overview#configure-story-loading + * to learn how to generate automatic titles + */ title: 'ButtonGroup', component: ButtonGroup, }; -const Template = (args) => ({ - components: { ButtonGroup }, - setup() { - return { args }; +/* + *πŸ‘‡ Render functions are a framework specific feature to allow you control on how the component renders. + * See https://storybook.js.org/docs/7.0/vue/api/csf + * to learn how to use render functions. + */ +export const Pair = { + render: (args) => ({ + components: { ButtonGroup }, + setup() { + return { args }; + }, + template: '', + }), + args: { + buttons: [{ ...ButtonStories.Primary.args }, { ...ButtonStories.Secondary.args }], + orientation: 'horizontal', }, - template: '', -}); - -export const Pair = Template.bind({}); -Pair.args = { - buttons: [ - { ...ButtonStories.Primary.args }, - { ...ButtonStories.Secondary.args } - ], - orientation: 'horizontal', }; ``` \ No newline at end of file diff --git a/docs/snippets/vue/button-group-story.ts-2.ts.mdx b/docs/snippets/vue/button-group-story.ts-2.ts.mdx index d0e1eb3adad..b55030242c7 100644 --- a/docs/snippets/vue/button-group-story.ts-2.ts.mdx +++ b/docs/snippets/vue/button-group-story.ts-2.ts.mdx @@ -10,7 +10,7 @@ import * as ButtonStories from './Button.stories'; export default { /* πŸ‘‡ The title prop is optional. - * See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading + * See https://storybook.js.org/docs/7.0/vue/configure/overview#configure-story-loading * to learn how to generate automatic titles */ title: 'ButtonGroup', diff --git a/docs/snippets/vue/button-group-story.ts-3.ts.mdx b/docs/snippets/vue/button-group-story.ts-3.ts.mdx index 91b68cc272f..c6bb2b46420 100644 --- a/docs/snippets/vue/button-group-story.ts-3.ts.mdx +++ b/docs/snippets/vue/button-group-story.ts-3.ts.mdx @@ -3,31 +3,31 @@ import ButtonGroup from './ButtonGroup.vue'; -import { Meta, StoryFn } from '@storybook/vue3'; +import type { Meta, Story } from '@storybook/vue3'; //πŸ‘‡ Imports the Button stories import * as ButtonStories from './Button.stories'; export default { /* πŸ‘‡ The title prop is optional. - * See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading + * See https://storybook.js.org/docs/7.0/vue/configure/overview#configure-story-loading * to learn how to generate automatic titles */ title: 'ButtonGroup', component: ButtonGroup, } as Meta; -const Template: StoryFn = (args) => ({ - components: { ButtonGroup }, - setup() { - return { args }; +export const Pair: Story = { + render: (args) => ({ + components: { ButtonGroup }, + setup() { + return { args }; + }, + template: '', + }), + args: { + buttons: [{ ...ButtonStories.Primary.args }, { ...ButtonStories.Secondary.args }], + orientation: 'horizontal', }, - template: '', -}); - -export const Pair = Template.bind({}); -Pair.args = { - buttons: [{ ...ButtonStories.Primary.args }, { ...ButtonStories.Secondary.args }], - orientation: 'horizontal', }; ``` \ No newline at end of file diff --git a/docs/snippets/vue/button-story-click-handler-args.2.js.mdx b/docs/snippets/vue/button-story-click-handler-args.2.js.mdx index 703274ec557..ee3c22d82d2 100644 --- a/docs/snippets/vue/button-story-click-handler-args.2.js.mdx +++ b/docs/snippets/vue/button-story-click-handler-args.2.js.mdx @@ -7,21 +7,22 @@ import { action } from '@storybook/addon-actions'; export default { /* πŸ‘‡ The title prop is optional. - * See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading - * to learn how to generate automatic titles - */ + * See https://storybook.js.org/docs/7.0/vue/configure/overview#configure-story-loading + * to learn how to generate automatic titles + */ title: 'Button', component: Button, }; -export const Text = (args, { argTypes }) => ({ - props: Object.keys(argTypes), - components: { Button }, - template: '