@storybook/addon-themes 8.0.0-alpha.9 → 8.0.0-beta.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -14
- package/dist/manager.js +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
@@ -27,6 +27,7 @@ For tool-specific setup, check out the recipes below
|
|
27
27
|
- [`@emotion/styled`](https://github.com/storybookjs/storybook/tree/next/code/addons/themes/docs/getting-started/emotion.md)
|
28
28
|
- [`@mui/material`](https://github.com/storybookjs/storybook/tree/next/code/addons/themes/docs/getting-started/material-ui.md)
|
29
29
|
- [`bootstrap`](https://github.com/storybookjs/storybook/tree/next/code/addons/themes/docs/getting-started/bootstrap.md)
|
30
|
+
- [`postcss`](https://github.com/storybookjs/storybook/tree/next/code/addons/themes/docs/getting-started/postcss.md)
|
30
31
|
- [`styled-components`](https://github.com/storybookjs/storybook/tree/next/code/addons/themes/docs/getting-started/styled-components.md)
|
31
32
|
- [`tailwind`](https://github.com/storybookjs/storybook/tree/next/code/addons/themes/docs/getting-started/tailwind.md)
|
32
33
|
- [`vuetify@3.x`](https://github.com/storybookjs/storybook/blob/next/code/addons/themes/docs/api.md#writing-a-custom-decorator)
|
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;
|