@storybook/react-dom-shim 7.6.0-alpha.5 → 7.6.0-alpha.6
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 +7 -7
- package/package.json +2 -2
package/dist/preset.d.ts
CHANGED
|
@@ -2911,19 +2911,19 @@ interface TestBuildFlags {
|
|
|
2911
2911
|
/**
|
|
2912
2912
|
* The package @storybook/blocks will be excluded from the bundle, even when imported in e.g. the preview.
|
|
2913
2913
|
*/
|
|
2914
|
-
|
|
2914
|
+
disableBlocks?: boolean;
|
|
2915
2915
|
/**
|
|
2916
|
-
* Disable
|
|
2916
|
+
* Disable specific addons
|
|
2917
2917
|
*/
|
|
2918
|
-
|
|
2918
|
+
disabledAddons?: string[];
|
|
2919
2919
|
/**
|
|
2920
2920
|
* Filter out .mdx stories entries
|
|
2921
2921
|
*/
|
|
2922
|
-
|
|
2922
|
+
disableMDXEntries?: boolean;
|
|
2923
2923
|
/**
|
|
2924
2924
|
* Override autodocs to be disabled
|
|
2925
2925
|
*/
|
|
2926
|
-
|
|
2926
|
+
disableAutoDocs?: boolean;
|
|
2927
2927
|
/**
|
|
2928
2928
|
* Override docgen to be disabled.
|
|
2929
2929
|
*/
|
|
@@ -2937,9 +2937,9 @@ interface TestBuildFlags {
|
|
|
2937
2937
|
*/
|
|
2938
2938
|
disableTreeShaking?: boolean;
|
|
2939
2939
|
/**
|
|
2940
|
-
*
|
|
2940
|
+
* Minify with ESBuild when using webpack.
|
|
2941
2941
|
*/
|
|
2942
|
-
|
|
2942
|
+
esbuildMinify?: boolean;
|
|
2943
2943
|
}
|
|
2944
2944
|
interface TestBuildConfig {
|
|
2945
2945
|
test?: TestBuildFlags;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/react-dom-shim",
|
|
3
|
-
"version": "7.6.0-alpha.
|
|
3
|
+
"version": "7.6.0-alpha.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook"
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"prep": "../../../scripts/prepare/bundle.ts"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@storybook/types": "7.6.0-alpha.
|
|
57
|
+
"@storybook/types": "7.6.0-alpha.6",
|
|
58
58
|
"typescript": "~4.9.3"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|