@storybook/react-webpack5 8.1.0-alpha.7 → 8.1.0-beta.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/preset.d.ts +2 -2
- package/package.json +6 -6
package/dist/preset.d.ts
CHANGED
@@ -802,8 +802,6 @@ type BaseIndexInput = {
|
|
802
802
|
metaId?: MetaId;
|
803
803
|
/** Tags for filtering entries in Storybook and its tools. */
|
804
804
|
tags?: Tag$1[];
|
805
|
-
/** Tags from the meta for filtering entries in Storybook and its tools. */
|
806
|
-
metaTags?: Tag$1[];
|
807
805
|
/**
|
808
806
|
* The id of the entry, auto-generated from {@link title}/{@link metaId} and {@link exportName} if unspecified.
|
809
807
|
* If specified, the story in the CSF file _must_ have a matching id set at `parameters.__id`, to be correctly matched.
|
@@ -998,6 +996,8 @@ type DocsOptions = {
|
|
998
996
|
* Should we generate a docs entry per CSF file?
|
999
997
|
* Set to 'tag' (the default) to generate an entry for every CSF file with the
|
1000
998
|
* 'autodocs' tag.
|
999
|
+
*
|
1000
|
+
* @deprecated Use `tags: ['autodocs']` in `.storybook/preview.js` instead
|
1001
1001
|
*/
|
1002
1002
|
autodocs?: boolean | 'tag';
|
1003
1003
|
/**
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/react-webpack5",
|
3
|
-
"version": "8.1.0-
|
3
|
+
"version": "8.1.0-beta.0",
|
4
4
|
"description": "Storybook for React: Develop React Component in isolation with Hot Reloading.",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -47,14 +47,14 @@
|
|
47
47
|
"prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/bundle.ts"
|
48
48
|
},
|
49
49
|
"dependencies": {
|
50
|
-
"@storybook/builder-webpack5": "8.1.0-
|
51
|
-
"@storybook/preset-react-webpack": "8.1.0-
|
52
|
-
"@storybook/react": "8.1.0-
|
50
|
+
"@storybook/builder-webpack5": "8.1.0-beta.0",
|
51
|
+
"@storybook/preset-react-webpack": "8.1.0-beta.0",
|
52
|
+
"@storybook/react": "8.1.0-beta.0",
|
53
53
|
"@types/node": "^18.0.0"
|
54
54
|
},
|
55
55
|
"peerDependencies": {
|
56
|
-
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
57
|
-
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
56
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
|
57
|
+
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
|
58
58
|
"typescript": ">= 4.2.x"
|
59
59
|
},
|
60
60
|
"peerDependenciesMeta": {
|