diff --git a/examples/vue-3-cli/src/stories/OverrideArgs.stories.js b/examples/vue-3-cli/src/stories/OverrideArgs.stories.js new file mode 100644 index 00000000000..3555d47daa1 --- /dev/null +++ b/examples/vue-3-cli/src/stories/OverrideArgs.stories.js @@ -0,0 +1,43 @@ +import OverrideArgs from './OverrideArgs.vue'; + +// Emulate something that isn't serializable +const icons = { + Primary: { + template: 'Primary Icon', + }, + Secondary: { + template: 'Secondary Icon', + }, +}; + +export default { + title: 'Example/Override Args', + component: OverrideArgs, + argTypes: { + // To show that other props are passed through + backgroundColor: { control: 'color' }, + icon: { + control: { + type: 'select', + options: Object.keys(icons), + }, + defaultValue: 'Primary', + }, + }, +}; + +const Template = (args, { argTypes }) => { + return { + props: Object.keys(argTypes), + components: { OverrideArgs }, + template: '', + setup(props) { + return { + icon: icons[props.icon], + }; + }, + }; +}; + +export const TestOne = Template.bind({}); +export const TestTwo = Template.bind({}); diff --git a/examples/vue-3-cli/src/stories/OverrideArgs.vue b/examples/vue-3-cli/src/stories/OverrideArgs.vue new file mode 100644 index 00000000000..b98424b021f --- /dev/null +++ b/examples/vue-3-cli/src/stories/OverrideArgs.vue @@ -0,0 +1,41 @@ + + + diff --git a/lib/addons/src/types.ts b/lib/addons/src/types.ts index cc8f3726601..445e8b5731c 100644 --- a/lib/addons/src/types.ts +++ b/lib/addons/src/types.ts @@ -166,7 +166,7 @@ export type BaseDecorators = Array< export interface BaseAnnotations { /** * Dynamic data that are provided (and possibly updated by) Storybook and its addons. - * @see [Arg story inputs](https://github.com/storybookjs/storybook/blob/next/docs/src/pages/formats/component-story-format/index.md#args-story-inputs) + * @see [Arg story inputs](https://storybook.js.org/docs/react/api/csf#args-story-inputs) */ args?: Partial; diff --git a/lib/components/src/Zoom/Zoom.stories.tsx b/lib/components/src/Zoom/Zoom.stories.tsx index 2ac2ca0942a..d6a34819af6 100644 --- a/lib/components/src/Zoom/Zoom.stories.tsx +++ b/lib/components/src/Zoom/Zoom.stories.tsx @@ -10,7 +10,7 @@ export default { }, }, parameters: { - chromatic: { delay: 300 }, + chromatic: { delay: 500, diffThreshold: 0.2 }, }, }; const EXAMPLE_ELEMENT = (