storybook 9.1.0-alpha.4 → 9.1.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/bin/index.cjs +62 -69
- package/dist/bin/index.js +43 -50
- package/dist/cli/bin/index.cjs +604 -604
- package/dist/cli/bin/index.js +151 -150
- package/dist/cli/index.cjs +13787 -13796
- package/dist/cli/index.d.ts +706 -15
- package/dist/cli/index.js +12363 -12371
- package/dist/common/index.cjs +10988 -10891
- package/dist/common/index.d.ts +342 -69
- package/dist/common/index.js +24631 -24531
- package/dist/components/index.cjs +5 -3
- package/dist/components/index.d.ts +2 -1
- package/dist/components/index.js +5 -3
- package/dist/controls/preview.cjs +14 -14
- package/dist/controls/preview.d.ts +1 -1
- package/dist/controls/preview.js +2 -2
- package/dist/core-server/index.cjs +4838 -4791
- package/dist/core-server/index.d.ts +10 -1
- package/dist/core-server/index.js +5746 -5699
- package/dist/core-server/presets/common-manager.js +46 -32
- package/dist/core-server/presets/common-preset.cjs +1047 -1045
- package/dist/core-server/presets/common-preset.js +2053 -2048
- package/dist/csf/index.d.ts +2 -1
- package/dist/csf-tools/index.cjs +226 -224
- package/dist/csf-tools/index.js +116 -112
- package/dist/manager/globals-runtime.js +6 -4
- package/dist/manager-api/index.cjs +73 -73
- package/dist/manager-api/index.js +140 -140
- package/dist/node-logger/index.cjs +8520 -994
- package/dist/node-logger/index.d.ts +395 -2
- package/dist/node-logger/index.js +8535 -995
- package/dist/server-errors.cjs +201 -242
- package/dist/server-errors.d.ts +1 -12
- package/dist/server-errors.js +182 -223
- package/dist/telemetry/index.cjs +1326 -1325
- package/dist/telemetry/index.d.ts +3 -2
- package/dist/telemetry/index.js +1217 -1214
- package/dist/types/index.d.ts +3 -3
- package/package.json +18 -9
package/dist/csf/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { StorybookTypes, Renderer as Renderer$1, ProjectAnnotations as ProjectAnnotations$1, NormalizedProjectAnnotations, Args as Args$1, ComponentAnnotations as ComponentAnnotations$1, StoryAnnotations as StoryAnnotations$1, ComposedStoryFn } from 'storybook/internal/types';
|
|
2
2
|
import { ActionsTypes } from 'storybook/actions/preview';
|
|
3
3
|
import { BackgroundTypes } from 'storybook/backgrounds/preview';
|
|
4
|
+
import { ControlsTypes } from 'storybook/controls/preview';
|
|
4
5
|
import { HighlightTypes } from 'storybook/highlight/preview';
|
|
5
6
|
import { MeasureTypes } from 'storybook/measure/preview';
|
|
6
7
|
import { OutlineTypes } from 'storybook/outline/preview';
|
|
@@ -297,7 +298,7 @@ type SBOtherType = SBBaseType & {
|
|
|
297
298
|
};
|
|
298
299
|
type SBType = SBScalarType | SBEnumType | SBArrayType | SBObjectType | SBIntersectionType | SBUnionType | SBOtherType;
|
|
299
300
|
|
|
300
|
-
type CoreTypes = StorybookTypes & ActionsTypes & BackgroundTypes & HighlightTypes & MeasureTypes & OutlineTypes & TestTypes & ViewportTypes;
|
|
301
|
+
type CoreTypes = StorybookTypes & ActionsTypes & BackgroundTypes & ControlsTypes & HighlightTypes & MeasureTypes & OutlineTypes & TestTypes & ViewportTypes;
|
|
301
302
|
declare function getCoreAnnotations(): any[];
|
|
302
303
|
|
|
303
304
|
type StoryId = string;
|