@storybook/csf 0.1.9 โ 0.1.10--canary.d841bb4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +18 -30
- package/package.json +1 -1
- package/CHANGELOG.md +0 -193
    
        package/dist/index.d.ts
    CHANGED
    
    | @@ -215,7 +215,7 @@ interface GlobalTypes { | |
| 215 215 | 
             
            interface StrictGlobalTypes {
         | 
| 216 216 | 
             
                [name: string]: StrictInputType;
         | 
| 217 217 | 
             
            }
         | 
| 218 | 
            -
             | 
| 218 | 
            +
            interface Renderer {
         | 
| 219 219 | 
             
                /** What is the type of the `component` annotation in this renderer? */
         | 
| 220 220 | 
             
                component: unknown;
         | 
| 221 221 | 
             
                /** What does the story function return in this renderer? */
         | 
| @@ -223,7 +223,7 @@ type Renderer = { | |
| 223 223 | 
             
                /** What type of element does this renderer render to? */
         | 
| 224 224 | 
             
                canvasElement: unknown;
         | 
| 225 225 | 
             
                T?: unknown;
         | 
| 226 | 
            -
            } | 
| 226 | 
            +
            }
         | 
| 227 227 | 
             
            /** @deprecated - use `Renderer` */
         | 
| 228 228 | 
             
            type AnyFramework = Renderer;
         | 
| 229 229 | 
             
            interface StoryContextForEnhancers<TRenderer extends Renderer = Renderer, TArgs = Args> extends StoryIdentifier {
         | 
| @@ -247,26 +247,26 @@ interface StoryContextUpdate<TArgs = Args> { | |
| 247 247 | 
             
                [key: string]: any;
         | 
| 248 248 | 
             
            }
         | 
| 249 249 | 
             
            type ViewMode = 'story' | 'docs';
         | 
| 250 | 
            -
            interface StoryContextForLoaders<TRenderer extends Renderer = Renderer, TArgs = Args> extends StoryContextForEnhancers<TRenderer, TArgs>, Required<StoryContextUpdate<TArgs>> {
         | 
| 251 | 
            -
                hooks: unknown;
         | 
| 252 | 
            -
                viewMode: ViewMode;
         | 
| 253 | 
            -
                originalStoryFn: StoryFn<TRenderer>;
         | 
| 254 | 
            -
            }
         | 
| 255 250 | 
             
            type LoaderFunction<TRenderer extends Renderer = Renderer, TArgs = Args> = (context: StoryContextForLoaders<TRenderer, TArgs>) => Promise<Record<string, any> | void> | Record<string, any> | void;
         | 
| 256 251 | 
             
            type Awaitable<T> = T | PromiseLike<T>;
         | 
| 257 252 | 
             
            type CleanupCallback = () => Awaitable<unknown>;
         | 
| 258 | 
            -
            type BeforeAll = () => Awaitable<CleanupCallback | void>;
         | 
| 259 253 | 
             
            type BeforeEach<TRenderer extends Renderer = Renderer, TArgs = Args> = (context: StoryContext<TRenderer, TArgs>) => Awaitable<CleanupCallback | void>;
         | 
| 260 | 
            -
            interface StoryContext<TRenderer extends Renderer = Renderer, TArgs = Args> extends  | 
| 254 | 
            +
            interface StoryContext<TRenderer extends Renderer = Renderer, TArgs = Args> extends StoryContextForEnhancers<TRenderer, TArgs>, Required<StoryContextUpdate<TArgs>> {
         | 
| 261 255 | 
             
                loaded: Record<string, any>;
         | 
| 262 256 | 
             
                abortSignal: AbortSignal;
         | 
| 263 257 | 
             
                canvasElement: TRenderer['canvasElement'];
         | 
| 258 | 
            +
                hooks: unknown;
         | 
| 259 | 
            +
                originalStoryFn: StoryFn<TRenderer>;
         | 
| 260 | 
            +
                viewMode: ViewMode;
         | 
| 261 | 
            +
                step: StepFunction<TRenderer, TArgs>;
         | 
| 262 | 
            +
                context: this;
         | 
| 264 263 | 
             
            }
         | 
| 264 | 
            +
            /** @deprecated Use {@link StoryContext} instead. */
         | 
| 265 | 
            +
            type StoryContextForLoaders<TRenderer extends Renderer = Renderer, TArgs = Args> = StoryContext<TRenderer, TArgs>;
         | 
| 266 | 
            +
            /** @deprecated Use {@link StoryContext} instead. */
         | 
| 267 | 
            +
            type PlayFunctionContext<TRenderer extends Renderer = Renderer, TArgs = Args> = StoryContext<TRenderer, TArgs>;
         | 
| 265 268 | 
             
            type StepLabel = string;
         | 
| 266 269 | 
             
            type StepFunction<TRenderer extends Renderer = Renderer, TArgs = Args> = (label: StepLabel, play: PlayFunction<TRenderer, TArgs>) => Promise<void> | void;
         | 
| 267 | 
            -
            type PlayFunctionContext<TRenderer extends Renderer = Renderer, TArgs = Args> = StoryContext<TRenderer, TArgs> & {
         | 
| 268 | 
            -
                step: StepFunction<TRenderer, TArgs>;
         | 
| 269 | 
            -
            };
         | 
| 270 270 | 
             
            type PlayFunction<TRenderer extends Renderer = Renderer, TArgs = Args> = (context: PlayFunctionContext<TRenderer, TArgs>) => Promise<void> | void;
         | 
| 271 271 | 
             
            type PartialStoryFn<TRenderer extends Renderer = Renderer, TArgs = Args> = (update?: StoryContextUpdate<Partial<TArgs>>) => TRenderer['storyResult'];
         | 
| 272 272 | 
             
            type LegacyStoryFn<TRenderer extends Renderer = Renderer, TArgs = Args> = (context: StoryContext<TRenderer, TArgs>) => TRenderer['storyResult'];
         | 
| @@ -276,8 +276,8 @@ type ArgsStoryFn<TRenderer extends Renderer = Renderer, TArgs = Args> = (args: T | |
| 276 276 | 
             
            type StoryFn<TRenderer extends Renderer = Renderer, TArgs = Args> = LegacyStoryFn<TRenderer, TArgs> | ArgsStoryFn<TRenderer, TArgs>;
         | 
| 277 277 | 
             
            type DecoratorFunction<TRenderer extends Renderer = Renderer, TArgs = Args> = (fn: PartialStoryFn<TRenderer, TArgs>, c: StoryContext<TRenderer, TArgs>) => TRenderer['storyResult'];
         | 
| 278 278 | 
             
            type DecoratorApplicator<TRenderer extends Renderer = Renderer, TArgs = Args> = (storyFn: LegacyStoryFn<TRenderer, TArgs>, decorators: DecoratorFunction<TRenderer, TArgs>[]) => LegacyStoryFn<TRenderer, TArgs>;
         | 
| 279 | 
            -
            type StepRunner<TRenderer extends Renderer = Renderer, TArgs = Args> = (label: StepLabel, play: PlayFunction<TRenderer, TArgs>, context:  | 
| 280 | 
            -
             | 
| 279 | 
            +
            type StepRunner<TRenderer extends Renderer = Renderer, TArgs = Args> = (label: StepLabel, play: PlayFunction<TRenderer, TArgs>, context: StoryContext<TRenderer, TArgs>) => Promise<void>;
         | 
| 280 | 
            +
            interface BaseAnnotations<TRenderer extends Renderer = Renderer, TArgs = Args> {
         | 
| 281 281 | 
             
                /**
         | 
| 282 282 | 
             
                 * Wrapper components or Storybook decorators that wrap a story.
         | 
| 283 283 | 
             
                 *
         | 
| @@ -322,22 +322,10 @@ type BaseAnnotations<TRenderer extends Renderer = Renderer, TArgs = Args> = { | |
| 322 322 | 
             
                 * Named tags for a story, used to filter stories in different contexts.
         | 
| 323 323 | 
             
                 */
         | 
| 324 324 | 
             
                tags?: Tag[];
         | 
| 325 | 
            -
            } | 
| 326 | 
            -
             | 
| 325 | 
            +
            }
         | 
| 326 | 
            +
            interface ProjectAnnotations<TRenderer extends Renderer = Renderer, TArgs = Args> extends BaseAnnotations<TRenderer, TArgs> {
         | 
| 327 327 | 
             
                argsEnhancers?: ArgsEnhancer<TRenderer, Args>[];
         | 
| 328 328 | 
             
                argTypesEnhancers?: ArgTypesEnhancer<TRenderer, Args>[];
         | 
| 329 | 
            -
                /**
         | 
| 330 | 
            -
                 * Lifecycle hook which runs once, before any loaders, decorators or stories, and may rerun when configuration changes or when reinitializing (e.g. between test runs).
         | 
| 331 | 
            -
                 * The function may be synchronous or asynchronous, and may return a cleanup function which may also be synchronous or asynchronous.
         | 
| 332 | 
            -
                 * The cleanup function is not guaranteed to run (e.g. when the browser closes), but runs when configuration changes or when reinitializing.
         | 
| 333 | 
            -
                 * This hook may only be defined globally (i.e. not on component or story level).
         | 
| 334 | 
            -
                 * When multiple hooks are specified, they are to be executed sequentially (and awaited) in the following order:
         | 
| 335 | 
            -
                 * - Addon hooks (in order of addons array in e.g. .storybook/main.js)
         | 
| 336 | 
            -
                 * - Annotation hooks (in order of previewAnnotations array in e.g. .storybook/main.js)
         | 
| 337 | 
            -
                 * - Preview hook (via e.g. .storybook/preview.js)
         | 
| 338 | 
            -
                 * Cleanup functions are executed sequentially in reverse order of initialization.
         | 
| 339 | 
            -
                 */
         | 
| 340 | 
            -
                beforeAll?: BeforeAll;
         | 
| 341 329 | 
             
                /**
         | 
| 342 330 | 
             
                 * @deprecated Project `globals` renamed to `initiaGlobals`
         | 
| 343 331 | 
             
                 */
         | 
| @@ -346,7 +334,7 @@ type ProjectAnnotations<TRenderer extends Renderer = Renderer, TArgs = Args> = B | |
| 346 334 | 
             
                globalTypes?: GlobalTypes;
         | 
| 347 335 | 
             
                applyDecorators?: DecoratorApplicator<TRenderer, Args>;
         | 
| 348 336 | 
             
                runStep?: StepRunner<TRenderer, TArgs>;
         | 
| 349 | 
            -
            } | 
| 337 | 
            +
            }
         | 
| 350 338 | 
             
            type StoryDescriptor$1 = string[] | RegExp;
         | 
| 351 339 | 
             
            interface ComponentAnnotations<TRenderer extends Renderer = Renderer, TArgs = Args> extends BaseAnnotations<TRenderer, TArgs> {
         | 
| 352 340 | 
             
                /**
         | 
| @@ -505,4 +493,4 @@ declare const parseKind: (kind: string, { rootSeparator, groupSeparator }: Separ | |
| 505 493 | 
             
             */
         | 
| 506 494 | 
             
            declare const combineTags: (...tags: string[]) => string[];
         | 
| 507 495 |  | 
| 508 | 
            -
            export { AnnotatedStoryFn, AnyFramework, ArgTypes, ArgTypesEnhancer, Args, ArgsEnhancer, ArgsFromMeta, ArgsStoryFn, BaseAnnotations,  | 
| 496 | 
            +
            export { AnnotatedStoryFn, AnyFramework, ArgTypes, ArgTypesEnhancer, Args, ArgsEnhancer, ArgsFromMeta, ArgsStoryFn, BaseAnnotations, BeforeEach, CleanupCallback, ComponentAnnotations, ComponentId, ComponentTitle, Conditional, DecoratorApplicator, DecoratorFunction, GlobalTypes, Globals, IncludeExcludeOptions, InputType, LegacyAnnotatedStoryFn, LegacyStoryAnnotationsOrFn, LegacyStoryFn, LoaderFunction, Parameters, PartialStoryFn, PlayFunction, PlayFunctionContext, ProjectAnnotations, Renderer, SBArrayType, SBEnumType, SBIntersectionType, SBObjectType, SBOtherType, SBScalarType, SBType, SBUnionType, SeparatorOptions, StepFunction, StepLabel, StepRunner, StoryAnnotations, StoryAnnotationsOrFn, StoryContext, StoryContextForEnhancers, StoryContextForLoaders, StoryContextUpdate, StoryFn, StoryId, StoryIdentifier, StoryKind, StoryName, StrictArgTypes, StrictArgs, StrictGlobalTypes, StrictInputType, StrictParameters, Tag, ViewMode, combineTags, includeConditionalArg, isExportStory, parseKind, sanitize, storyNameFromExport, toId };
         | 
    
        package/package.json
    CHANGED
    
    
    
        package/CHANGELOG.md
    DELETED
    
    | @@ -1,193 +0,0 @@ | |
| 1 | 
            -
            # v0.1.9 (Mon Jun 24 2024)
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            #### ๐ Bug Fix
         | 
| 4 | 
            -
             | 
| 5 | 
            -
            - Add `beforeAll` hook to CSF types [#96](https://github.com/ComponentDriven/csf/pull/96) ([@ghengeveld](https://github.com/ghengeveld))
         | 
| 6 | 
            -
             | 
| 7 | 
            -
            #### Authors: 2
         | 
| 8 | 
            -
             | 
| 9 | 
            -
            - Gert Hengeveld ([@ghengeveld](https://github.com/ghengeveld))
         | 
| 10 | 
            -
            - Michael Shilman ([@shilman](https://github.com/shilman))
         | 
| 11 | 
            -
             | 
| 12 | 
            -
            ---
         | 
| 13 | 
            -
             | 
| 14 | 
            -
            # v0.1.8 (Mon Jun 03 2024)
         | 
| 15 | 
            -
             | 
| 16 | 
            -
            #### ๐ Bug Fix
         | 
| 17 | 
            -
             | 
| 18 | 
            -
            - Add project initialGlobals & component/story globals, deprecate project globals [#92](https://github.com/ComponentDriven/csf/pull/92) ([@shilman](https://github.com/shilman))
         | 
| 19 | 
            -
             | 
| 20 | 
            -
            #### Authors: 1
         | 
| 21 | 
            -
             | 
| 22 | 
            -
            - Michael Shilman ([@shilman](https://github.com/shilman))
         | 
| 23 | 
            -
             | 
| 24 | 
            -
            ---
         | 
| 25 | 
            -
             | 
| 26 | 
            -
            # v0.1.7 (Mon May 06 2024)
         | 
| 27 | 
            -
             | 
| 28 | 
            -
            #### ๐ Bug Fix
         | 
| 29 | 
            -
             | 
| 30 | 
            -
            - Fix the package name in the readme [#81](https://github.com/ComponentDriven/csf/pull/81) ([@stof](https://github.com/stof))
         | 
| 31 | 
            -
            - Add utility for tag combination & negation [#80](https://github.com/ComponentDriven/csf/pull/80) ([@shilman](https://github.com/shilman))
         | 
| 32 | 
            -
             | 
| 33 | 
            -
            #### Authors: 2
         | 
| 34 | 
            -
             | 
| 35 | 
            -
            - Christophe Coevoet ([@stof](https://github.com/stof))
         | 
| 36 | 
            -
            - Michael Shilman ([@shilman](https://github.com/shilman))
         | 
| 37 | 
            -
             | 
| 38 | 
            -
            ---
         | 
| 39 | 
            -
             | 
| 40 | 
            -
            # v0.1.6 (Tue Apr 30 2024)
         | 
| 41 | 
            -
             | 
| 42 | 
            -
            #### ๐ Bug Fix
         | 
| 43 | 
            -
             | 
| 44 | 
            -
            - Add the beforeEach hook [#82](https://github.com/ComponentDriven/csf/pull/82) ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 45 | 
            -
             | 
| 46 | 
            -
            #### Authors: 1
         | 
| 47 | 
            -
             | 
| 48 | 
            -
            - Kasper Peulen ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 49 | 
            -
             | 
| 50 | 
            -
            ---
         | 
| 51 | 
            -
             | 
| 52 | 
            -
            # v0.1.5 (Thu Apr 25 2024)
         | 
| 53 | 
            -
             | 
| 54 | 
            -
            #### ๐ Bug Fix
         | 
| 55 | 
            -
             | 
| 56 | 
            -
            - chore: resolve eslint issues [#87](https://github.com/ComponentDriven/csf/pull/87) ([@Cherry](https://github.com/Cherry))
         | 
| 57 | 
            -
            - fix: better handle readonly InputType options [#85](https://github.com/ComponentDriven/csf/pull/85) ([@Cherry](https://github.com/Cherry))
         | 
| 58 | 
            -
             | 
| 59 | 
            -
            #### Authors: 2
         | 
| 60 | 
            -
             | 
| 61 | 
            -
            - James Ross ([@Cherry](https://github.com/Cherry))
         | 
| 62 | 
            -
            - Kasper Peulen ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 63 | 
            -
             | 
| 64 | 
            -
            ---
         | 
| 65 | 
            -
             | 
| 66 | 
            -
            # v0.1.4 (Fri Apr 12 2024)
         | 
| 67 | 
            -
             | 
| 68 | 
            -
            #### ๐ Bug Fix
         | 
| 69 | 
            -
             | 
| 70 | 
            -
            - Loosen control type and some fixes [#83](https://github.com/ComponentDriven/csf/pull/83) ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 71 | 
            -
             | 
| 72 | 
            -
            #### Authors: 1
         | 
| 73 | 
            -
             | 
| 74 | 
            -
            - Kasper Peulen ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 75 | 
            -
             | 
| 76 | 
            -
            ---
         | 
| 77 | 
            -
             | 
| 78 | 
            -
            # v0.1.3 (Mon Mar 18 2024)
         | 
| 79 | 
            -
             | 
| 80 | 
            -
            #### ๐ Bug Fix
         | 
| 81 | 
            -
             | 
| 82 | 
            -
            - Fix bad publish [#78](https://github.com/ComponentDriven/csf/pull/78) ([@shilman](https://github.com/shilman))
         | 
| 83 | 
            -
            - Improve InputType for controls [#75](https://github.com/ComponentDriven/csf/pull/75) ([@Shinigami92](https://github.com/Shinigami92) [@shilman](https://github.com/shilman))
         | 
| 84 | 
            -
            - Update README [#74](https://github.com/ComponentDriven/csf/pull/74) ([@nkabrown](https://github.com/nkabrown))
         | 
| 85 | 
            -
             | 
| 86 | 
            -
            #### Authors: 4
         | 
| 87 | 
            -
             | 
| 88 | 
            -
            - Kasper Peulen ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 89 | 
            -
            - Michael Shilman ([@shilman](https://github.com/shilman))
         | 
| 90 | 
            -
            - Nathan Brown ([@nkabrown](https://github.com/nkabrown))
         | 
| 91 | 
            -
            - Shinigami ([@Shinigami92](https://github.com/Shinigami92))
         | 
| 92 | 
            -
             | 
| 93 | 
            -
            ---
         | 
| 94 | 
            -
             | 
| 95 | 
            -
            # v0.1.2 (Wed Nov 22 2023)
         | 
| 96 | 
            -
             | 
| 97 | 
            -
            #### ๐ Bug Fix
         | 
| 98 | 
            -
             | 
| 99 | 
            -
            - Allow loaders to be synchronous or void [#71](https://github.com/ComponentDriven/csf/pull/71) ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 100 | 
            -
            - Move `types` condition to the front [#69](https://github.com/ComponentDriven/csf/pull/69) ([@Andarist](https://github.com/Andarist))
         | 
| 101 | 
            -
             | 
| 102 | 
            -
            #### Authors: 2
         | 
| 103 | 
            -
             | 
| 104 | 
            -
            - Kasper Peulen ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 105 | 
            -
            - Mateusz Burzyลski ([@Andarist](https://github.com/Andarist))
         | 
| 106 | 
            -
             | 
| 107 | 
            -
            ---
         | 
| 108 | 
            -
             | 
| 109 | 
            -
            # v0.1.1 (Fri Jun 02 2023)
         | 
| 110 | 
            -
             | 
| 111 | 
            -
            #### ๐ Bug Fix
         | 
| 112 | 
            -
             | 
| 113 | 
            -
            - Move `types` condition to the front [#70](https://github.com/ComponentDriven/csf/pull/70) ([@Andarist](https://github.com/Andarist))
         | 
| 114 | 
            -
             | 
| 115 | 
            -
            #### Authors: 1
         | 
| 116 | 
            -
             | 
| 117 | 
            -
            - Mateusz Burzyลski ([@Andarist](https://github.com/Andarist))
         | 
| 118 | 
            -
             | 
| 119 | 
            -
            ---
         | 
| 120 | 
            -
             | 
| 121 | 
            -
            # v0.1.0 (Mon Apr 03 2023)
         | 
| 122 | 
            -
             | 
| 123 | 
            -
            #### ๐ Enhancement
         | 
| 124 | 
            -
             | 
| 125 | 
            -
             | 
| 126 | 
            -
            #### ๐ Bug Fix
         | 
| 127 | 
            -
             | 
| 128 | 
            -
            - Turn Args interfaces into types when passed to decorators [#65](https://github.com/ComponentDriven/csf/pull/65) ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 129 | 
            -
            - Improve the startcase implementation to mimick lodash's version more closely [#64](https://github.com/ComponentDriven/csf/pull/64) ([@ndelangen](https://github.com/ndelangen))
         | 
| 130 | 
            -
            - replace lodash [#62](https://github.com/ComponentDriven/csf/pull/62) ([@ndelangen](https://github.com/ndelangen))
         | 
| 131 | 
            -
            - Fix bug with meta not working well as generic parameter for StoryObj [#60](https://github.com/ComponentDriven/csf/pull/60) ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 132 | 
            -
            - Make sure that index signatures (used in decorators) don't cause unexpected types [#58](https://github.com/ComponentDriven/csf/pull/58) ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 133 | 
            -
            - Add strict variants for Args and Paramters to CSF [#57](https://github.com/ComponentDriven/csf/pull/57) ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 134 | 
            -
            - Revert stricter parameters [#56](https://github.com/ComponentDriven/csf/pull/56) ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 135 | 
            -
            - Use builtin installation of actions/setup-node [#55](https://github.com/ComponentDriven/csf/pull/55) ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 136 | 
            -
            - Rename Framework to Renderer [#54](https://github.com/ComponentDriven/csf/pull/54) ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 137 | 
            -
            - Rework Framework type to contain `canvasElement` [#53](https://github.com/ComponentDriven/csf/pull/53) ([@tmeasday](https://github.com/tmeasday))
         | 
| 138 | 
            -
            - Add tags annotation at all levels [#52](https://github.com/ComponentDriven/csf/pull/52) ([@tmeasday](https://github.com/tmeasday))
         | 
| 139 | 
            -
            - First attempt at bringing new types over [#29](https://github.com/ComponentDriven/csf/pull/29) ([@tmeasday](https://github.com/tmeasday) [@shilman](https://github.com/shilman) [@ghengeveld](https://github.com/ghengeveld) [@wKich](https://github.com/wKich) [@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 140 | 
            -
            - Revert "Play function can only be set at the story level" [#40](https://github.com/ComponentDriven/csf/pull/40) ([@wKich](https://github.com/wKich) [@shilman](https://github.com/shilman))
         | 
| 141 | 
            -
            - Add conditional arg types and metadata [#36](https://github.com/ComponentDriven/csf/pull/36) ([@shilman](https://github.com/shilman) [@tmeasday](https://github.com/tmeasday) [@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 142 | 
            -
            - Re-apply `TArgs` to CSF `render` type [#43](https://github.com/ComponentDriven/csf/pull/43) ([@tmeasday](https://github.com/tmeasday) [@shilman](https://github.com/shilman) [@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 143 | 
            -
            - Add step to play context and `runStep` to project annotations [#48](https://github.com/ComponentDriven/csf/pull/48) ([@tmeasday](https://github.com/tmeasday) [@shilman](https://github.com/shilman) [@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 144 | 
            -
            - Sound arg types for CSF3 [#49](https://github.com/ComponentDriven/csf/pull/49) ([@kasperpeulen](https://github.com/kasperpeulen) [@shilman](https://github.com/shilman))
         | 
| 145 | 
            -
            - ArgsFromMeta utility and generic ArgsStoryFn RT [#51](https://github.com/ComponentDriven/csf/pull/51) ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 146 | 
            -
            - Configure Auto [#50](https://github.com/ComponentDriven/csf/pull/50) ([@shilman](https://github.com/shilman))
         | 
| 147 | 
            -
            - Only make `TArgs` parameterize `args` and `argTypes` in our default annotations [#33](https://github.com/ComponentDriven/csf/pull/33) ([@tmeasday](https://github.com/tmeasday))
         | 
| 148 | 
            -
            - Adding Components.studio as a tool using CSF [#13](https://github.com/ComponentDriven/csf/pull/13) ([@georges-gomes](https://github.com/georges-gomes) [@ghengeveld](https://github.com/ghengeveld))
         | 
| 149 | 
            -
            - Makes name argument for 'toId' optional [#17](https://github.com/ComponentDriven/csf/pull/17) ([@unematiii](https://github.com/unematiii) [@ghengeveld](https://github.com/ghengeveld))
         | 
| 150 | 
            -
            - use permanent url for the header image [#12](https://github.com/ComponentDriven/csf/pull/12) ([@winkerVSbecks](https://github.com/winkerVSbecks))
         | 
| 151 | 
            -
            - fix link to image [#10](https://github.com/ComponentDriven/csf/pull/10) ([@winkerVSbecks](https://github.com/winkerVSbecks))
         | 
| 152 | 
            -
            - Publish under @componentdriven and update README [#8](https://github.com/ComponentDriven/csf/pull/8) ([@winkerVSbecks](https://github.com/winkerVSbecks))
         | 
| 153 | 
            -
            - Add meta types for CSF [#5](https://github.com/ComponentDriven/csf/pull/5) ([@wKich](https://github.com/wKich))
         | 
| 154 | 
            -
            - types of csf properties [#3](https://github.com/ComponentDriven/csf/pull/3) ([@atanasster](https://github.com/atanasster) [@ndelangen](https://github.com/ndelangen))
         | 
| 155 | 
            -
            - Extract @storybook/csf from monorepo [#1](https://github.com/ComponentDriven/csf/pull/1) ([@shilman](https://github.com/shilman))
         | 
| 156 | 
            -
             | 
| 157 | 
            -
            #### โ ๏ธ Pushed to `master`
         | 
| 158 | 
            -
             | 
| 159 | 
            -
            - First commit ([@shilman](https://github.com/shilman))
         | 
| 160 | 
            -
             | 
| 161 | 
            -
            #### ๐ Documentation
         | 
| 162 | 
            -
             | 
| 163 | 
            -
            - added storyNameFromExport(key) in README.md [#2](https://github.com/ComponentDriven/csf/pull/2) ([@georges-gomes](https://github.com/georges-gomes) [@shilman](https://github.com/shilman))
         | 
| 164 | 
            -
             | 
| 165 | 
            -
            #### ๐ฉ Dependency Updates
         | 
| 166 | 
            -
             | 
| 167 | 
            -
            - Bump handlebars from 4.5.3 to 4.7.7 [#20](https://github.com/ComponentDriven/csf/pull/20) ([@dependabot[bot]](https://github.com/dependabot[bot]))
         | 
| 168 | 
            -
            - Bump y18n from 4.0.0 to 4.0.3 [#32](https://github.com/ComponentDriven/csf/pull/32) ([@dependabot[bot]](https://github.com/dependabot[bot]))
         | 
| 169 | 
            -
            - Bump ini from 1.3.5 to 1.3.8 [#18](https://github.com/ComponentDriven/csf/pull/18) ([@dependabot[bot]](https://github.com/dependabot[bot]))
         | 
| 170 | 
            -
            - Bump yargs-parser from 13.1.1 to 13.1.2 [#15](https://github.com/ComponentDriven/csf/pull/15) ([@dependabot[bot]](https://github.com/dependabot[bot]))
         | 
| 171 | 
            -
            - Bump lodash from 4.17.15 to 4.17.21 [#21](https://github.com/ComponentDriven/csf/pull/21) ([@dependabot[bot]](https://github.com/dependabot[bot]))
         | 
| 172 | 
            -
            - Bump hosted-git-info from 2.8.5 to 2.8.9 [#22](https://github.com/ComponentDriven/csf/pull/22) ([@dependabot[bot]](https://github.com/dependabot[bot]))
         | 
| 173 | 
            -
            - Bump path-parse from 1.0.6 to 1.0.7 [#25](https://github.com/ComponentDriven/csf/pull/25) ([@dependabot[bot]](https://github.com/dependabot[bot]))
         | 
| 174 | 
            -
            - Bump browserslist from 4.11.1 to 4.16.6 [#23](https://github.com/ComponentDriven/csf/pull/23) ([@dependabot[bot]](https://github.com/dependabot[bot]))
         | 
| 175 | 
            -
            - Bump acorn from 5.7.3 to 5.7.4 [#27](https://github.com/ComponentDriven/csf/pull/27) ([@dependabot[bot]](https://github.com/dependabot[bot]))
         | 
| 176 | 
            -
            - Bump ws from 5.2.2 to 5.2.3 [#28](https://github.com/ComponentDriven/csf/pull/28) ([@dependabot[bot]](https://github.com/dependabot[bot]))
         | 
| 177 | 
            -
            - Bump tar from 4.4.13 to 4.4.19 [#30](https://github.com/ComponentDriven/csf/pull/30) ([@dependabot[bot]](https://github.com/dependabot[bot]))
         | 
| 178 | 
            -
            - Bump tmpl from 1.0.4 to 1.0.5 [#31](https://github.com/ComponentDriven/csf/pull/31) ([@dependabot[bot]](https://github.com/dependabot[bot]))
         | 
| 179 | 
            -
             | 
| 180 | 
            -
            #### Authors: 12
         | 
| 181 | 
            -
             | 
| 182 | 
            -
            - [@dependabot[bot]](https://github.com/dependabot[bot])
         | 
| 183 | 
            -
            - Atanas Stoyanov ([@atanasster](https://github.com/atanasster))
         | 
| 184 | 
            -
            - Dmitriy Lazarev ([@wKich](https://github.com/wKich))
         | 
| 185 | 
            -
            - Dominic Nguyen ([@domyen](https://github.com/domyen))
         | 
| 186 | 
            -
            - Georges Gomes ([@georges-gomes](https://github.com/georges-gomes))
         | 
| 187 | 
            -
            - Gert Hengeveld ([@ghengeveld](https://github.com/ghengeveld))
         | 
| 188 | 
            -
            - Kasper Peulen ([@kasperpeulen](https://github.com/kasperpeulen))
         | 
| 189 | 
            -
            - Mati Kรคrner ([@unematiii](https://github.com/unematiii))
         | 
| 190 | 
            -
            - Michael Shilman ([@shilman](https://github.com/shilman))
         | 
| 191 | 
            -
            - Norbert de Langen ([@ndelangen](https://github.com/ndelangen))
         | 
| 192 | 
            -
            - Tom Coleman ([@tmeasday](https://github.com/tmeasday))
         | 
| 193 | 
            -
            - Varun Vachhar ([@winkerVSbecks](https://github.com/winkerVSbecks))
         |