@volverjs/ui-vue 0.0.10-beta.23 → 0.0.10-beta.24
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/components/VvAccordion/VvAccordion.es.js +119 -79
- package/dist/components/VvAccordion/VvAccordion.umd.js +1 -1
- package/dist/components/VvAccordion/VvAccordion.vue.d.ts +18 -4
- package/dist/components/VvAccordion/index.d.ts +4 -8
- package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +250 -119
- package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -1
- package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +18 -6
- package/dist/components/VvAccordionGroup/index.d.ts +3 -1
- package/dist/components/VvAction/VvAction.vue.d.ts +1 -1
- package/dist/components/VvAlert/VvAlert.vue.d.ts +1 -1
- package/dist/components/VvButton/VvButton.es.js +92 -98
- package/dist/components/VvButton/VvButton.umd.js +1 -1
- package/dist/components/VvButton/VvButton.vue.d.ts +7 -7
- package/dist/components/VvButton/index.d.ts +11 -11
- package/dist/components/VvButtonGroup/VvButtonGroup.es.js +7 -13
- package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -1
- package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +3 -3
- package/dist/components/VvCheckbox/VvCheckbox.es.js +81 -87
- package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -1
- package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +6 -6
- package/dist/components/VvCheckbox/index.d.ts +2 -2
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +15 -29
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -1
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +5 -5
- package/dist/components/VvCombobox/VvCombobox.es.js +13 -16
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +11 -11
- package/dist/components/VvCombobox/index.d.ts +1 -1
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +5 -5
- package/dist/components/VvDropdown/VvDropdownAction.vue.d.ts +1 -1
- package/dist/components/VvDropdown/VvDropdownOption.vue.d.ts +1 -1
- package/dist/components/VvDropdown/index.d.ts +1 -1
- package/dist/components/VvInputFile/VvInputFile.es.js +183 -168
- package/dist/components/VvInputFile/VvInputFile.umd.js +1 -1
- package/dist/components/VvInputFile/VvInputFile.vue.d.ts +16 -9
- package/dist/components/VvInputFile/index.d.ts +12 -3
- package/dist/components/VvInputText/VvInputClearAction.d.ts +1 -1
- package/dist/components/VvInputText/VvInputStepAction.d.ts +1 -1
- package/dist/components/VvInputText/VvInputText.vue.d.ts +6 -6
- package/dist/components/VvProgress/VvProgress.vue.d.ts +1 -1
- package/dist/components/VvRadio/VvRadio.es.js +64 -70
- package/dist/components/VvRadio/VvRadio.umd.js +1 -1
- package/dist/components/VvRadio/VvRadio.vue.d.ts +6 -6
- package/dist/components/VvRadio/index.d.ts +6 -6
- package/dist/components/VvRadioGroup/VvRadioGroup.es.js +15 -29
- package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -1
- package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +5 -5
- package/dist/components/VvSelect/VvSelect.vue.d.ts +8 -8
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +5 -5
- package/dist/components/VvTooltip/VvTooltip.vue.d.ts +3 -3
- package/dist/components/VvTooltip/index.d.ts +1 -1
- package/dist/components/index.es.js +462 -323
- package/dist/components/index.umd.js +1 -1
- package/dist/composables/alert/useInjectAlert.d.ts +1 -6
- package/dist/composables/group/useInjectedGroupState.d.ts +4 -5
- package/dist/composables/group/useProvideGroupState.d.ts +3 -3
- package/dist/constants.d.ts +6 -10
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/index.es.js +3 -2
- package/dist/index.umd.js +1 -1
- package/dist/props/index.d.ts +1 -1
- package/dist/resolvers/unplugin.es.js +3 -2
- package/dist/resolvers/unplugin.umd.js +1 -1
- package/dist/stories/AccordionGroup/AccordionGroup.stories.d.ts +38 -14
- package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +259 -101
- package/dist/types/group.d.ts +37 -15
- package/package.json +37 -36
- package/src/assets/icons/detailed.json +1 -1
- package/src/assets/icons/normal.json +1 -1
- package/src/assets/icons/simple.json +1 -1
- package/src/components/VvAccordion/VvAccordion.vue +119 -56
- package/src/components/VvAccordion/index.ts +8 -23
- package/src/components/VvAccordionGroup/VvAccordionGroup.vue +140 -41
- package/src/components/VvAccordionGroup/index.ts +3 -1
- package/src/components/VvButton/index.ts +7 -12
- package/src/components/VvButtonGroup/VvButtonGroup.vue +1 -2
- package/src/components/VvCheckbox/index.ts +2 -2
- package/src/components/VvCheckboxGroup/VvCheckboxGroup.vue +1 -2
- package/src/components/VvInputFile/VvInputFile.vue +71 -47
- package/src/components/VvInputFile/index.ts +5 -4
- package/src/components/VvRadio/index.ts +5 -5
- package/src/components/VvRadioGroup/VvRadioGroup.vue +1 -2
- package/src/composables/group/useInjectedGroupState.ts +20 -16
- package/src/composables/group/useProvideGroupState.ts +10 -15
- package/src/constants.ts +19 -14
- package/src/stories/AccordionGroup/AccordionGroup.test.ts +15 -9
- package/src/stories/AccordionGroup/AccordionGroupSlots.stories.ts +1 -1
- package/src/types/group.ts +22 -14
|
@@ -5,23 +5,25 @@ declare const _default: {
|
|
|
5
5
|
includeStories?: (RegExp | string[]) | undefined;
|
|
6
6
|
excludeStories?: (RegExp | string[]) | undefined;
|
|
7
7
|
component?: Omit<import("vue").ConcreteComponent<Partial<{
|
|
8
|
-
disabled: boolean;
|
|
9
|
-
modifiers: string | string[];
|
|
10
8
|
collapse: boolean;
|
|
9
|
+
disabled: boolean;
|
|
11
10
|
not: boolean;
|
|
11
|
+
modifiers: string | string[];
|
|
12
12
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
13
13
|
itemModifiers: string | string[];
|
|
14
14
|
}> & Omit<{
|
|
15
|
-
readonly disabled: boolean;
|
|
16
15
|
readonly collapse: boolean;
|
|
16
|
+
readonly disabled: boolean;
|
|
17
17
|
readonly not: boolean;
|
|
18
18
|
readonly items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
19
19
|
readonly itemModifiers: string | string[];
|
|
20
|
-
readonly modelValue?: string |
|
|
20
|
+
readonly modelValue?: string | string[] | undefined;
|
|
21
21
|
readonly modifiers?: string | string[] | undefined;
|
|
22
22
|
readonly storeKey?: string | undefined;
|
|
23
23
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
24
|
-
modelValue:
|
|
24
|
+
modelValue: {
|
|
25
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
26
|
+
};
|
|
25
27
|
items: {
|
|
26
28
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
27
29
|
default: () => never[];
|
|
@@ -38,13 +40,19 @@ declare const _default: {
|
|
|
38
40
|
type: globalThis.PropType<string | string[]>;
|
|
39
41
|
default: undefined;
|
|
40
42
|
};
|
|
41
|
-
}>>, "
|
|
42
|
-
default?: import("vue").VNodeChild | ((_: {
|
|
43
|
+
}>>, "collapse" | "disabled" | "not" | "modifiers" | "items" | "itemModifiers"> & {
|
|
44
|
+
default?: import("vue").VNodeChild | ((_: {
|
|
45
|
+
modelValue: Set<string> & Omit<Set<string>, keyof Set<any>>;
|
|
46
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
47
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
48
|
+
}) => any);
|
|
43
49
|
}>, "props"> | undefined;
|
|
44
50
|
subcomponents?: Record<string, Omit<import("vue").ConcreteComponent<unknown>, "props">> | undefined;
|
|
45
51
|
play?: import("@storybook/types").PlayFunction<import("@storybook/vue3/dist/types-ad933ac1").V, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
46
52
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
47
|
-
modelValue:
|
|
53
|
+
modelValue: {
|
|
54
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
55
|
+
};
|
|
48
56
|
items: {
|
|
49
57
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
50
58
|
default: () => never[];
|
|
@@ -61,10 +69,16 @@ declare const _default: {
|
|
|
61
69
|
type: globalThis.PropType<string | string[]>;
|
|
62
70
|
default: undefined;
|
|
63
71
|
};
|
|
64
|
-
}>>, {
|
|
72
|
+
}>>, {
|
|
73
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
74
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
75
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
76
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
65
77
|
[x: string]: (...args: any[]) => void;
|
|
66
78
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
67
|
-
modelValue:
|
|
79
|
+
modelValue: {
|
|
80
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
81
|
+
};
|
|
68
82
|
items: {
|
|
69
83
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
70
84
|
default: () => never[];
|
|
@@ -82,10 +96,10 @@ declare const _default: {
|
|
|
82
96
|
default: undefined;
|
|
83
97
|
};
|
|
84
98
|
}>>, {
|
|
85
|
-
disabled: boolean;
|
|
86
|
-
modifiers: string | string[];
|
|
87
99
|
collapse: boolean;
|
|
100
|
+
disabled: boolean;
|
|
88
101
|
not: boolean;
|
|
102
|
+
modifiers: string | string[];
|
|
89
103
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
90
104
|
itemModifiers: string | string[];
|
|
91
105
|
}, true, {}, {}, {
|
|
@@ -96,7 +110,9 @@ declare const _default: {
|
|
|
96
110
|
M: {};
|
|
97
111
|
Defaults: {};
|
|
98
112
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
99
|
-
modelValue:
|
|
113
|
+
modelValue: {
|
|
114
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
115
|
+
};
|
|
100
116
|
items: {
|
|
101
117
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
102
118
|
default: () => never[];
|
|
@@ -113,11 +129,15 @@ declare const _default: {
|
|
|
113
129
|
type: globalThis.PropType<string | string[]>;
|
|
114
130
|
default: undefined;
|
|
115
131
|
};
|
|
116
|
-
}>>, {
|
|
117
|
-
|
|
118
|
-
|
|
132
|
+
}>>, {
|
|
133
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
134
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
135
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
136
|
+
}, {}, {}, {}, {
|
|
119
137
|
collapse: boolean;
|
|
138
|
+
disabled: boolean;
|
|
120
139
|
not: boolean;
|
|
140
|
+
modifiers: string | string[];
|
|
121
141
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
122
142
|
itemModifiers: string | string[];
|
|
123
143
|
}>;
|
|
@@ -125,7 +145,9 @@ declare const _default: {
|
|
|
125
145
|
__isTeleport?: undefined;
|
|
126
146
|
__isSuspense?: undefined;
|
|
127
147
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
128
|
-
modelValue:
|
|
148
|
+
modelValue: {
|
|
149
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
150
|
+
};
|
|
129
151
|
items: {
|
|
130
152
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
131
153
|
default: () => never[];
|
|
@@ -142,33 +164,41 @@ declare const _default: {
|
|
|
142
164
|
type: globalThis.PropType<string | string[]>;
|
|
143
165
|
default: undefined;
|
|
144
166
|
};
|
|
145
|
-
}>>, {
|
|
167
|
+
}>>, {
|
|
168
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
169
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
170
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
171
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
146
172
|
[x: string]: (...args: any[]) => void;
|
|
147
173
|
}, string, {
|
|
148
|
-
disabled: boolean;
|
|
149
|
-
modifiers: string | string[];
|
|
150
174
|
collapse: boolean;
|
|
175
|
+
disabled: boolean;
|
|
151
176
|
not: boolean;
|
|
177
|
+
modifiers: string | string[];
|
|
152
178
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
153
179
|
itemModifiers: string | string[];
|
|
154
180
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
155
181
|
$slots: Partial<Record<`header::${string}`, (_: any) => any>> & Partial<Record<`details::${string}`, (_: any) => any>> & {
|
|
156
|
-
default?(_: {
|
|
182
|
+
default?(_: {
|
|
183
|
+
modelValue: Set<string> & Omit<Set<string>, keyof Set<any>>;
|
|
184
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
185
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
186
|
+
}): any;
|
|
157
187
|
};
|
|
158
188
|
})>> | undefined;
|
|
159
189
|
tags?: string[] | undefined;
|
|
160
190
|
decorators?: import("@storybook/types").DecoratorFunction<import("@storybook/vue3/dist/types-ad933ac1").V, {
|
|
161
|
-
disabled?: boolean | undefined;
|
|
162
|
-
modifiers?: string | string[] | undefined;
|
|
163
191
|
collapse?: boolean | undefined;
|
|
192
|
+
disabled?: boolean | undefined;
|
|
164
193
|
not?: boolean | undefined;
|
|
194
|
+
modifiers?: string | string[] | undefined;
|
|
165
195
|
items?: import("../../components/VvAccordionGroup").VvAccordionGroupItem[] | undefined;
|
|
166
196
|
itemModifiers?: string | string[] | undefined;
|
|
167
|
-
key?: string | number | symbol | undefined;
|
|
168
|
-
readonly modelValue?: string | unknown[] | undefined;
|
|
169
197
|
ref?: import("vue").VNodeRef | undefined;
|
|
170
198
|
style?: unknown;
|
|
199
|
+
readonly modelValue?: string | string[] | undefined;
|
|
171
200
|
class?: unknown;
|
|
201
|
+
key?: string | number | symbol | undefined;
|
|
172
202
|
ref_for?: boolean | undefined;
|
|
173
203
|
ref_key?: string | undefined;
|
|
174
204
|
onVnodeBeforeMount?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
@@ -210,19 +240,23 @@ declare const _default: {
|
|
|
210
240
|
[key: string]: any;
|
|
211
241
|
}>) => void)[] | undefined;
|
|
212
242
|
readonly storeKey?: string | undefined;
|
|
213
|
-
default?: import("vue").VNodeChild | ((_: {
|
|
243
|
+
default?: import("vue").VNodeChild | ((_: {
|
|
244
|
+
modelValue: Set<string> & Omit<Set<string>, keyof Set<any>>;
|
|
245
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
246
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
247
|
+
}) => any);
|
|
214
248
|
}> | import("@storybook/types").DecoratorFunction<import("@storybook/vue3/dist/types-ad933ac1").V, {
|
|
215
|
-
disabled?: boolean | undefined;
|
|
216
|
-
modifiers?: string | string[] | undefined;
|
|
217
249
|
collapse?: boolean | undefined;
|
|
250
|
+
disabled?: boolean | undefined;
|
|
218
251
|
not?: boolean | undefined;
|
|
252
|
+
modifiers?: string | string[] | undefined;
|
|
219
253
|
items?: import("../../components/VvAccordionGroup").VvAccordionGroupItem[] | undefined;
|
|
220
254
|
itemModifiers?: string | string[] | undefined;
|
|
221
|
-
key?: string | number | symbol | undefined;
|
|
222
|
-
readonly modelValue?: string | unknown[] | undefined;
|
|
223
255
|
ref?: import("vue").VNodeRef | undefined;
|
|
224
256
|
style?: unknown;
|
|
257
|
+
readonly modelValue?: string | string[] | undefined;
|
|
225
258
|
class?: unknown;
|
|
259
|
+
key?: string | number | symbol | undefined;
|
|
226
260
|
ref_for?: boolean | undefined;
|
|
227
261
|
ref_key?: string | undefined;
|
|
228
262
|
onVnodeBeforeMount?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
@@ -264,12 +298,18 @@ declare const _default: {
|
|
|
264
298
|
[key: string]: any;
|
|
265
299
|
}>) => void)[] | undefined;
|
|
266
300
|
readonly storeKey?: string | undefined;
|
|
267
|
-
default?: import("vue").VNodeChild | ((_: {
|
|
301
|
+
default?: import("vue").VNodeChild | ((_: {
|
|
302
|
+
modelValue: Set<string> & Omit<Set<string>, keyof Set<any>>;
|
|
303
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
304
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
305
|
+
}) => any);
|
|
268
306
|
}>[] | undefined;
|
|
269
307
|
parameters?: import("@storybook/types").Parameters | undefined;
|
|
270
308
|
args?: Partial<import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
271
309
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
272
|
-
modelValue:
|
|
310
|
+
modelValue: {
|
|
311
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
312
|
+
};
|
|
273
313
|
items: {
|
|
274
314
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
275
315
|
default: () => never[];
|
|
@@ -286,10 +326,16 @@ declare const _default: {
|
|
|
286
326
|
type: globalThis.PropType<string | string[]>;
|
|
287
327
|
default: undefined;
|
|
288
328
|
};
|
|
289
|
-
}>>, {
|
|
329
|
+
}>>, {
|
|
330
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
331
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
332
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
333
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
290
334
|
[x: string]: (...args: any[]) => void;
|
|
291
335
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
292
|
-
modelValue:
|
|
336
|
+
modelValue: {
|
|
337
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
338
|
+
};
|
|
293
339
|
items: {
|
|
294
340
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
295
341
|
default: () => never[];
|
|
@@ -307,10 +353,10 @@ declare const _default: {
|
|
|
307
353
|
default: undefined;
|
|
308
354
|
};
|
|
309
355
|
}>>, {
|
|
310
|
-
disabled: boolean;
|
|
311
|
-
modifiers: string | string[];
|
|
312
356
|
collapse: boolean;
|
|
357
|
+
disabled: boolean;
|
|
313
358
|
not: boolean;
|
|
359
|
+
modifiers: string | string[];
|
|
314
360
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
315
361
|
itemModifiers: string | string[];
|
|
316
362
|
}, true, {}, {}, {
|
|
@@ -321,7 +367,9 @@ declare const _default: {
|
|
|
321
367
|
M: {};
|
|
322
368
|
Defaults: {};
|
|
323
369
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
324
|
-
modelValue:
|
|
370
|
+
modelValue: {
|
|
371
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
372
|
+
};
|
|
325
373
|
items: {
|
|
326
374
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
327
375
|
default: () => never[];
|
|
@@ -338,11 +386,15 @@ declare const _default: {
|
|
|
338
386
|
type: globalThis.PropType<string | string[]>;
|
|
339
387
|
default: undefined;
|
|
340
388
|
};
|
|
341
|
-
}>>, {
|
|
342
|
-
|
|
343
|
-
|
|
389
|
+
}>>, {
|
|
390
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
391
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
392
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
393
|
+
}, {}, {}, {}, {
|
|
344
394
|
collapse: boolean;
|
|
395
|
+
disabled: boolean;
|
|
345
396
|
not: boolean;
|
|
397
|
+
modifiers: string | string[];
|
|
346
398
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
347
399
|
itemModifiers: string | string[];
|
|
348
400
|
}>;
|
|
@@ -350,7 +402,9 @@ declare const _default: {
|
|
|
350
402
|
__isTeleport?: undefined;
|
|
351
403
|
__isSuspense?: undefined;
|
|
352
404
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
353
|
-
modelValue:
|
|
405
|
+
modelValue: {
|
|
406
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
407
|
+
};
|
|
354
408
|
items: {
|
|
355
409
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
356
410
|
default: () => never[];
|
|
@@ -367,23 +421,33 @@ declare const _default: {
|
|
|
367
421
|
type: globalThis.PropType<string | string[]>;
|
|
368
422
|
default: undefined;
|
|
369
423
|
};
|
|
370
|
-
}>>, {
|
|
424
|
+
}>>, {
|
|
425
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
426
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
427
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
428
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
371
429
|
[x: string]: (...args: any[]) => void;
|
|
372
430
|
}, string, {
|
|
373
|
-
disabled: boolean;
|
|
374
|
-
modifiers: string | string[];
|
|
375
431
|
collapse: boolean;
|
|
432
|
+
disabled: boolean;
|
|
376
433
|
not: boolean;
|
|
434
|
+
modifiers: string | string[];
|
|
377
435
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
378
436
|
itemModifiers: string | string[];
|
|
379
437
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
380
438
|
$slots: Partial<Record<`header::${string}`, (_: any) => any>> & Partial<Record<`details::${string}`, (_: any) => any>> & {
|
|
381
|
-
default?(_: {
|
|
439
|
+
default?(_: {
|
|
440
|
+
modelValue: Set<string> & Omit<Set<string>, keyof Set<any>>;
|
|
441
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
442
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
443
|
+
}): any;
|
|
382
444
|
};
|
|
383
445
|
})>> | undefined;
|
|
384
446
|
argTypes?: Partial<import("@storybook/types").ArgTypes<import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
385
447
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
386
|
-
modelValue:
|
|
448
|
+
modelValue: {
|
|
449
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
450
|
+
};
|
|
387
451
|
items: {
|
|
388
452
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
389
453
|
default: () => never[];
|
|
@@ -400,10 +464,16 @@ declare const _default: {
|
|
|
400
464
|
type: globalThis.PropType<string | string[]>;
|
|
401
465
|
default: undefined;
|
|
402
466
|
};
|
|
403
|
-
}>>, {
|
|
467
|
+
}>>, {
|
|
468
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
469
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
470
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
471
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
404
472
|
[x: string]: (...args: any[]) => void;
|
|
405
473
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
406
|
-
modelValue:
|
|
474
|
+
modelValue: {
|
|
475
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
476
|
+
};
|
|
407
477
|
items: {
|
|
408
478
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
409
479
|
default: () => never[];
|
|
@@ -421,10 +491,10 @@ declare const _default: {
|
|
|
421
491
|
default: undefined;
|
|
422
492
|
};
|
|
423
493
|
}>>, {
|
|
424
|
-
disabled: boolean;
|
|
425
|
-
modifiers: string | string[];
|
|
426
494
|
collapse: boolean;
|
|
495
|
+
disabled: boolean;
|
|
427
496
|
not: boolean;
|
|
497
|
+
modifiers: string | string[];
|
|
428
498
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
429
499
|
itemModifiers: string | string[];
|
|
430
500
|
}, true, {}, {}, {
|
|
@@ -435,7 +505,9 @@ declare const _default: {
|
|
|
435
505
|
M: {};
|
|
436
506
|
Defaults: {};
|
|
437
507
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
438
|
-
modelValue:
|
|
508
|
+
modelValue: {
|
|
509
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
510
|
+
};
|
|
439
511
|
items: {
|
|
440
512
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
441
513
|
default: () => never[];
|
|
@@ -452,11 +524,15 @@ declare const _default: {
|
|
|
452
524
|
type: globalThis.PropType<string | string[]>;
|
|
453
525
|
default: undefined;
|
|
454
526
|
};
|
|
455
|
-
}>>, {
|
|
456
|
-
|
|
457
|
-
|
|
527
|
+
}>>, {
|
|
528
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
529
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
530
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
531
|
+
}, {}, {}, {}, {
|
|
458
532
|
collapse: boolean;
|
|
533
|
+
disabled: boolean;
|
|
459
534
|
not: boolean;
|
|
535
|
+
modifiers: string | string[];
|
|
460
536
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
461
537
|
itemModifiers: string | string[];
|
|
462
538
|
}>;
|
|
@@ -464,7 +540,9 @@ declare const _default: {
|
|
|
464
540
|
__isTeleport?: undefined;
|
|
465
541
|
__isSuspense?: undefined;
|
|
466
542
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
467
|
-
modelValue:
|
|
543
|
+
modelValue: {
|
|
544
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
545
|
+
};
|
|
468
546
|
items: {
|
|
469
547
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
470
548
|
default: () => never[];
|
|
@@ -481,23 +559,33 @@ declare const _default: {
|
|
|
481
559
|
type: globalThis.PropType<string | string[]>;
|
|
482
560
|
default: undefined;
|
|
483
561
|
};
|
|
484
|
-
}>>, {
|
|
562
|
+
}>>, {
|
|
563
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
564
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
565
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
566
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
485
567
|
[x: string]: (...args: any[]) => void;
|
|
486
568
|
}, string, {
|
|
487
|
-
disabled: boolean;
|
|
488
|
-
modifiers: string | string[];
|
|
489
569
|
collapse: boolean;
|
|
570
|
+
disabled: boolean;
|
|
490
571
|
not: boolean;
|
|
572
|
+
modifiers: string | string[];
|
|
491
573
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
492
574
|
itemModifiers: string | string[];
|
|
493
575
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
494
576
|
$slots: Partial<Record<`header::${string}`, (_: any) => any>> & Partial<Record<`details::${string}`, (_: any) => any>> & {
|
|
495
|
-
default?(_: {
|
|
577
|
+
default?(_: {
|
|
578
|
+
modelValue: Set<string> & Omit<Set<string>, keyof Set<any>>;
|
|
579
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
580
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
581
|
+
}): any;
|
|
496
582
|
};
|
|
497
583
|
})>>> | undefined;
|
|
498
584
|
loaders?: import("@storybook/types").LoaderFunction<import("@storybook/vue3/dist/types-ad933ac1").V, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
499
585
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
500
|
-
modelValue:
|
|
586
|
+
modelValue: {
|
|
587
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
588
|
+
};
|
|
501
589
|
items: {
|
|
502
590
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
503
591
|
default: () => never[];
|
|
@@ -514,10 +602,16 @@ declare const _default: {
|
|
|
514
602
|
type: globalThis.PropType<string | string[]>;
|
|
515
603
|
default: undefined;
|
|
516
604
|
};
|
|
517
|
-
}>>, {
|
|
605
|
+
}>>, {
|
|
606
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
607
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
608
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
609
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
518
610
|
[x: string]: (...args: any[]) => void;
|
|
519
611
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
520
|
-
modelValue:
|
|
612
|
+
modelValue: {
|
|
613
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
614
|
+
};
|
|
521
615
|
items: {
|
|
522
616
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
523
617
|
default: () => never[];
|
|
@@ -535,10 +629,10 @@ declare const _default: {
|
|
|
535
629
|
default: undefined;
|
|
536
630
|
};
|
|
537
631
|
}>>, {
|
|
538
|
-
disabled: boolean;
|
|
539
|
-
modifiers: string | string[];
|
|
540
632
|
collapse: boolean;
|
|
633
|
+
disabled: boolean;
|
|
541
634
|
not: boolean;
|
|
635
|
+
modifiers: string | string[];
|
|
542
636
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
543
637
|
itemModifiers: string | string[];
|
|
544
638
|
}, true, {}, {}, {
|
|
@@ -549,7 +643,9 @@ declare const _default: {
|
|
|
549
643
|
M: {};
|
|
550
644
|
Defaults: {};
|
|
551
645
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
552
|
-
modelValue:
|
|
646
|
+
modelValue: {
|
|
647
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
648
|
+
};
|
|
553
649
|
items: {
|
|
554
650
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
555
651
|
default: () => never[];
|
|
@@ -566,11 +662,15 @@ declare const _default: {
|
|
|
566
662
|
type: globalThis.PropType<string | string[]>;
|
|
567
663
|
default: undefined;
|
|
568
664
|
};
|
|
569
|
-
}>>, {
|
|
570
|
-
|
|
571
|
-
|
|
665
|
+
}>>, {
|
|
666
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
667
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
668
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
669
|
+
}, {}, {}, {}, {
|
|
572
670
|
collapse: boolean;
|
|
671
|
+
disabled: boolean;
|
|
573
672
|
not: boolean;
|
|
673
|
+
modifiers: string | string[];
|
|
574
674
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
575
675
|
itemModifiers: string | string[];
|
|
576
676
|
}>;
|
|
@@ -578,7 +678,9 @@ declare const _default: {
|
|
|
578
678
|
__isTeleport?: undefined;
|
|
579
679
|
__isSuspense?: undefined;
|
|
580
680
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
581
|
-
modelValue:
|
|
681
|
+
modelValue: {
|
|
682
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
683
|
+
};
|
|
582
684
|
items: {
|
|
583
685
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
584
686
|
default: () => never[];
|
|
@@ -595,22 +697,32 @@ declare const _default: {
|
|
|
595
697
|
type: globalThis.PropType<string | string[]>;
|
|
596
698
|
default: undefined;
|
|
597
699
|
};
|
|
598
|
-
}>>, {
|
|
700
|
+
}>>, {
|
|
701
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
702
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
703
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
704
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
599
705
|
[x: string]: (...args: any[]) => void;
|
|
600
706
|
}, string, {
|
|
601
|
-
disabled: boolean;
|
|
602
|
-
modifiers: string | string[];
|
|
603
707
|
collapse: boolean;
|
|
708
|
+
disabled: boolean;
|
|
604
709
|
not: boolean;
|
|
710
|
+
modifiers: string | string[];
|
|
605
711
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
606
712
|
itemModifiers: string | string[];
|
|
607
713
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
608
714
|
$slots: Partial<Record<`header::${string}`, (_: any) => any>> & Partial<Record<`details::${string}`, (_: any) => any>> & {
|
|
609
|
-
default?(_: {
|
|
715
|
+
default?(_: {
|
|
716
|
+
modelValue: Set<string> & Omit<Set<string>, keyof Set<any>>;
|
|
717
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
718
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
719
|
+
}): any;
|
|
610
720
|
};
|
|
611
721
|
})>> | import("@storybook/types").LoaderFunction<import("@storybook/vue3/dist/types-ad933ac1").V, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
612
722
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
613
|
-
modelValue:
|
|
723
|
+
modelValue: {
|
|
724
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
725
|
+
};
|
|
614
726
|
items: {
|
|
615
727
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
616
728
|
default: () => never[];
|
|
@@ -627,10 +739,16 @@ declare const _default: {
|
|
|
627
739
|
type: globalThis.PropType<string | string[]>;
|
|
628
740
|
default: undefined;
|
|
629
741
|
};
|
|
630
|
-
}>>, {
|
|
742
|
+
}>>, {
|
|
743
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
744
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
745
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
746
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
631
747
|
[x: string]: (...args: any[]) => void;
|
|
632
748
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
633
|
-
modelValue:
|
|
749
|
+
modelValue: {
|
|
750
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
751
|
+
};
|
|
634
752
|
items: {
|
|
635
753
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
636
754
|
default: () => never[];
|
|
@@ -648,10 +766,10 @@ declare const _default: {
|
|
|
648
766
|
default: undefined;
|
|
649
767
|
};
|
|
650
768
|
}>>, {
|
|
651
|
-
disabled: boolean;
|
|
652
|
-
modifiers: string | string[];
|
|
653
769
|
collapse: boolean;
|
|
770
|
+
disabled: boolean;
|
|
654
771
|
not: boolean;
|
|
772
|
+
modifiers: string | string[];
|
|
655
773
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
656
774
|
itemModifiers: string | string[];
|
|
657
775
|
}, true, {}, {}, {
|
|
@@ -662,7 +780,9 @@ declare const _default: {
|
|
|
662
780
|
M: {};
|
|
663
781
|
Defaults: {};
|
|
664
782
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
665
|
-
modelValue:
|
|
783
|
+
modelValue: {
|
|
784
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
785
|
+
};
|
|
666
786
|
items: {
|
|
667
787
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
668
788
|
default: () => never[];
|
|
@@ -679,11 +799,15 @@ declare const _default: {
|
|
|
679
799
|
type: globalThis.PropType<string | string[]>;
|
|
680
800
|
default: undefined;
|
|
681
801
|
};
|
|
682
|
-
}>>, {
|
|
683
|
-
|
|
684
|
-
|
|
802
|
+
}>>, {
|
|
803
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
804
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
805
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
806
|
+
}, {}, {}, {}, {
|
|
685
807
|
collapse: boolean;
|
|
808
|
+
disabled: boolean;
|
|
686
809
|
not: boolean;
|
|
810
|
+
modifiers: string | string[];
|
|
687
811
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
688
812
|
itemModifiers: string | string[];
|
|
689
813
|
}>;
|
|
@@ -691,7 +815,9 @@ declare const _default: {
|
|
|
691
815
|
__isTeleport?: undefined;
|
|
692
816
|
__isSuspense?: undefined;
|
|
693
817
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
694
|
-
modelValue:
|
|
818
|
+
modelValue: {
|
|
819
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
820
|
+
};
|
|
695
821
|
items: {
|
|
696
822
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
697
823
|
default: () => never[];
|
|
@@ -708,23 +834,33 @@ declare const _default: {
|
|
|
708
834
|
type: globalThis.PropType<string | string[]>;
|
|
709
835
|
default: undefined;
|
|
710
836
|
};
|
|
711
|
-
}>>, {
|
|
837
|
+
}>>, {
|
|
838
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
839
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
840
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
841
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
712
842
|
[x: string]: (...args: any[]) => void;
|
|
713
843
|
}, string, {
|
|
714
|
-
disabled: boolean;
|
|
715
|
-
modifiers: string | string[];
|
|
716
844
|
collapse: boolean;
|
|
845
|
+
disabled: boolean;
|
|
717
846
|
not: boolean;
|
|
847
|
+
modifiers: string | string[];
|
|
718
848
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
719
849
|
itemModifiers: string | string[];
|
|
720
850
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
721
851
|
$slots: Partial<Record<`header::${string}`, (_: any) => any>> & Partial<Record<`details::${string}`, (_: any) => any>> & {
|
|
722
|
-
default?(_: {
|
|
852
|
+
default?(_: {
|
|
853
|
+
modelValue: Set<string> & Omit<Set<string>, keyof Set<any>>;
|
|
854
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
855
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
856
|
+
}): any;
|
|
723
857
|
};
|
|
724
858
|
})>>[] | undefined;
|
|
725
859
|
render?: import("@storybook/types").ArgsStoryFn<import("@storybook/vue3/dist/types-ad933ac1").V, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
726
860
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
727
|
-
modelValue:
|
|
861
|
+
modelValue: {
|
|
862
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
863
|
+
};
|
|
728
864
|
items: {
|
|
729
865
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
730
866
|
default: () => never[];
|
|
@@ -741,10 +877,16 @@ declare const _default: {
|
|
|
741
877
|
type: globalThis.PropType<string | string[]>;
|
|
742
878
|
default: undefined;
|
|
743
879
|
};
|
|
744
|
-
}>>, {
|
|
880
|
+
}>>, {
|
|
881
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
882
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
883
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
884
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
745
885
|
[x: string]: (...args: any[]) => void;
|
|
746
886
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
747
|
-
modelValue:
|
|
887
|
+
modelValue: {
|
|
888
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
889
|
+
};
|
|
748
890
|
items: {
|
|
749
891
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
750
892
|
default: () => never[];
|
|
@@ -762,10 +904,10 @@ declare const _default: {
|
|
|
762
904
|
default: undefined;
|
|
763
905
|
};
|
|
764
906
|
}>>, {
|
|
765
|
-
disabled: boolean;
|
|
766
|
-
modifiers: string | string[];
|
|
767
907
|
collapse: boolean;
|
|
908
|
+
disabled: boolean;
|
|
768
909
|
not: boolean;
|
|
910
|
+
modifiers: string | string[];
|
|
769
911
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
770
912
|
itemModifiers: string | string[];
|
|
771
913
|
}, true, {}, {}, {
|
|
@@ -776,7 +918,9 @@ declare const _default: {
|
|
|
776
918
|
M: {};
|
|
777
919
|
Defaults: {};
|
|
778
920
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
779
|
-
modelValue:
|
|
921
|
+
modelValue: {
|
|
922
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
923
|
+
};
|
|
780
924
|
items: {
|
|
781
925
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
782
926
|
default: () => never[];
|
|
@@ -793,11 +937,15 @@ declare const _default: {
|
|
|
793
937
|
type: globalThis.PropType<string | string[]>;
|
|
794
938
|
default: undefined;
|
|
795
939
|
};
|
|
796
|
-
}>>, {
|
|
797
|
-
|
|
798
|
-
|
|
940
|
+
}>>, {
|
|
941
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
942
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
943
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
944
|
+
}, {}, {}, {}, {
|
|
799
945
|
collapse: boolean;
|
|
946
|
+
disabled: boolean;
|
|
800
947
|
not: boolean;
|
|
948
|
+
modifiers: string | string[];
|
|
801
949
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
802
950
|
itemModifiers: string | string[];
|
|
803
951
|
}>;
|
|
@@ -805,7 +953,9 @@ declare const _default: {
|
|
|
805
953
|
__isTeleport?: undefined;
|
|
806
954
|
__isSuspense?: undefined;
|
|
807
955
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
808
|
-
modelValue:
|
|
956
|
+
modelValue: {
|
|
957
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
958
|
+
};
|
|
809
959
|
items: {
|
|
810
960
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
811
961
|
default: () => never[];
|
|
@@ -822,18 +972,26 @@ declare const _default: {
|
|
|
822
972
|
type: globalThis.PropType<string | string[]>;
|
|
823
973
|
default: undefined;
|
|
824
974
|
};
|
|
825
|
-
}>>, {
|
|
975
|
+
}>>, {
|
|
976
|
+
modelValue: globalThis.Ref<Set<string> & Omit<Set<string>, keyof Set<any>>>;
|
|
977
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
978
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
979
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
826
980
|
[x: string]: (...args: any[]) => void;
|
|
827
981
|
}, string, {
|
|
828
|
-
disabled: boolean;
|
|
829
|
-
modifiers: string | string[];
|
|
830
982
|
collapse: boolean;
|
|
983
|
+
disabled: boolean;
|
|
831
984
|
not: boolean;
|
|
985
|
+
modifiers: string | string[];
|
|
832
986
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
833
987
|
itemModifiers: string | string[];
|
|
834
988
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
835
989
|
$slots: Partial<Record<`header::${string}`, (_: any) => any>> & Partial<Record<`details::${string}`, (_: any) => any>> & {
|
|
836
|
-
default?(_: {
|
|
990
|
+
default?(_: {
|
|
991
|
+
modelValue: Set<string> & Omit<Set<string>, keyof Set<any>>;
|
|
992
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
993
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
994
|
+
}): any;
|
|
837
995
|
};
|
|
838
996
|
})>> | undefined;
|
|
839
997
|
};
|