@storybook/core-common 6.3.0-beta.9 → 6.3.0-rc.11
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/ts3.4/types.d.ts
CHANGED
|
@@ -131,6 +131,7 @@ export interface BuilderOptions {
|
|
|
131
131
|
cache: FileSystemCache;
|
|
132
132
|
configDir: string;
|
|
133
133
|
docsMode: boolean;
|
|
134
|
+
previewCsfV3?: boolean;
|
|
134
135
|
versionCheck?: VersionCheck;
|
|
135
136
|
releaseNotesData?: ReleaseNotesData;
|
|
136
137
|
disableWebpackDefaults?: boolean;
|
|
@@ -203,12 +204,19 @@ export interface StorybookConfig {
|
|
|
203
204
|
}>;
|
|
204
205
|
core?: CoreConfig;
|
|
205
206
|
logLevel?: string;
|
|
206
|
-
/**
|
|
207
|
-
* Allows to disable deprecated implicit PostCSS loader.
|
|
208
|
-
*/
|
|
209
207
|
features?: {
|
|
208
|
+
/**
|
|
209
|
+
* Allows to disable deprecated implicit PostCSS loader.
|
|
210
|
+
*/
|
|
210
211
|
postcss?: boolean;
|
|
212
|
+
/**
|
|
213
|
+
* Build stories.json automatically on start/build
|
|
214
|
+
*/
|
|
211
215
|
buildStoriesJson?: boolean;
|
|
216
|
+
/**
|
|
217
|
+
* Activate preview of CSF v3.0
|
|
218
|
+
*/
|
|
219
|
+
previewCsfV3?: boolean;
|
|
212
220
|
};
|
|
213
221
|
/**
|
|
214
222
|
* Tells Storybook where to find stories.
|
package/dist/ts3.9/types.d.ts
CHANGED
|
@@ -127,6 +127,7 @@ export interface BuilderOptions {
|
|
|
127
127
|
cache: FileSystemCache;
|
|
128
128
|
configDir: string;
|
|
129
129
|
docsMode: boolean;
|
|
130
|
+
previewCsfV3?: boolean;
|
|
130
131
|
versionCheck?: VersionCheck;
|
|
131
132
|
releaseNotesData?: ReleaseNotesData;
|
|
132
133
|
disableWebpackDefaults?: boolean;
|
|
@@ -199,12 +200,19 @@ export interface StorybookConfig {
|
|
|
199
200
|
}>;
|
|
200
201
|
core?: CoreConfig;
|
|
201
202
|
logLevel?: string;
|
|
202
|
-
/**
|
|
203
|
-
* Allows to disable deprecated implicit PostCSS loader.
|
|
204
|
-
*/
|
|
205
203
|
features?: {
|
|
204
|
+
/**
|
|
205
|
+
* Allows to disable deprecated implicit PostCSS loader.
|
|
206
|
+
*/
|
|
206
207
|
postcss?: boolean;
|
|
208
|
+
/**
|
|
209
|
+
* Build stories.json automatically on start/build
|
|
210
|
+
*/
|
|
207
211
|
buildStoriesJson?: boolean;
|
|
212
|
+
/**
|
|
213
|
+
* Activate preview of CSF v3.0
|
|
214
|
+
*/
|
|
215
|
+
previewCsfV3?: boolean;
|
|
208
216
|
};
|
|
209
217
|
/**
|
|
210
218
|
* Tells Storybook where to find stories.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/core-common",
|
|
3
|
-
"version": "6.3.0-
|
|
3
|
+
"version": "6.3.0-rc.11",
|
|
4
4
|
"description": "Storybook framework-agnostic API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook"
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@babel/preset-react": "^7.12.10",
|
|
62
62
|
"@babel/preset-typescript": "^7.12.7",
|
|
63
63
|
"@babel/register": "^7.12.1",
|
|
64
|
-
"@storybook/node-logger": "6.3.0-
|
|
64
|
+
"@storybook/node-logger": "6.3.0-rc.11",
|
|
65
65
|
"@storybook/semver": "^7.3.2",
|
|
66
66
|
"@types/glob-base": "^0.3.0",
|
|
67
67
|
"@types/micromatch": "^4.0.1",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"webpack": "4"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
|
-
"@storybook/react-docgen-typescript-plugin": "0.
|
|
93
|
+
"@storybook/react-docgen-typescript-plugin": "1.0.2-canary.3c70e01.0",
|
|
94
94
|
"@types/interpret": "^1.1.1",
|
|
95
95
|
"@types/mock-fs": "^4.13.0",
|
|
96
96
|
"mock-fs": "^4.13.0"
|
|
@@ -107,6 +107,6 @@
|
|
|
107
107
|
"publishConfig": {
|
|
108
108
|
"access": "public"
|
|
109
109
|
},
|
|
110
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "db9968a8a241edf423c5780e229eca3f5e5ce773",
|
|
111
111
|
"sbmodern": "dist/modern/index.js"
|
|
112
112
|
}
|