storybook 9.0.0-alpha.7 → 9.0.0-alpha.9
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/bin/index.cjs +63 -63
- package/dist/bin/index.js +63 -63
- package/dist/cli/bin/index.cjs +1 -1
- package/dist/cli/bin/index.js +1 -1
- package/dist/common/index.cjs +146 -132
- package/dist/common/index.d.ts +2 -1
- package/dist/common/index.js +146 -132
- package/dist/core-server/index.cjs +1412 -1390
- package/dist/core-server/index.js +1833 -1812
- package/dist/instrumenter/index.cjs +7 -4
- package/dist/instrumenter/index.js +7 -4
- package/dist/manager/globals-runtime.js +8 -5
- package/dist/manager-api/index.cjs +1 -1
- package/dist/manager-api/index.js +1 -1
- package/dist/preview/runtime.js +7 -4
- package/dist/telemetry/index.cjs +1050 -1977
- package/dist/telemetry/index.d.ts +25 -4
- package/dist/telemetry/index.js +1085 -2008
- package/dist/types/index.d.ts +0 -4
- package/package.json +2 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -1370,10 +1370,6 @@ interface StorybookConfigRaw {
|
|
|
1370
1370
|
disallowImplicitActionsInRenderV8?: boolean;
|
|
1371
1371
|
/** Enable asynchronous component rendering in React renderer */
|
|
1372
1372
|
experimentalRSC?: boolean;
|
|
1373
|
-
/** Use globals & globalTypes for configuring the viewport addon */
|
|
1374
|
-
viewportStoryGlobals?: boolean;
|
|
1375
|
-
/** Use globals & globalTypes for configuring the backgrounds addon */
|
|
1376
|
-
backgroundsStoryGlobals?: boolean;
|
|
1377
1373
|
/** Set NODE_ENV to development in built Storybooks for better testability and debuggability */
|
|
1378
1374
|
developmentModeForBuild?: boolean;
|
|
1379
1375
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "storybook",
|
|
3
|
-
"version": "9.0.0-alpha.
|
|
3
|
+
"version": "9.0.0-alpha.9",
|
|
4
4
|
"description": "Storybook framework-agnostic API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook"
|
|
@@ -520,7 +520,6 @@
|
|
|
520
520
|
"deep-object-diff": "^1.1.0",
|
|
521
521
|
"dequal": "^2.0.2",
|
|
522
522
|
"detect-indent": "^7.0.1",
|
|
523
|
-
"detect-package-manager": "^3.0.2",
|
|
524
523
|
"detect-port": "^1.3.0",
|
|
525
524
|
"diff": "^5.2.0",
|
|
526
525
|
"downshift": "^9.0.4",
|
|
@@ -547,6 +546,7 @@
|
|
|
547
546
|
"nanoid": "^4.0.2",
|
|
548
547
|
"npmlog": "^7.0.0",
|
|
549
548
|
"open": "^8.4.0",
|
|
549
|
+
"package-manager-detector": "^1.1.0",
|
|
550
550
|
"picocolors": "^1.1.0",
|
|
551
551
|
"picomatch": "^2.3.0",
|
|
552
552
|
"picoquery": "^1.4.0",
|