@storybook/addon-themes 8.0.0-alpha.1 → 8.0.0-alpha.11
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.ts +2 -2
- package/dist/index.js +6 -6
- package/dist/manager.js +1 -1
- package/package.json +9 -9
- package/jest.config.js +0 -7
package/dist/index.d.ts
CHANGED
@@ -41,7 +41,7 @@ type StoryId = string;
|
|
41
41
|
type ComponentId = string;
|
42
42
|
type ComponentTitle = string;
|
43
43
|
type StoryName = string;
|
44
|
-
type Tag = string;
|
44
|
+
type Tag$1 = string;
|
45
45
|
interface StoryIdentifier {
|
46
46
|
componentId: ComponentId;
|
47
47
|
title: ComponentTitle;
|
@@ -51,7 +51,7 @@ interface StoryIdentifier {
|
|
51
51
|
name: StoryName;
|
52
52
|
/** @deprecated */
|
53
53
|
story: StoryName;
|
54
|
-
tags: Tag[];
|
54
|
+
tags: Tag$1[];
|
55
55
|
}
|
56
56
|
interface Parameters {
|
57
57
|
[name: string]: any;
|