@storybook/types 8.0.0-alpha.0 → 8.0.0-alpha.2
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/index.d.ts +6 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -3633,6 +3633,7 @@ interface CLIOptions {
|
|
|
3633
3633
|
enableCrashReports?: boolean;
|
|
3634
3634
|
host?: string;
|
|
3635
3635
|
initialPath?: string;
|
|
3636
|
+
exactPort?: boolean;
|
|
3636
3637
|
/**
|
|
3637
3638
|
* @deprecated Use 'staticDirs' Storybook Configuration option instead
|
|
3638
3639
|
*/
|
|
@@ -3838,6 +3839,10 @@ interface StorybookConfigRaw {
|
|
|
3838
3839
|
* This will make sure that your story renders the same no matter if docgen is enabled or not.
|
|
3839
3840
|
*/
|
|
3840
3841
|
disallowImplicitActionsInRenderV8?: boolean;
|
|
3842
|
+
/**
|
|
3843
|
+
* Enable asynchronous component rendering in NextJS framework
|
|
3844
|
+
*/
|
|
3845
|
+
experimentalNextRSC?: boolean;
|
|
3841
3846
|
};
|
|
3842
3847
|
build?: TestBuildConfig;
|
|
3843
3848
|
stories: StoriesEntry[];
|
|
@@ -4960,6 +4965,7 @@ type ComposedStoryFn<TRenderer extends Renderer = Renderer, TArgs = Args> = Part
|
|
|
4960
4965
|
id: StoryId;
|
|
4961
4966
|
storyName: string;
|
|
4962
4967
|
parameters: Parameters;
|
|
4968
|
+
argTypes: StrictArgTypes<TArgs>;
|
|
4963
4969
|
};
|
|
4964
4970
|
/**
|
|
4965
4971
|
* Based on a module of stories, it returns all stories within it, filtering non-stories
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/types",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.2",
|
|
4
4
|
"description": "Core Storybook TS Types",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/bundle.ts"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@storybook/channels": "8.0.0-alpha.
|
|
47
|
+
"@storybook/channels": "8.0.0-alpha.2",
|
|
48
48
|
"@types/babel__core": "^7.0.0",
|
|
49
49
|
"@types/express": "^4.7.0",
|
|
50
50
|
"file-system-cache": "2.3.0"
|