@volverjs/ui-vue 0.0.10-beta.65 → 0.0.10-beta.66
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/README.md +1 -2
- package/dist/components/VvAccordion/VvAccordion.vue.d.ts +1 -1
- package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +1 -1
- package/dist/components/VvAction/VvAction.vue.d.ts +1 -3
- package/dist/components/VvAlert/VvAlert.vue.d.ts +1 -1
- package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +1 -1
- package/dist/components/VvAvatar/VvAvatar.vue.d.ts +1 -1
- package/dist/components/VvAvatarGroup/VvAvatarGroup.vue.d.ts +1 -1
- package/dist/components/VvBadge/VvBadge.vue.d.ts +1 -1
- package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +1 -1
- package/dist/components/VvButton/VvButton.vue.d.ts +1 -180
- package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +1 -1
- package/dist/components/VvCard/VvCard.vue.d.ts +1 -1
- package/dist/components/VvCheckbox/VvCheckbox.es.js +1 -1
- package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -1
- package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +1 -3
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +1 -1
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -1
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +1 -1
- package/dist/components/VvCombobox/VvCombobox.es.js +6 -5
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvDialog/VvDialog.vue.d.ts +1 -4
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +1 -5
- package/dist/components/VvDropdown/VvDropdownAction.vue.d.ts +3 -3
- package/dist/components/VvDropdown/VvDropdownItem.vue.d.ts +1 -3
- package/dist/components/VvDropdown/VvDropdownOptgroup.vue.d.ts +1 -1
- package/dist/components/VvDropdown/VvDropdownOption.vue.d.ts +1 -1
- package/dist/components/VvInputFile/VvInputFile.es.js +1 -1
- package/dist/components/VvInputFile/VvInputFile.umd.js +1 -1
- package/dist/components/VvInputFile/VvInputFile.vue.d.ts +1 -3
- package/dist/components/VvInputText/VvInputText.es.js +12 -12
- package/dist/components/VvInputText/VvInputText.umd.js +1 -1
- package/dist/components/VvInputText/VvInputText.vue.d.ts +1 -710
- package/dist/components/VvNav/VvNav.vue.d.ts +1 -1
- package/dist/components/VvProgress/VvProgress.vue.d.ts +1 -1
- package/dist/components/VvRadio/VvRadio.es.js +1 -1
- package/dist/components/VvRadio/VvRadio.umd.js +1 -1
- package/dist/components/VvRadio/VvRadio.vue.d.ts +1 -3
- package/dist/components/VvRadioGroup/VvRadioGroup.es.js +1 -1
- package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -1
- package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +1 -1
- package/dist/components/VvSelect/VvSelect.es.js +2 -2
- package/dist/components/VvSelect/VvSelect.umd.js +1 -1
- package/dist/components/VvTab/VvTab.vue.d.ts +1 -1
- package/dist/components/VvTextarea/VvTextarea.es.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +1 -709
- package/dist/components/VvTooltip/VvTooltip.vue.d.ts +1 -1
- package/dist/components/index.es.js +17 -16
- package/dist/components/index.umd.js +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/resolvers/unplugin.d.ts +1 -1
- package/dist/resolvers/unplugin.es.js +4 -4
- package/dist/resolvers/unplugin.umd.js +1 -1
- package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +28 -28
- package/dist/stories/CheckboxGroup/CheckboxGroup.settings.d.ts +1 -1
- package/dist/stories/Radio/Radio.settings.d.ts +1 -1
- package/dist/stories/RadioGroup/RadioGroup.settings.d.ts +1 -1
- package/dist/utils/ObjectUtilities.d.ts +1 -1
- package/package.json +238 -238
|
@@ -28,7 +28,7 @@ export interface VolverResolverOptions {
|
|
|
28
28
|
*/
|
|
29
29
|
cherryPick?: boolean;
|
|
30
30
|
}
|
|
31
|
-
export declare
|
|
31
|
+
export declare function getStyleNames(kebabName: string): string[] | undefined;
|
|
32
32
|
/**
|
|
33
33
|
* Resolver for @volverjs/ui-vue
|
|
34
34
|
*
|
|
@@ -68,7 +68,7 @@ function splitPrefixSuffix(input, options = {}) {
|
|
|
68
68
|
const STYLE_EXCLUDE = ["vv-icon", "vv-action"];
|
|
69
69
|
const VOLVER_PREFIX = "vv";
|
|
70
70
|
const DIRECTIVES = ["v-tooltip", "v-contextmenu"];
|
|
71
|
-
|
|
71
|
+
function getStyleNames(kebabName) {
|
|
72
72
|
if (STYLE_EXCLUDE.includes(kebabName)) {
|
|
73
73
|
return void 0;
|
|
74
74
|
}
|
|
@@ -103,8 +103,8 @@ const getStyleNames = function(kebabName) {
|
|
|
103
103
|
return ["vv-tooltip"];
|
|
104
104
|
}
|
|
105
105
|
return [kebabName];
|
|
106
|
-
}
|
|
107
|
-
|
|
106
|
+
}
|
|
107
|
+
function getSideEffects(kebabName, importStyle) {
|
|
108
108
|
const sideEffects = [];
|
|
109
109
|
if (!importStyle) {
|
|
110
110
|
return sideEffects;
|
|
@@ -118,7 +118,7 @@ const getSideEffects = function(kebabName, importStyle) {
|
|
|
118
118
|
});
|
|
119
119
|
}
|
|
120
120
|
return sideEffects;
|
|
121
|
-
}
|
|
121
|
+
}
|
|
122
122
|
function VolverResolver({
|
|
123
123
|
prefix = VOLVER_PREFIX,
|
|
124
124
|
importStyle,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(e,o){"object"==typeof exports&&"undefined"!=typeof module?o(exports):"function"==typeof define&&define.amd?define(["exports"],o):o((e="undefined"!=typeof globalThis?globalThis:e||self).components={})}(this,(function(e){"use strict";const o=new RegExp("([\\p{Ll}\\d])(\\p{Lu})","gu"),t=new RegExp("(\\p{Lu})([\\p{Lu}][\\p{Ll}])","gu"),r=new RegExp("(\\d)\\p{Ll}|(\\p{L})\\d","u"),n=/[^\p{L}\d]+/giu,i="$1\0$2";function v(e){let r=e.trim();r=r.replace(o,i).replace(t,i),r=r.replace(n,"\0");let v=0,c=r.length;for(;"\0"===r.charAt(v);)v++;if(v===c)return[];for(;"\0"===r.charAt(c-1);)c--;return r.slice(v,c).split(/\0/g)}function c(e){const o=v(e);for(let t=0;t<o.length;t++){const e=o[t],n=r.exec(e);if(n){const r=n.index+(n[1]??n[2]).length;o.splice(t,1,e.slice(0,r),e.slice(r))}}return o}function s(e,o){const[t,r,n]=function(e,o={}){const t=o.split??(o.separateNumbers?c:v),r=o.prefixCharacters??"",n=o.suffixCharacters??"";let i=0,s=e.length;for(;i<e.length;){const o=e.charAt(i);if(!r.includes(o))break;i++}for(;s>i;){const o=s-1,t=e.charAt(o);if(!n.includes(t))break;s=o}return[e.slice(0,i),t(e.slice(i,s)),e.slice(s)]}(e,o);return t+r.map((i=null==o?void 0:o.locale,!1===i?e=>e.toLowerCase():e=>e.toLocaleLowerCase(i))).join((null==o?void 0:o.delimiter)??" ")+n;var i}function u(e,o){return s(e,{delimiter:"-",...o})}const l=["vv-icon","vv-action"],p=["v-tooltip","v-contextmenu"]
|
|
1
|
+
!function(e,o){"object"==typeof exports&&"undefined"!=typeof module?o(exports):"function"==typeof define&&define.amd?define(["exports"],o):o((e="undefined"!=typeof globalThis?globalThis:e||self).components={})}(this,(function(e){"use strict";const o=new RegExp("([\\p{Ll}\\d])(\\p{Lu})","gu"),t=new RegExp("(\\p{Lu})([\\p{Lu}][\\p{Ll}])","gu"),r=new RegExp("(\\d)\\p{Ll}|(\\p{L})\\d","u"),n=/[^\p{L}\d]+/giu,i="$1\0$2";function v(e){let r=e.trim();r=r.replace(o,i).replace(t,i),r=r.replace(n,"\0");let v=0,c=r.length;for(;"\0"===r.charAt(v);)v++;if(v===c)return[];for(;"\0"===r.charAt(c-1);)c--;return r.slice(v,c).split(/\0/g)}function c(e){const o=v(e);for(let t=0;t<o.length;t++){const e=o[t],n=r.exec(e);if(n){const r=n.index+(n[1]??n[2]).length;o.splice(t,1,e.slice(0,r),e.slice(r))}}return o}function s(e,o){const[t,r,n]=function(e,o={}){const t=o.split??(o.separateNumbers?c:v),r=o.prefixCharacters??"",n=o.suffixCharacters??"";let i=0,s=e.length;for(;i<e.length;){const o=e.charAt(i);if(!r.includes(o))break;i++}for(;s>i;){const o=s-1,t=e.charAt(o);if(!n.includes(t))break;s=o}return[e.slice(0,i),t(e.slice(i,s)),e.slice(s)]}(e,o);return t+r.map((i=null==o?void 0:o.locale,!1===i?e=>e.toLowerCase():e=>e.toLocaleLowerCase(i))).join((null==o?void 0:o.delimiter)??" ")+n;var i}function u(e,o){return s(e,{delimiter:"-",...o})}const l=["vv-icon","vv-action"],p=["v-tooltip","v-contextmenu"];function d(e){if(!l.includes(e))return"vv-dropdown"===e?["vv-dropdown","vv-dropdown-option","vv-dropdown-action"]:"vv-combobox"===e?["vv-select","vv-dropdown-option","vv-dropdown-optgroup","vv-dropdown","vv-dropdown-action"]:"vv-button-group"===e?["vv-button","vv-button-group"]:"vv-accordion-group"===e?["vv-accordion","vv-accordion-group"]:"vv-checkbox-group"===e?["vv-checkbox","vv-checkbox-group"]:"vv-radio-group"===e?["vv-radio","vv-radio-group"]:"vv-alert-group"===e?["vv-alert","vv-alert-group"]:"v-tooltip"===e?["vv-tooltip"]:[e]}function f(e,o){const t=[];if(!o)return t;const r=d(e);return r&&r.forEach((e=>{t.push(`@volverjs/style/${"scss"===o?"scss/":""}components/${e}`)})),t}e.VolverResolver=function({prefix:e="vv",importStyle:o,directives:t,ignore:r,cherryPick:n}={}){return[{type:"component",resolve:t=>{if(!e||!t.toLowerCase().startsWith(e.toLowerCase()))return;const i=u(t).replace(`${e}-`,"vv-");return r&&r.includes(i)?void 0:n?{from:`@volverjs/ui-vue/${i}`,sideEffects:f(i,o)}:{from:"@volverjs/ui-vue/components",sideEffects:f(i,o),name:t}}},{type:"directive",resolve:e=>{if(!t)return;const i=`v-${u(e)}`;return!p.includes(i)||r&&r.includes(i)?void 0:n?{from:`@volverjs/ui-vue/${i}`,sideEffects:f(i,o)}:{from:"@volverjs/ui-vue/directives",sideEffects:f(i,o),name:`v${e}`}}}]},e.getStyleNames=d,Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})}));
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { Story } from './AccordionGroup.stories';
|
|
2
2
|
declare const _default: {
|
|
3
3
|
title: string;
|
|
4
|
-
id?: import("@storybook/
|
|
4
|
+
id?: import("@storybook/types").ComponentId;
|
|
5
5
|
includeStories?: RegExp | string[];
|
|
6
6
|
excludeStories?: RegExp | string[];
|
|
7
7
|
component?: Omit<import("vue").ConcreteComponent<Partial<{
|
|
@@ -31,7 +31,7 @@ declare const _default: {
|
|
|
31
31
|
}) => any) | import("vue").VNodeChild;
|
|
32
32
|
}>, "props"> | undefined;
|
|
33
33
|
subcomponents?: Record<string, Omit<import("vue").ConcreteComponent<unknown>, "props">> | undefined;
|
|
34
|
-
play?: import("@storybook/
|
|
34
|
+
play?: import("@storybook/types").PlayFunction<import("@storybook/vue3").VueRenderer, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
35
35
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
36
36
|
modelValue: {
|
|
37
37
|
type: PropType<string | string[] | undefined>;
|
|
@@ -71,7 +71,7 @@ declare const _default: {
|
|
|
71
71
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
72
72
|
itemModifiers: string | string[];
|
|
73
73
|
storageType: "local" | "session";
|
|
74
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {},
|
|
74
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
75
75
|
P: {};
|
|
76
76
|
B: {};
|
|
77
77
|
D: {};
|
|
@@ -183,8 +183,8 @@ declare const _default: {
|
|
|
183
183
|
}) => any) | undefined;
|
|
184
184
|
};
|
|
185
185
|
})>> | undefined;
|
|
186
|
-
globals?: import("@storybook/
|
|
187
|
-
decorators?: import("@storybook/
|
|
186
|
+
globals?: import("@storybook/types").Globals;
|
|
187
|
+
decorators?: import("@storybook/types").DecoratorFunction<import("@storybook/vue3").VueRenderer, {
|
|
188
188
|
collapse?: boolean | undefined;
|
|
189
189
|
disabled?: boolean | undefined;
|
|
190
190
|
modelValue?: string | string[] | undefined;
|
|
@@ -211,7 +211,7 @@ declare const _default: {
|
|
|
211
211
|
expand: (name?: string | string[]) => void;
|
|
212
212
|
collapse: boolean & ((name?: string | string[]) => void);
|
|
213
213
|
}) => any) | import("vue").VNodeChild;
|
|
214
|
-
}> | import("@storybook/
|
|
214
|
+
}> | import("@storybook/types").DecoratorFunction<import("@storybook/vue3").VueRenderer, {
|
|
215
215
|
collapse?: boolean | undefined;
|
|
216
216
|
disabled?: boolean | undefined;
|
|
217
217
|
modelValue?: string | string[] | undefined;
|
|
@@ -239,7 +239,7 @@ declare const _default: {
|
|
|
239
239
|
collapse: boolean & ((name?: string | string[]) => void);
|
|
240
240
|
}) => any) | import("vue").VNodeChild;
|
|
241
241
|
}>[] | undefined;
|
|
242
|
-
parameters?: import("@storybook/
|
|
242
|
+
parameters?: import("@storybook/vue3").Parameters;
|
|
243
243
|
args?: Partial<import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
244
244
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
245
245
|
modelValue: {
|
|
@@ -280,7 +280,7 @@ declare const _default: {
|
|
|
280
280
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
281
281
|
itemModifiers: string | string[];
|
|
282
282
|
storageType: "local" | "session";
|
|
283
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {},
|
|
283
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
284
284
|
P: {};
|
|
285
285
|
B: {};
|
|
286
286
|
D: {};
|
|
@@ -392,7 +392,7 @@ declare const _default: {
|
|
|
392
392
|
}) => any) | undefined;
|
|
393
393
|
};
|
|
394
394
|
})>> | undefined;
|
|
395
|
-
argTypes?: Partial<import("@storybook/
|
|
395
|
+
argTypes?: Partial<import("@storybook/vue3").ArgTypes<import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
396
396
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
397
397
|
modelValue: {
|
|
398
398
|
type: PropType<string | string[] | undefined>;
|
|
@@ -432,7 +432,7 @@ declare const _default: {
|
|
|
432
432
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
433
433
|
itemModifiers: string | string[];
|
|
434
434
|
storageType: "local" | "session";
|
|
435
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {},
|
|
435
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
436
436
|
P: {};
|
|
437
437
|
B: {};
|
|
438
438
|
D: {};
|
|
@@ -544,7 +544,7 @@ declare const _default: {
|
|
|
544
544
|
}) => any) | undefined;
|
|
545
545
|
};
|
|
546
546
|
})>>> | undefined;
|
|
547
|
-
loaders?: import("@storybook/
|
|
547
|
+
loaders?: import("@storybook/types").LoaderFunction<import("@storybook/vue3").VueRenderer, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
548
548
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
549
549
|
modelValue: {
|
|
550
550
|
type: PropType<string | string[] | undefined>;
|
|
@@ -584,7 +584,7 @@ declare const _default: {
|
|
|
584
584
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
585
585
|
itemModifiers: string | string[];
|
|
586
586
|
storageType: "local" | "session";
|
|
587
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {},
|
|
587
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
588
588
|
P: {};
|
|
589
589
|
B: {};
|
|
590
590
|
D: {};
|
|
@@ -695,7 +695,7 @@ declare const _default: {
|
|
|
695
695
|
collapse: boolean & ((name?: string | string[]) => void);
|
|
696
696
|
}) => any) | undefined;
|
|
697
697
|
};
|
|
698
|
-
})>> | import("@storybook/
|
|
698
|
+
})>> | import("@storybook/types").LoaderFunction<import("@storybook/vue3").VueRenderer, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
699
699
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
700
700
|
modelValue: {
|
|
701
701
|
type: PropType<string | string[] | undefined>;
|
|
@@ -735,7 +735,7 @@ declare const _default: {
|
|
|
735
735
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
736
736
|
itemModifiers: string | string[];
|
|
737
737
|
storageType: "local" | "session";
|
|
738
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {},
|
|
738
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
739
739
|
P: {};
|
|
740
740
|
B: {};
|
|
741
741
|
D: {};
|
|
@@ -847,7 +847,7 @@ declare const _default: {
|
|
|
847
847
|
}) => any) | undefined;
|
|
848
848
|
};
|
|
849
849
|
})>>[] | undefined;
|
|
850
|
-
beforeEach?: import("@storybook/
|
|
850
|
+
beforeEach?: import("@storybook/types").BeforeEach<import("@storybook/vue3").VueRenderer, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
851
851
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
852
852
|
modelValue: {
|
|
853
853
|
type: PropType<string | string[] | undefined>;
|
|
@@ -887,7 +887,7 @@ declare const _default: {
|
|
|
887
887
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
888
888
|
itemModifiers: string | string[];
|
|
889
889
|
storageType: "local" | "session";
|
|
890
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {},
|
|
890
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
891
891
|
P: {};
|
|
892
892
|
B: {};
|
|
893
893
|
D: {};
|
|
@@ -998,7 +998,7 @@ declare const _default: {
|
|
|
998
998
|
collapse: boolean & ((name?: string | string[]) => void);
|
|
999
999
|
}) => any) | undefined;
|
|
1000
1000
|
};
|
|
1001
|
-
})>> | import("@storybook/
|
|
1001
|
+
})>> | import("@storybook/types").BeforeEach<import("@storybook/vue3").VueRenderer, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
1002
1002
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
1003
1003
|
modelValue: {
|
|
1004
1004
|
type: PropType<string | string[] | undefined>;
|
|
@@ -1038,7 +1038,7 @@ declare const _default: {
|
|
|
1038
1038
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
1039
1039
|
itemModifiers: string | string[];
|
|
1040
1040
|
storageType: "local" | "session";
|
|
1041
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {},
|
|
1041
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1042
1042
|
P: {};
|
|
1043
1043
|
B: {};
|
|
1044
1044
|
D: {};
|
|
@@ -1150,7 +1150,7 @@ declare const _default: {
|
|
|
1150
1150
|
}) => any) | undefined;
|
|
1151
1151
|
};
|
|
1152
1152
|
})>>[] | undefined;
|
|
1153
|
-
experimental_afterEach?: import("@storybook/
|
|
1153
|
+
experimental_afterEach?: import("@storybook/types").AfterEach<import("@storybook/vue3").VueRenderer, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
1154
1154
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
1155
1155
|
modelValue: {
|
|
1156
1156
|
type: PropType<string | string[] | undefined>;
|
|
@@ -1190,7 +1190,7 @@ declare const _default: {
|
|
|
1190
1190
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
1191
1191
|
itemModifiers: string | string[];
|
|
1192
1192
|
storageType: "local" | "session";
|
|
1193
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {},
|
|
1193
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1194
1194
|
P: {};
|
|
1195
1195
|
B: {};
|
|
1196
1196
|
D: {};
|
|
@@ -1301,7 +1301,7 @@ declare const _default: {
|
|
|
1301
1301
|
collapse: boolean & ((name?: string | string[]) => void);
|
|
1302
1302
|
}) => any) | undefined;
|
|
1303
1303
|
};
|
|
1304
|
-
})>> | import("@storybook/
|
|
1304
|
+
})>> | import("@storybook/types").AfterEach<import("@storybook/vue3").VueRenderer, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
1305
1305
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
1306
1306
|
modelValue: {
|
|
1307
1307
|
type: PropType<string | string[] | undefined>;
|
|
@@ -1341,7 +1341,7 @@ declare const _default: {
|
|
|
1341
1341
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
1342
1342
|
itemModifiers: string | string[];
|
|
1343
1343
|
storageType: "local" | "session";
|
|
1344
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {},
|
|
1344
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1345
1345
|
P: {};
|
|
1346
1346
|
B: {};
|
|
1347
1347
|
D: {};
|
|
@@ -1453,7 +1453,7 @@ declare const _default: {
|
|
|
1453
1453
|
}) => any) | undefined;
|
|
1454
1454
|
};
|
|
1455
1455
|
})>>[] | undefined;
|
|
1456
|
-
render?: import("@storybook/
|
|
1456
|
+
render?: import("@storybook/types").ArgsStoryFn<import("@storybook/vue3").VueRenderer, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
1457
1457
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
1458
1458
|
modelValue: {
|
|
1459
1459
|
type: PropType<string | string[] | undefined>;
|
|
@@ -1493,7 +1493,7 @@ declare const _default: {
|
|
|
1493
1493
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
1494
1494
|
itemModifiers: string | string[];
|
|
1495
1495
|
storageType: "local" | "session";
|
|
1496
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {},
|
|
1496
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1497
1497
|
P: {};
|
|
1498
1498
|
B: {};
|
|
1499
1499
|
D: {};
|
|
@@ -1605,8 +1605,8 @@ declare const _default: {
|
|
|
1605
1605
|
}) => any) | undefined;
|
|
1606
1606
|
};
|
|
1607
1607
|
})>> | undefined;
|
|
1608
|
-
tags?: import("@storybook/
|
|
1609
|
-
mount?: ((context: import("@storybook/
|
|
1608
|
+
tags?: import("@storybook/types").Tag[];
|
|
1609
|
+
mount?: ((context: import("@storybook/types").StoryContext<import("@storybook/vue3").VueRenderer, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
1610
1610
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
1611
1611
|
modelValue: {
|
|
1612
1612
|
type: PropType<string | string[] | undefined>;
|
|
@@ -1646,7 +1646,7 @@ declare const _default: {
|
|
|
1646
1646
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
1647
1647
|
itemModifiers: string | string[];
|
|
1648
1648
|
storageType: "local" | "session";
|
|
1649
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {},
|
|
1649
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1650
1650
|
P: {};
|
|
1651
1651
|
B: {};
|
|
1652
1652
|
D: {};
|
|
@@ -1760,7 +1760,7 @@ declare const _default: {
|
|
|
1760
1760
|
})>>) => (Component?: import("vue").ComponentOptions<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, any, any, any, string, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions> | import("vue").FunctionalComponent<any, {}, any, {}>, options?: {
|
|
1761
1761
|
props?: Record<string, any>;
|
|
1762
1762
|
slots?: Record<string, any>;
|
|
1763
|
-
}) => Promise<import("@storybook/
|
|
1763
|
+
}) => Promise<import("@storybook/types").Canvas>) | undefined;
|
|
1764
1764
|
};
|
|
1765
1765
|
export default _default;
|
|
1766
1766
|
export declare const Default: Story;
|
|
@@ -9,4 +9,4 @@ export declare const defaultArgs: {
|
|
|
9
9
|
valid: boolean;
|
|
10
10
|
tabindex: number;
|
|
11
11
|
};
|
|
12
|
-
export declare const argTypes: import("@storybook/
|
|
12
|
+
export declare const argTypes: import("@storybook/vue3").ArgTypes<import("@storybook/vue3").Args>;
|
|
@@ -9,4 +9,4 @@ export declare const defaultArgs: {
|
|
|
9
9
|
valid: boolean;
|
|
10
10
|
indeterminate: boolean;
|
|
11
11
|
};
|
|
12
|
-
export declare const argTypes: import("@storybook/
|
|
12
|
+
export declare const argTypes: import("@storybook/vue3").ArgTypes<import("@storybook/vue3").Args>;
|
|
@@ -9,4 +9,4 @@ export declare const defaultArgs: {
|
|
|
9
9
|
valid: boolean;
|
|
10
10
|
tabindex: number;
|
|
11
11
|
};
|
|
12
|
-
export declare const argTypes: import("@storybook/
|
|
12
|
+
export declare const argTypes: import("@storybook/vue3").ArgTypes<import("@storybook/vue3").Args>;
|
|
@@ -65,7 +65,7 @@ export declare function removeFromList<Type = unknown>(value: Type, list: Type[]
|
|
|
65
65
|
* @param {any} value
|
|
66
66
|
* @returns {boolean} true if value is a string
|
|
67
67
|
*/
|
|
68
|
-
export declare function isString(value: unknown): value is string
|
|
68
|
+
export declare function isString(value: unknown): value is string;
|
|
69
69
|
/**
|
|
70
70
|
* Convert props definition to object with "prop" as key and default as value
|
|
71
71
|
* @param {ComponentObjectPropsOptions} props vue component props
|