@storybook/react-webpack5 7.0.0-alpha.46 → 7.0.0-alpha.48
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/preset.d.ts +3 -3
- package/package.json +5 -5
package/dist/preset.d.ts
CHANGED
@@ -912,7 +912,6 @@ interface CoreCommon_StoryIndex {
|
|
912
912
|
interface CoreCommon_StoryIndexer {
|
913
913
|
test: RegExp;
|
914
914
|
indexer: (fileName: string, options: CoreCommon_IndexerOptions) => Promise<CoreCommon_StoryIndex>;
|
915
|
-
addDocsTemplate?: boolean;
|
916
915
|
}
|
917
916
|
/**
|
918
917
|
* Options for TypeScript usage within Storybook.
|
@@ -973,9 +972,10 @@ declare type DocsOptions = {
|
|
973
972
|
*/
|
974
973
|
defaultName?: string;
|
975
974
|
/**
|
976
|
-
* Should we generate a docs entry per CSF file?
|
975
|
+
* Should we generate a docs entry per CSF file with the `docsPage` tag?
|
976
|
+
* Set to 'automatic' to generate an entry irrespective of tag.
|
977
977
|
*/
|
978
|
-
docsPage?: boolean;
|
978
|
+
docsPage?: boolean | 'automatic';
|
979
979
|
/**
|
980
980
|
* Only show doc entries in the side bar (usually set with the `--docs` CLI flag)
|
981
981
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/react-webpack5",
|
3
|
-
"version": "7.0.0-alpha.
|
3
|
+
"version": "7.0.0-alpha.48",
|
4
4
|
"description": "Storybook for React: Develop React Component in isolation with Hot Reloading.",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -51,9 +51,9 @@
|
|
51
51
|
"prep": "../../../scripts/prepare/bundle.ts"
|
52
52
|
},
|
53
53
|
"dependencies": {
|
54
|
-
"@storybook/builder-webpack5": "7.0.0-alpha.
|
55
|
-
"@storybook/preset-react-webpack": "7.0.0-alpha.
|
56
|
-
"@storybook/react": "7.0.0-alpha.
|
54
|
+
"@storybook/builder-webpack5": "7.0.0-alpha.48",
|
55
|
+
"@storybook/preset-react-webpack": "7.0.0-alpha.48",
|
56
|
+
"@storybook/react": "7.0.0-alpha.48",
|
57
57
|
"@types/node": "^16.0.0"
|
58
58
|
},
|
59
59
|
"devDependencies": {
|
@@ -86,5 +86,5 @@
|
|
86
86
|
],
|
87
87
|
"platform": "node"
|
88
88
|
},
|
89
|
-
"gitHead": "
|
89
|
+
"gitHead": "b58a29b785462f8a8b711b6bb2d7223fd6dc17fd"
|
90
90
|
}
|