@repobuddy/storybook 0.16.1 → 0.16.2
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.
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import type { Args, StoryObj as SBO } from '@storybook/react';
|
|
1
|
+
import type { Args, Meta as M, StoryObj as SBO } from '@storybook/react';
|
|
2
2
|
import type { TagNames } from './tag_badges.ts';
|
|
3
|
+
export type Meta<TCmpOrArgs = Args> = Omit<M<TCmpOrArgs>, 'tags'> & {
|
|
4
|
+
tags?: Array<TagNames | (string & {})> | undefined;
|
|
5
|
+
};
|
|
3
6
|
export type StoryObj<TMetaOrCmpOrArgs = Args> = Omit<SBO<TMetaOrCmpOrArgs>, 'tags'> & {
|
|
4
7
|
tags?: Array<TagNames | (string & {})> | undefined;
|
|
5
8
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
import type { Args, StoryObj as SBO } from '@storybook/react'
|
|
1
|
+
import type { Args, Meta as M, StoryObj as SBO } from '@storybook/react'
|
|
2
2
|
import type { TagNames } from './tag_badges.ts'
|
|
3
3
|
|
|
4
|
+
export type Meta<TCmpOrArgs = Args> = Omit<M<TCmpOrArgs>, 'tags'> & {
|
|
5
|
+
tags?: Array<TagNames | (string & {})> | undefined
|
|
6
|
+
}
|
|
7
|
+
|
|
4
8
|
export type StoryObj<TMetaOrCmpOrArgs = Args> = Omit<SBO<TMetaOrCmpOrArgs>, 'tags'> & {
|
|
5
9
|
tags?: Array<TagNames | (string & {})> | undefined
|
|
6
10
|
}
|