@volverjs/ui-vue 0.0.10-beta.24 → 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/VvAccordionGroup/VvAccordionGroup.es.js +87 -60
- package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -1
- package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +18 -3
- package/dist/components/VvAccordionGroup/index.d.ts +1 -0
- package/dist/components/index.es.js +87 -60
- package/dist/components/index.umd.js +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/stories/AccordionGroup/AccordionGroup.stories.d.ts +24 -5
- package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +152 -36
- package/package.json +1 -1
- 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/VvAccordionGroup/VvAccordionGroup.vue +81 -58
- package/src/components/VvAccordionGroup/index.ts +1 -0
- package/src/stories/AccordionGroup/AccordionGroup.settings.ts +2 -2
- package/src/stories/AccordionGroup/AccordionGroup.test.ts +5 -5
|
@@ -7,6 +7,7 @@ declare const _default: {
|
|
|
7
7
|
component?: Omit<import("vue").ConcreteComponent<Partial<{
|
|
8
8
|
collapse: boolean;
|
|
9
9
|
disabled: boolean;
|
|
10
|
+
modelValue: string | string[] | undefined;
|
|
10
11
|
not: boolean;
|
|
11
12
|
modifiers: string | string[];
|
|
12
13
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
@@ -23,6 +24,7 @@ declare const _default: {
|
|
|
23
24
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
24
25
|
modelValue: {
|
|
25
26
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
27
|
+
default: undefined;
|
|
26
28
|
};
|
|
27
29
|
items: {
|
|
28
30
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -40,9 +42,9 @@ declare const _default: {
|
|
|
40
42
|
type: globalThis.PropType<string | string[]>;
|
|
41
43
|
default: undefined;
|
|
42
44
|
};
|
|
43
|
-
}>>, "collapse" | "disabled" | "not" | "modifiers" | "items" | "itemModifiers"> & {
|
|
45
|
+
}>>, "collapse" | "disabled" | "modelValue" | "not" | "modifiers" | "items" | "itemModifiers"> & {
|
|
44
46
|
default?: import("vue").VNodeChild | ((_: {
|
|
45
|
-
|
|
47
|
+
expandedAccordions: Set<string>;
|
|
46
48
|
expand: (name?: string | string[] | undefined) => void;
|
|
47
49
|
collapse: (name?: string | string[] | undefined) => void;
|
|
48
50
|
}) => any);
|
|
@@ -52,6 +54,7 @@ declare const _default: {
|
|
|
52
54
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
53
55
|
modelValue: {
|
|
54
56
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
57
|
+
default: undefined;
|
|
55
58
|
};
|
|
56
59
|
items: {
|
|
57
60
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -70,7 +73,7 @@ declare const _default: {
|
|
|
70
73
|
default: undefined;
|
|
71
74
|
};
|
|
72
75
|
}>>, {
|
|
73
|
-
|
|
76
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
74
77
|
expand: (name?: string | string[] | undefined) => void;
|
|
75
78
|
collapse: (name?: string | string[] | undefined) => void;
|
|
76
79
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -78,6 +81,7 @@ declare const _default: {
|
|
|
78
81
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
79
82
|
modelValue: {
|
|
80
83
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
84
|
+
default: undefined;
|
|
81
85
|
};
|
|
82
86
|
items: {
|
|
83
87
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -98,6 +102,7 @@ declare const _default: {
|
|
|
98
102
|
}>>, {
|
|
99
103
|
collapse: boolean;
|
|
100
104
|
disabled: boolean;
|
|
105
|
+
modelValue: string | string[] | undefined;
|
|
101
106
|
not: boolean;
|
|
102
107
|
modifiers: string | string[];
|
|
103
108
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
@@ -112,6 +117,7 @@ declare const _default: {
|
|
|
112
117
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
113
118
|
modelValue: {
|
|
114
119
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
120
|
+
default: undefined;
|
|
115
121
|
};
|
|
116
122
|
items: {
|
|
117
123
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -130,12 +136,13 @@ declare const _default: {
|
|
|
130
136
|
default: undefined;
|
|
131
137
|
};
|
|
132
138
|
}>>, {
|
|
133
|
-
|
|
139
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
134
140
|
expand: (name?: string | string[] | undefined) => void;
|
|
135
141
|
collapse: (name?: string | string[] | undefined) => void;
|
|
136
142
|
}, {}, {}, {}, {
|
|
137
143
|
collapse: boolean;
|
|
138
144
|
disabled: boolean;
|
|
145
|
+
modelValue: string | string[] | undefined;
|
|
139
146
|
not: boolean;
|
|
140
147
|
modifiers: string | string[];
|
|
141
148
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
@@ -147,6 +154,7 @@ declare const _default: {
|
|
|
147
154
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
148
155
|
modelValue: {
|
|
149
156
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
157
|
+
default: undefined;
|
|
150
158
|
};
|
|
151
159
|
items: {
|
|
152
160
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -165,7 +173,7 @@ declare const _default: {
|
|
|
165
173
|
default: undefined;
|
|
166
174
|
};
|
|
167
175
|
}>>, {
|
|
168
|
-
|
|
176
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
169
177
|
expand: (name?: string | string[] | undefined) => void;
|
|
170
178
|
collapse: (name?: string | string[] | undefined) => void;
|
|
171
179
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -173,14 +181,27 @@ declare const _default: {
|
|
|
173
181
|
}, string, {
|
|
174
182
|
collapse: boolean;
|
|
175
183
|
disabled: boolean;
|
|
184
|
+
modelValue: string | string[] | undefined;
|
|
176
185
|
not: boolean;
|
|
177
186
|
modifiers: string | string[];
|
|
178
187
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
179
188
|
itemModifiers: string | string[];
|
|
180
189
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
181
|
-
$slots: Partial<Record<`
|
|
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>> & {
|
|
182
203
|
default?(_: {
|
|
183
|
-
|
|
204
|
+
expandedAccordions: Set<string>;
|
|
184
205
|
expand: (name?: string | string[] | undefined) => void;
|
|
185
206
|
collapse: (name?: string | string[] | undefined) => void;
|
|
186
207
|
}): any;
|
|
@@ -190,13 +211,13 @@ declare const _default: {
|
|
|
190
211
|
decorators?: import("@storybook/types").DecoratorFunction<import("@storybook/vue3/dist/types-ad933ac1").V, {
|
|
191
212
|
collapse?: boolean | undefined;
|
|
192
213
|
disabled?: boolean | undefined;
|
|
214
|
+
modelValue?: string | string[] | undefined;
|
|
193
215
|
not?: boolean | undefined;
|
|
194
216
|
modifiers?: string | string[] | undefined;
|
|
195
217
|
items?: import("../../components/VvAccordionGroup").VvAccordionGroupItem[] | undefined;
|
|
196
218
|
itemModifiers?: string | string[] | undefined;
|
|
197
219
|
ref?: import("vue").VNodeRef | undefined;
|
|
198
220
|
style?: unknown;
|
|
199
|
-
readonly modelValue?: string | string[] | undefined;
|
|
200
221
|
class?: unknown;
|
|
201
222
|
key?: string | number | symbol | undefined;
|
|
202
223
|
ref_for?: boolean | undefined;
|
|
@@ -241,20 +262,20 @@ declare const _default: {
|
|
|
241
262
|
}>) => void)[] | undefined;
|
|
242
263
|
readonly storeKey?: string | undefined;
|
|
243
264
|
default?: import("vue").VNodeChild | ((_: {
|
|
244
|
-
|
|
265
|
+
expandedAccordions: Set<string>;
|
|
245
266
|
expand: (name?: string | string[] | undefined) => void;
|
|
246
267
|
collapse: (name?: string | string[] | undefined) => void;
|
|
247
268
|
}) => any);
|
|
248
269
|
}> | import("@storybook/types").DecoratorFunction<import("@storybook/vue3/dist/types-ad933ac1").V, {
|
|
249
270
|
collapse?: boolean | undefined;
|
|
250
271
|
disabled?: boolean | undefined;
|
|
272
|
+
modelValue?: string | string[] | undefined;
|
|
251
273
|
not?: boolean | undefined;
|
|
252
274
|
modifiers?: string | string[] | undefined;
|
|
253
275
|
items?: import("../../components/VvAccordionGroup").VvAccordionGroupItem[] | undefined;
|
|
254
276
|
itemModifiers?: string | string[] | undefined;
|
|
255
277
|
ref?: import("vue").VNodeRef | undefined;
|
|
256
278
|
style?: unknown;
|
|
257
|
-
readonly modelValue?: string | string[] | undefined;
|
|
258
279
|
class?: unknown;
|
|
259
280
|
key?: string | number | symbol | undefined;
|
|
260
281
|
ref_for?: boolean | undefined;
|
|
@@ -299,7 +320,7 @@ declare const _default: {
|
|
|
299
320
|
}>) => void)[] | undefined;
|
|
300
321
|
readonly storeKey?: string | undefined;
|
|
301
322
|
default?: import("vue").VNodeChild | ((_: {
|
|
302
|
-
|
|
323
|
+
expandedAccordions: Set<string>;
|
|
303
324
|
expand: (name?: string | string[] | undefined) => void;
|
|
304
325
|
collapse: (name?: string | string[] | undefined) => void;
|
|
305
326
|
}) => any);
|
|
@@ -309,6 +330,7 @@ declare const _default: {
|
|
|
309
330
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
310
331
|
modelValue: {
|
|
311
332
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
333
|
+
default: undefined;
|
|
312
334
|
};
|
|
313
335
|
items: {
|
|
314
336
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -327,7 +349,7 @@ declare const _default: {
|
|
|
327
349
|
default: undefined;
|
|
328
350
|
};
|
|
329
351
|
}>>, {
|
|
330
|
-
|
|
352
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
331
353
|
expand: (name?: string | string[] | undefined) => void;
|
|
332
354
|
collapse: (name?: string | string[] | undefined) => void;
|
|
333
355
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -335,6 +357,7 @@ declare const _default: {
|
|
|
335
357
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
336
358
|
modelValue: {
|
|
337
359
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
360
|
+
default: undefined;
|
|
338
361
|
};
|
|
339
362
|
items: {
|
|
340
363
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -355,6 +378,7 @@ declare const _default: {
|
|
|
355
378
|
}>>, {
|
|
356
379
|
collapse: boolean;
|
|
357
380
|
disabled: boolean;
|
|
381
|
+
modelValue: string | string[] | undefined;
|
|
358
382
|
not: boolean;
|
|
359
383
|
modifiers: string | string[];
|
|
360
384
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
@@ -369,6 +393,7 @@ declare const _default: {
|
|
|
369
393
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
370
394
|
modelValue: {
|
|
371
395
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
396
|
+
default: undefined;
|
|
372
397
|
};
|
|
373
398
|
items: {
|
|
374
399
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -387,12 +412,13 @@ declare const _default: {
|
|
|
387
412
|
default: undefined;
|
|
388
413
|
};
|
|
389
414
|
}>>, {
|
|
390
|
-
|
|
415
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
391
416
|
expand: (name?: string | string[] | undefined) => void;
|
|
392
417
|
collapse: (name?: string | string[] | undefined) => void;
|
|
393
418
|
}, {}, {}, {}, {
|
|
394
419
|
collapse: boolean;
|
|
395
420
|
disabled: boolean;
|
|
421
|
+
modelValue: string | string[] | undefined;
|
|
396
422
|
not: boolean;
|
|
397
423
|
modifiers: string | string[];
|
|
398
424
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
@@ -404,6 +430,7 @@ declare const _default: {
|
|
|
404
430
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
405
431
|
modelValue: {
|
|
406
432
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
433
|
+
default: undefined;
|
|
407
434
|
};
|
|
408
435
|
items: {
|
|
409
436
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -422,7 +449,7 @@ declare const _default: {
|
|
|
422
449
|
default: undefined;
|
|
423
450
|
};
|
|
424
451
|
}>>, {
|
|
425
|
-
|
|
452
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
426
453
|
expand: (name?: string | string[] | undefined) => void;
|
|
427
454
|
collapse: (name?: string | string[] | undefined) => void;
|
|
428
455
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -430,14 +457,27 @@ declare const _default: {
|
|
|
430
457
|
}, string, {
|
|
431
458
|
collapse: boolean;
|
|
432
459
|
disabled: boolean;
|
|
460
|
+
modelValue: string | string[] | undefined;
|
|
433
461
|
not: boolean;
|
|
434
462
|
modifiers: string | string[];
|
|
435
463
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
436
464
|
itemModifiers: string | string[];
|
|
437
465
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
438
|
-
$slots: Partial<Record<`
|
|
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>> & {
|
|
439
479
|
default?(_: {
|
|
440
|
-
|
|
480
|
+
expandedAccordions: Set<string>;
|
|
441
481
|
expand: (name?: string | string[] | undefined) => void;
|
|
442
482
|
collapse: (name?: string | string[] | undefined) => void;
|
|
443
483
|
}): any;
|
|
@@ -447,6 +487,7 @@ declare const _default: {
|
|
|
447
487
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
448
488
|
modelValue: {
|
|
449
489
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
490
|
+
default: undefined;
|
|
450
491
|
};
|
|
451
492
|
items: {
|
|
452
493
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -465,7 +506,7 @@ declare const _default: {
|
|
|
465
506
|
default: undefined;
|
|
466
507
|
};
|
|
467
508
|
}>>, {
|
|
468
|
-
|
|
509
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
469
510
|
expand: (name?: string | string[] | undefined) => void;
|
|
470
511
|
collapse: (name?: string | string[] | undefined) => void;
|
|
471
512
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -473,6 +514,7 @@ declare const _default: {
|
|
|
473
514
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
474
515
|
modelValue: {
|
|
475
516
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
517
|
+
default: undefined;
|
|
476
518
|
};
|
|
477
519
|
items: {
|
|
478
520
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -493,6 +535,7 @@ declare const _default: {
|
|
|
493
535
|
}>>, {
|
|
494
536
|
collapse: boolean;
|
|
495
537
|
disabled: boolean;
|
|
538
|
+
modelValue: string | string[] | undefined;
|
|
496
539
|
not: boolean;
|
|
497
540
|
modifiers: string | string[];
|
|
498
541
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
@@ -507,6 +550,7 @@ declare const _default: {
|
|
|
507
550
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
508
551
|
modelValue: {
|
|
509
552
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
553
|
+
default: undefined;
|
|
510
554
|
};
|
|
511
555
|
items: {
|
|
512
556
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -525,12 +569,13 @@ declare const _default: {
|
|
|
525
569
|
default: undefined;
|
|
526
570
|
};
|
|
527
571
|
}>>, {
|
|
528
|
-
|
|
572
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
529
573
|
expand: (name?: string | string[] | undefined) => void;
|
|
530
574
|
collapse: (name?: string | string[] | undefined) => void;
|
|
531
575
|
}, {}, {}, {}, {
|
|
532
576
|
collapse: boolean;
|
|
533
577
|
disabled: boolean;
|
|
578
|
+
modelValue: string | string[] | undefined;
|
|
534
579
|
not: boolean;
|
|
535
580
|
modifiers: string | string[];
|
|
536
581
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
@@ -542,6 +587,7 @@ declare const _default: {
|
|
|
542
587
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
543
588
|
modelValue: {
|
|
544
589
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
590
|
+
default: undefined;
|
|
545
591
|
};
|
|
546
592
|
items: {
|
|
547
593
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -560,7 +606,7 @@ declare const _default: {
|
|
|
560
606
|
default: undefined;
|
|
561
607
|
};
|
|
562
608
|
}>>, {
|
|
563
|
-
|
|
609
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
564
610
|
expand: (name?: string | string[] | undefined) => void;
|
|
565
611
|
collapse: (name?: string | string[] | undefined) => void;
|
|
566
612
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -568,14 +614,27 @@ declare const _default: {
|
|
|
568
614
|
}, string, {
|
|
569
615
|
collapse: boolean;
|
|
570
616
|
disabled: boolean;
|
|
617
|
+
modelValue: string | string[] | undefined;
|
|
571
618
|
not: boolean;
|
|
572
619
|
modifiers: string | string[];
|
|
573
620
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
574
621
|
itemModifiers: string | string[];
|
|
575
622
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
576
|
-
$slots: Partial<Record<`
|
|
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>> & {
|
|
577
636
|
default?(_: {
|
|
578
|
-
|
|
637
|
+
expandedAccordions: Set<string>;
|
|
579
638
|
expand: (name?: string | string[] | undefined) => void;
|
|
580
639
|
collapse: (name?: string | string[] | undefined) => void;
|
|
581
640
|
}): any;
|
|
@@ -585,6 +644,7 @@ declare const _default: {
|
|
|
585
644
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
586
645
|
modelValue: {
|
|
587
646
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
647
|
+
default: undefined;
|
|
588
648
|
};
|
|
589
649
|
items: {
|
|
590
650
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -603,7 +663,7 @@ declare const _default: {
|
|
|
603
663
|
default: undefined;
|
|
604
664
|
};
|
|
605
665
|
}>>, {
|
|
606
|
-
|
|
666
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
607
667
|
expand: (name?: string | string[] | undefined) => void;
|
|
608
668
|
collapse: (name?: string | string[] | undefined) => void;
|
|
609
669
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -611,6 +671,7 @@ declare const _default: {
|
|
|
611
671
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
612
672
|
modelValue: {
|
|
613
673
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
674
|
+
default: undefined;
|
|
614
675
|
};
|
|
615
676
|
items: {
|
|
616
677
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -631,6 +692,7 @@ declare const _default: {
|
|
|
631
692
|
}>>, {
|
|
632
693
|
collapse: boolean;
|
|
633
694
|
disabled: boolean;
|
|
695
|
+
modelValue: string | string[] | undefined;
|
|
634
696
|
not: boolean;
|
|
635
697
|
modifiers: string | string[];
|
|
636
698
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
@@ -645,6 +707,7 @@ declare const _default: {
|
|
|
645
707
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
646
708
|
modelValue: {
|
|
647
709
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
710
|
+
default: undefined;
|
|
648
711
|
};
|
|
649
712
|
items: {
|
|
650
713
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -663,12 +726,13 @@ declare const _default: {
|
|
|
663
726
|
default: undefined;
|
|
664
727
|
};
|
|
665
728
|
}>>, {
|
|
666
|
-
|
|
729
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
667
730
|
expand: (name?: string | string[] | undefined) => void;
|
|
668
731
|
collapse: (name?: string | string[] | undefined) => void;
|
|
669
732
|
}, {}, {}, {}, {
|
|
670
733
|
collapse: boolean;
|
|
671
734
|
disabled: boolean;
|
|
735
|
+
modelValue: string | string[] | undefined;
|
|
672
736
|
not: boolean;
|
|
673
737
|
modifiers: string | string[];
|
|
674
738
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
@@ -680,6 +744,7 @@ declare const _default: {
|
|
|
680
744
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
681
745
|
modelValue: {
|
|
682
746
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
747
|
+
default: undefined;
|
|
683
748
|
};
|
|
684
749
|
items: {
|
|
685
750
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -698,7 +763,7 @@ declare const _default: {
|
|
|
698
763
|
default: undefined;
|
|
699
764
|
};
|
|
700
765
|
}>>, {
|
|
701
|
-
|
|
766
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
702
767
|
expand: (name?: string | string[] | undefined) => void;
|
|
703
768
|
collapse: (name?: string | string[] | undefined) => void;
|
|
704
769
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -706,14 +771,27 @@ declare const _default: {
|
|
|
706
771
|
}, string, {
|
|
707
772
|
collapse: boolean;
|
|
708
773
|
disabled: boolean;
|
|
774
|
+
modelValue: string | string[] | undefined;
|
|
709
775
|
not: boolean;
|
|
710
776
|
modifiers: string | string[];
|
|
711
777
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
712
778
|
itemModifiers: string | string[];
|
|
713
779
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
714
|
-
$slots: Partial<Record<`
|
|
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>> & {
|
|
715
793
|
default?(_: {
|
|
716
|
-
|
|
794
|
+
expandedAccordions: Set<string>;
|
|
717
795
|
expand: (name?: string | string[] | undefined) => void;
|
|
718
796
|
collapse: (name?: string | string[] | undefined) => void;
|
|
719
797
|
}): any;
|
|
@@ -722,6 +800,7 @@ declare const _default: {
|
|
|
722
800
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
723
801
|
modelValue: {
|
|
724
802
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
803
|
+
default: undefined;
|
|
725
804
|
};
|
|
726
805
|
items: {
|
|
727
806
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -740,7 +819,7 @@ declare const _default: {
|
|
|
740
819
|
default: undefined;
|
|
741
820
|
};
|
|
742
821
|
}>>, {
|
|
743
|
-
|
|
822
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
744
823
|
expand: (name?: string | string[] | undefined) => void;
|
|
745
824
|
collapse: (name?: string | string[] | undefined) => void;
|
|
746
825
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -748,6 +827,7 @@ declare const _default: {
|
|
|
748
827
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
749
828
|
modelValue: {
|
|
750
829
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
830
|
+
default: undefined;
|
|
751
831
|
};
|
|
752
832
|
items: {
|
|
753
833
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -768,6 +848,7 @@ declare const _default: {
|
|
|
768
848
|
}>>, {
|
|
769
849
|
collapse: boolean;
|
|
770
850
|
disabled: boolean;
|
|
851
|
+
modelValue: string | string[] | undefined;
|
|
771
852
|
not: boolean;
|
|
772
853
|
modifiers: string | string[];
|
|
773
854
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
@@ -782,6 +863,7 @@ declare const _default: {
|
|
|
782
863
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
783
864
|
modelValue: {
|
|
784
865
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
866
|
+
default: undefined;
|
|
785
867
|
};
|
|
786
868
|
items: {
|
|
787
869
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -800,12 +882,13 @@ declare const _default: {
|
|
|
800
882
|
default: undefined;
|
|
801
883
|
};
|
|
802
884
|
}>>, {
|
|
803
|
-
|
|
885
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
804
886
|
expand: (name?: string | string[] | undefined) => void;
|
|
805
887
|
collapse: (name?: string | string[] | undefined) => void;
|
|
806
888
|
}, {}, {}, {}, {
|
|
807
889
|
collapse: boolean;
|
|
808
890
|
disabled: boolean;
|
|
891
|
+
modelValue: string | string[] | undefined;
|
|
809
892
|
not: boolean;
|
|
810
893
|
modifiers: string | string[];
|
|
811
894
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
@@ -817,6 +900,7 @@ declare const _default: {
|
|
|
817
900
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
818
901
|
modelValue: {
|
|
819
902
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
903
|
+
default: undefined;
|
|
820
904
|
};
|
|
821
905
|
items: {
|
|
822
906
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -835,7 +919,7 @@ declare const _default: {
|
|
|
835
919
|
default: undefined;
|
|
836
920
|
};
|
|
837
921
|
}>>, {
|
|
838
|
-
|
|
922
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
839
923
|
expand: (name?: string | string[] | undefined) => void;
|
|
840
924
|
collapse: (name?: string | string[] | undefined) => void;
|
|
841
925
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -843,14 +927,27 @@ declare const _default: {
|
|
|
843
927
|
}, string, {
|
|
844
928
|
collapse: boolean;
|
|
845
929
|
disabled: boolean;
|
|
930
|
+
modelValue: string | string[] | undefined;
|
|
846
931
|
not: boolean;
|
|
847
932
|
modifiers: string | string[];
|
|
848
933
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
849
934
|
itemModifiers: string | string[];
|
|
850
935
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
851
|
-
$slots: Partial<Record<`
|
|
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>> & {
|
|
852
949
|
default?(_: {
|
|
853
|
-
|
|
950
|
+
expandedAccordions: Set<string>;
|
|
854
951
|
expand: (name?: string | string[] | undefined) => void;
|
|
855
952
|
collapse: (name?: string | string[] | undefined) => void;
|
|
856
953
|
}): any;
|
|
@@ -860,6 +957,7 @@ declare const _default: {
|
|
|
860
957
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
861
958
|
modelValue: {
|
|
862
959
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
960
|
+
default: undefined;
|
|
863
961
|
};
|
|
864
962
|
items: {
|
|
865
963
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -878,7 +976,7 @@ declare const _default: {
|
|
|
878
976
|
default: undefined;
|
|
879
977
|
};
|
|
880
978
|
}>>, {
|
|
881
|
-
|
|
979
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
882
980
|
expand: (name?: string | string[] | undefined) => void;
|
|
883
981
|
collapse: (name?: string | string[] | undefined) => void;
|
|
884
982
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -886,6 +984,7 @@ declare const _default: {
|
|
|
886
984
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
887
985
|
modelValue: {
|
|
888
986
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
987
|
+
default: undefined;
|
|
889
988
|
};
|
|
890
989
|
items: {
|
|
891
990
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -906,6 +1005,7 @@ declare const _default: {
|
|
|
906
1005
|
}>>, {
|
|
907
1006
|
collapse: boolean;
|
|
908
1007
|
disabled: boolean;
|
|
1008
|
+
modelValue: string | string[] | undefined;
|
|
909
1009
|
not: boolean;
|
|
910
1010
|
modifiers: string | string[];
|
|
911
1011
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
@@ -920,6 +1020,7 @@ declare const _default: {
|
|
|
920
1020
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
921
1021
|
modelValue: {
|
|
922
1022
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
1023
|
+
default: undefined;
|
|
923
1024
|
};
|
|
924
1025
|
items: {
|
|
925
1026
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -938,12 +1039,13 @@ declare const _default: {
|
|
|
938
1039
|
default: undefined;
|
|
939
1040
|
};
|
|
940
1041
|
}>>, {
|
|
941
|
-
|
|
1042
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
942
1043
|
expand: (name?: string | string[] | undefined) => void;
|
|
943
1044
|
collapse: (name?: string | string[] | undefined) => void;
|
|
944
1045
|
}, {}, {}, {}, {
|
|
945
1046
|
collapse: boolean;
|
|
946
1047
|
disabled: boolean;
|
|
1048
|
+
modelValue: string | string[] | undefined;
|
|
947
1049
|
not: boolean;
|
|
948
1050
|
modifiers: string | string[];
|
|
949
1051
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
@@ -955,6 +1057,7 @@ declare const _default: {
|
|
|
955
1057
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
956
1058
|
modelValue: {
|
|
957
1059
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
1060
|
+
default: undefined;
|
|
958
1061
|
};
|
|
959
1062
|
items: {
|
|
960
1063
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -973,7 +1076,7 @@ declare const _default: {
|
|
|
973
1076
|
default: undefined;
|
|
974
1077
|
};
|
|
975
1078
|
}>>, {
|
|
976
|
-
|
|
1079
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
977
1080
|
expand: (name?: string | string[] | undefined) => void;
|
|
978
1081
|
collapse: (name?: string | string[] | undefined) => void;
|
|
979
1082
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -981,14 +1084,27 @@ declare const _default: {
|
|
|
981
1084
|
}, string, {
|
|
982
1085
|
collapse: boolean;
|
|
983
1086
|
disabled: boolean;
|
|
1087
|
+
modelValue: string | string[] | undefined;
|
|
984
1088
|
not: boolean;
|
|
985
1089
|
modifiers: string | string[];
|
|
986
1090
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
987
1091
|
itemModifiers: string | string[];
|
|
988
1092
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
989
|
-
$slots: Partial<Record<`
|
|
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>> & {
|
|
990
1106
|
default?(_: {
|
|
991
|
-
|
|
1107
|
+
expandedAccordions: Set<string>;
|
|
992
1108
|
expand: (name?: string | string[] | undefined) => void;
|
|
993
1109
|
collapse: (name?: string | string[] | undefined) => void;
|
|
994
1110
|
}): any;
|