Adopt T prefix for generics in all renderers

This commit is contained in:
Kasper Peulen 2022-10-26 11:40:15 +02:00
parent 0d3b8280d5
commit eed8bdcdf4
8 changed files with 36 additions and 28 deletions

View File

@ -30,7 +30,8 @@ export type StoryFn<TArgs = Args> = AnnotatedStoryFn<AngularFramework, TArgs>;
export type StoryObj<TArgs = Args> = StoryAnnotations<AngularFramework, TArgs>; export type StoryObj<TArgs = Args> = StoryAnnotations<AngularFramework, TArgs>;
/** /**
* @deprecated Use `StoryFn` instead. Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories. * @deprecated Use `StoryFn` instead.
* Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories.
* You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/ * You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/
* *
* Story function that represents a CSFv2 component example. * Story function that represents a CSFv2 component example.

View File

@ -30,7 +30,8 @@ export type StoryFn<TArgs = Args> = AnnotatedStoryFn<HtmlFramework, TArgs>;
export type StoryObj<TArgs = Args> = StoryAnnotations<HtmlFramework, TArgs>; export type StoryObj<TArgs = Args> = StoryAnnotations<HtmlFramework, TArgs>;
/** /**
* @deprecated Use `StoryFn` instead. Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories. * @deprecated Use `StoryFn` instead.
* Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories.
* You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/ * You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/
* *
* Story function that represents a CSFv2 component example. * Story function that represents a CSFv2 component example.

View File

@ -30,7 +30,8 @@ export type StoryFn<TArgs = Args> = AnnotatedStoryFn<PreactFramework, TArgs>;
export type StoryObj<TArgs = Args> = StoryAnnotations<PreactFramework, TArgs>; export type StoryObj<TArgs = Args> = StoryAnnotations<PreactFramework, TArgs>;
/** /**
* @deprecated Use `StoryFn` instead. Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories. * @deprecated Use `StoryFn` instead.
* Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories.
* You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/ * You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/
* *
* Story function that represents a CSFv2 component example. * Story function that represents a CSFv2 component example.

View File

@ -102,7 +102,8 @@ export type ComponentStoryFn<T extends JSXElement> = StoryFn<ComponentProps<T>>;
export type ComponentStoryObj<T extends JSXElement> = StoryObj<ComponentProps<T>>; export type ComponentStoryObj<T extends JSXElement> = StoryObj<ComponentProps<T>>;
/** /**
* @deprecated Use `StoryFn` instead. Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories. * @deprecated Use `StoryFn` instead.
* Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories.
* You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/ * You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/
* *
* Story function that represents a CSFv2 component example. * Story function that represents a CSFv2 component example.

View File

@ -30,7 +30,8 @@ export type StoryFn<TArgs = Args> = AnnotatedStoryFn<ServerFramework, TArgs>;
export type StoryObj<TArgs = Args> = StoryAnnotations<ServerFramework, TArgs>; export type StoryObj<TArgs = Args> = StoryAnnotations<ServerFramework, TArgs>;
/** /**
* @deprecated Use `StoryFn` instead. Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories. * @deprecated Use `StoryFn` instead.
* Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories.
* You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/ * You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/
* *
* Story function that represents a CSFv2 component example. * Story function that represents a CSFv2 component example.

View File

@ -19,12 +19,12 @@ export type { Args, ArgTypes, Parameters, StoryContext } from '@storybook/types'
* *
* @see [Default export](https://storybook.js.org/docs/formats/component-story-format/#default-export) * @see [Default export](https://storybook.js.org/docs/formats/component-story-format/#default-export)
*/ */
export type Meta<CmpOrArgs = Args> = CmpOrArgs extends Component<any> export type Meta<TCmpOrArgs = Args> = TCmpOrArgs extends Component<any>
? ComponentAnnotations< ? ComponentAnnotations<
VueFramework, VueFramework,
unknown extends ComponentProps<CmpOrArgs> ? CmpOrArgs : ComponentProps<CmpOrArgs> unknown extends ComponentProps<TCmpOrArgs> ? TCmpOrArgs : ComponentProps<TCmpOrArgs>
> >
: ComponentAnnotations<VueFramework, CmpOrArgs>; : ComponentAnnotations<VueFramework, TCmpOrArgs>;
/** /**
* Story function that represents a CSFv2 component example. * Story function that represents a CSFv2 component example.
@ -38,23 +38,23 @@ export type StoryFn<TArgs = Args> = AnnotatedStoryFn<VueFramework, TArgs>;
* *
* @see [Named Story exports](https://storybook.js.org/docs/formats/component-story-format/#named-story-exports) * @see [Named Story exports](https://storybook.js.org/docs/formats/component-story-format/#named-story-exports)
*/ */
export type StoryObj<MetaOrCmpOrArgs = Args> = MetaOrCmpOrArgs extends { export type StoryObj<TMetaOrCmpOrArgs = Args> = TMetaOrCmpOrArgs extends {
render?: ArgsStoryFn<VueFramework, any>; render?: ArgsStoryFn<VueFramework, any>;
component?: infer C; component?: infer C;
args?: infer DefaultArgs; args?: infer DefaultArgs;
} }
? MetaOrCmpOrArgs extends Component<any> ? TMetaOrCmpOrArgs extends Component<any>
? StoryAnnotations<VueFramework, ComponentProps<MetaOrCmpOrArgs>> ? StoryAnnotations<VueFramework, ComponentProps<TMetaOrCmpOrArgs>>
: Simplify<ComponentProps<C> & ArgsFromMeta<VueFramework, MetaOrCmpOrArgs>> extends infer TArgs : Simplify<ComponentProps<C> & ArgsFromMeta<VueFramework, TMetaOrCmpOrArgs>> extends infer TArgs
? StoryAnnotations< ? StoryAnnotations<
VueFramework, VueFramework,
TArgs, TArgs,
SetOptional<TArgs, Extract<keyof TArgs, keyof DefaultArgs>> SetOptional<TArgs, Extract<keyof TArgs, keyof DefaultArgs>>
> >
: never : never
: MetaOrCmpOrArgs extends Component<any> : TMetaOrCmpOrArgs extends Component<any>
? StoryAnnotations<VueFramework, ComponentProps<MetaOrCmpOrArgs>> ? StoryAnnotations<VueFramework, ComponentProps<TMetaOrCmpOrArgs>>
: StoryAnnotations<VueFramework, MetaOrCmpOrArgs>; : StoryAnnotations<VueFramework, TMetaOrCmpOrArgs>;
type ComponentProps<C> = C extends ExtendedVue<any, any, any, any, infer P> type ComponentProps<C> = C extends ExtendedVue<any, any, any, any, infer P>
? P ? P
@ -63,7 +63,8 @@ type ComponentProps<C> = C extends ExtendedVue<any, any, any, any, infer P>
: unknown; : unknown;
/** /**
* @deprecated Use `StoryFn` instead. Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories. * @deprecated Use `StoryFn` instead.
* Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories.
* You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/ * You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/
* *
* Story function that represents a CSFv2 component example. * Story function that represents a CSFv2 component example.

View File

@ -17,9 +17,9 @@ import type { VueFramework } from './types';
* *
* @see [Default export](https://storybook.js.org/docs/formats/component-story-format/#default-export) * @see [Default export](https://storybook.js.org/docs/formats/component-story-format/#default-export)
*/ */
export type Meta<CmpOrArgs = Args> = CmpOrArgs extends ComponentOptions<infer Props> export type Meta<TCmpOrArgs = Args> = TCmpOrArgs extends ComponentOptions<infer Props>
? ComponentAnnotations<VueFramework, unknown extends Props ? CmpOrArgs : Props> ? ComponentAnnotations<VueFramework, unknown extends Props ? TCmpOrArgs : Props>
: ComponentAnnotations<VueFramework, CmpOrArgs>; : ComponentAnnotations<VueFramework, TCmpOrArgs>;
/** /**
* Story function that represents a CSFv2 component example. * Story function that represents a CSFv2 component example.
@ -33,13 +33,13 @@ export type StoryFn<TArgs = Args> = AnnotatedStoryFn<VueFramework, TArgs>;
* *
* @see [Named Story exports](https://storybook.js.org/docs/formats/component-story-format/#named-story-exports) * @see [Named Story exports](https://storybook.js.org/docs/formats/component-story-format/#named-story-exports)
*/ */
export type StoryObj<MetaOrCmpOrArgs = Args> = MetaOrCmpOrArgs extends { export type StoryObj<TMetaOrCmpOrArgs = Args> = TMetaOrCmpOrArgs extends {
render?: ArgsStoryFn<VueFramework, any>; render?: ArgsStoryFn<VueFramework, any>;
component?: infer Component; component?: infer Component;
args?: infer DefaultArgs; args?: infer DefaultArgs;
} }
? Simplify< ? Simplify<
ComponentProps<Component> & ArgsFromMeta<VueFramework, MetaOrCmpOrArgs> ComponentProps<Component> & ArgsFromMeta<VueFramework, TMetaOrCmpOrArgs>
> extends infer TArgs > extends infer TArgs
? StoryAnnotations< ? StoryAnnotations<
VueFramework, VueFramework,
@ -47,17 +47,18 @@ export type StoryObj<MetaOrCmpOrArgs = Args> = MetaOrCmpOrArgs extends {
SetOptional<TArgs, Extract<keyof TArgs, keyof DefaultArgs>> SetOptional<TArgs, Extract<keyof TArgs, keyof DefaultArgs>>
> >
: never : never
: MetaOrCmpOrArgs extends ConcreteComponent<any> : TMetaOrCmpOrArgs extends ConcreteComponent<any>
? StoryAnnotations<VueFramework, ComponentProps<MetaOrCmpOrArgs>> ? StoryAnnotations<VueFramework, ComponentProps<TMetaOrCmpOrArgs>>
: StoryAnnotations<VueFramework, MetaOrCmpOrArgs>; : StoryAnnotations<VueFramework, TMetaOrCmpOrArgs>;
type ComponentProps<Component> = Component extends ComponentOptions<infer P> type ComponentProps<C> = C extends ComponentOptions<infer P>
? P ? P
: Component extends FunctionalComponent<infer P> : C extends FunctionalComponent<infer P>
? P ? P
: unknown; : unknown;
/** /**
* @deprecated Use `StoryFn` instead. Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories. * @deprecated Use `StoryFn` instead.
* Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories.
* You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/ * You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/
* *
* Story function that represents a CSFv2 component example. * Story function that represents a CSFv2 component example.

View File

@ -28,7 +28,8 @@ export type StoryFn<TArgs = Args> = AnnotatedStoryFn<WebComponentsFramework, TAr
export type StoryObj<TArgs = Args> = StoryAnnotations<WebComponentsFramework, TArgs>; export type StoryObj<TArgs = Args> = StoryAnnotations<WebComponentsFramework, TArgs>;
/** /**
* @deprecated Use `StoryFn` instead. Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories. * @deprecated Use `StoryFn` instead.
* Use `StoryObj` if you want to migrate to CSF3, which uses objects instead of functions to represent stories.
* You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/ * You can read more about the CSF3 format here: https://storybook.js.org/blog/component-story-format-3-0/
* *
* Story function that represents a CSFv2 component example. * Story function that represents a CSFv2 component example.