@volverjs/ui-vue 0.0.10-beta.42 → 0.0.10-beta.43

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.
Files changed (78) hide show
  1. package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +12 -12
  2. package/dist/components/VvAccordionGroup/index.d.ts +4 -4
  3. package/dist/components/VvAction/VvAction.vue.d.ts +2 -2
  4. package/dist/components/VvAction/index.d.ts +1 -1
  5. package/dist/components/VvAlert/VvAlert.vue.d.ts +6 -6
  6. package/dist/components/VvAlert/index.d.ts +4 -3
  7. package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +9 -9
  8. package/dist/components/VvAlertGroup/index.d.ts +4 -4
  9. package/dist/components/VvAvatarGroup/VvAvatarGroup.vue.d.ts +4 -4
  10. package/dist/components/VvAvatarGroup/index.d.ts +2 -2
  11. package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +13 -13
  12. package/dist/components/VvBreadcrumb/index.d.ts +1 -1
  13. package/dist/components/VvButton/VvButton.vue.d.ts +4 -4
  14. package/dist/components/VvButton/index.d.ts +2 -2
  15. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +4 -4
  16. package/dist/components/VvButtonGroup/index.d.ts +2 -2
  17. package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +1 -1
  18. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +3 -3
  19. package/dist/components/VvCheckboxGroup/index.d.ts +1 -1
  20. package/dist/components/VvCombobox/VvCombobox.vue.d.ts +438 -559
  21. package/dist/components/VvCombobox/index.d.ts +21 -241
  22. package/dist/components/VvDialog/VvDialog.es.js +41 -165
  23. package/dist/components/VvDialog/VvDialog.umd.js +1 -1
  24. package/dist/components/VvDialog/VvDialog.vue.d.ts +9 -0
  25. package/dist/components/VvDialog/index.d.ts +7 -0
  26. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +33 -268
  27. package/dist/components/VvDropdown/VvDropdownAction.vue.d.ts +8 -6
  28. package/dist/components/VvDropdown/index.d.ts +9 -117
  29. package/dist/components/VvIcon/VvIcon.vue.d.ts +1 -1
  30. package/dist/components/VvInputFile/VvInputFile.vue.d.ts +22 -105
  31. package/dist/components/VvInputFile/index.d.ts +7 -28
  32. package/dist/components/VvInputText/VvInputClearAction.d.ts +2 -2
  33. package/dist/components/VvInputText/VvInputPasswordAction.d.ts +4 -4
  34. package/dist/components/VvInputText/VvInputText.vue.d.ts +4 -4
  35. package/dist/components/VvInputText/index.d.ts +4 -9
  36. package/dist/components/VvNav/VvNav.vue.d.ts +9 -9
  37. package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +3 -3
  38. package/dist/components/VvRadioGroup/index.d.ts +1 -1
  39. package/dist/components/VvSelect/VvSelect.vue.d.ts +174 -184
  40. package/dist/components/VvSelect/index.d.ts +4 -4
  41. package/dist/components/VvTab/VvTab.vue.d.ts +13 -13
  42. package/dist/components/VvTab/index.d.ts +2 -2
  43. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +2 -2
  44. package/dist/components/VvTextarea/index.d.ts +1 -1
  45. package/dist/components/VvTooltip/VvTooltip.vue.d.ts +2 -2
  46. package/dist/components/VvTooltip/index.d.ts +1 -1
  47. package/dist/components/index.es.js +23 -25
  48. package/dist/components/index.umd.js +1 -1
  49. package/dist/composables/alert/useAlert.d.ts +47 -77
  50. package/dist/composables/index.es.js +1 -2
  51. package/dist/composables/useBlurhash.d.ts +1 -1
  52. package/dist/composables/useOptions.d.ts +3 -3
  53. package/dist/icons.es.js +3 -3
  54. package/dist/icons.umd.js +1 -1
  55. package/dist/index.es.js +1 -4
  56. package/dist/index.umd.js +1 -1
  57. package/dist/props/index.d.ts +14 -121
  58. package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +283 -347
  59. package/dist/test/expect.d.ts +0 -1
  60. package/dist/types/input-file.d.ts +2 -9
  61. package/dist/utils/ObjectUtilities.d.ts +1 -1
  62. package/package.json +29 -30
  63. package/src/Volver.ts +6 -6
  64. package/src/assets/icons/detailed.json +1 -1
  65. package/src/assets/icons/normal.json +1 -1
  66. package/src/assets/icons/simple.json +1 -1
  67. package/src/components/VvButtonGroup/index.ts +1 -1
  68. package/src/components/VvCombobox/index.ts +6 -6
  69. package/src/components/VvDialog/VvDialog.vue +3 -5
  70. package/src/components/VvDialog/index.ts +4 -0
  71. package/src/components/VvInputText/VvInputText.vue +18 -18
  72. package/src/components/common/HintSlot.ts +2 -2
  73. package/src/composables/group/useInjectedGroupState.ts +3 -3
  74. package/src/composables/group/useProvideGroupState.ts +3 -3
  75. package/src/composables/useDefaults.ts +4 -4
  76. package/src/props/index.ts +1 -1
  77. package/src/types/group.ts +1 -1
  78. package/src/types/input-file.ts +10 -18
@@ -1,9 +1,9 @@
1
1
  import { type Story } from './AccordionGroup.stories';
2
2
  declare const _default: {
3
3
  title: string;
4
- id?: string | undefined;
5
- includeStories?: (RegExp | string[]) | undefined;
6
- excludeStories?: (RegExp | string[]) | undefined;
4
+ id?: import("@storybook/types").ComponentId;
5
+ includeStories?: RegExp | string[];
6
+ excludeStories?: RegExp | string[];
7
7
  component?: Omit<import("vue").ConcreteComponent<Partial<{
8
8
  collapse: boolean;
9
9
  disabled: boolean;
@@ -25,22 +25,22 @@ declare const _default: {
25
25
  readonly storageKey?: string | undefined;
26
26
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
27
27
  modelValue: {
28
- type: globalThis.PropType<string | string[] | undefined>;
28
+ type: PropType<string | string[] | undefined>;
29
29
  default: undefined;
30
30
  };
31
31
  items: {
32
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
32
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
33
33
  default: () => never[];
34
34
  };
35
35
  collapse: BooleanConstructor;
36
36
  itemModifiers: {
37
- type: globalThis.PropType<string | string[]>;
37
+ type: PropType<string | string[]>;
38
38
  default: string;
39
39
  };
40
40
  disabled: BooleanConstructor;
41
41
  not: BooleanConstructor;
42
42
  storageType: {
43
- type: globalThis.PropType<"local" | "session">;
43
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
44
44
  default: import("../../constants").StorageType;
45
45
  validator: (value: import("../../constants").StorageType) => boolean;
46
46
  };
@@ -52,30 +52,30 @@ declare const _default: {
52
52
  }>>, "collapse" | "disabled" | "modelValue" | "not" | "modifiers" | "items" | "itemModifiers" | "storageType"> & {
53
53
  default?: import("vue").VNodeChild | ((_: {
54
54
  expandedAccordions: Set<string>;
55
- expand: (name?: string | string[] | undefined) => void;
56
- collapse: (name?: string | string[] | undefined) => void;
55
+ expand: (name?: string | string[]) => void;
56
+ collapse: (name?: string | string[]) => void;
57
57
  }) => any);
58
58
  }>, "props"> | undefined;
59
59
  subcomponents?: Record<string, Omit<import("vue").ConcreteComponent<unknown>, "props">> | undefined;
60
60
  play?: import("@storybook/types").PlayFunction<import("@storybook/vue3/*").VueRenderer, import("@storybook/vue3/*").ComponentPropsAndSlots<{
61
61
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
62
62
  modelValue: {
63
- type: globalThis.PropType<string | string[] | undefined>;
63
+ type: PropType<string | string[] | undefined>;
64
64
  default: undefined;
65
65
  };
66
66
  items: {
67
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
67
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
68
68
  default: () => never[];
69
69
  };
70
70
  collapse: BooleanConstructor;
71
71
  itemModifiers: {
72
- type: globalThis.PropType<string | string[]>;
72
+ type: PropType<string | string[]>;
73
73
  default: string;
74
74
  };
75
75
  disabled: BooleanConstructor;
76
76
  not: BooleanConstructor;
77
77
  storageType: {
78
- type: globalThis.PropType<"local" | "session">;
78
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
79
79
  default: import("../../constants").StorageType;
80
80
  validator: (value: import("../../constants").StorageType) => boolean;
81
81
  };
@@ -86,28 +86,28 @@ declare const _default: {
86
86
  };
87
87
  }>>, {
88
88
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
89
- expand: (name?: string | string[] | undefined) => void;
90
- collapse: (name?: string | string[] | undefined) => void;
89
+ expand: (name?: string | string[]) => void;
90
+ collapse: (name?: string | string[]) => void;
91
91
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
92
92
  [x: string]: (...args: any[]) => void;
93
93
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
94
94
  modelValue: {
95
- type: globalThis.PropType<string | string[] | undefined>;
95
+ type: PropType<string | string[] | undefined>;
96
96
  default: undefined;
97
97
  };
98
98
  items: {
99
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
99
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
100
100
  default: () => never[];
101
101
  };
102
102
  collapse: BooleanConstructor;
103
103
  itemModifiers: {
104
- type: globalThis.PropType<string | string[]>;
104
+ type: PropType<string | string[]>;
105
105
  default: string;
106
106
  };
107
107
  disabled: BooleanConstructor;
108
108
  not: BooleanConstructor;
109
109
  storageType: {
110
- type: globalThis.PropType<"local" | "session">;
110
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
111
111
  default: import("../../constants").StorageType;
112
112
  validator: (value: import("../../constants").StorageType) => boolean;
113
113
  };
@@ -134,22 +134,22 @@ declare const _default: {
134
134
  Defaults: {};
135
135
  }, Readonly<globalThis.ExtractPropTypes<{
136
136
  modelValue: {
137
- type: globalThis.PropType<string | string[] | undefined>;
137
+ type: PropType<string | string[] | undefined>;
138
138
  default: undefined;
139
139
  };
140
140
  items: {
141
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
141
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
142
142
  default: () => never[];
143
143
  };
144
144
  collapse: BooleanConstructor;
145
145
  itemModifiers: {
146
- type: globalThis.PropType<string | string[]>;
146
+ type: PropType<string | string[]>;
147
147
  default: string;
148
148
  };
149
149
  disabled: BooleanConstructor;
150
150
  not: BooleanConstructor;
151
151
  storageType: {
152
- type: globalThis.PropType<"local" | "session">;
152
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
153
153
  default: import("../../constants").StorageType;
154
154
  validator: (value: import("../../constants").StorageType) => boolean;
155
155
  };
@@ -160,8 +160,8 @@ declare const _default: {
160
160
  };
161
161
  }>>, {
162
162
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
163
- expand: (name?: string | string[] | undefined) => void;
164
- collapse: (name?: string | string[] | undefined) => void;
163
+ expand: (name?: string | string[]) => void;
164
+ collapse: (name?: string | string[]) => void;
165
165
  }, {}, {}, {}, {
166
166
  collapse: boolean;
167
167
  disabled: boolean;
@@ -172,27 +172,27 @@ declare const _default: {
172
172
  itemModifiers: string | string[];
173
173
  storageType: "local" | "session";
174
174
  }>;
175
- __isFragment?: undefined;
176
- __isTeleport?: undefined;
177
- __isSuspense?: undefined;
175
+ __isFragment?: never;
176
+ __isTeleport?: never;
177
+ __isSuspense?: never;
178
178
  } & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
179
179
  modelValue: {
180
- type: globalThis.PropType<string | string[] | undefined>;
180
+ type: PropType<string | string[] | undefined>;
181
181
  default: undefined;
182
182
  };
183
183
  items: {
184
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
184
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
185
185
  default: () => never[];
186
186
  };
187
187
  collapse: BooleanConstructor;
188
188
  itemModifiers: {
189
- type: globalThis.PropType<string | string[]>;
189
+ type: PropType<string | string[]>;
190
190
  default: string;
191
191
  };
192
192
  disabled: BooleanConstructor;
193
193
  not: BooleanConstructor;
194
194
  storageType: {
195
- type: globalThis.PropType<"local" | "session">;
195
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
196
196
  default: import("../../constants").StorageType;
197
197
  validator: (value: import("../../constants").StorageType) => boolean;
198
198
  };
@@ -203,8 +203,8 @@ declare const _default: {
203
203
  };
204
204
  }>>, {
205
205
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
206
- expand: (name?: string | string[] | undefined) => void;
207
- collapse: (name?: string | string[] | undefined) => void;
206
+ expand: (name?: string | string[]) => void;
207
+ collapse: (name?: string | string[]) => void;
208
208
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
209
209
  [x: string]: (...args: any[]) => void;
210
210
  }, string, {
@@ -221,19 +221,19 @@ declare const _default: {
221
221
  isExpanded: boolean;
222
222
  expand: () => void;
223
223
  collapse: () => void;
224
- groupExpand: (name?: string | string[] | undefined) => void;
225
- groupCollapse: (name?: string | string[] | undefined) => void;
224
+ groupExpand: (name?: string | string[]) => void;
225
+ groupCollapse: (name?: string | string[]) => void;
226
226
  }) => any>> & Partial<Record<`content::${string}`, (_: {
227
227
  isExpanded: boolean;
228
228
  expand: () => void;
229
229
  collapse: () => void;
230
- groupExpand: (name?: string | string[] | undefined) => void;
231
- groupCollapse: (name?: string | string[] | undefined) => void;
230
+ groupExpand: (name?: string | string[]) => void;
231
+ groupCollapse: (name?: string | string[]) => void;
232
232
  }) => any>> & {
233
233
  default?(_: {
234
234
  expandedAccordions: Set<string>;
235
- expand: (name?: string | string[] | undefined) => void;
236
- collapse: (name?: string | string[] | undefined) => void;
235
+ expand: (name?: string | string[]) => void;
236
+ collapse: (name?: string | string[]) => void;
237
237
  }): any;
238
238
  };
239
239
  })>> | undefined;
@@ -247,54 +247,22 @@ declare const _default: {
247
247
  itemModifiers?: string | string[] | undefined;
248
248
  storageType?: "local" | "session" | undefined;
249
249
  style?: unknown;
250
- ref?: import("vue").VNodeRef | undefined;
251
- key?: string | number | symbol | undefined;
252
- ref_for?: boolean | undefined;
253
- ref_key?: string | undefined;
254
- onVnodeBeforeMount?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
255
- [key: string]: any;
256
- }>) => void) | ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
257
- [key: string]: any;
258
- }>) => void)[] | undefined;
259
- onVnodeMounted?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
260
- [key: string]: any;
261
- }>) => void) | ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
262
- [key: string]: any;
263
- }>) => void)[] | undefined;
264
- onVnodeBeforeUpdate?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
265
- [key: string]: any;
266
- }>, oldVNode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
267
- [key: string]: any;
268
- }>) => void) | ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
269
- [key: string]: any;
270
- }>, oldVNode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
271
- [key: string]: any;
272
- }>) => void)[] | undefined;
273
- onVnodeUpdated?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
274
- [key: string]: any;
275
- }>, oldVNode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
276
- [key: string]: any;
277
- }>) => void) | ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
278
- [key: string]: any;
279
- }>, oldVNode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
280
- [key: string]: any;
281
- }>) => void)[] | undefined;
282
- onVnodeBeforeUnmount?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
283
- [key: string]: any;
284
- }>) => void) | ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
285
- [key: string]: any;
286
- }>) => void)[] | undefined;
287
- onVnodeUnmounted?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
288
- [key: string]: any;
289
- }>) => void) | ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
290
- [key: string]: any;
291
- }>) => void)[] | undefined;
250
+ ref?: import("vue").VNodeRef;
251
+ key?: PropertyKey;
252
+ ref_for?: boolean;
253
+ ref_key?: string;
254
+ onVnodeBeforeMount?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
255
+ onVnodeMounted?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
256
+ onVnodeBeforeUpdate?: ((vnode: VNode, oldVNode: VNode) => void) | ((vnode: VNode, oldVNode: VNode) => void)[];
257
+ onVnodeUpdated?: ((vnode: VNode, oldVNode: VNode) => void) | ((vnode: VNode, oldVNode: VNode) => void)[];
258
+ onVnodeBeforeUnmount?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
259
+ onVnodeUnmounted?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
292
260
  class?: unknown;
293
261
  readonly storageKey?: string | undefined;
294
262
  default?: import("vue").VNodeChild | ((_: {
295
263
  expandedAccordions: Set<string>;
296
- expand: (name?: string | string[] | undefined) => void;
297
- collapse: (name?: string | string[] | undefined) => void;
264
+ expand: (name?: string | string[]) => void;
265
+ collapse: (name?: string | string[]) => void;
298
266
  }) => any);
299
267
  }> | import("@storybook/types").DecoratorFunction<import("@storybook/vue3/*").VueRenderer, {
300
268
  collapse?: boolean | undefined;
@@ -306,76 +274,44 @@ declare const _default: {
306
274
  itemModifiers?: string | string[] | undefined;
307
275
  storageType?: "local" | "session" | undefined;
308
276
  style?: unknown;
309
- ref?: import("vue").VNodeRef | undefined;
310
- key?: string | number | symbol | undefined;
311
- ref_for?: boolean | undefined;
312
- ref_key?: string | undefined;
313
- onVnodeBeforeMount?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
314
- [key: string]: any;
315
- }>) => void) | ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
316
- [key: string]: any;
317
- }>) => void)[] | undefined;
318
- onVnodeMounted?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
319
- [key: string]: any;
320
- }>) => void) | ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
321
- [key: string]: any;
322
- }>) => void)[] | undefined;
323
- onVnodeBeforeUpdate?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
324
- [key: string]: any;
325
- }>, oldVNode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
326
- [key: string]: any;
327
- }>) => void) | ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
328
- [key: string]: any;
329
- }>, oldVNode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
330
- [key: string]: any;
331
- }>) => void)[] | undefined;
332
- onVnodeUpdated?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
333
- [key: string]: any;
334
- }>, oldVNode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
335
- [key: string]: any;
336
- }>) => void) | ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
337
- [key: string]: any;
338
- }>, oldVNode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
339
- [key: string]: any;
340
- }>) => void)[] | undefined;
341
- onVnodeBeforeUnmount?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
342
- [key: string]: any;
343
- }>) => void) | ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
344
- [key: string]: any;
345
- }>) => void)[] | undefined;
346
- onVnodeUnmounted?: ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
347
- [key: string]: any;
348
- }>) => void) | ((vnode: globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
349
- [key: string]: any;
350
- }>) => void)[] | undefined;
277
+ ref?: import("vue").VNodeRef;
278
+ key?: PropertyKey;
279
+ ref_for?: boolean;
280
+ ref_key?: string;
281
+ onVnodeBeforeMount?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
282
+ onVnodeMounted?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
283
+ onVnodeBeforeUpdate?: ((vnode: VNode, oldVNode: VNode) => void) | ((vnode: VNode, oldVNode: VNode) => void)[];
284
+ onVnodeUpdated?: ((vnode: VNode, oldVNode: VNode) => void) | ((vnode: VNode, oldVNode: VNode) => void)[];
285
+ onVnodeBeforeUnmount?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
286
+ onVnodeUnmounted?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
351
287
  class?: unknown;
352
288
  readonly storageKey?: string | undefined;
353
289
  default?: import("vue").VNodeChild | ((_: {
354
290
  expandedAccordions: Set<string>;
355
- expand: (name?: string | string[] | undefined) => void;
356
- collapse: (name?: string | string[] | undefined) => void;
291
+ expand: (name?: string | string[]) => void;
292
+ collapse: (name?: string | string[]) => void;
357
293
  }) => any);
358
294
  }>[] | undefined;
359
- parameters?: import("@storybook/types").Parameters | undefined;
295
+ parameters?: import("@storybook/types").Parameters;
360
296
  args?: Partial<import("@storybook/vue3/*").ComponentPropsAndSlots<{
361
297
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
362
298
  modelValue: {
363
- type: globalThis.PropType<string | string[] | undefined>;
299
+ type: PropType<string | string[] | undefined>;
364
300
  default: undefined;
365
301
  };
366
302
  items: {
367
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
303
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
368
304
  default: () => never[];
369
305
  };
370
306
  collapse: BooleanConstructor;
371
307
  itemModifiers: {
372
- type: globalThis.PropType<string | string[]>;
308
+ type: PropType<string | string[]>;
373
309
  default: string;
374
310
  };
375
311
  disabled: BooleanConstructor;
376
312
  not: BooleanConstructor;
377
313
  storageType: {
378
- type: globalThis.PropType<"local" | "session">;
314
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
379
315
  default: import("../../constants").StorageType;
380
316
  validator: (value: import("../../constants").StorageType) => boolean;
381
317
  };
@@ -386,28 +322,28 @@ declare const _default: {
386
322
  };
387
323
  }>>, {
388
324
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
389
- expand: (name?: string | string[] | undefined) => void;
390
- collapse: (name?: string | string[] | undefined) => void;
325
+ expand: (name?: string | string[]) => void;
326
+ collapse: (name?: string | string[]) => void;
391
327
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
392
328
  [x: string]: (...args: any[]) => void;
393
329
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
394
330
  modelValue: {
395
- type: globalThis.PropType<string | string[] | undefined>;
331
+ type: PropType<string | string[] | undefined>;
396
332
  default: undefined;
397
333
  };
398
334
  items: {
399
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
335
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
400
336
  default: () => never[];
401
337
  };
402
338
  collapse: BooleanConstructor;
403
339
  itemModifiers: {
404
- type: globalThis.PropType<string | string[]>;
340
+ type: PropType<string | string[]>;
405
341
  default: string;
406
342
  };
407
343
  disabled: BooleanConstructor;
408
344
  not: BooleanConstructor;
409
345
  storageType: {
410
- type: globalThis.PropType<"local" | "session">;
346
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
411
347
  default: import("../../constants").StorageType;
412
348
  validator: (value: import("../../constants").StorageType) => boolean;
413
349
  };
@@ -434,22 +370,22 @@ declare const _default: {
434
370
  Defaults: {};
435
371
  }, Readonly<globalThis.ExtractPropTypes<{
436
372
  modelValue: {
437
- type: globalThis.PropType<string | string[] | undefined>;
373
+ type: PropType<string | string[] | undefined>;
438
374
  default: undefined;
439
375
  };
440
376
  items: {
441
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
377
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
442
378
  default: () => never[];
443
379
  };
444
380
  collapse: BooleanConstructor;
445
381
  itemModifiers: {
446
- type: globalThis.PropType<string | string[]>;
382
+ type: PropType<string | string[]>;
447
383
  default: string;
448
384
  };
449
385
  disabled: BooleanConstructor;
450
386
  not: BooleanConstructor;
451
387
  storageType: {
452
- type: globalThis.PropType<"local" | "session">;
388
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
453
389
  default: import("../../constants").StorageType;
454
390
  validator: (value: import("../../constants").StorageType) => boolean;
455
391
  };
@@ -460,8 +396,8 @@ declare const _default: {
460
396
  };
461
397
  }>>, {
462
398
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
463
- expand: (name?: string | string[] | undefined) => void;
464
- collapse: (name?: string | string[] | undefined) => void;
399
+ expand: (name?: string | string[]) => void;
400
+ collapse: (name?: string | string[]) => void;
465
401
  }, {}, {}, {}, {
466
402
  collapse: boolean;
467
403
  disabled: boolean;
@@ -472,27 +408,27 @@ declare const _default: {
472
408
  itemModifiers: string | string[];
473
409
  storageType: "local" | "session";
474
410
  }>;
475
- __isFragment?: undefined;
476
- __isTeleport?: undefined;
477
- __isSuspense?: undefined;
411
+ __isFragment?: never;
412
+ __isTeleport?: never;
413
+ __isSuspense?: never;
478
414
  } & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
479
415
  modelValue: {
480
- type: globalThis.PropType<string | string[] | undefined>;
416
+ type: PropType<string | string[] | undefined>;
481
417
  default: undefined;
482
418
  };
483
419
  items: {
484
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
420
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
485
421
  default: () => never[];
486
422
  };
487
423
  collapse: BooleanConstructor;
488
424
  itemModifiers: {
489
- type: globalThis.PropType<string | string[]>;
425
+ type: PropType<string | string[]>;
490
426
  default: string;
491
427
  };
492
428
  disabled: BooleanConstructor;
493
429
  not: BooleanConstructor;
494
430
  storageType: {
495
- type: globalThis.PropType<"local" | "session">;
431
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
496
432
  default: import("../../constants").StorageType;
497
433
  validator: (value: import("../../constants").StorageType) => boolean;
498
434
  };
@@ -503,8 +439,8 @@ declare const _default: {
503
439
  };
504
440
  }>>, {
505
441
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
506
- expand: (name?: string | string[] | undefined) => void;
507
- collapse: (name?: string | string[] | undefined) => void;
442
+ expand: (name?: string | string[]) => void;
443
+ collapse: (name?: string | string[]) => void;
508
444
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
509
445
  [x: string]: (...args: any[]) => void;
510
446
  }, string, {
@@ -521,41 +457,41 @@ declare const _default: {
521
457
  isExpanded: boolean;
522
458
  expand: () => void;
523
459
  collapse: () => void;
524
- groupExpand: (name?: string | string[] | undefined) => void;
525
- groupCollapse: (name?: string | string[] | undefined) => void;
460
+ groupExpand: (name?: string | string[]) => void;
461
+ groupCollapse: (name?: string | string[]) => void;
526
462
  }) => any>> & Partial<Record<`content::${string}`, (_: {
527
463
  isExpanded: boolean;
528
464
  expand: () => void;
529
465
  collapse: () => void;
530
- groupExpand: (name?: string | string[] | undefined) => void;
531
- groupCollapse: (name?: string | string[] | undefined) => void;
466
+ groupExpand: (name?: string | string[]) => void;
467
+ groupCollapse: (name?: string | string[]) => void;
532
468
  }) => any>> & {
533
469
  default?(_: {
534
470
  expandedAccordions: Set<string>;
535
- expand: (name?: string | string[] | undefined) => void;
536
- collapse: (name?: string | string[] | undefined) => void;
471
+ expand: (name?: string | string[]) => void;
472
+ collapse: (name?: string | string[]) => void;
537
473
  }): any;
538
474
  };
539
475
  })>> | undefined;
540
476
  argTypes?: Partial<import("@storybook/types").ArgTypes<import("@storybook/vue3/*").ComponentPropsAndSlots<{
541
477
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
542
478
  modelValue: {
543
- type: globalThis.PropType<string | string[] | undefined>;
479
+ type: PropType<string | string[] | undefined>;
544
480
  default: undefined;
545
481
  };
546
482
  items: {
547
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
483
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
548
484
  default: () => never[];
549
485
  };
550
486
  collapse: BooleanConstructor;
551
487
  itemModifiers: {
552
- type: globalThis.PropType<string | string[]>;
488
+ type: PropType<string | string[]>;
553
489
  default: string;
554
490
  };
555
491
  disabled: BooleanConstructor;
556
492
  not: BooleanConstructor;
557
493
  storageType: {
558
- type: globalThis.PropType<"local" | "session">;
494
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
559
495
  default: import("../../constants").StorageType;
560
496
  validator: (value: import("../../constants").StorageType) => boolean;
561
497
  };
@@ -566,28 +502,28 @@ declare const _default: {
566
502
  };
567
503
  }>>, {
568
504
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
569
- expand: (name?: string | string[] | undefined) => void;
570
- collapse: (name?: string | string[] | undefined) => void;
505
+ expand: (name?: string | string[]) => void;
506
+ collapse: (name?: string | string[]) => void;
571
507
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
572
508
  [x: string]: (...args: any[]) => void;
573
509
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
574
510
  modelValue: {
575
- type: globalThis.PropType<string | string[] | undefined>;
511
+ type: PropType<string | string[] | undefined>;
576
512
  default: undefined;
577
513
  };
578
514
  items: {
579
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
515
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
580
516
  default: () => never[];
581
517
  };
582
518
  collapse: BooleanConstructor;
583
519
  itemModifiers: {
584
- type: globalThis.PropType<string | string[]>;
520
+ type: PropType<string | string[]>;
585
521
  default: string;
586
522
  };
587
523
  disabled: BooleanConstructor;
588
524
  not: BooleanConstructor;
589
525
  storageType: {
590
- type: globalThis.PropType<"local" | "session">;
526
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
591
527
  default: import("../../constants").StorageType;
592
528
  validator: (value: import("../../constants").StorageType) => boolean;
593
529
  };
@@ -614,22 +550,22 @@ declare const _default: {
614
550
  Defaults: {};
615
551
  }, Readonly<globalThis.ExtractPropTypes<{
616
552
  modelValue: {
617
- type: globalThis.PropType<string | string[] | undefined>;
553
+ type: PropType<string | string[] | undefined>;
618
554
  default: undefined;
619
555
  };
620
556
  items: {
621
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
557
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
622
558
  default: () => never[];
623
559
  };
624
560
  collapse: BooleanConstructor;
625
561
  itemModifiers: {
626
- type: globalThis.PropType<string | string[]>;
562
+ type: PropType<string | string[]>;
627
563
  default: string;
628
564
  };
629
565
  disabled: BooleanConstructor;
630
566
  not: BooleanConstructor;
631
567
  storageType: {
632
- type: globalThis.PropType<"local" | "session">;
568
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
633
569
  default: import("../../constants").StorageType;
634
570
  validator: (value: import("../../constants").StorageType) => boolean;
635
571
  };
@@ -640,8 +576,8 @@ declare const _default: {
640
576
  };
641
577
  }>>, {
642
578
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
643
- expand: (name?: string | string[] | undefined) => void;
644
- collapse: (name?: string | string[] | undefined) => void;
579
+ expand: (name?: string | string[]) => void;
580
+ collapse: (name?: string | string[]) => void;
645
581
  }, {}, {}, {}, {
646
582
  collapse: boolean;
647
583
  disabled: boolean;
@@ -652,27 +588,27 @@ declare const _default: {
652
588
  itemModifiers: string | string[];
653
589
  storageType: "local" | "session";
654
590
  }>;
655
- __isFragment?: undefined;
656
- __isTeleport?: undefined;
657
- __isSuspense?: undefined;
591
+ __isFragment?: never;
592
+ __isTeleport?: never;
593
+ __isSuspense?: never;
658
594
  } & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
659
595
  modelValue: {
660
- type: globalThis.PropType<string | string[] | undefined>;
596
+ type: PropType<string | string[] | undefined>;
661
597
  default: undefined;
662
598
  };
663
599
  items: {
664
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
600
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
665
601
  default: () => never[];
666
602
  };
667
603
  collapse: BooleanConstructor;
668
604
  itemModifiers: {
669
- type: globalThis.PropType<string | string[]>;
605
+ type: PropType<string | string[]>;
670
606
  default: string;
671
607
  };
672
608
  disabled: BooleanConstructor;
673
609
  not: BooleanConstructor;
674
610
  storageType: {
675
- type: globalThis.PropType<"local" | "session">;
611
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
676
612
  default: import("../../constants").StorageType;
677
613
  validator: (value: import("../../constants").StorageType) => boolean;
678
614
  };
@@ -683,8 +619,8 @@ declare const _default: {
683
619
  };
684
620
  }>>, {
685
621
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
686
- expand: (name?: string | string[] | undefined) => void;
687
- collapse: (name?: string | string[] | undefined) => void;
622
+ expand: (name?: string | string[]) => void;
623
+ collapse: (name?: string | string[]) => void;
688
624
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
689
625
  [x: string]: (...args: any[]) => void;
690
626
  }, string, {
@@ -701,41 +637,41 @@ declare const _default: {
701
637
  isExpanded: boolean;
702
638
  expand: () => void;
703
639
  collapse: () => void;
704
- groupExpand: (name?: string | string[] | undefined) => void;
705
- groupCollapse: (name?: string | string[] | undefined) => void;
640
+ groupExpand: (name?: string | string[]) => void;
641
+ groupCollapse: (name?: string | string[]) => void;
706
642
  }) => any>> & Partial<Record<`content::${string}`, (_: {
707
643
  isExpanded: boolean;
708
644
  expand: () => void;
709
645
  collapse: () => void;
710
- groupExpand: (name?: string | string[] | undefined) => void;
711
- groupCollapse: (name?: string | string[] | undefined) => void;
646
+ groupExpand: (name?: string | string[]) => void;
647
+ groupCollapse: (name?: string | string[]) => void;
712
648
  }) => any>> & {
713
649
  default?(_: {
714
650
  expandedAccordions: Set<string>;
715
- expand: (name?: string | string[] | undefined) => void;
716
- collapse: (name?: string | string[] | undefined) => void;
651
+ expand: (name?: string | string[]) => void;
652
+ collapse: (name?: string | string[]) => void;
717
653
  }): any;
718
654
  };
719
655
  })>>> | undefined;
720
656
  loaders?: import("@storybook/types").LoaderFunction<import("@storybook/vue3/*").VueRenderer, import("@storybook/vue3/*").ComponentPropsAndSlots<{
721
657
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
722
658
  modelValue: {
723
- type: globalThis.PropType<string | string[] | undefined>;
659
+ type: PropType<string | string[] | undefined>;
724
660
  default: undefined;
725
661
  };
726
662
  items: {
727
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
663
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
728
664
  default: () => never[];
729
665
  };
730
666
  collapse: BooleanConstructor;
731
667
  itemModifiers: {
732
- type: globalThis.PropType<string | string[]>;
668
+ type: PropType<string | string[]>;
733
669
  default: string;
734
670
  };
735
671
  disabled: BooleanConstructor;
736
672
  not: BooleanConstructor;
737
673
  storageType: {
738
- type: globalThis.PropType<"local" | "session">;
674
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
739
675
  default: import("../../constants").StorageType;
740
676
  validator: (value: import("../../constants").StorageType) => boolean;
741
677
  };
@@ -746,28 +682,28 @@ declare const _default: {
746
682
  };
747
683
  }>>, {
748
684
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
749
- expand: (name?: string | string[] | undefined) => void;
750
- collapse: (name?: string | string[] | undefined) => void;
685
+ expand: (name?: string | string[]) => void;
686
+ collapse: (name?: string | string[]) => void;
751
687
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
752
688
  [x: string]: (...args: any[]) => void;
753
689
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
754
690
  modelValue: {
755
- type: globalThis.PropType<string | string[] | undefined>;
691
+ type: PropType<string | string[] | undefined>;
756
692
  default: undefined;
757
693
  };
758
694
  items: {
759
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
695
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
760
696
  default: () => never[];
761
697
  };
762
698
  collapse: BooleanConstructor;
763
699
  itemModifiers: {
764
- type: globalThis.PropType<string | string[]>;
700
+ type: PropType<string | string[]>;
765
701
  default: string;
766
702
  };
767
703
  disabled: BooleanConstructor;
768
704
  not: BooleanConstructor;
769
705
  storageType: {
770
- type: globalThis.PropType<"local" | "session">;
706
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
771
707
  default: import("../../constants").StorageType;
772
708
  validator: (value: import("../../constants").StorageType) => boolean;
773
709
  };
@@ -794,22 +730,22 @@ declare const _default: {
794
730
  Defaults: {};
795
731
  }, Readonly<globalThis.ExtractPropTypes<{
796
732
  modelValue: {
797
- type: globalThis.PropType<string | string[] | undefined>;
733
+ type: PropType<string | string[] | undefined>;
798
734
  default: undefined;
799
735
  };
800
736
  items: {
801
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
737
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
802
738
  default: () => never[];
803
739
  };
804
740
  collapse: BooleanConstructor;
805
741
  itemModifiers: {
806
- type: globalThis.PropType<string | string[]>;
742
+ type: PropType<string | string[]>;
807
743
  default: string;
808
744
  };
809
745
  disabled: BooleanConstructor;
810
746
  not: BooleanConstructor;
811
747
  storageType: {
812
- type: globalThis.PropType<"local" | "session">;
748
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
813
749
  default: import("../../constants").StorageType;
814
750
  validator: (value: import("../../constants").StorageType) => boolean;
815
751
  };
@@ -820,8 +756,8 @@ declare const _default: {
820
756
  };
821
757
  }>>, {
822
758
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
823
- expand: (name?: string | string[] | undefined) => void;
824
- collapse: (name?: string | string[] | undefined) => void;
759
+ expand: (name?: string | string[]) => void;
760
+ collapse: (name?: string | string[]) => void;
825
761
  }, {}, {}, {}, {
826
762
  collapse: boolean;
827
763
  disabled: boolean;
@@ -832,27 +768,27 @@ declare const _default: {
832
768
  itemModifiers: string | string[];
833
769
  storageType: "local" | "session";
834
770
  }>;
835
- __isFragment?: undefined;
836
- __isTeleport?: undefined;
837
- __isSuspense?: undefined;
771
+ __isFragment?: never;
772
+ __isTeleport?: never;
773
+ __isSuspense?: never;
838
774
  } & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
839
775
  modelValue: {
840
- type: globalThis.PropType<string | string[] | undefined>;
776
+ type: PropType<string | string[] | undefined>;
841
777
  default: undefined;
842
778
  };
843
779
  items: {
844
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
780
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
845
781
  default: () => never[];
846
782
  };
847
783
  collapse: BooleanConstructor;
848
784
  itemModifiers: {
849
- type: globalThis.PropType<string | string[]>;
785
+ type: PropType<string | string[]>;
850
786
  default: string;
851
787
  };
852
788
  disabled: BooleanConstructor;
853
789
  not: BooleanConstructor;
854
790
  storageType: {
855
- type: globalThis.PropType<"local" | "session">;
791
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
856
792
  default: import("../../constants").StorageType;
857
793
  validator: (value: import("../../constants").StorageType) => boolean;
858
794
  };
@@ -863,8 +799,8 @@ declare const _default: {
863
799
  };
864
800
  }>>, {
865
801
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
866
- expand: (name?: string | string[] | undefined) => void;
867
- collapse: (name?: string | string[] | undefined) => void;
802
+ expand: (name?: string | string[]) => void;
803
+ collapse: (name?: string | string[]) => void;
868
804
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
869
805
  [x: string]: (...args: any[]) => void;
870
806
  }, string, {
@@ -881,40 +817,40 @@ declare const _default: {
881
817
  isExpanded: boolean;
882
818
  expand: () => void;
883
819
  collapse: () => void;
884
- groupExpand: (name?: string | string[] | undefined) => void;
885
- groupCollapse: (name?: string | string[] | undefined) => void;
820
+ groupExpand: (name?: string | string[]) => void;
821
+ groupCollapse: (name?: string | string[]) => void;
886
822
  }) => any>> & Partial<Record<`content::${string}`, (_: {
887
823
  isExpanded: boolean;
888
824
  expand: () => void;
889
825
  collapse: () => void;
890
- groupExpand: (name?: string | string[] | undefined) => void;
891
- groupCollapse: (name?: string | string[] | undefined) => void;
826
+ groupExpand: (name?: string | string[]) => void;
827
+ groupCollapse: (name?: string | string[]) => void;
892
828
  }) => any>> & {
893
829
  default?(_: {
894
830
  expandedAccordions: Set<string>;
895
- expand: (name?: string | string[] | undefined) => void;
896
- collapse: (name?: string | string[] | undefined) => void;
831
+ expand: (name?: string | string[]) => void;
832
+ collapse: (name?: string | string[]) => void;
897
833
  }): any;
898
834
  };
899
835
  })>> | import("@storybook/types").LoaderFunction<import("@storybook/vue3/*").VueRenderer, import("@storybook/vue3/*").ComponentPropsAndSlots<{
900
836
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
901
837
  modelValue: {
902
- type: globalThis.PropType<string | string[] | undefined>;
838
+ type: PropType<string | string[] | undefined>;
903
839
  default: undefined;
904
840
  };
905
841
  items: {
906
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
842
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
907
843
  default: () => never[];
908
844
  };
909
845
  collapse: BooleanConstructor;
910
846
  itemModifiers: {
911
- type: globalThis.PropType<string | string[]>;
847
+ type: PropType<string | string[]>;
912
848
  default: string;
913
849
  };
914
850
  disabled: BooleanConstructor;
915
851
  not: BooleanConstructor;
916
852
  storageType: {
917
- type: globalThis.PropType<"local" | "session">;
853
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
918
854
  default: import("../../constants").StorageType;
919
855
  validator: (value: import("../../constants").StorageType) => boolean;
920
856
  };
@@ -925,28 +861,28 @@ declare const _default: {
925
861
  };
926
862
  }>>, {
927
863
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
928
- expand: (name?: string | string[] | undefined) => void;
929
- collapse: (name?: string | string[] | undefined) => void;
864
+ expand: (name?: string | string[]) => void;
865
+ collapse: (name?: string | string[]) => void;
930
866
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
931
867
  [x: string]: (...args: any[]) => void;
932
868
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
933
869
  modelValue: {
934
- type: globalThis.PropType<string | string[] | undefined>;
870
+ type: PropType<string | string[] | undefined>;
935
871
  default: undefined;
936
872
  };
937
873
  items: {
938
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
874
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
939
875
  default: () => never[];
940
876
  };
941
877
  collapse: BooleanConstructor;
942
878
  itemModifiers: {
943
- type: globalThis.PropType<string | string[]>;
879
+ type: PropType<string | string[]>;
944
880
  default: string;
945
881
  };
946
882
  disabled: BooleanConstructor;
947
883
  not: BooleanConstructor;
948
884
  storageType: {
949
- type: globalThis.PropType<"local" | "session">;
885
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
950
886
  default: import("../../constants").StorageType;
951
887
  validator: (value: import("../../constants").StorageType) => boolean;
952
888
  };
@@ -973,22 +909,22 @@ declare const _default: {
973
909
  Defaults: {};
974
910
  }, Readonly<globalThis.ExtractPropTypes<{
975
911
  modelValue: {
976
- type: globalThis.PropType<string | string[] | undefined>;
912
+ type: PropType<string | string[] | undefined>;
977
913
  default: undefined;
978
914
  };
979
915
  items: {
980
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
916
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
981
917
  default: () => never[];
982
918
  };
983
919
  collapse: BooleanConstructor;
984
920
  itemModifiers: {
985
- type: globalThis.PropType<string | string[]>;
921
+ type: PropType<string | string[]>;
986
922
  default: string;
987
923
  };
988
924
  disabled: BooleanConstructor;
989
925
  not: BooleanConstructor;
990
926
  storageType: {
991
- type: globalThis.PropType<"local" | "session">;
927
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
992
928
  default: import("../../constants").StorageType;
993
929
  validator: (value: import("../../constants").StorageType) => boolean;
994
930
  };
@@ -999,8 +935,8 @@ declare const _default: {
999
935
  };
1000
936
  }>>, {
1001
937
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
1002
- expand: (name?: string | string[] | undefined) => void;
1003
- collapse: (name?: string | string[] | undefined) => void;
938
+ expand: (name?: string | string[]) => void;
939
+ collapse: (name?: string | string[]) => void;
1004
940
  }, {}, {}, {}, {
1005
941
  collapse: boolean;
1006
942
  disabled: boolean;
@@ -1011,27 +947,27 @@ declare const _default: {
1011
947
  itemModifiers: string | string[];
1012
948
  storageType: "local" | "session";
1013
949
  }>;
1014
- __isFragment?: undefined;
1015
- __isTeleport?: undefined;
1016
- __isSuspense?: undefined;
950
+ __isFragment?: never;
951
+ __isTeleport?: never;
952
+ __isSuspense?: never;
1017
953
  } & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
1018
954
  modelValue: {
1019
- type: globalThis.PropType<string | string[] | undefined>;
955
+ type: PropType<string | string[] | undefined>;
1020
956
  default: undefined;
1021
957
  };
1022
958
  items: {
1023
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
959
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1024
960
  default: () => never[];
1025
961
  };
1026
962
  collapse: BooleanConstructor;
1027
963
  itemModifiers: {
1028
- type: globalThis.PropType<string | string[]>;
964
+ type: PropType<string | string[]>;
1029
965
  default: string;
1030
966
  };
1031
967
  disabled: BooleanConstructor;
1032
968
  not: BooleanConstructor;
1033
969
  storageType: {
1034
- type: globalThis.PropType<"local" | "session">;
970
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
1035
971
  default: import("../../constants").StorageType;
1036
972
  validator: (value: import("../../constants").StorageType) => boolean;
1037
973
  };
@@ -1042,8 +978,8 @@ declare const _default: {
1042
978
  };
1043
979
  }>>, {
1044
980
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
1045
- expand: (name?: string | string[] | undefined) => void;
1046
- collapse: (name?: string | string[] | undefined) => void;
981
+ expand: (name?: string | string[]) => void;
982
+ collapse: (name?: string | string[]) => void;
1047
983
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1048
984
  [x: string]: (...args: any[]) => void;
1049
985
  }, string, {
@@ -1060,41 +996,41 @@ declare const _default: {
1060
996
  isExpanded: boolean;
1061
997
  expand: () => void;
1062
998
  collapse: () => void;
1063
- groupExpand: (name?: string | string[] | undefined) => void;
1064
- groupCollapse: (name?: string | string[] | undefined) => void;
999
+ groupExpand: (name?: string | string[]) => void;
1000
+ groupCollapse: (name?: string | string[]) => void;
1065
1001
  }) => any>> & Partial<Record<`content::${string}`, (_: {
1066
1002
  isExpanded: boolean;
1067
1003
  expand: () => void;
1068
1004
  collapse: () => void;
1069
- groupExpand: (name?: string | string[] | undefined) => void;
1070
- groupCollapse: (name?: string | string[] | undefined) => void;
1005
+ groupExpand: (name?: string | string[]) => void;
1006
+ groupCollapse: (name?: string | string[]) => void;
1071
1007
  }) => any>> & {
1072
1008
  default?(_: {
1073
1009
  expandedAccordions: Set<string>;
1074
- expand: (name?: string | string[] | undefined) => void;
1075
- collapse: (name?: string | string[] | undefined) => void;
1010
+ expand: (name?: string | string[]) => void;
1011
+ collapse: (name?: string | string[]) => void;
1076
1012
  }): any;
1077
1013
  };
1078
1014
  })>>[] | undefined;
1079
1015
  beforeEach?: ((context: import("@storybook/types").StoryContext<import("@storybook/vue3/*").VueRenderer, import("@storybook/vue3/*").ComponentPropsAndSlots<{
1080
1016
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
1081
1017
  modelValue: {
1082
- type: globalThis.PropType<string | string[] | undefined>;
1018
+ type: PropType<string | string[] | undefined>;
1083
1019
  default: undefined;
1084
1020
  };
1085
1021
  items: {
1086
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1022
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1087
1023
  default: () => never[];
1088
1024
  };
1089
1025
  collapse: BooleanConstructor;
1090
1026
  itemModifiers: {
1091
- type: globalThis.PropType<string | string[]>;
1027
+ type: PropType<string | string[]>;
1092
1028
  default: string;
1093
1029
  };
1094
1030
  disabled: BooleanConstructor;
1095
1031
  not: BooleanConstructor;
1096
1032
  storageType: {
1097
- type: globalThis.PropType<"local" | "session">;
1033
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
1098
1034
  default: import("../../constants").StorageType;
1099
1035
  validator: (value: import("../../constants").StorageType) => boolean;
1100
1036
  };
@@ -1105,28 +1041,28 @@ declare const _default: {
1105
1041
  };
1106
1042
  }>>, {
1107
1043
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
1108
- expand: (name?: string | string[] | undefined) => void;
1109
- collapse: (name?: string | string[] | undefined) => void;
1044
+ expand: (name?: string | string[]) => void;
1045
+ collapse: (name?: string | string[]) => void;
1110
1046
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1111
1047
  [x: string]: (...args: any[]) => void;
1112
1048
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
1113
1049
  modelValue: {
1114
- type: globalThis.PropType<string | string[] | undefined>;
1050
+ type: PropType<string | string[] | undefined>;
1115
1051
  default: undefined;
1116
1052
  };
1117
1053
  items: {
1118
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1054
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1119
1055
  default: () => never[];
1120
1056
  };
1121
1057
  collapse: BooleanConstructor;
1122
1058
  itemModifiers: {
1123
- type: globalThis.PropType<string | string[]>;
1059
+ type: PropType<string | string[]>;
1124
1060
  default: string;
1125
1061
  };
1126
1062
  disabled: BooleanConstructor;
1127
1063
  not: BooleanConstructor;
1128
1064
  storageType: {
1129
- type: globalThis.PropType<"local" | "session">;
1065
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
1130
1066
  default: import("../../constants").StorageType;
1131
1067
  validator: (value: import("../../constants").StorageType) => boolean;
1132
1068
  };
@@ -1153,22 +1089,22 @@ declare const _default: {
1153
1089
  Defaults: {};
1154
1090
  }, Readonly<globalThis.ExtractPropTypes<{
1155
1091
  modelValue: {
1156
- type: globalThis.PropType<string | string[] | undefined>;
1092
+ type: PropType<string | string[] | undefined>;
1157
1093
  default: undefined;
1158
1094
  };
1159
1095
  items: {
1160
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1096
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1161
1097
  default: () => never[];
1162
1098
  };
1163
1099
  collapse: BooleanConstructor;
1164
1100
  itemModifiers: {
1165
- type: globalThis.PropType<string | string[]>;
1101
+ type: PropType<string | string[]>;
1166
1102
  default: string;
1167
1103
  };
1168
1104
  disabled: BooleanConstructor;
1169
1105
  not: BooleanConstructor;
1170
1106
  storageType: {
1171
- type: globalThis.PropType<"local" | "session">;
1107
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
1172
1108
  default: import("../../constants").StorageType;
1173
1109
  validator: (value: import("../../constants").StorageType) => boolean;
1174
1110
  };
@@ -1179,8 +1115,8 @@ declare const _default: {
1179
1115
  };
1180
1116
  }>>, {
1181
1117
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
1182
- expand: (name?: string | string[] | undefined) => void;
1183
- collapse: (name?: string | string[] | undefined) => void;
1118
+ expand: (name?: string | string[]) => void;
1119
+ collapse: (name?: string | string[]) => void;
1184
1120
  }, {}, {}, {}, {
1185
1121
  collapse: boolean;
1186
1122
  disabled: boolean;
@@ -1191,27 +1127,27 @@ declare const _default: {
1191
1127
  itemModifiers: string | string[];
1192
1128
  storageType: "local" | "session";
1193
1129
  }>;
1194
- __isFragment?: undefined;
1195
- __isTeleport?: undefined;
1196
- __isSuspense?: undefined;
1130
+ __isFragment?: never;
1131
+ __isTeleport?: never;
1132
+ __isSuspense?: never;
1197
1133
  } & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
1198
1134
  modelValue: {
1199
- type: globalThis.PropType<string | string[] | undefined>;
1135
+ type: PropType<string | string[] | undefined>;
1200
1136
  default: undefined;
1201
1137
  };
1202
1138
  items: {
1203
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1139
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1204
1140
  default: () => never[];
1205
1141
  };
1206
1142
  collapse: BooleanConstructor;
1207
1143
  itemModifiers: {
1208
- type: globalThis.PropType<string | string[]>;
1144
+ type: PropType<string | string[]>;
1209
1145
  default: string;
1210
1146
  };
1211
1147
  disabled: BooleanConstructor;
1212
1148
  not: BooleanConstructor;
1213
1149
  storageType: {
1214
- type: globalThis.PropType<"local" | "session">;
1150
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
1215
1151
  default: import("../../constants").StorageType;
1216
1152
  validator: (value: import("../../constants").StorageType) => boolean;
1217
1153
  };
@@ -1222,8 +1158,8 @@ declare const _default: {
1222
1158
  };
1223
1159
  }>>, {
1224
1160
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
1225
- expand: (name?: string | string[] | undefined) => void;
1226
- collapse: (name?: string | string[] | undefined) => void;
1161
+ expand: (name?: string | string[]) => void;
1162
+ collapse: (name?: string | string[]) => void;
1227
1163
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1228
1164
  [x: string]: (...args: any[]) => void;
1229
1165
  }, string, {
@@ -1240,40 +1176,40 @@ declare const _default: {
1240
1176
  isExpanded: boolean;
1241
1177
  expand: () => void;
1242
1178
  collapse: () => void;
1243
- groupExpand: (name?: string | string[] | undefined) => void;
1244
- groupCollapse: (name?: string | string[] | undefined) => void;
1179
+ groupExpand: (name?: string | string[]) => void;
1180
+ groupCollapse: (name?: string | string[]) => void;
1245
1181
  }) => any>> & Partial<Record<`content::${string}`, (_: {
1246
1182
  isExpanded: boolean;
1247
1183
  expand: () => void;
1248
1184
  collapse: () => void;
1249
- groupExpand: (name?: string | string[] | undefined) => void;
1250
- groupCollapse: (name?: string | string[] | undefined) => void;
1185
+ groupExpand: (name?: string | string[]) => void;
1186
+ groupCollapse: (name?: string | string[]) => void;
1251
1187
  }) => any>> & {
1252
1188
  default?(_: {
1253
1189
  expandedAccordions: Set<string>;
1254
- expand: (name?: string | string[] | undefined) => void;
1255
- collapse: (name?: string | string[] | undefined) => void;
1190
+ expand: (name?: string | string[]) => void;
1191
+ collapse: (name?: string | string[]) => void;
1256
1192
  }): any;
1257
1193
  };
1258
1194
  })>>) => void | (() => unknown) | PromiseLike<void | (() => unknown)>) | ((context: import("@storybook/types").StoryContext<import("@storybook/vue3/*").VueRenderer, import("@storybook/vue3/*").ComponentPropsAndSlots<{
1259
1195
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
1260
1196
  modelValue: {
1261
- type: globalThis.PropType<string | string[] | undefined>;
1197
+ type: PropType<string | string[] | undefined>;
1262
1198
  default: undefined;
1263
1199
  };
1264
1200
  items: {
1265
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1201
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1266
1202
  default: () => never[];
1267
1203
  };
1268
1204
  collapse: BooleanConstructor;
1269
1205
  itemModifiers: {
1270
- type: globalThis.PropType<string | string[]>;
1206
+ type: PropType<string | string[]>;
1271
1207
  default: string;
1272
1208
  };
1273
1209
  disabled: BooleanConstructor;
1274
1210
  not: BooleanConstructor;
1275
1211
  storageType: {
1276
- type: globalThis.PropType<"local" | "session">;
1212
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
1277
1213
  default: import("../../constants").StorageType;
1278
1214
  validator: (value: import("../../constants").StorageType) => boolean;
1279
1215
  };
@@ -1284,28 +1220,28 @@ declare const _default: {
1284
1220
  };
1285
1221
  }>>, {
1286
1222
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
1287
- expand: (name?: string | string[] | undefined) => void;
1288
- collapse: (name?: string | string[] | undefined) => void;
1223
+ expand: (name?: string | string[]) => void;
1224
+ collapse: (name?: string | string[]) => void;
1289
1225
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1290
1226
  [x: string]: (...args: any[]) => void;
1291
1227
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
1292
1228
  modelValue: {
1293
- type: globalThis.PropType<string | string[] | undefined>;
1229
+ type: PropType<string | string[] | undefined>;
1294
1230
  default: undefined;
1295
1231
  };
1296
1232
  items: {
1297
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1233
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1298
1234
  default: () => never[];
1299
1235
  };
1300
1236
  collapse: BooleanConstructor;
1301
1237
  itemModifiers: {
1302
- type: globalThis.PropType<string | string[]>;
1238
+ type: PropType<string | string[]>;
1303
1239
  default: string;
1304
1240
  };
1305
1241
  disabled: BooleanConstructor;
1306
1242
  not: BooleanConstructor;
1307
1243
  storageType: {
1308
- type: globalThis.PropType<"local" | "session">;
1244
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
1309
1245
  default: import("../../constants").StorageType;
1310
1246
  validator: (value: import("../../constants").StorageType) => boolean;
1311
1247
  };
@@ -1332,22 +1268,22 @@ declare const _default: {
1332
1268
  Defaults: {};
1333
1269
  }, Readonly<globalThis.ExtractPropTypes<{
1334
1270
  modelValue: {
1335
- type: globalThis.PropType<string | string[] | undefined>;
1271
+ type: PropType<string | string[] | undefined>;
1336
1272
  default: undefined;
1337
1273
  };
1338
1274
  items: {
1339
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1275
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1340
1276
  default: () => never[];
1341
1277
  };
1342
1278
  collapse: BooleanConstructor;
1343
1279
  itemModifiers: {
1344
- type: globalThis.PropType<string | string[]>;
1280
+ type: PropType<string | string[]>;
1345
1281
  default: string;
1346
1282
  };
1347
1283
  disabled: BooleanConstructor;
1348
1284
  not: BooleanConstructor;
1349
1285
  storageType: {
1350
- type: globalThis.PropType<"local" | "session">;
1286
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
1351
1287
  default: import("../../constants").StorageType;
1352
1288
  validator: (value: import("../../constants").StorageType) => boolean;
1353
1289
  };
@@ -1358,8 +1294,8 @@ declare const _default: {
1358
1294
  };
1359
1295
  }>>, {
1360
1296
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
1361
- expand: (name?: string | string[] | undefined) => void;
1362
- collapse: (name?: string | string[] | undefined) => void;
1297
+ expand: (name?: string | string[]) => void;
1298
+ collapse: (name?: string | string[]) => void;
1363
1299
  }, {}, {}, {}, {
1364
1300
  collapse: boolean;
1365
1301
  disabled: boolean;
@@ -1370,27 +1306,27 @@ declare const _default: {
1370
1306
  itemModifiers: string | string[];
1371
1307
  storageType: "local" | "session";
1372
1308
  }>;
1373
- __isFragment?: undefined;
1374
- __isTeleport?: undefined;
1375
- __isSuspense?: undefined;
1309
+ __isFragment?: never;
1310
+ __isTeleport?: never;
1311
+ __isSuspense?: never;
1376
1312
  } & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
1377
1313
  modelValue: {
1378
- type: globalThis.PropType<string | string[] | undefined>;
1314
+ type: PropType<string | string[] | undefined>;
1379
1315
  default: undefined;
1380
1316
  };
1381
1317
  items: {
1382
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1318
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1383
1319
  default: () => never[];
1384
1320
  };
1385
1321
  collapse: BooleanConstructor;
1386
1322
  itemModifiers: {
1387
- type: globalThis.PropType<string | string[]>;
1323
+ type: PropType<string | string[]>;
1388
1324
  default: string;
1389
1325
  };
1390
1326
  disabled: BooleanConstructor;
1391
1327
  not: BooleanConstructor;
1392
1328
  storageType: {
1393
- type: globalThis.PropType<"local" | "session">;
1329
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
1394
1330
  default: import("../../constants").StorageType;
1395
1331
  validator: (value: import("../../constants").StorageType) => boolean;
1396
1332
  };
@@ -1401,8 +1337,8 @@ declare const _default: {
1401
1337
  };
1402
1338
  }>>, {
1403
1339
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
1404
- expand: (name?: string | string[] | undefined) => void;
1405
- collapse: (name?: string | string[] | undefined) => void;
1340
+ expand: (name?: string | string[]) => void;
1341
+ collapse: (name?: string | string[]) => void;
1406
1342
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1407
1343
  [x: string]: (...args: any[]) => void;
1408
1344
  }, string, {
@@ -1419,41 +1355,41 @@ declare const _default: {
1419
1355
  isExpanded: boolean;
1420
1356
  expand: () => void;
1421
1357
  collapse: () => void;
1422
- groupExpand: (name?: string | string[] | undefined) => void;
1423
- groupCollapse: (name?: string | string[] | undefined) => void;
1358
+ groupExpand: (name?: string | string[]) => void;
1359
+ groupCollapse: (name?: string | string[]) => void;
1424
1360
  }) => any>> & Partial<Record<`content::${string}`, (_: {
1425
1361
  isExpanded: boolean;
1426
1362
  expand: () => void;
1427
1363
  collapse: () => void;
1428
- groupExpand: (name?: string | string[] | undefined) => void;
1429
- groupCollapse: (name?: string | string[] | undefined) => void;
1364
+ groupExpand: (name?: string | string[]) => void;
1365
+ groupCollapse: (name?: string | string[]) => void;
1430
1366
  }) => any>> & {
1431
1367
  default?(_: {
1432
1368
  expandedAccordions: Set<string>;
1433
- expand: (name?: string | string[] | undefined) => void;
1434
- collapse: (name?: string | string[] | undefined) => void;
1369
+ expand: (name?: string | string[]) => void;
1370
+ collapse: (name?: string | string[]) => void;
1435
1371
  }): any;
1436
1372
  };
1437
1373
  })>>) => void | (() => unknown) | PromiseLike<void | (() => unknown)>)[] | undefined;
1438
1374
  render?: import("@storybook/types").ArgsStoryFn<import("@storybook/vue3/*").VueRenderer, import("@storybook/vue3/*").ComponentPropsAndSlots<{
1439
1375
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
1440
1376
  modelValue: {
1441
- type: globalThis.PropType<string | string[] | undefined>;
1377
+ type: PropType<string | string[] | undefined>;
1442
1378
  default: undefined;
1443
1379
  };
1444
1380
  items: {
1445
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1381
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1446
1382
  default: () => never[];
1447
1383
  };
1448
1384
  collapse: BooleanConstructor;
1449
1385
  itemModifiers: {
1450
- type: globalThis.PropType<string | string[]>;
1386
+ type: PropType<string | string[]>;
1451
1387
  default: string;
1452
1388
  };
1453
1389
  disabled: BooleanConstructor;
1454
1390
  not: BooleanConstructor;
1455
1391
  storageType: {
1456
- type: globalThis.PropType<"local" | "session">;
1392
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
1457
1393
  default: import("../../constants").StorageType;
1458
1394
  validator: (value: import("../../constants").StorageType) => boolean;
1459
1395
  };
@@ -1464,28 +1400,28 @@ declare const _default: {
1464
1400
  };
1465
1401
  }>>, {
1466
1402
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
1467
- expand: (name?: string | string[] | undefined) => void;
1468
- collapse: (name?: string | string[] | undefined) => void;
1403
+ expand: (name?: string | string[]) => void;
1404
+ collapse: (name?: string | string[]) => void;
1469
1405
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1470
1406
  [x: string]: (...args: any[]) => void;
1471
1407
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
1472
1408
  modelValue: {
1473
- type: globalThis.PropType<string | string[] | undefined>;
1409
+ type: PropType<string | string[] | undefined>;
1474
1410
  default: undefined;
1475
1411
  };
1476
1412
  items: {
1477
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1413
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1478
1414
  default: () => never[];
1479
1415
  };
1480
1416
  collapse: BooleanConstructor;
1481
1417
  itemModifiers: {
1482
- type: globalThis.PropType<string | string[]>;
1418
+ type: PropType<string | string[]>;
1483
1419
  default: string;
1484
1420
  };
1485
1421
  disabled: BooleanConstructor;
1486
1422
  not: BooleanConstructor;
1487
1423
  storageType: {
1488
- type: globalThis.PropType<"local" | "session">;
1424
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
1489
1425
  default: import("../../constants").StorageType;
1490
1426
  validator: (value: import("../../constants").StorageType) => boolean;
1491
1427
  };
@@ -1512,22 +1448,22 @@ declare const _default: {
1512
1448
  Defaults: {};
1513
1449
  }, Readonly<globalThis.ExtractPropTypes<{
1514
1450
  modelValue: {
1515
- type: globalThis.PropType<string | string[] | undefined>;
1451
+ type: PropType<string | string[] | undefined>;
1516
1452
  default: undefined;
1517
1453
  };
1518
1454
  items: {
1519
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1455
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1520
1456
  default: () => never[];
1521
1457
  };
1522
1458
  collapse: BooleanConstructor;
1523
1459
  itemModifiers: {
1524
- type: globalThis.PropType<string | string[]>;
1460
+ type: PropType<string | string[]>;
1525
1461
  default: string;
1526
1462
  };
1527
1463
  disabled: BooleanConstructor;
1528
1464
  not: BooleanConstructor;
1529
1465
  storageType: {
1530
- type: globalThis.PropType<"local" | "session">;
1466
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
1531
1467
  default: import("../../constants").StorageType;
1532
1468
  validator: (value: import("../../constants").StorageType) => boolean;
1533
1469
  };
@@ -1538,8 +1474,8 @@ declare const _default: {
1538
1474
  };
1539
1475
  }>>, {
1540
1476
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
1541
- expand: (name?: string | string[] | undefined) => void;
1542
- collapse: (name?: string | string[] | undefined) => void;
1477
+ expand: (name?: string | string[]) => void;
1478
+ collapse: (name?: string | string[]) => void;
1543
1479
  }, {}, {}, {}, {
1544
1480
  collapse: boolean;
1545
1481
  disabled: boolean;
@@ -1550,27 +1486,27 @@ declare const _default: {
1550
1486
  itemModifiers: string | string[];
1551
1487
  storageType: "local" | "session";
1552
1488
  }>;
1553
- __isFragment?: undefined;
1554
- __isTeleport?: undefined;
1555
- __isSuspense?: undefined;
1489
+ __isFragment?: never;
1490
+ __isTeleport?: never;
1491
+ __isSuspense?: never;
1556
1492
  } & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
1557
1493
  modelValue: {
1558
- type: globalThis.PropType<string | string[] | undefined>;
1494
+ type: PropType<string | string[] | undefined>;
1559
1495
  default: undefined;
1560
1496
  };
1561
1497
  items: {
1562
- type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1498
+ type: PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
1563
1499
  default: () => never[];
1564
1500
  };
1565
1501
  collapse: BooleanConstructor;
1566
1502
  itemModifiers: {
1567
- type: globalThis.PropType<string | string[]>;
1503
+ type: PropType<string | string[]>;
1568
1504
  default: string;
1569
1505
  };
1570
1506
  disabled: BooleanConstructor;
1571
1507
  not: BooleanConstructor;
1572
1508
  storageType: {
1573
- type: globalThis.PropType<"local" | "session">;
1509
+ type: globalThis.PropType<`${import("../../constants").StorageType}`>;
1574
1510
  default: import("../../constants").StorageType;
1575
1511
  validator: (value: import("../../constants").StorageType) => boolean;
1576
1512
  };
@@ -1581,8 +1517,8 @@ declare const _default: {
1581
1517
  };
1582
1518
  }>>, {
1583
1519
  expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
1584
- expand: (name?: string | string[] | undefined) => void;
1585
- collapse: (name?: string | string[] | undefined) => void;
1520
+ expand: (name?: string | string[]) => void;
1521
+ collapse: (name?: string | string[]) => void;
1586
1522
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1587
1523
  [x: string]: (...args: any[]) => void;
1588
1524
  }, string, {
@@ -1599,23 +1535,23 @@ declare const _default: {
1599
1535
  isExpanded: boolean;
1600
1536
  expand: () => void;
1601
1537
  collapse: () => void;
1602
- groupExpand: (name?: string | string[] | undefined) => void;
1603
- groupCollapse: (name?: string | string[] | undefined) => void;
1538
+ groupExpand: (name?: string | string[]) => void;
1539
+ groupCollapse: (name?: string | string[]) => void;
1604
1540
  }) => any>> & Partial<Record<`content::${string}`, (_: {
1605
1541
  isExpanded: boolean;
1606
1542
  expand: () => void;
1607
1543
  collapse: () => void;
1608
- groupExpand: (name?: string | string[] | undefined) => void;
1609
- groupCollapse: (name?: string | string[] | undefined) => void;
1544
+ groupExpand: (name?: string | string[]) => void;
1545
+ groupCollapse: (name?: string | string[]) => void;
1610
1546
  }) => any>> & {
1611
1547
  default?(_: {
1612
1548
  expandedAccordions: Set<string>;
1613
- expand: (name?: string | string[] | undefined) => void;
1614
- collapse: (name?: string | string[] | undefined) => void;
1549
+ expand: (name?: string | string[]) => void;
1550
+ collapse: (name?: string | string[]) => void;
1615
1551
  }): any;
1616
1552
  };
1617
1553
  })>> | undefined;
1618
- tags?: string[] | undefined;
1554
+ tags?: import("@storybook/types").Tag[];
1619
1555
  };
1620
1556
  export default _default;
1621
1557
  export declare const Default: Story;