@volverjs/ui-vue 0.0.10-beta.23 → 0.0.10-beta.25
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 +282 -124
- package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -1
- package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +34 -7
- package/dist/components/VvAccordionGroup/index.d.ts +4 -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 +494 -328
- 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 +58 -15
- package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +381 -107
- 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 +164 -42
- package/src/components/VvAccordionGroup/index.ts +4 -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.settings.ts +2 -2
- package/src/stories/AccordionGroup/AccordionGroup.test.ts +16 -10
- package/src/stories/AccordionGroup/AccordionGroupSlots.stories.ts +1 -1
- package/src/types/group.ts +22 -14
|
@@ -5,23 +5,27 @@ 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;
|
|
10
|
+
modelValue: string | string[] | undefined;
|
|
11
11
|
not: boolean;
|
|
12
|
+
modifiers: string | string[];
|
|
12
13
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
13
14
|
itemModifiers: string | string[];
|
|
14
15
|
}> & Omit<{
|
|
15
|
-
readonly disabled: boolean;
|
|
16
16
|
readonly collapse: boolean;
|
|
17
|
+
readonly disabled: boolean;
|
|
17
18
|
readonly not: boolean;
|
|
18
19
|
readonly items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
19
20
|
readonly itemModifiers: string | string[];
|
|
20
|
-
readonly modelValue?: string |
|
|
21
|
+
readonly modelValue?: string | string[] | undefined;
|
|
21
22
|
readonly modifiers?: string | string[] | undefined;
|
|
22
23
|
readonly storeKey?: string | undefined;
|
|
23
24
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
24
|
-
modelValue:
|
|
25
|
+
modelValue: {
|
|
26
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
27
|
+
default: undefined;
|
|
28
|
+
};
|
|
25
29
|
items: {
|
|
26
30
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
27
31
|
default: () => never[];
|
|
@@ -38,13 +42,20 @@ declare const _default: {
|
|
|
38
42
|
type: globalThis.PropType<string | string[]>;
|
|
39
43
|
default: undefined;
|
|
40
44
|
};
|
|
41
|
-
}>>, "
|
|
42
|
-
default?: import("vue").VNodeChild | ((_: {
|
|
45
|
+
}>>, "collapse" | "disabled" | "modelValue" | "not" | "modifiers" | "items" | "itemModifiers"> & {
|
|
46
|
+
default?: import("vue").VNodeChild | ((_: {
|
|
47
|
+
expandedAccordions: Set<string>;
|
|
48
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
49
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
50
|
+
}) => any);
|
|
43
51
|
}>, "props"> | undefined;
|
|
44
52
|
subcomponents?: Record<string, Omit<import("vue").ConcreteComponent<unknown>, "props">> | undefined;
|
|
45
53
|
play?: import("@storybook/types").PlayFunction<import("@storybook/vue3/dist/types-ad933ac1").V, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
46
54
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
47
|
-
modelValue:
|
|
55
|
+
modelValue: {
|
|
56
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
57
|
+
default: undefined;
|
|
58
|
+
};
|
|
48
59
|
items: {
|
|
49
60
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
50
61
|
default: () => never[];
|
|
@@ -61,10 +72,17 @@ declare const _default: {
|
|
|
61
72
|
type: globalThis.PropType<string | string[]>;
|
|
62
73
|
default: undefined;
|
|
63
74
|
};
|
|
64
|
-
}>>, {
|
|
75
|
+
}>>, {
|
|
76
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
77
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
78
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
79
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
65
80
|
[x: string]: (...args: any[]) => void;
|
|
66
81
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
67
|
-
modelValue:
|
|
82
|
+
modelValue: {
|
|
83
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
84
|
+
default: undefined;
|
|
85
|
+
};
|
|
68
86
|
items: {
|
|
69
87
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
70
88
|
default: () => never[];
|
|
@@ -82,10 +100,11 @@ declare const _default: {
|
|
|
82
100
|
default: undefined;
|
|
83
101
|
};
|
|
84
102
|
}>>, {
|
|
85
|
-
disabled: boolean;
|
|
86
|
-
modifiers: string | string[];
|
|
87
103
|
collapse: boolean;
|
|
104
|
+
disabled: boolean;
|
|
105
|
+
modelValue: string | string[] | undefined;
|
|
88
106
|
not: boolean;
|
|
107
|
+
modifiers: string | string[];
|
|
89
108
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
90
109
|
itemModifiers: string | string[];
|
|
91
110
|
}, true, {}, {}, {
|
|
@@ -96,7 +115,10 @@ declare const _default: {
|
|
|
96
115
|
M: {};
|
|
97
116
|
Defaults: {};
|
|
98
117
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
99
|
-
modelValue:
|
|
118
|
+
modelValue: {
|
|
119
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
120
|
+
default: undefined;
|
|
121
|
+
};
|
|
100
122
|
items: {
|
|
101
123
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
102
124
|
default: () => never[];
|
|
@@ -113,11 +135,16 @@ declare const _default: {
|
|
|
113
135
|
type: globalThis.PropType<string | string[]>;
|
|
114
136
|
default: undefined;
|
|
115
137
|
};
|
|
116
|
-
}>>, {
|
|
117
|
-
|
|
118
|
-
|
|
138
|
+
}>>, {
|
|
139
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
140
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
141
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
142
|
+
}, {}, {}, {}, {
|
|
119
143
|
collapse: boolean;
|
|
144
|
+
disabled: boolean;
|
|
145
|
+
modelValue: string | string[] | undefined;
|
|
120
146
|
not: boolean;
|
|
147
|
+
modifiers: string | string[];
|
|
121
148
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
122
149
|
itemModifiers: string | string[];
|
|
123
150
|
}>;
|
|
@@ -125,7 +152,10 @@ declare const _default: {
|
|
|
125
152
|
__isTeleport?: undefined;
|
|
126
153
|
__isSuspense?: undefined;
|
|
127
154
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
128
|
-
modelValue:
|
|
155
|
+
modelValue: {
|
|
156
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
157
|
+
default: undefined;
|
|
158
|
+
};
|
|
129
159
|
items: {
|
|
130
160
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
131
161
|
default: () => never[];
|
|
@@ -142,33 +172,54 @@ declare const _default: {
|
|
|
142
172
|
type: globalThis.PropType<string | string[]>;
|
|
143
173
|
default: undefined;
|
|
144
174
|
};
|
|
145
|
-
}>>, {
|
|
175
|
+
}>>, {
|
|
176
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
177
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
178
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
179
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
146
180
|
[x: string]: (...args: any[]) => void;
|
|
147
181
|
}, string, {
|
|
148
|
-
disabled: boolean;
|
|
149
|
-
modifiers: string | string[];
|
|
150
182
|
collapse: boolean;
|
|
183
|
+
disabled: boolean;
|
|
184
|
+
modelValue: string | string[] | undefined;
|
|
151
185
|
not: boolean;
|
|
186
|
+
modifiers: string | string[];
|
|
152
187
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
153
188
|
itemModifiers: string | string[];
|
|
154
189
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
155
|
-
$slots: Partial<Record<`
|
|
156
|
-
|
|
190
|
+
$slots: Partial<Record<`summary::${string}`, (_: {
|
|
191
|
+
isExpanded: boolean;
|
|
192
|
+
expand: () => void;
|
|
193
|
+
collapse: () => void;
|
|
194
|
+
groupExpand: (name?: string | string[] | undefined) => void;
|
|
195
|
+
groupCollapse: (name?: string | string[] | undefined) => void;
|
|
196
|
+
}) => any>> & Partial<Record<`content::${string}`, (_: {
|
|
197
|
+
isExpanded: boolean;
|
|
198
|
+
expand: () => void;
|
|
199
|
+
collapse: () => void;
|
|
200
|
+
groupExpand: (name?: string | string[] | undefined) => void;
|
|
201
|
+
groupCollapse: (name?: string | string[] | undefined) => void;
|
|
202
|
+
}) => any>> & {
|
|
203
|
+
default?(_: {
|
|
204
|
+
expandedAccordions: Set<string>;
|
|
205
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
206
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
207
|
+
}): any;
|
|
157
208
|
};
|
|
158
209
|
})>> | undefined;
|
|
159
210
|
tags?: string[] | undefined;
|
|
160
211
|
decorators?: import("@storybook/types").DecoratorFunction<import("@storybook/vue3/dist/types-ad933ac1").V, {
|
|
161
|
-
disabled?: boolean | undefined;
|
|
162
|
-
modifiers?: string | string[] | undefined;
|
|
163
212
|
collapse?: boolean | undefined;
|
|
213
|
+
disabled?: boolean | undefined;
|
|
214
|
+
modelValue?: string | string[] | undefined;
|
|
164
215
|
not?: boolean | undefined;
|
|
216
|
+
modifiers?: string | string[] | undefined;
|
|
165
217
|
items?: import("../../components/VvAccordionGroup").VvAccordionGroupItem[] | undefined;
|
|
166
218
|
itemModifiers?: string | string[] | undefined;
|
|
167
|
-
key?: string | number | symbol | undefined;
|
|
168
|
-
readonly modelValue?: string | unknown[] | undefined;
|
|
169
219
|
ref?: import("vue").VNodeRef | undefined;
|
|
170
220
|
style?: unknown;
|
|
171
221
|
class?: unknown;
|
|
222
|
+
key?: string | number | symbol | undefined;
|
|
172
223
|
ref_for?: boolean | undefined;
|
|
173
224
|
ref_key?: string | undefined;
|
|
174
225
|
onVnodeBeforeMount?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
@@ -210,19 +261,23 @@ declare const _default: {
|
|
|
210
261
|
[key: string]: any;
|
|
211
262
|
}>) => void)[] | undefined;
|
|
212
263
|
readonly storeKey?: string | undefined;
|
|
213
|
-
default?: import("vue").VNodeChild | ((_: {
|
|
264
|
+
default?: import("vue").VNodeChild | ((_: {
|
|
265
|
+
expandedAccordions: Set<string>;
|
|
266
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
267
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
268
|
+
}) => any);
|
|
214
269
|
}> | import("@storybook/types").DecoratorFunction<import("@storybook/vue3/dist/types-ad933ac1").V, {
|
|
215
|
-
disabled?: boolean | undefined;
|
|
216
|
-
modifiers?: string | string[] | undefined;
|
|
217
270
|
collapse?: boolean | undefined;
|
|
271
|
+
disabled?: boolean | undefined;
|
|
272
|
+
modelValue?: string | string[] | undefined;
|
|
218
273
|
not?: boolean | undefined;
|
|
274
|
+
modifiers?: string | string[] | undefined;
|
|
219
275
|
items?: import("../../components/VvAccordionGroup").VvAccordionGroupItem[] | undefined;
|
|
220
276
|
itemModifiers?: string | string[] | undefined;
|
|
221
|
-
key?: string | number | symbol | undefined;
|
|
222
|
-
readonly modelValue?: string | unknown[] | undefined;
|
|
223
277
|
ref?: import("vue").VNodeRef | undefined;
|
|
224
278
|
style?: unknown;
|
|
225
279
|
class?: unknown;
|
|
280
|
+
key?: string | number | symbol | undefined;
|
|
226
281
|
ref_for?: boolean | undefined;
|
|
227
282
|
ref_key?: string | undefined;
|
|
228
283
|
onVnodeBeforeMount?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
@@ -264,12 +319,19 @@ declare const _default: {
|
|
|
264
319
|
[key: string]: any;
|
|
265
320
|
}>) => void)[] | undefined;
|
|
266
321
|
readonly storeKey?: string | undefined;
|
|
267
|
-
default?: import("vue").VNodeChild | ((_: {
|
|
322
|
+
default?: import("vue").VNodeChild | ((_: {
|
|
323
|
+
expandedAccordions: Set<string>;
|
|
324
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
325
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
326
|
+
}) => any);
|
|
268
327
|
}>[] | undefined;
|
|
269
328
|
parameters?: import("@storybook/types").Parameters | undefined;
|
|
270
329
|
args?: Partial<import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
271
330
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
272
|
-
modelValue:
|
|
331
|
+
modelValue: {
|
|
332
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
333
|
+
default: undefined;
|
|
334
|
+
};
|
|
273
335
|
items: {
|
|
274
336
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
275
337
|
default: () => never[];
|
|
@@ -286,10 +348,17 @@ declare const _default: {
|
|
|
286
348
|
type: globalThis.PropType<string | string[]>;
|
|
287
349
|
default: undefined;
|
|
288
350
|
};
|
|
289
|
-
}>>, {
|
|
351
|
+
}>>, {
|
|
352
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
353
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
354
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
355
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
290
356
|
[x: string]: (...args: any[]) => void;
|
|
291
357
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
292
|
-
modelValue:
|
|
358
|
+
modelValue: {
|
|
359
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
360
|
+
default: undefined;
|
|
361
|
+
};
|
|
293
362
|
items: {
|
|
294
363
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
295
364
|
default: () => never[];
|
|
@@ -307,10 +376,11 @@ declare const _default: {
|
|
|
307
376
|
default: undefined;
|
|
308
377
|
};
|
|
309
378
|
}>>, {
|
|
310
|
-
disabled: boolean;
|
|
311
|
-
modifiers: string | string[];
|
|
312
379
|
collapse: boolean;
|
|
380
|
+
disabled: boolean;
|
|
381
|
+
modelValue: string | string[] | undefined;
|
|
313
382
|
not: boolean;
|
|
383
|
+
modifiers: string | string[];
|
|
314
384
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
315
385
|
itemModifiers: string | string[];
|
|
316
386
|
}, true, {}, {}, {
|
|
@@ -321,7 +391,10 @@ declare const _default: {
|
|
|
321
391
|
M: {};
|
|
322
392
|
Defaults: {};
|
|
323
393
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
324
|
-
modelValue:
|
|
394
|
+
modelValue: {
|
|
395
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
396
|
+
default: undefined;
|
|
397
|
+
};
|
|
325
398
|
items: {
|
|
326
399
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
327
400
|
default: () => never[];
|
|
@@ -338,11 +411,16 @@ declare const _default: {
|
|
|
338
411
|
type: globalThis.PropType<string | string[]>;
|
|
339
412
|
default: undefined;
|
|
340
413
|
};
|
|
341
|
-
}>>, {
|
|
342
|
-
|
|
343
|
-
|
|
414
|
+
}>>, {
|
|
415
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
416
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
417
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
418
|
+
}, {}, {}, {}, {
|
|
344
419
|
collapse: boolean;
|
|
420
|
+
disabled: boolean;
|
|
421
|
+
modelValue: string | string[] | undefined;
|
|
345
422
|
not: boolean;
|
|
423
|
+
modifiers: string | string[];
|
|
346
424
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
347
425
|
itemModifiers: string | string[];
|
|
348
426
|
}>;
|
|
@@ -350,7 +428,10 @@ declare const _default: {
|
|
|
350
428
|
__isTeleport?: undefined;
|
|
351
429
|
__isSuspense?: undefined;
|
|
352
430
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
353
|
-
modelValue:
|
|
431
|
+
modelValue: {
|
|
432
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
433
|
+
default: undefined;
|
|
434
|
+
};
|
|
354
435
|
items: {
|
|
355
436
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
356
437
|
default: () => never[];
|
|
@@ -367,23 +448,47 @@ declare const _default: {
|
|
|
367
448
|
type: globalThis.PropType<string | string[]>;
|
|
368
449
|
default: undefined;
|
|
369
450
|
};
|
|
370
|
-
}>>, {
|
|
451
|
+
}>>, {
|
|
452
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
453
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
454
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
455
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
371
456
|
[x: string]: (...args: any[]) => void;
|
|
372
457
|
}, string, {
|
|
373
|
-
disabled: boolean;
|
|
374
|
-
modifiers: string | string[];
|
|
375
458
|
collapse: boolean;
|
|
459
|
+
disabled: boolean;
|
|
460
|
+
modelValue: string | string[] | undefined;
|
|
376
461
|
not: boolean;
|
|
462
|
+
modifiers: string | string[];
|
|
377
463
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
378
464
|
itemModifiers: string | string[];
|
|
379
465
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
380
|
-
$slots: Partial<Record<`
|
|
381
|
-
|
|
466
|
+
$slots: Partial<Record<`summary::${string}`, (_: {
|
|
467
|
+
isExpanded: boolean;
|
|
468
|
+
expand: () => void;
|
|
469
|
+
collapse: () => void;
|
|
470
|
+
groupExpand: (name?: string | string[] | undefined) => void;
|
|
471
|
+
groupCollapse: (name?: string | string[] | undefined) => void;
|
|
472
|
+
}) => any>> & Partial<Record<`content::${string}`, (_: {
|
|
473
|
+
isExpanded: boolean;
|
|
474
|
+
expand: () => void;
|
|
475
|
+
collapse: () => void;
|
|
476
|
+
groupExpand: (name?: string | string[] | undefined) => void;
|
|
477
|
+
groupCollapse: (name?: string | string[] | undefined) => void;
|
|
478
|
+
}) => any>> & {
|
|
479
|
+
default?(_: {
|
|
480
|
+
expandedAccordions: Set<string>;
|
|
481
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
482
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
483
|
+
}): any;
|
|
382
484
|
};
|
|
383
485
|
})>> | undefined;
|
|
384
486
|
argTypes?: Partial<import("@storybook/types").ArgTypes<import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
385
487
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
386
|
-
modelValue:
|
|
488
|
+
modelValue: {
|
|
489
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
490
|
+
default: undefined;
|
|
491
|
+
};
|
|
387
492
|
items: {
|
|
388
493
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
389
494
|
default: () => never[];
|
|
@@ -400,10 +505,17 @@ declare const _default: {
|
|
|
400
505
|
type: globalThis.PropType<string | string[]>;
|
|
401
506
|
default: undefined;
|
|
402
507
|
};
|
|
403
|
-
}>>, {
|
|
508
|
+
}>>, {
|
|
509
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
510
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
511
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
512
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
404
513
|
[x: string]: (...args: any[]) => void;
|
|
405
514
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
406
|
-
modelValue:
|
|
515
|
+
modelValue: {
|
|
516
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
517
|
+
default: undefined;
|
|
518
|
+
};
|
|
407
519
|
items: {
|
|
408
520
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
409
521
|
default: () => never[];
|
|
@@ -421,10 +533,11 @@ declare const _default: {
|
|
|
421
533
|
default: undefined;
|
|
422
534
|
};
|
|
423
535
|
}>>, {
|
|
424
|
-
disabled: boolean;
|
|
425
|
-
modifiers: string | string[];
|
|
426
536
|
collapse: boolean;
|
|
537
|
+
disabled: boolean;
|
|
538
|
+
modelValue: string | string[] | undefined;
|
|
427
539
|
not: boolean;
|
|
540
|
+
modifiers: string | string[];
|
|
428
541
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
429
542
|
itemModifiers: string | string[];
|
|
430
543
|
}, true, {}, {}, {
|
|
@@ -435,7 +548,10 @@ declare const _default: {
|
|
|
435
548
|
M: {};
|
|
436
549
|
Defaults: {};
|
|
437
550
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
438
|
-
modelValue:
|
|
551
|
+
modelValue: {
|
|
552
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
553
|
+
default: undefined;
|
|
554
|
+
};
|
|
439
555
|
items: {
|
|
440
556
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
441
557
|
default: () => never[];
|
|
@@ -452,11 +568,16 @@ declare const _default: {
|
|
|
452
568
|
type: globalThis.PropType<string | string[]>;
|
|
453
569
|
default: undefined;
|
|
454
570
|
};
|
|
455
|
-
}>>, {
|
|
456
|
-
|
|
457
|
-
|
|
571
|
+
}>>, {
|
|
572
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
573
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
574
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
575
|
+
}, {}, {}, {}, {
|
|
458
576
|
collapse: boolean;
|
|
577
|
+
disabled: boolean;
|
|
578
|
+
modelValue: string | string[] | undefined;
|
|
459
579
|
not: boolean;
|
|
580
|
+
modifiers: string | string[];
|
|
460
581
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
461
582
|
itemModifiers: string | string[];
|
|
462
583
|
}>;
|
|
@@ -464,7 +585,10 @@ declare const _default: {
|
|
|
464
585
|
__isTeleport?: undefined;
|
|
465
586
|
__isSuspense?: undefined;
|
|
466
587
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
467
|
-
modelValue:
|
|
588
|
+
modelValue: {
|
|
589
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
590
|
+
default: undefined;
|
|
591
|
+
};
|
|
468
592
|
items: {
|
|
469
593
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
470
594
|
default: () => never[];
|
|
@@ -481,23 +605,47 @@ declare const _default: {
|
|
|
481
605
|
type: globalThis.PropType<string | string[]>;
|
|
482
606
|
default: undefined;
|
|
483
607
|
};
|
|
484
|
-
}>>, {
|
|
608
|
+
}>>, {
|
|
609
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
610
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
611
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
612
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
485
613
|
[x: string]: (...args: any[]) => void;
|
|
486
614
|
}, string, {
|
|
487
|
-
disabled: boolean;
|
|
488
|
-
modifiers: string | string[];
|
|
489
615
|
collapse: boolean;
|
|
616
|
+
disabled: boolean;
|
|
617
|
+
modelValue: string | string[] | undefined;
|
|
490
618
|
not: boolean;
|
|
619
|
+
modifiers: string | string[];
|
|
491
620
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
492
621
|
itemModifiers: string | string[];
|
|
493
622
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
494
|
-
$slots: Partial<Record<`
|
|
495
|
-
|
|
623
|
+
$slots: Partial<Record<`summary::${string}`, (_: {
|
|
624
|
+
isExpanded: boolean;
|
|
625
|
+
expand: () => void;
|
|
626
|
+
collapse: () => void;
|
|
627
|
+
groupExpand: (name?: string | string[] | undefined) => void;
|
|
628
|
+
groupCollapse: (name?: string | string[] | undefined) => void;
|
|
629
|
+
}) => any>> & Partial<Record<`content::${string}`, (_: {
|
|
630
|
+
isExpanded: boolean;
|
|
631
|
+
expand: () => void;
|
|
632
|
+
collapse: () => void;
|
|
633
|
+
groupExpand: (name?: string | string[] | undefined) => void;
|
|
634
|
+
groupCollapse: (name?: string | string[] | undefined) => void;
|
|
635
|
+
}) => any>> & {
|
|
636
|
+
default?(_: {
|
|
637
|
+
expandedAccordions: Set<string>;
|
|
638
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
639
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
640
|
+
}): any;
|
|
496
641
|
};
|
|
497
642
|
})>>> | undefined;
|
|
498
643
|
loaders?: import("@storybook/types").LoaderFunction<import("@storybook/vue3/dist/types-ad933ac1").V, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
499
644
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
500
|
-
modelValue:
|
|
645
|
+
modelValue: {
|
|
646
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
647
|
+
default: undefined;
|
|
648
|
+
};
|
|
501
649
|
items: {
|
|
502
650
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
503
651
|
default: () => never[];
|
|
@@ -514,10 +662,17 @@ declare const _default: {
|
|
|
514
662
|
type: globalThis.PropType<string | string[]>;
|
|
515
663
|
default: undefined;
|
|
516
664
|
};
|
|
517
|
-
}>>, {
|
|
665
|
+
}>>, {
|
|
666
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
667
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
668
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
669
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
518
670
|
[x: string]: (...args: any[]) => void;
|
|
519
671
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
520
|
-
modelValue:
|
|
672
|
+
modelValue: {
|
|
673
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
674
|
+
default: undefined;
|
|
675
|
+
};
|
|
521
676
|
items: {
|
|
522
677
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
523
678
|
default: () => never[];
|
|
@@ -535,10 +690,11 @@ declare const _default: {
|
|
|
535
690
|
default: undefined;
|
|
536
691
|
};
|
|
537
692
|
}>>, {
|
|
538
|
-
disabled: boolean;
|
|
539
|
-
modifiers: string | string[];
|
|
540
693
|
collapse: boolean;
|
|
694
|
+
disabled: boolean;
|
|
695
|
+
modelValue: string | string[] | undefined;
|
|
541
696
|
not: boolean;
|
|
697
|
+
modifiers: string | string[];
|
|
542
698
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
543
699
|
itemModifiers: string | string[];
|
|
544
700
|
}, true, {}, {}, {
|
|
@@ -549,7 +705,10 @@ declare const _default: {
|
|
|
549
705
|
M: {};
|
|
550
706
|
Defaults: {};
|
|
551
707
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
552
|
-
modelValue:
|
|
708
|
+
modelValue: {
|
|
709
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
710
|
+
default: undefined;
|
|
711
|
+
};
|
|
553
712
|
items: {
|
|
554
713
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
555
714
|
default: () => never[];
|
|
@@ -566,11 +725,16 @@ declare const _default: {
|
|
|
566
725
|
type: globalThis.PropType<string | string[]>;
|
|
567
726
|
default: undefined;
|
|
568
727
|
};
|
|
569
|
-
}>>, {
|
|
570
|
-
|
|
571
|
-
|
|
728
|
+
}>>, {
|
|
729
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
730
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
731
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
732
|
+
}, {}, {}, {}, {
|
|
572
733
|
collapse: boolean;
|
|
734
|
+
disabled: boolean;
|
|
735
|
+
modelValue: string | string[] | undefined;
|
|
573
736
|
not: boolean;
|
|
737
|
+
modifiers: string | string[];
|
|
574
738
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
575
739
|
itemModifiers: string | string[];
|
|
576
740
|
}>;
|
|
@@ -578,7 +742,10 @@ declare const _default: {
|
|
|
578
742
|
__isTeleport?: undefined;
|
|
579
743
|
__isSuspense?: undefined;
|
|
580
744
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
581
|
-
modelValue:
|
|
745
|
+
modelValue: {
|
|
746
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
747
|
+
default: undefined;
|
|
748
|
+
};
|
|
582
749
|
items: {
|
|
583
750
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
584
751
|
default: () => never[];
|
|
@@ -595,22 +762,46 @@ declare const _default: {
|
|
|
595
762
|
type: globalThis.PropType<string | string[]>;
|
|
596
763
|
default: undefined;
|
|
597
764
|
};
|
|
598
|
-
}>>, {
|
|
765
|
+
}>>, {
|
|
766
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
767
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
768
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
769
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
599
770
|
[x: string]: (...args: any[]) => void;
|
|
600
771
|
}, string, {
|
|
601
|
-
disabled: boolean;
|
|
602
|
-
modifiers: string | string[];
|
|
603
772
|
collapse: boolean;
|
|
773
|
+
disabled: boolean;
|
|
774
|
+
modelValue: string | string[] | undefined;
|
|
604
775
|
not: boolean;
|
|
776
|
+
modifiers: string | string[];
|
|
605
777
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
606
778
|
itemModifiers: string | string[];
|
|
607
779
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
608
|
-
$slots: Partial<Record<`
|
|
609
|
-
|
|
780
|
+
$slots: Partial<Record<`summary::${string}`, (_: {
|
|
781
|
+
isExpanded: boolean;
|
|
782
|
+
expand: () => void;
|
|
783
|
+
collapse: () => void;
|
|
784
|
+
groupExpand: (name?: string | string[] | undefined) => void;
|
|
785
|
+
groupCollapse: (name?: string | string[] | undefined) => void;
|
|
786
|
+
}) => any>> & Partial<Record<`content::${string}`, (_: {
|
|
787
|
+
isExpanded: boolean;
|
|
788
|
+
expand: () => void;
|
|
789
|
+
collapse: () => void;
|
|
790
|
+
groupExpand: (name?: string | string[] | undefined) => void;
|
|
791
|
+
groupCollapse: (name?: string | string[] | undefined) => void;
|
|
792
|
+
}) => any>> & {
|
|
793
|
+
default?(_: {
|
|
794
|
+
expandedAccordions: Set<string>;
|
|
795
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
796
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
797
|
+
}): any;
|
|
610
798
|
};
|
|
611
799
|
})>> | import("@storybook/types").LoaderFunction<import("@storybook/vue3/dist/types-ad933ac1").V, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
612
800
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
613
|
-
modelValue:
|
|
801
|
+
modelValue: {
|
|
802
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
803
|
+
default: undefined;
|
|
804
|
+
};
|
|
614
805
|
items: {
|
|
615
806
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
616
807
|
default: () => never[];
|
|
@@ -627,10 +818,17 @@ declare const _default: {
|
|
|
627
818
|
type: globalThis.PropType<string | string[]>;
|
|
628
819
|
default: undefined;
|
|
629
820
|
};
|
|
630
|
-
}>>, {
|
|
821
|
+
}>>, {
|
|
822
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
823
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
824
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
825
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
631
826
|
[x: string]: (...args: any[]) => void;
|
|
632
827
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
633
|
-
modelValue:
|
|
828
|
+
modelValue: {
|
|
829
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
830
|
+
default: undefined;
|
|
831
|
+
};
|
|
634
832
|
items: {
|
|
635
833
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
636
834
|
default: () => never[];
|
|
@@ -648,10 +846,11 @@ declare const _default: {
|
|
|
648
846
|
default: undefined;
|
|
649
847
|
};
|
|
650
848
|
}>>, {
|
|
651
|
-
disabled: boolean;
|
|
652
|
-
modifiers: string | string[];
|
|
653
849
|
collapse: boolean;
|
|
850
|
+
disabled: boolean;
|
|
851
|
+
modelValue: string | string[] | undefined;
|
|
654
852
|
not: boolean;
|
|
853
|
+
modifiers: string | string[];
|
|
655
854
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
656
855
|
itemModifiers: string | string[];
|
|
657
856
|
}, true, {}, {}, {
|
|
@@ -662,7 +861,10 @@ declare const _default: {
|
|
|
662
861
|
M: {};
|
|
663
862
|
Defaults: {};
|
|
664
863
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
665
|
-
modelValue:
|
|
864
|
+
modelValue: {
|
|
865
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
866
|
+
default: undefined;
|
|
867
|
+
};
|
|
666
868
|
items: {
|
|
667
869
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
668
870
|
default: () => never[];
|
|
@@ -679,11 +881,16 @@ declare const _default: {
|
|
|
679
881
|
type: globalThis.PropType<string | string[]>;
|
|
680
882
|
default: undefined;
|
|
681
883
|
};
|
|
682
|
-
}>>, {
|
|
683
|
-
|
|
684
|
-
|
|
884
|
+
}>>, {
|
|
885
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
886
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
887
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
888
|
+
}, {}, {}, {}, {
|
|
685
889
|
collapse: boolean;
|
|
890
|
+
disabled: boolean;
|
|
891
|
+
modelValue: string | string[] | undefined;
|
|
686
892
|
not: boolean;
|
|
893
|
+
modifiers: string | string[];
|
|
687
894
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
688
895
|
itemModifiers: string | string[];
|
|
689
896
|
}>;
|
|
@@ -691,7 +898,10 @@ declare const _default: {
|
|
|
691
898
|
__isTeleport?: undefined;
|
|
692
899
|
__isSuspense?: undefined;
|
|
693
900
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
694
|
-
modelValue:
|
|
901
|
+
modelValue: {
|
|
902
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
903
|
+
default: undefined;
|
|
904
|
+
};
|
|
695
905
|
items: {
|
|
696
906
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
697
907
|
default: () => never[];
|
|
@@ -708,23 +918,47 @@ declare const _default: {
|
|
|
708
918
|
type: globalThis.PropType<string | string[]>;
|
|
709
919
|
default: undefined;
|
|
710
920
|
};
|
|
711
|
-
}>>, {
|
|
921
|
+
}>>, {
|
|
922
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
923
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
924
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
925
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
712
926
|
[x: string]: (...args: any[]) => void;
|
|
713
927
|
}, string, {
|
|
714
|
-
disabled: boolean;
|
|
715
|
-
modifiers: string | string[];
|
|
716
928
|
collapse: boolean;
|
|
929
|
+
disabled: boolean;
|
|
930
|
+
modelValue: string | string[] | undefined;
|
|
717
931
|
not: boolean;
|
|
932
|
+
modifiers: string | string[];
|
|
718
933
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
719
934
|
itemModifiers: string | string[];
|
|
720
935
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
721
|
-
$slots: Partial<Record<`
|
|
722
|
-
|
|
936
|
+
$slots: Partial<Record<`summary::${string}`, (_: {
|
|
937
|
+
isExpanded: boolean;
|
|
938
|
+
expand: () => void;
|
|
939
|
+
collapse: () => void;
|
|
940
|
+
groupExpand: (name?: string | string[] | undefined) => void;
|
|
941
|
+
groupCollapse: (name?: string | string[] | undefined) => void;
|
|
942
|
+
}) => any>> & Partial<Record<`content::${string}`, (_: {
|
|
943
|
+
isExpanded: boolean;
|
|
944
|
+
expand: () => void;
|
|
945
|
+
collapse: () => void;
|
|
946
|
+
groupExpand: (name?: string | string[] | undefined) => void;
|
|
947
|
+
groupCollapse: (name?: string | string[] | undefined) => void;
|
|
948
|
+
}) => any>> & {
|
|
949
|
+
default?(_: {
|
|
950
|
+
expandedAccordions: Set<string>;
|
|
951
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
952
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
953
|
+
}): any;
|
|
723
954
|
};
|
|
724
955
|
})>>[] | undefined;
|
|
725
956
|
render?: import("@storybook/types").ArgsStoryFn<import("@storybook/vue3/dist/types-ad933ac1").V, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
726
957
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
727
|
-
modelValue:
|
|
958
|
+
modelValue: {
|
|
959
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
960
|
+
default: undefined;
|
|
961
|
+
};
|
|
728
962
|
items: {
|
|
729
963
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
730
964
|
default: () => never[];
|
|
@@ -741,10 +975,17 @@ declare const _default: {
|
|
|
741
975
|
type: globalThis.PropType<string | string[]>;
|
|
742
976
|
default: undefined;
|
|
743
977
|
};
|
|
744
|
-
}>>, {
|
|
978
|
+
}>>, {
|
|
979
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
980
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
981
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
982
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
745
983
|
[x: string]: (...args: any[]) => void;
|
|
746
984
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
747
|
-
modelValue:
|
|
985
|
+
modelValue: {
|
|
986
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
987
|
+
default: undefined;
|
|
988
|
+
};
|
|
748
989
|
items: {
|
|
749
990
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
750
991
|
default: () => never[];
|
|
@@ -762,10 +1003,11 @@ declare const _default: {
|
|
|
762
1003
|
default: undefined;
|
|
763
1004
|
};
|
|
764
1005
|
}>>, {
|
|
765
|
-
disabled: boolean;
|
|
766
|
-
modifiers: string | string[];
|
|
767
1006
|
collapse: boolean;
|
|
1007
|
+
disabled: boolean;
|
|
1008
|
+
modelValue: string | string[] | undefined;
|
|
768
1009
|
not: boolean;
|
|
1010
|
+
modifiers: string | string[];
|
|
769
1011
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
770
1012
|
itemModifiers: string | string[];
|
|
771
1013
|
}, true, {}, {}, {
|
|
@@ -776,7 +1018,10 @@ declare const _default: {
|
|
|
776
1018
|
M: {};
|
|
777
1019
|
Defaults: {};
|
|
778
1020
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
779
|
-
modelValue:
|
|
1021
|
+
modelValue: {
|
|
1022
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
1023
|
+
default: undefined;
|
|
1024
|
+
};
|
|
780
1025
|
items: {
|
|
781
1026
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
782
1027
|
default: () => never[];
|
|
@@ -793,11 +1038,16 @@ declare const _default: {
|
|
|
793
1038
|
type: globalThis.PropType<string | string[]>;
|
|
794
1039
|
default: undefined;
|
|
795
1040
|
};
|
|
796
|
-
}>>, {
|
|
797
|
-
|
|
798
|
-
|
|
1041
|
+
}>>, {
|
|
1042
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
1043
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
1044
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
1045
|
+
}, {}, {}, {}, {
|
|
799
1046
|
collapse: boolean;
|
|
1047
|
+
disabled: boolean;
|
|
1048
|
+
modelValue: string | string[] | undefined;
|
|
800
1049
|
not: boolean;
|
|
1050
|
+
modifiers: string | string[];
|
|
801
1051
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
802
1052
|
itemModifiers: string | string[];
|
|
803
1053
|
}>;
|
|
@@ -805,7 +1055,10 @@ declare const _default: {
|
|
|
805
1055
|
__isTeleport?: undefined;
|
|
806
1056
|
__isSuspense?: undefined;
|
|
807
1057
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
808
|
-
modelValue:
|
|
1058
|
+
modelValue: {
|
|
1059
|
+
type: globalThis.PropType<string | string[] | undefined>;
|
|
1060
|
+
default: undefined;
|
|
1061
|
+
};
|
|
809
1062
|
items: {
|
|
810
1063
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
811
1064
|
default: () => never[];
|
|
@@ -822,18 +1075,39 @@ declare const _default: {
|
|
|
822
1075
|
type: globalThis.PropType<string | string[]>;
|
|
823
1076
|
default: undefined;
|
|
824
1077
|
};
|
|
825
|
-
}>>, {
|
|
1078
|
+
}>>, {
|
|
1079
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
1080
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
1081
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
1082
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
826
1083
|
[x: string]: (...args: any[]) => void;
|
|
827
1084
|
}, string, {
|
|
828
|
-
disabled: boolean;
|
|
829
|
-
modifiers: string | string[];
|
|
830
1085
|
collapse: boolean;
|
|
1086
|
+
disabled: boolean;
|
|
1087
|
+
modelValue: string | string[] | undefined;
|
|
831
1088
|
not: boolean;
|
|
1089
|
+
modifiers: string | string[];
|
|
832
1090
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
833
1091
|
itemModifiers: string | string[];
|
|
834
1092
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
835
|
-
$slots: Partial<Record<`
|
|
836
|
-
|
|
1093
|
+
$slots: Partial<Record<`summary::${string}`, (_: {
|
|
1094
|
+
isExpanded: boolean;
|
|
1095
|
+
expand: () => void;
|
|
1096
|
+
collapse: () => void;
|
|
1097
|
+
groupExpand: (name?: string | string[] | undefined) => void;
|
|
1098
|
+
groupCollapse: (name?: string | string[] | undefined) => void;
|
|
1099
|
+
}) => any>> & Partial<Record<`content::${string}`, (_: {
|
|
1100
|
+
isExpanded: boolean;
|
|
1101
|
+
expand: () => void;
|
|
1102
|
+
collapse: () => void;
|
|
1103
|
+
groupExpand: (name?: string | string[] | undefined) => void;
|
|
1104
|
+
groupCollapse: (name?: string | string[] | undefined) => void;
|
|
1105
|
+
}) => any>> & {
|
|
1106
|
+
default?(_: {
|
|
1107
|
+
expandedAccordions: Set<string>;
|
|
1108
|
+
expand: (name?: string | string[] | undefined) => void;
|
|
1109
|
+
collapse: (name?: string | string[] | undefined) => void;
|
|
1110
|
+
}): any;
|
|
837
1111
|
};
|
|
838
1112
|
})>> | undefined;
|
|
839
1113
|
};
|