@storybook/web-components-vite 0.0.0-pr-25254-sha-63c0cc3b → 0.0.0-pr-25254-sha-a6f30dbc
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.
@@ -2622,6 +2622,11 @@ interface Options$1 {
|
|
2622
2622
|
|
2623
2623
|
type ExportName = string;
|
2624
2624
|
type MetaId = string;
|
2625
|
+
/**
|
2626
|
+
* StaticParameters are a subset of the parameters
|
2627
|
+
* that have been statically analyzed.
|
2628
|
+
*/
|
2629
|
+
type StaticParameters = Parameters;
|
2625
2630
|
interface StoriesSpecifier {
|
2626
2631
|
/**
|
2627
2632
|
* When auto-titling, what to prefix all generated titles with (default: '')
|
@@ -2648,6 +2653,7 @@ interface IndexedStory {
|
|
2648
2653
|
name: string;
|
2649
2654
|
tags?: Tag[];
|
2650
2655
|
parameters?: Parameters;
|
2656
|
+
staticParameters?: StaticParameters;
|
2651
2657
|
}
|
2652
2658
|
interface IndexedCSFFile {
|
2653
2659
|
meta: {
|
@@ -2714,7 +2720,7 @@ type BaseIndexInput = {
|
|
2714
2720
|
/**
|
2715
2721
|
* Experimental statically extracted parameters for the entry.
|
2716
2722
|
*/
|
2717
|
-
|
2723
|
+
staticParameters?: Parameters;
|
2718
2724
|
/**
|
2719
2725
|
* The id of the entry, auto-generated from {@link title}/{@link metaId} and {@link exportName} if unspecified.
|
2720
2726
|
* If specified, the story in the CSF file _must_ have a matching id set at `parameters.__id`, to be correctly matched.
|
@@ -3018,13 +3024,6 @@ interface StorybookConfigRaw {
|
|
3018
3024
|
* Enable asynchronous component rendering in NextJS framework
|
3019
3025
|
*/
|
3020
3026
|
experimentalNextRSC?: boolean;
|
3021
|
-
/**
|
3022
|
-
* Legacy stories.json extraction. stories.json will be removed in v9,
|
3023
|
-
* use `index.json` instead.
|
3024
|
-
*
|
3025
|
-
* @deprecated
|
3026
|
-
*/
|
3027
|
-
buildLegacyStoriesJson?: boolean;
|
3028
3027
|
};
|
3029
3028
|
build?: TestBuildConfig;
|
3030
3029
|
stories: StoriesEntry[];
|
package/dist/index.d.ts
CHANGED
package/dist/preset.d.ts
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/web-components-vite",
|
3
|
-
"version": "0.0.0-pr-25254-sha-
|
3
|
+
"version": "0.0.0-pr-25254-sha-a6f30dbc",
|
4
4
|
"description": "Storybook for web-components and Vite: Develop Web Components in isolation with Hot Reloading.",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -47,10 +47,10 @@
|
|
47
47
|
"prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/bundle.ts"
|
48
48
|
},
|
49
49
|
"dependencies": {
|
50
|
-
"@storybook/builder-vite": "0.0.0-pr-25254-sha-
|
51
|
-
"@storybook/core-server": "0.0.0-pr-25254-sha-
|
52
|
-
"@storybook/node-logger": "0.0.0-pr-25254-sha-
|
53
|
-
"@storybook/web-components": "0.0.0-pr-25254-sha-
|
50
|
+
"@storybook/builder-vite": "0.0.0-pr-25254-sha-a6f30dbc",
|
51
|
+
"@storybook/core-server": "0.0.0-pr-25254-sha-a6f30dbc",
|
52
|
+
"@storybook/node-logger": "0.0.0-pr-25254-sha-a6f30dbc",
|
53
|
+
"@storybook/web-components": "0.0.0-pr-25254-sha-a6f30dbc",
|
54
54
|
"magic-string": "^0.30.0"
|
55
55
|
},
|
56
56
|
"devDependencies": {
|