@storybook/web-components-vite 0.0.0-pr-25254-sha-a6f30dbc → 0.0.0-pr-25303-sha-f3c003d0

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,11 +2622,6 @@ 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;
2630
2625
  interface StoriesSpecifier {
2631
2626
  /**
2632
2627
  * When auto-titling, what to prefix all generated titles with (default: '')
@@ -2646,14 +2641,12 @@ interface StoriesSpecifier {
2646
2641
  type StoriesEntry = string | StoriesSpecifier;
2647
2642
  interface IndexerOptions {
2648
2643
  makeTitle: (userTitle?: string) => string;
2649
- staticParameters?: string[];
2650
2644
  }
2651
2645
  interface IndexedStory {
2652
2646
  id: string;
2653
2647
  name: string;
2654
2648
  tags?: Tag[];
2655
2649
  parameters?: Parameters;
2656
- staticParameters?: StaticParameters;
2657
2650
  }
2658
2651
  interface IndexedCSFFile {
2659
2652
  meta: {
@@ -2717,10 +2710,6 @@ type BaseIndexInput = {
2717
2710
  metaId?: MetaId;
2718
2711
  /** Tags for filtering entries in Storybook and its tools. */
2719
2712
  tags?: Tag[];
2720
- /**
2721
- * Experimental statically extracted parameters for the entry.
2722
- */
2723
- staticParameters?: Parameters;
2724
2713
  /**
2725
2714
  * The id of the entry, auto-generated from {@link title}/{@link metaId} and {@link exportName} if unspecified.
2726
2715
  * If specified, the story in the CSF file _must_ have a matching id set at `parameters.__id`, to be correctly matched.
@@ -2822,6 +2811,7 @@ interface LoadOptions {
2822
2811
  packageJson: PackageJson;
2823
2812
  outputDir?: string;
2824
2813
  configDir?: string;
2814
+ cacheKey?: string;
2825
2815
  ignorePreview?: boolean;
2826
2816
  extendServer?: (server: Server) => void;
2827
2817
  }
@@ -2856,7 +2846,6 @@ interface CLIOptions {
2856
2846
  debugWebpack?: boolean;
2857
2847
  webpackStatsJson?: string | boolean;
2858
2848
  outputDir?: string;
2859
- experimentalStaticParameters?: string[];
2860
2849
  }
2861
2850
  interface BuilderOptions {
2862
2851
  configType?: 'DEVELOPMENT' | 'PRODUCTION';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { F as FrameworkOptions, S as StorybookConfig } from './index-bb792f99.js';
1
+ export { F as FrameworkOptions, S as StorybookConfig } from './index-aa740b93.js';
2
2
  import 'file-system-cache';
3
3
  import '@babel/core';
4
4
  import 'http';
package/dist/preset.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { P as PresetProperty, S as StorybookConfig } from './index-bb792f99.js';
1
+ import { P as PresetProperty, S as StorybookConfig } from './index-aa740b93.js';
2
2
  import 'file-system-cache';
3
3
  import '@babel/core';
4
4
  import 'http';
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-a6f30dbc",
3
+ "version": "0.0.0-pr-25303-sha-f3c003d0",
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-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",
50
+ "@storybook/builder-vite": "0.0.0-pr-25303-sha-f3c003d0",
51
+ "@storybook/core-server": "0.0.0-pr-25303-sha-f3c003d0",
52
+ "@storybook/node-logger": "0.0.0-pr-25303-sha-f3c003d0",
53
+ "@storybook/web-components": "0.0.0-pr-25303-sha-f3c003d0",
54
54
  "magic-string": "^0.30.0"
55
55
  },
56
56
  "devDependencies": {
package/jest.config.js DELETED
@@ -1,7 +0,0 @@
1
- const path = require('path');
2
- const baseConfig = require('../../jest.config.node');
3
-
4
- module.exports = {
5
- ...baseConfig,
6
- displayName: __dirname.split(path.sep).slice(-2).join(path.posix.sep),
7
- };