From adfd56a340d1dd508bd433131a98ee5a72a1ac6b Mon Sep 17 00:00:00 2001 From: Nathan Brown Date: Fri, 1 Mar 2024 11:56:20 -0500 Subject: [PATCH] Update links to Storybook documentation --- src/story.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/story.ts b/src/story.ts index 5841ddb..bc46144 100644 --- a/src/story.ts +++ b/src/story.ts @@ -198,7 +198,7 @@ export type BaseAnnotations * Wrapper components or Storybook decorators that wrap a story. * * Decorators defined in Meta will be applied to every story variation. - * @see [Decorators](https://storybook.js.org/docs/addons/introduction/#1-decorators) + * @see [Decorators](https://storybook.js.org/docs/writing-stories/decorators) */ decorators?: | DecoratorFunction>[] @@ -206,25 +206,25 @@ export type BaseAnnotations /** * Custom metadata for a story. - * @see [Parameters](https://storybook.js.org/docs/basics/writing-stories/#parameters) + * @see [Parameters](https://storybook.js.org/docs/writing-stories/parameters) */ parameters?: Parameters; /** * Dynamic data that are provided (and possibly updated by) Storybook and its addons. - * @see [Arg story inputs](https://storybook.js.org/docs/react/api/csf#args-story-inputs) + * @see [Args](https://storybook.js.org/docs/writing-stories/args) */ args?: Partial; /** * ArgTypes encode basic metadata for args, such as `name`, `description`, `defaultValue` for an arg. These get automatically filled in by Storybook Docs. - * @see [Control annotations](https://github.com/storybookjs/storybook/blob/91e9dee33faa8eff0b342a366845de7100415367/addons/controls/README.md#control-annotations) + * @see [ArgTypes](https://storybook.js.org/docs/api/arg-types) */ argTypes?: Partial>; /** * Asynchronous functions which provide data for a story. - * @see [Loaders](https://storybook.js.org/docs/react/writing-stories/loaders) + * @see [Loaders](https://storybook.js.org/docs/writing-stories/loaders) */ loaders?: LoaderFunction[] | LoaderFunction; @@ -262,7 +262,7 @@ export interface ComponentAnnotations