@storybook/preset-vue3-webpack 8.0.0-alpha.9 → 8.0.0-beta.1

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Storybook Webpack preset for Vue3
2
2
 
3
- This package is a [preset](https://storybook.js.org/docs/vue/addons/writing-presets#presets-api) that configures Storybook's webpack settings for handling Vue3.
3
+ This package is a [preset](https://storybook.js.org/docs/addons/writing-presets#presets-api) that configures Storybook's webpack settings for handling Vue 3.
4
4
  It's an internal package that's not intended to be used directly by users.
5
5
 
6
- - More info on [Storybook for Vue3](https://storybook.js.org/docs/vue/get-started)
6
+ - More info on [Storybook for Vue3](https://storybook.js.org/docs/get-started/why-storybook)
package/dist/index.d.ts CHANGED
@@ -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 = string;
724
+ type Tag$1 = string;
725
725
 
726
726
  interface Options$1 {
727
727
  allowRegExp: boolean;
@@ -799,7 +799,9 @@ type BaseIndexInput = {
799
799
  */
800
800
  metaId?: MetaId;
801
801
  /** Tags for filtering entries in Storybook and its tools. */
802
- tags?: Tag[];
802
+ tags?: Tag$1[];
803
+ /** Tags from the meta for filtering entries in Storybook and its tools. */
804
+ metaTags?: Tag$1[];
803
805
  /**
804
806
  * The id of the entry, auto-generated from {@link title}/{@link metaId} and {@link exportName} if unspecified.
805
807
  * If specified, the story in the CSF file _must_ have a matching id set at `parameters.__id`, to be correctly matched.
@@ -1037,6 +1039,12 @@ interface TestBuildFlags {
1037
1039
  interface TestBuildConfig {
1038
1040
  test?: TestBuildFlags;
1039
1041
  }
1042
+ type Tag = string;
1043
+ interface TagOptions {
1044
+ excludeFromSidebar: boolean;
1045
+ excludeFromDocsStories: boolean;
1046
+ }
1047
+ type TagsOptions = Record<Tag, Partial<TagOptions>>;
1040
1048
  /**
1041
1049
  * The interface for Storybook configuration used internally in presets
1042
1050
  * The difference is that these values are the raw values, AKA, not wrapped with `PresetValue<>`
@@ -1071,9 +1079,9 @@ interface StorybookConfigRaw {
1071
1079
  */
1072
1080
  disallowImplicitActionsInRenderV8?: boolean;
1073
1081
  /**
1074
- * Enable asynchronous component rendering in NextJS framework
1082
+ * Enable asynchronous component rendering in React renderer
1075
1083
  */
1076
- experimentalNextRSC?: boolean;
1084
+ experimentalRSC?: boolean;
1077
1085
  };
1078
1086
  build?: TestBuildConfig;
1079
1087
  stories: StoriesEntry[];
@@ -1084,7 +1092,6 @@ interface StorybookConfigRaw {
1084
1092
  swc?: any;
1085
1093
  env?: Record<string, string>;
1086
1094
  babelDefault?: any;
1087
- config?: Entry[];
1088
1095
  previewAnnotations?: Entry[];
1089
1096
  experimental_indexers?: Indexer[];
1090
1097
  docs?: DocsOptions;
@@ -1092,6 +1099,7 @@ interface StorybookConfigRaw {
1092
1099
  previewBody?: string;
1093
1100
  previewMainTemplate?: string;
1094
1101
  managerHead?: string;
1102
+ tags?: TagsOptions;
1095
1103
  }
1096
1104
  type PresetProperty<K, TStorybookConfig = StorybookConfigRaw> = TStorybookConfig[K extends keyof TStorybookConfig ? K : never] | PresetPropertyFn<K, TStorybookConfig>;
1097
1105
  type PresetPropertyFn<K, TStorybookConfig = StorybookConfigRaw, TOptions = {}> = (config: TStorybookConfig[K extends keyof TStorybookConfig ? K : never], options: Options & TOptions) => TStorybookConfig[K extends keyof TStorybookConfig ? K : never] | Promise<TStorybookConfig[K extends keyof TStorybookConfig ? K : never]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/preset-vue3-webpack",
3
- "version": "8.0.0-alpha.9",
3
+ "version": "8.0.0-beta.1",
4
4
  "description": "Storybook for Vue 3: Develop Vue 3 Components in isolation with Hot Reloading.",
5
5
  "keywords": [
6
6
  "storybook"
@@ -59,8 +59,8 @@
59
59
  "prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/bundle.ts"
60
60
  },
61
61
  "dependencies": {
62
- "@storybook/core-webpack": "8.0.0-alpha.9",
63
- "@storybook/docs-tools": "8.0.0-alpha.9",
62
+ "@storybook/core-webpack": "8.0.0-beta.1",
63
+ "@storybook/docs-tools": "8.0.0-beta.1",
64
64
  "@types/node": "^18.0.0",
65
65
  "ts-loader": "^9.2.8",
66
66
  "vue-docgen-api": "^4.46.0",