@storybook/web-components-vite 0.0.0-pr-25596-sha-579fbffd → 0.0.0-pr-25540-sha-c0037961

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.
@@ -721,7 +721,7 @@ PackageJson$1.JSPMConfiguration;
721
721
  type StoryId = string;
722
722
  type ComponentTitle = string;
723
723
  type StoryName = string;
724
- type Tag$1 = string;
724
+ type Tag = string;
725
725
 
726
726
  interface Options$1 {
727
727
  allowRegExp: boolean;
@@ -799,9 +799,7 @@ type BaseIndexInput = {
799
799
  */
800
800
  metaId?: MetaId;
801
801
  /** Tags for filtering entries in Storybook and its tools. */
802
- tags?: Tag$1[];
803
- /** Tags from the meta for filtering entries in Storybook and its tools. */
804
- metaTags?: Tag$1[];
802
+ tags?: Tag[];
805
803
  /**
806
804
  * The id of the entry, auto-generated from {@link title}/{@link metaId} and {@link exportName} if unspecified.
807
805
  * If specified, the story in the CSF file _must_ have a matching id set at `parameters.__id`, to be correctly matched.
@@ -1039,12 +1037,6 @@ interface TestBuildFlags {
1039
1037
  interface TestBuildConfig {
1040
1038
  test?: TestBuildFlags;
1041
1039
  }
1042
- type Tag = string;
1043
- interface TagOptions {
1044
- excludeFromSidebar: boolean;
1045
- excludeFromDocsStories: boolean;
1046
- }
1047
- type TagsOptions = Record<Tag, Partial<TagOptions>>;
1048
1040
  /**
1049
1041
  * The interface for Storybook configuration used internally in presets
1050
1042
  * The difference is that these values are the raw values, AKA, not wrapped with `PresetValue<>`
@@ -1100,7 +1092,6 @@ interface StorybookConfigRaw {
1100
1092
  previewBody?: string;
1101
1093
  previewMainTemplate?: string;
1102
1094
  managerHead?: string;
1103
- tags?: TagsOptions;
1104
1095
  }
1105
1096
  /**
1106
1097
  * The interface for Storybook configuration in `main.ts` files.
@@ -1197,10 +1188,6 @@ interface StorybookConfig$1 {
1197
1188
  * which is the existing head content, and return a modified string.
1198
1189
  */
1199
1190
  managerHead?: PresetValue<StorybookConfigRaw['managerHead']>;
1200
- /**
1201
- * Configure non-standard tag behaviors
1202
- */
1203
- tags?: PresetValue<StorybookConfigRaw['tags']>;
1204
1191
  }
1205
1192
  type PresetValue<T> = T | ((config: T, options: Options) => T | Promise<T>);
1206
1193
  type PresetProperty<K, TStorybookConfig = StorybookConfigRaw> = TStorybookConfig[K extends keyof TStorybookConfig ? K : never] | PresetPropertyFn<K, TStorybookConfig>;
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { F as FrameworkOptions, S as StorybookConfig } from './index-1f46d671.js';
1
+ export { F as FrameworkOptions, S as StorybookConfig } from './index-c8b92ec9.js';
2
2
  import 'file-system-cache';
3
3
  import 'http';
4
4
  import '@storybook/builder-vite';
package/dist/preset.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { P as PresetProperty, S as StorybookConfig } from './index-1f46d671.js';
1
+ import { P as PresetProperty, S as StorybookConfig } from './index-c8b92ec9.js';
2
2
  import 'file-system-cache';
3
3
  import 'http';
4
4
  import '@storybook/builder-vite';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/web-components-vite",
3
- "version": "0.0.0-pr-25596-sha-579fbffd",
3
+ "version": "0.0.0-pr-25540-sha-c0037961",
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-25596-sha-579fbffd",
51
- "@storybook/core-server": "0.0.0-pr-25596-sha-579fbffd",
52
- "@storybook/node-logger": "0.0.0-pr-25596-sha-579fbffd",
53
- "@storybook/web-components": "0.0.0-pr-25596-sha-579fbffd",
50
+ "@storybook/builder-vite": "0.0.0-pr-25540-sha-c0037961",
51
+ "@storybook/core-server": "0.0.0-pr-25540-sha-c0037961",
52
+ "@storybook/node-logger": "0.0.0-pr-25540-sha-c0037961",
53
+ "@storybook/web-components": "0.0.0-pr-25540-sha-c0037961",
54
54
  "magic-string": "^0.30.0"
55
55
  },
56
56
  "devDependencies": {