storybook 9.0.0-alpha.3 → 9.0.0-alpha.5
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/README.md +1 -1
- package/dist/actions/decorator.d.ts +6 -0
- package/dist/actions/decorator.js +139 -0
- package/dist/actions/index.cjs +127 -0
- package/dist/actions/index.d.ts +105 -0
- package/dist/actions/index.js +112 -0
- package/dist/actions/manager.js +1196 -0
- package/dist/actions/preview.cjs +165 -0
- package/dist/actions/preview.d.ts +55 -0
- package/dist/actions/preview.js +156 -0
- package/dist/bin/index.cjs +63 -64
- package/dist/bin/index.js +63 -64
- package/dist/channels/index.cjs +207 -230
- package/dist/channels/index.js +302 -304
- package/dist/cli/bin/index.cjs +405 -405
- package/dist/cli/bin/index.js +410 -410
- package/dist/client-logger/index.cjs +56 -88
- package/dist/client-logger/index.js +41 -47
- package/dist/common/index.cjs +65 -67
- package/dist/common/index.d.ts +1 -4
- package/dist/common/index.js +65 -67
- package/dist/components/index.cjs +9413 -11578
- package/dist/components/index.d.ts +92 -92
- package/dist/components/index.js +6768 -7544
- package/dist/core-events/index.d.ts +138 -25
- package/dist/core-server/index.cjs +5241 -5265
- package/dist/core-server/index.js +5353 -5375
- package/dist/core-server/presets/common-manager.js +11 -19
- package/dist/core-server/presets/common-preset.cjs +243 -242
- package/dist/core-server/presets/common-preset.js +379 -378
- package/dist/csf/index.cjs +76 -120
- package/dist/csf/index.d.ts +2 -4
- package/dist/csf/index.js +69 -113
- package/dist/docs-tools/index.cjs +1 -1
- package/dist/docs-tools/index.d.ts +2 -2
- package/dist/docs-tools/index.js +1 -1
- package/dist/instrumenter/index.cjs +1260 -1289
- package/dist/instrumenter/index.js +1344 -1348
- package/dist/manager/globals-module-info.cjs +272 -135
- package/dist/manager/globals-module-info.d.ts +1 -1
- package/dist/manager/globals-module-info.js +257 -120
- package/dist/manager/globals-runtime.js +59553 -22371
- package/dist/manager/globals.cjs +23 -19
- package/dist/manager/globals.d.ts +8 -5
- package/dist/manager/globals.js +10 -6
- package/dist/manager/runtime.js +129 -129
- package/dist/manager-api/index.cjs +1182 -1205
- package/dist/manager-api/index.d.ts +2 -2
- package/dist/manager-api/index.js +1010 -1008
- package/dist/preview/globals.cjs +21 -17
- package/dist/preview/globals.d.ts +4 -1
- package/dist/preview/globals.js +6 -2
- package/dist/preview/runtime.js +43946 -6546
- package/dist/preview-api/index.cjs +1243 -1239
- package/dist/preview-api/index.d.ts +104 -60
- package/dist/preview-api/index.js +1310 -1270
- package/dist/router/index.cjs +847 -871
- package/dist/router/index.js +193 -199
- package/dist/test/index.cjs +10068 -10205
- package/dist/test/index.d.ts +4 -4
- package/dist/test/index.js +9741 -9623
- package/dist/test/preview.cjs +15870 -0
- package/dist/test/preview.d.ts +54 -0
- package/dist/test/preview.js +14441 -0
- package/dist/test/spy.cjs +258 -0
- package/dist/test/spy.d.ts +66 -0
- package/dist/test/spy.js +240 -0
- package/dist/theming/create.cjs +79 -2269
- package/dist/theming/create.js +67 -841
- package/dist/theming/index.cjs +1065 -3232
- package/dist/theming/index.js +951 -1719
- package/dist/types/index.d.ts +242 -242
- package/package.json +134 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { Addon_TestProviderType, Addon_TestProviderState } from 'storybook/internal/types';
|
|
2
|
+
import { Report } from 'storybook/preview-api';
|
|
3
3
|
|
|
4
4
|
interface CreateNewStoryRequestPayload {
|
|
5
5
|
componentFilePath: string;
|
|
@@ -30,6 +30,142 @@ interface FileComponentSearchResponsePayload {
|
|
|
30
30
|
}> | null;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
+
declare global {
|
|
34
|
+
interface SymbolConstructor {
|
|
35
|
+
readonly observable: symbol;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
interface SBBaseType {
|
|
40
|
+
required?: boolean;
|
|
41
|
+
raw?: string;
|
|
42
|
+
}
|
|
43
|
+
type SBScalarType = SBBaseType & {
|
|
44
|
+
name: 'boolean' | 'string' | 'number' | 'function' | 'symbol';
|
|
45
|
+
};
|
|
46
|
+
type SBArrayType = SBBaseType & {
|
|
47
|
+
name: 'array';
|
|
48
|
+
value: SBType;
|
|
49
|
+
};
|
|
50
|
+
type SBObjectType = SBBaseType & {
|
|
51
|
+
name: 'object';
|
|
52
|
+
value: Record<string, SBType>;
|
|
53
|
+
};
|
|
54
|
+
type SBEnumType = SBBaseType & {
|
|
55
|
+
name: 'enum';
|
|
56
|
+
value: (string | number)[];
|
|
57
|
+
};
|
|
58
|
+
type SBIntersectionType = SBBaseType & {
|
|
59
|
+
name: 'intersection';
|
|
60
|
+
value: SBType[];
|
|
61
|
+
};
|
|
62
|
+
type SBUnionType = SBBaseType & {
|
|
63
|
+
name: 'union';
|
|
64
|
+
value: SBType[];
|
|
65
|
+
};
|
|
66
|
+
type SBOtherType = SBBaseType & {
|
|
67
|
+
name: 'other';
|
|
68
|
+
value: string;
|
|
69
|
+
};
|
|
70
|
+
type SBType = SBScalarType | SBEnumType | SBArrayType | SBObjectType | SBIntersectionType | SBUnionType | SBOtherType;
|
|
71
|
+
|
|
72
|
+
type ControlType = 'object' | 'boolean' | 'check' | 'inline-check' | 'radio' | 'inline-radio' | 'select' | 'multi-select' | 'number' | 'range' | 'file' | 'color' | 'date' | 'text';
|
|
73
|
+
type ConditionalTest = {
|
|
74
|
+
truthy?: boolean;
|
|
75
|
+
} | {
|
|
76
|
+
exists: boolean;
|
|
77
|
+
} | {
|
|
78
|
+
eq: any;
|
|
79
|
+
} | {
|
|
80
|
+
neq: any;
|
|
81
|
+
};
|
|
82
|
+
type ConditionalValue = {
|
|
83
|
+
arg: string;
|
|
84
|
+
} | {
|
|
85
|
+
global: string;
|
|
86
|
+
};
|
|
87
|
+
type Conditional = ConditionalValue & ConditionalTest;
|
|
88
|
+
interface ControlBase {
|
|
89
|
+
[key: string]: any;
|
|
90
|
+
/** @see https://storybook.js.org/docs/api/arg-types#controltype */
|
|
91
|
+
type?: ControlType;
|
|
92
|
+
disable?: boolean;
|
|
93
|
+
}
|
|
94
|
+
type Control = ControlType | false | (ControlBase & (ControlBase | {
|
|
95
|
+
type: 'color';
|
|
96
|
+
/** @see https://storybook.js.org/docs/api/arg-types#controlpresetcolors */
|
|
97
|
+
presetColors?: string[];
|
|
98
|
+
} | {
|
|
99
|
+
type: 'file';
|
|
100
|
+
/** @see https://storybook.js.org/docs/api/arg-types#controlaccept */
|
|
101
|
+
accept?: string;
|
|
102
|
+
} | {
|
|
103
|
+
type: 'inline-check' | 'radio' | 'inline-radio' | 'select' | 'multi-select';
|
|
104
|
+
/** @see https://storybook.js.org/docs/api/arg-types#controllabels */
|
|
105
|
+
labels?: {
|
|
106
|
+
[options: string]: string;
|
|
107
|
+
};
|
|
108
|
+
} | {
|
|
109
|
+
type: 'number' | 'range';
|
|
110
|
+
/** @see https://storybook.js.org/docs/api/arg-types#controlmax */
|
|
111
|
+
max?: number;
|
|
112
|
+
/** @see https://storybook.js.org/docs/api/arg-types#controlmin */
|
|
113
|
+
min?: number;
|
|
114
|
+
/** @see https://storybook.js.org/docs/api/arg-types#controlstep */
|
|
115
|
+
step?: number;
|
|
116
|
+
}));
|
|
117
|
+
interface InputType {
|
|
118
|
+
/** @see https://storybook.js.org/docs/api/arg-types#control */
|
|
119
|
+
control?: Control;
|
|
120
|
+
/** @see https://storybook.js.org/docs/api/arg-types#description */
|
|
121
|
+
description?: string;
|
|
122
|
+
/** @see https://storybook.js.org/docs/api/arg-types#if */
|
|
123
|
+
if?: Conditional;
|
|
124
|
+
/** @see https://storybook.js.org/docs/api/arg-types#mapping */
|
|
125
|
+
mapping?: {
|
|
126
|
+
[key: string]: any;
|
|
127
|
+
};
|
|
128
|
+
/** @see https://storybook.js.org/docs/api/arg-types#name */
|
|
129
|
+
name?: string;
|
|
130
|
+
/** @see https://storybook.js.org/docs/api/arg-types#options */
|
|
131
|
+
options?: readonly any[];
|
|
132
|
+
/** @see https://storybook.js.org/docs/api/arg-types#table */
|
|
133
|
+
table?: {
|
|
134
|
+
[key: string]: unknown;
|
|
135
|
+
/** @see https://storybook.js.org/docs/api/arg-types#tablecategory */
|
|
136
|
+
category?: string;
|
|
137
|
+
/** @see https://storybook.js.org/docs/api/arg-types#tabledefaultvalue */
|
|
138
|
+
defaultValue?: {
|
|
139
|
+
summary?: string;
|
|
140
|
+
detail?: string;
|
|
141
|
+
};
|
|
142
|
+
/** @see https://storybook.js.org/docs/api/arg-types#tabledisable */
|
|
143
|
+
disable?: boolean;
|
|
144
|
+
/** @see https://storybook.js.org/docs/api/arg-types#tablesubcategory */
|
|
145
|
+
subcategory?: string;
|
|
146
|
+
/** @see https://storybook.js.org/docs/api/arg-types#tabletype */
|
|
147
|
+
type?: {
|
|
148
|
+
summary?: string;
|
|
149
|
+
detail?: string;
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
/** @see https://storybook.js.org/docs/api/arg-types#type */
|
|
153
|
+
type?: SBType | SBScalarType['name'];
|
|
154
|
+
/**
|
|
155
|
+
* @deprecated Use `table.defaultValue.summary` instead.
|
|
156
|
+
* @see https://storybook.js.org/docs/api/arg-types#defaultvalue
|
|
157
|
+
*/
|
|
158
|
+
defaultValue?: any;
|
|
159
|
+
[key: string]: any;
|
|
160
|
+
}
|
|
161
|
+
interface Args {
|
|
162
|
+
[name: string]: any;
|
|
163
|
+
}
|
|
164
|
+
/** @see https://storybook.js.org/docs/api/arg-types#argtypes */
|
|
165
|
+
type ArgTypes<TArgs = Args> = {
|
|
166
|
+
[name in keyof TArgs]: InputType;
|
|
167
|
+
};
|
|
168
|
+
|
|
33
169
|
interface ArgTypesRequestPayload {
|
|
34
170
|
storyId: string;
|
|
35
171
|
}
|
|
@@ -152,29 +288,6 @@ type TestingModuleCancelTestRunResponsePayload = {
|
|
|
152
288
|
message: string;
|
|
153
289
|
};
|
|
154
290
|
|
|
155
|
-
declare global {
|
|
156
|
-
var globalProjectAnnotations: NormalizedProjectAnnotations<any>;
|
|
157
|
-
var defaultProjectAnnotations: ProjectAnnotations<any>;
|
|
158
|
-
}
|
|
159
|
-
type WrappedStoryRef = {
|
|
160
|
-
__pw_type: 'jsx' | 'importRef';
|
|
161
|
-
};
|
|
162
|
-
type UnwrappedJSXStoryRef = {
|
|
163
|
-
__pw_type: 'jsx';
|
|
164
|
-
type: UnwrappedImportStoryRef;
|
|
165
|
-
};
|
|
166
|
-
type UnwrappedImportStoryRef = ComposedStoryFn;
|
|
167
|
-
declare global {
|
|
168
|
-
function __pwUnwrapObject(storyRef: WrappedStoryRef): Promise<UnwrappedJSXStoryRef | UnwrappedImportStoryRef>;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
interface Report<T = unknown> {
|
|
172
|
-
type: string;
|
|
173
|
-
version?: number;
|
|
174
|
-
result: T;
|
|
175
|
-
status: 'failed' | 'passed' | 'warning';
|
|
176
|
-
}
|
|
177
|
-
|
|
178
291
|
interface StoryFinishedPayload {
|
|
179
292
|
storyId: string;
|
|
180
293
|
status: 'error' | 'success';
|