storybook 9.0.0-alpha.10 → 9.0.0-alpha.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/bin/index.cjs +63 -64
- package/dist/bin/index.js +59 -60
- package/dist/cli/bin/index.cjs +80 -80
- package/dist/cli/bin/index.js +83 -83
- package/dist/common/index.cjs +61 -62
- package/dist/common/index.d.ts +0 -1
- package/dist/common/index.js +93 -94
- package/dist/component-testing/index.cjs +23 -0
- package/dist/component-testing/index.d.ts +3 -0
- package/dist/component-testing/index.js +5 -0
- package/dist/component-testing/manager.css +170 -0
- package/dist/component-testing/manager.js +3099 -0
- package/dist/component-testing/preview.cjs +40 -0
- package/dist/component-testing/preview.d.ts +5 -0
- package/dist/component-testing/preview.js +25 -0
- package/dist/components/index.cjs +1 -0
- package/dist/components/index.js +1 -0
- package/dist/core-server/presets/common-preset.cjs +1359 -1359
- package/dist/core-server/presets/common-preset.js +1406 -1406
- package/dist/instrumenter/index.cjs +475 -468
- package/dist/instrumenter/index.js +949 -950
- package/dist/manager/globals-runtime.js +55652 -49799
- package/dist/manager-api/index.cjs +206 -206
- package/dist/manager-api/index.d.ts +1 -1
- package/dist/manager-api/index.js +1 -1
- package/dist/preview/runtime.js +38686 -37394
- package/dist/preview-api/index.cjs +591 -588
- package/dist/preview-api/index.d.ts +2 -2
- package/dist/preview-api/index.js +580 -577
- package/package.json +22 -1
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.11",
|
|
4
4
|
"description": "Storybook framework-agnostic API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook"
|
|
@@ -117,6 +117,19 @@
|
|
|
117
117
|
"types": "./dist/actions/decorator.d.ts",
|
|
118
118
|
"import": "./dist/actions/decorator.js"
|
|
119
119
|
},
|
|
120
|
+
"./internal/component-testing": {
|
|
121
|
+
"types": "./dist/component-testing/index.d.ts",
|
|
122
|
+
"import": "./dist/component-testing/index.js",
|
|
123
|
+
"require": "./dist/component-testing/index.cjs"
|
|
124
|
+
},
|
|
125
|
+
"./internal/component-testing/preview": {
|
|
126
|
+
"types": "./dist/component-testing/preview.d.ts",
|
|
127
|
+
"import": "./dist/component-testing/preview.js",
|
|
128
|
+
"require": "./dist/component-testing/preview.cjs"
|
|
129
|
+
},
|
|
130
|
+
"./internal/component-testing/manager": {
|
|
131
|
+
"import": "./dist/component-testing/manager.js"
|
|
132
|
+
},
|
|
120
133
|
"./internal/viewport": {
|
|
121
134
|
"types": "./dist/viewport/index.d.ts",
|
|
122
135
|
"import": "./dist/viewport/index.js",
|
|
@@ -370,6 +383,12 @@
|
|
|
370
383
|
"actions/decorator": [
|
|
371
384
|
"./dist/actions/decorator.d.ts"
|
|
372
385
|
],
|
|
386
|
+
"internal/component-testing": [
|
|
387
|
+
"./dist/component-testing/index.d.ts"
|
|
388
|
+
],
|
|
389
|
+
"internal/component-testing/preview": [
|
|
390
|
+
"./dist/component-testing/preview.d.ts"
|
|
391
|
+
],
|
|
373
392
|
"internal/viewport": [
|
|
374
393
|
"./dist/viewport/index.d.ts"
|
|
375
394
|
],
|
|
@@ -525,6 +544,7 @@
|
|
|
525
544
|
"@babel/preset-react": "^7.26.3",
|
|
526
545
|
"@babel/traverse": "^7.26.9",
|
|
527
546
|
"@babel/types": "^7.26.8",
|
|
547
|
+
"@devtools-ds/object-inspector": "^1.1.2",
|
|
528
548
|
"@discoveryjs/json-ext": "^0.5.3",
|
|
529
549
|
"@emotion/cache": "^11.14.0",
|
|
530
550
|
"@emotion/is-prop-valid": "^1.3.1",
|
|
@@ -633,6 +653,7 @@
|
|
|
633
653
|
"slash": "^5.0.0",
|
|
634
654
|
"source-map": "^0.7.4",
|
|
635
655
|
"store2": "^2.14.2",
|
|
656
|
+
"strip-ansi": "^7.1.0",
|
|
636
657
|
"strip-json-comments": "^5.0.1",
|
|
637
658
|
"telejson": "^7.2.0",
|
|
638
659
|
"tiny-invariant": "^1.3.1",
|