@storybook/preset-vue3-webpack 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.
- package/dist/index.d.ts +2 -11
- package/package.json +3 -3
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
|
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
|
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
|
type PresetProperty<K, TStorybookConfig = StorybookConfigRaw> = TStorybookConfig[K extends keyof TStorybookConfig ? K : never] | PresetPropertyFn<K, TStorybookConfig>;
|
1106
1097
|
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": "0.0.0-pr-
|
3
|
+
"version": "0.0.0-pr-25540-sha-c0037961",
|
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": "0.0.0-pr-
|
63
|
-
"@storybook/docs-tools": "0.0.0-pr-
|
62
|
+
"@storybook/core-webpack": "0.0.0-pr-25540-sha-c0037961",
|
63
|
+
"@storybook/docs-tools": "0.0.0-pr-25540-sha-c0037961",
|
64
64
|
"@types/node": "^18.0.0",
|
65
65
|
"ts-loader": "^9.2.8",
|
66
66
|
"vue-docgen-api": "^4.46.0",
|