Skip to content

sku@11.9.0

Compare
Choose a tag to compare
@seek-oss-ci seek-oss-ci released this 18 Apr 04:34
· 175 commits to master since this release
8b6d285

Minor Changes

  • Re-export Meta and StoryObj types from @storybook/react (#773)

    The Meta and StoryObj types are now re-exported under sku/@storybook/react.

    These types are useful for typing CSF 3 stories which are the new recommended way of writing stories.

    EXAMPLE USAGE:

    import type { Meta } from 'sku/@storybook/react';
    
    import { MyComponent } from './MyComponent';
    
    const meta: Meta<typeof MyComponent> = {
      title: 'Path/To/MyComponent',
      component: MyComponent,
    };
    export default meta;
    
    type Story = StoryObj<typeof MyComponent>;
    
    export const Basic: Story = {};
    
    export const WithProp: Story = {
      render: () => <MyComponent prop="value" />,
    };

Patch Changes

  • Remove dependency on fs-extra (#770)

  • Update dependencies (#768)