@storybook/web-components-vite 0.0.0-pr-25254-sha-f2fdcdf1 → 0.0.0-pr-25244-sha-bd2cf8e0
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.
@@ -2641,7 +2641,6 @@ interface StoriesSpecifier {
|
|
2641
2641
|
type StoriesEntry = string | StoriesSpecifier;
|
2642
2642
|
interface IndexerOptions {
|
2643
2643
|
makeTitle: (userTitle?: string) => string;
|
2644
|
-
experimentalParameters?: string[];
|
2645
2644
|
}
|
2646
2645
|
interface IndexedStory {
|
2647
2646
|
id: string;
|
@@ -2711,10 +2710,6 @@ type BaseIndexInput = {
|
|
2711
2710
|
metaId?: MetaId;
|
2712
2711
|
/** Tags for filtering entries in Storybook and its tools. */
|
2713
2712
|
tags?: Tag[];
|
2714
|
-
/**
|
2715
|
-
* Experimental statically extracted parameters for the entry.
|
2716
|
-
*/
|
2717
|
-
parameters?: Parameters;
|
2718
2713
|
/**
|
2719
2714
|
* The id of the entry, auto-generated from {@link title}/{@link metaId} and {@link exportName} if unspecified.
|
2720
2715
|
* If specified, the story in the CSF file _must_ have a matching id set at `parameters.__id`, to be correctly matched.
|
@@ -2850,7 +2845,6 @@ interface CLIOptions {
|
|
2850
2845
|
debugWebpack?: boolean;
|
2851
2846
|
webpackStatsJson?: string | boolean;
|
2852
2847
|
outputDir?: string;
|
2853
|
-
experimentalBuildParameters?: string[];
|
2854
2848
|
}
|
2855
2849
|
interface BuilderOptions {
|
2856
2850
|
configType?: 'DEVELOPMENT' | 'PRODUCTION';
|
@@ -3018,13 +3012,6 @@ interface StorybookConfigRaw {
|
|
3018
3012
|
* Enable asynchronous component rendering in NextJS framework
|
3019
3013
|
*/
|
3020
3014
|
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
3015
|
};
|
3029
3016
|
build?: TestBuildConfig;
|
3030
3017
|
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-
|
3
|
+
"version": "0.0.0-pr-25244-sha-bd2cf8e0",
|
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-
|
51
|
-
"@storybook/core-server": "0.0.0-pr-
|
52
|
-
"@storybook/node-logger": "0.0.0-pr-
|
53
|
-
"@storybook/web-components": "0.0.0-pr-
|
50
|
+
"@storybook/builder-vite": "0.0.0-pr-25244-sha-bd2cf8e0",
|
51
|
+
"@storybook/core-server": "0.0.0-pr-25244-sha-bd2cf8e0",
|
52
|
+
"@storybook/node-logger": "0.0.0-pr-25244-sha-bd2cf8e0",
|
53
|
+
"@storybook/web-components": "0.0.0-pr-25244-sha-bd2cf8e0",
|
54
54
|
"magic-string": "^0.30.0"
|
55
55
|
},
|
56
56
|
"devDependencies": {
|