storybook 9.0.8 → 9.0.10
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 +54 -61
- package/dist/bin/index.js +45 -52
- package/dist/cli/bin/index.cjs +572 -572
- package/dist/cli/bin/index.js +582 -582
- package/dist/cli/index.cjs +2465 -2464
- package/dist/cli/index.d.ts +1 -0
- package/dist/cli/index.js +2444 -2443
- package/dist/common/index.cjs +677 -684
- package/dist/common/index.d.ts +0 -7
- package/dist/common/index.js +680 -687
- package/dist/core-server/presets/common-manager.js +2545 -2507
- package/dist/csf/index.d.ts +3 -1
- package/dist/instrumenter/index.cjs +958 -934
- package/dist/instrumenter/index.d.ts +1 -0
- package/dist/instrumenter/index.js +933 -908
- package/dist/manager/globals-runtime.js +8514 -8489
- package/dist/manager-api/index.cjs +1 -1
- package/dist/manager-api/index.js +1 -1
- package/dist/preview/runtime.js +7488 -7459
- package/dist/preview-api/index.cjs +4438 -2648
- package/dist/preview-api/index.js +4231 -2435
- package/dist/telemetry/index.cjs +521 -521
- package/dist/telemetry/index.js +526 -526
- package/package.json +1 -185
- package/dist/actions/preview.cjs +0 -159
- package/dist/actions/preview.d.ts +0 -555
- package/dist/actions/preview.js +0 -149
- package/dist/backgrounds/index.cjs +0 -148
- package/dist/backgrounds/index.d.ts +0 -592
- package/dist/backgrounds/index.js +0 -130
- package/dist/backgrounds/preview.cjs +0 -143
- package/dist/backgrounds/preview.d.ts +0 -555
- package/dist/backgrounds/preview.js +0 -127
- package/dist/component-testing/index.cjs +0 -23
- package/dist/component-testing/index.d.ts +0 -3
- package/dist/component-testing/index.js +0 -5
- package/dist/component-testing/preview.cjs +0 -40
- package/dist/component-testing/preview.d.ts +0 -5
- package/dist/component-testing/preview.js +0 -25
- package/dist/controls/preview.cjs +0 -26
- package/dist/controls/preview.d.ts +0 -555
- package/dist/controls/preview.js +0 -9
- package/dist/highlight/preview.cjs +0 -590
- package/dist/highlight/preview.d.ts +0 -555
- package/dist/highlight/preview.js +0 -574
- package/dist/measure/index.cjs +0 -476
- package/dist/measure/index.d.ts +0 -567
- package/dist/measure/index.js +0 -464
- package/dist/measure/preview.cjs +0 -466
- package/dist/measure/preview.d.ts +0 -560
- package/dist/measure/preview.js +0 -450
- package/dist/outline/index.cjs +0 -528
- package/dist/outline/index.d.ts +0 -567
- package/dist/outline/index.js +0 -500
- package/dist/outline/preview.cjs +0 -518
- package/dist/outline/preview.d.ts +0 -560
- package/dist/outline/preview.js +0 -486
- package/dist/test/preview.cjs +0 -73
- package/dist/test/preview.d.ts +0 -555
- package/dist/test/preview.js +0 -66
- package/dist/viewport/preview.cjs +0 -35
- package/dist/viewport/preview.d.ts +0 -569
- package/dist/viewport/preview.js +0 -19
package/dist/common/index.d.ts
CHANGED
|
@@ -7,19 +7,12 @@ import { ConfigFile } from 'storybook/internal/csf-tools';
|
|
|
7
7
|
|
|
8
8
|
declare const _default: {
|
|
9
9
|
'@storybook/addon-a11y': string;
|
|
10
|
-
'@storybook/addon-actions': string;
|
|
11
|
-
'@storybook/addon-backgrounds': string;
|
|
12
|
-
'@storybook/addon-controls': string;
|
|
13
10
|
'@storybook/addon-docs': string;
|
|
14
11
|
'@storybook/addon-jest': string;
|
|
15
12
|
'@storybook/addon-links': string;
|
|
16
|
-
'@storybook/addon-measure': string;
|
|
17
13
|
'@storybook/addon-onboarding': string;
|
|
18
|
-
'@storybook/addon-outline': string;
|
|
19
14
|
'storybook-addon-pseudo-states': string;
|
|
20
15
|
'@storybook/addon-themes': string;
|
|
21
|
-
'@storybook/addon-toolbars': string;
|
|
22
|
-
'@storybook/addon-viewport': string;
|
|
23
16
|
'@storybook/addon-vitest': string;
|
|
24
17
|
'@storybook/builder-vite': string;
|
|
25
18
|
'@storybook/builder-webpack5': string;
|