@volverjs/ui-vue 0.0.10-beta.20 → 0.0.10-beta.22

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 (80) hide show
  1. package/dist/components/VvAccordion/VvAccordion.vue.d.ts +1 -1
  2. package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +1 -1
  3. package/dist/components/VvAction/VvAction.vue.d.ts +1 -1
  4. package/dist/components/VvAlert/VvAlert.vue.d.ts +1 -1
  5. package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +1 -1
  6. package/dist/components/VvAvatar/VvAvatar.vue.d.ts +1 -1
  7. package/dist/components/VvAvatarGroup/VvAvatarGroup.vue.d.ts +1 -1
  8. package/dist/components/VvBadge/VvBadge.vue.d.ts +1 -1
  9. package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +1 -1
  10. package/dist/components/VvButton/VvButton.vue.d.ts +1 -1
  11. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +1 -1
  12. package/dist/components/VvCard/VvCard.vue.d.ts +1 -1
  13. package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +1 -1
  14. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +1 -1
  15. package/dist/components/VvCombobox/VvCombobox.vue.d.ts +67 -67
  16. package/dist/components/VvCombobox/index.d.ts +8 -8
  17. package/dist/components/VvDialog/VvDialog.vue.d.ts +1 -1
  18. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +70 -70
  19. package/dist/components/VvDropdown/VvDropdownAction.vue.d.ts +1 -1
  20. package/dist/components/VvDropdown/VvDropdownItem.vue.d.ts +1 -1
  21. package/dist/components/VvDropdown/VvDropdownOptgroup.vue.d.ts +1 -1
  22. package/dist/components/VvDropdown/VvDropdownOption.vue.d.ts +1 -1
  23. package/dist/components/VvDropdown/index.d.ts +8 -8
  24. package/dist/components/VvIcon/VvIcon.vue.d.ts +1 -1
  25. package/dist/components/VvIcon/index.d.ts +12 -0
  26. package/dist/components/VvInputFile/VvInputFile.es.js +231 -67
  27. package/dist/components/VvInputFile/VvInputFile.umd.js +1 -1
  28. package/dist/components/VvInputFile/VvInputFile.vue.d.ts +152 -29
  29. package/dist/components/VvInputFile/index.d.ts +119 -14
  30. package/dist/components/VvInputText/VvInputClearAction.d.ts +6 -4
  31. package/dist/components/VvInputText/VvInputPasswordAction.d.ts +10 -8
  32. package/dist/components/VvInputText/VvInputStepAction.d.ts +1 -1
  33. package/dist/components/VvInputText/VvInputText.es.js +73 -65
  34. package/dist/components/VvInputText/VvInputText.umd.js +1 -1
  35. package/dist/components/VvInputText/VvInputText.vue.d.ts +10 -10
  36. package/dist/components/VvInputText/index.d.ts +6 -15
  37. package/dist/components/VvNav/VvNav.vue.d.ts +1 -1
  38. package/dist/components/VvNav/VvNavItem.vue.d.ts +1 -1
  39. package/dist/components/VvNav/VvNavSeparator.vue.d.ts +1 -1
  40. package/dist/components/VvProgress/VvProgress.vue.d.ts +1 -1
  41. package/dist/components/VvRadio/VvRadio.vue.d.ts +1 -1
  42. package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +1 -1
  43. package/dist/components/VvSelect/VvSelect.vue.d.ts +1 -1
  44. package/dist/components/VvTab/VvTab.vue.d.ts +1 -1
  45. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +1 -1
  46. package/dist/components/VvTooltip/VvTooltip.vue.d.ts +1 -1
  47. package/dist/components/common/HintSlot.d.ts +1 -1
  48. package/dist/components/index.es.js +247 -96
  49. package/dist/components/index.umd.js +1 -1
  50. package/dist/composables/alert/useAlert.d.ts +1 -1
  51. package/dist/composables/dropdown/useProvideDropdown.d.ts +1 -1
  52. package/dist/icons.es.js +210 -210
  53. package/dist/icons.umd.js +1 -1
  54. package/dist/index.es.js +20 -12
  55. package/dist/index.umd.js +1 -1
  56. package/dist/props/index.d.ts +8 -14
  57. package/dist/resolvers/unplugin.es.js +20 -12
  58. package/dist/resolvers/unplugin.umd.js +1 -1
  59. package/dist/stories/InputFile/InputFile.stories.d.ts +1 -2
  60. package/dist/stories/InputFile/{InputFileModifiers.stories.d.ts → InputFileDropArea.stories.d.ts} +4 -4
  61. package/dist/stories/InputFile/InputFileIconPosition.stories.d.ts +8 -0
  62. package/dist/stories/InputFile/InputFileSlots.stories.d.ts +1 -0
  63. package/dist/types/input-file.d.ts +2 -0
  64. package/package.json +49 -49
  65. package/src/assets/icons/detailed.json +1 -1
  66. package/src/assets/icons/normal.json +1 -1
  67. package/src/assets/icons/simple.json +1 -1
  68. package/src/components/VvIcon/index.ts +13 -0
  69. package/src/components/VvInputFile/VvInputFile.vue +108 -40
  70. package/src/components/VvInputFile/index.ts +88 -10
  71. package/src/components/VvInputText/VvInputClearAction.ts +10 -6
  72. package/src/components/VvInputText/VvInputPasswordAction.ts +13 -9
  73. package/src/components/VvInputText/VvInputText.vue +6 -6
  74. package/src/components/VvInputText/index.ts +7 -15
  75. package/src/stories/InputFile/InputFile.settings.ts +1 -1
  76. package/src/stories/InputFile/InputFile.stories.ts +7 -16
  77. package/src/stories/InputFile/{InputFileModifiers.stories.ts → InputFileDropArea.stories.ts} +18 -13
  78. package/src/stories/InputFile/InputFileIconPosition.stories.ts +43 -0
  79. package/src/stories/InputFile/InputFileSlots.stories.ts +11 -3
  80. package/src/types/input-file.ts +4 -2
@@ -14,7 +14,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
14
14
  };
15
15
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
16
16
  [x: string]: (...args: any[]) => void;
17
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
17
+ }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
18
18
  name: StringConstructor;
19
19
  title: StringConstructor;
20
20
  content: StringConstructor;
@@ -18,7 +18,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
18
18
  };
19
19
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
20
  [x: string]: (...args: any[]) => void;
21
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
21
+ }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
22
22
  modelValue: (ArrayConstructor | StringConstructor)[];
23
23
  items: {
24
24
  type: globalThis.PropType<import(".").VvAccordionGroupItem[]>;
@@ -50,7 +50,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
50
50
  $el: globalThis.Ref<HTMLElement | null>;
51
51
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
52
52
  [x: string]: (...args: any[]) => void;
53
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
53
+ }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
54
54
  type: {
55
55
  type: globalThis.PropType<"button" | "submit" | "reset">;
56
56
  default: import("../../constants").ButtonType;
@@ -45,7 +45,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
45
45
  close: () => void;
46
46
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
47
47
  [x: string]: (...args: any[]) => void;
48
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
48
+ }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
49
49
  dismissable: {
50
50
  type: BooleanConstructor;
51
51
  default: boolean;
@@ -37,7 +37,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
37
37
  };
38
38
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
39
39
  [x: string]: (...args: any[]) => void;
40
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
40
+ }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
41
41
  name: {
42
42
  type: StringConstructor;
43
43
  required: boolean;
@@ -4,7 +4,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
4
4
  type: globalThis.PropType<string | string[]>;
5
5
  default: undefined;
6
6
  };
7
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
7
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
8
8
  imgSrc: StringConstructor;
9
9
  modifiers: {
10
10
  type: globalThis.PropType<string | string[]>;
@@ -16,7 +16,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
16
16
  type: globalThis.PropType<string | string[]>;
17
17
  default: undefined;
18
18
  };
19
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
19
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
20
20
  items: {
21
21
  type: globalThis.PropType<import("@/components/VvAvatarGroup").AvatarItem[]>;
22
22
  default: () => never[];
@@ -4,7 +4,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
4
4
  type: globalThis.PropType<string | string[]>;
5
5
  default: undefined;
6
6
  };
7
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
7
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
8
8
  value: (StringConstructor | NumberConstructor)[];
9
9
  modifiers: {
10
10
  type: globalThis.PropType<string | string[]>;
@@ -4,7 +4,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
4
4
  type: globalThis.PropType<string | string[]>;
5
5
  default: undefined;
6
6
  };
7
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
7
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
8
8
  routes: globalThis.PropType<import("../..").NavItem[]>;
9
9
  modifiers: {
10
10
  type: globalThis.PropType<string | string[]>;
@@ -100,7 +100,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
100
100
  $el: globalThis.ComputedRef<HTMLElement | undefined>;
101
101
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
102
102
  [x: string]: (...args: any[]) => void;
103
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
103
+ }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
104
104
  iconPosition: {
105
105
  type: globalThis.PropType<"left" | "right" | "top" | "bottom">;
106
106
  default: Side;
@@ -29,7 +29,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
29
29
  };
30
30
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
31
31
  [x: string]: (...args: any[]) => void;
32
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
32
+ }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
33
33
  itemModifiers: {
34
34
  type: globalThis.PropType<string | string[]>;
35
35
  default: string;
@@ -4,7 +4,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
4
4
  type: globalThis.PropType<string | string[]>;
5
5
  default: undefined;
6
6
  };
7
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
7
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
8
8
  title: StringConstructor;
9
9
  modifiers: {
10
10
  type: globalThis.PropType<string | string[]>;
@@ -65,7 +65,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
65
65
  id: (StringConstructor | NumberConstructor)[];
66
66
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
67
67
  [x: string]: (...args: any[]) => void;
68
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
68
+ }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
69
69
  indeterminate: BooleanConstructor;
70
70
  uncheckedValue: (BooleanConstructor | StringConstructor | NumberConstructor)[];
71
71
  switch: BooleanConstructor;
@@ -74,7 +74,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
74
74
  };
75
75
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
76
76
  [x: string]: (...args: any[]) => void;
77
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
77
+ }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
78
78
  modelValue: {
79
79
  type: (SymbolConstructor | ArrayConstructor | BooleanConstructor | StringConstructor | NumberConstructor)[];
80
80
  default: undefined;
@@ -105,11 +105,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
105
105
  crossAxis?: boolean | undefined;
106
106
  mainAxis?: boolean | undefined;
107
107
  limiter?: {
108
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
108
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
109
109
  options?: any;
110
110
  } | undefined;
111
111
  boundary?: import("@floating-ui/dom").Boundary | undefined;
112
- } | import("@floating-ui/dom").Derivable<{
112
+ } | import("@floating-ui/core").Derivable<{
113
113
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
114
114
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
115
115
  altBoundary?: boolean | undefined;
@@ -117,7 +117,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
117
117
  crossAxis?: boolean | undefined;
118
118
  mainAxis?: boolean | undefined;
119
119
  limiter?: {
120
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
120
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
121
121
  options?: any;
122
122
  } | undefined;
123
123
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -133,11 +133,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
133
133
  crossAxis?: boolean | undefined;
134
134
  mainAxis?: boolean | undefined;
135
135
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
136
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
136
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
137
137
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
138
138
  flipAlignment?: boolean | undefined;
139
139
  boundary?: import("@floating-ui/dom").Boundary | undefined;
140
- } | import("@floating-ui/dom").Derivable<{
140
+ } | import("@floating-ui/core").Derivable<{
141
141
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
142
142
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
143
143
  altBoundary?: boolean | undefined;
@@ -145,7 +145,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
145
145
  crossAxis?: boolean | undefined;
146
146
  mainAxis?: boolean | undefined;
147
147
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
148
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
148
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
149
149
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
150
150
  flipAlignment?: boolean | undefined;
151
151
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -173,7 +173,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
173
173
  availableWidth: number;
174
174
  availableHeight: number;
175
175
  }) => void | Promise<void>) | undefined;
176
- } | import("@floating-ui/dom").Derivable<{
176
+ } | import("@floating-ui/core").Derivable<{
177
177
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
178
178
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
179
179
  altBoundary?: boolean | undefined;
@@ -209,7 +209,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
209
209
  autoAlignment?: boolean | undefined;
210
210
  allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
211
211
  boundary?: import("@floating-ui/dom").Boundary | undefined;
212
- } | import("@floating-ui/dom").Derivable<{
212
+ } | import("@floating-ui/core").Derivable<{
213
213
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
214
214
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
215
215
  altBoundary?: boolean | undefined;
@@ -317,7 +317,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
317
317
  id: (StringConstructor | NumberConstructor)[];
318
318
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
319
319
  [x: string]: (...args: any[]) => void;
320
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
320
+ }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
321
321
  transitionName: {
322
322
  type: StringConstructor;
323
323
  default: string;
@@ -423,11 +423,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
423
423
  crossAxis?: boolean | undefined;
424
424
  mainAxis?: boolean | undefined;
425
425
  limiter?: {
426
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
426
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
427
427
  options?: any;
428
428
  } | undefined;
429
429
  boundary?: import("@floating-ui/dom").Boundary | undefined;
430
- } | import("@floating-ui/dom").Derivable<{
430
+ } | import("@floating-ui/core").Derivable<{
431
431
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
432
432
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
433
433
  altBoundary?: boolean | undefined;
@@ -435,7 +435,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
435
435
  crossAxis?: boolean | undefined;
436
436
  mainAxis?: boolean | undefined;
437
437
  limiter?: {
438
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
438
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
439
439
  options?: any;
440
440
  } | undefined;
441
441
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -451,11 +451,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
451
451
  crossAxis?: boolean | undefined;
452
452
  mainAxis?: boolean | undefined;
453
453
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
454
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
454
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
455
455
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
456
456
  flipAlignment?: boolean | undefined;
457
457
  boundary?: import("@floating-ui/dom").Boundary | undefined;
458
- } | import("@floating-ui/dom").Derivable<{
458
+ } | import("@floating-ui/core").Derivable<{
459
459
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
460
460
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
461
461
  altBoundary?: boolean | undefined;
@@ -463,7 +463,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
463
463
  crossAxis?: boolean | undefined;
464
464
  mainAxis?: boolean | undefined;
465
465
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
466
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
466
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
467
467
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
468
468
  flipAlignment?: boolean | undefined;
469
469
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -491,7 +491,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
491
491
  availableWidth: number;
492
492
  availableHeight: number;
493
493
  }) => void | Promise<void>) | undefined;
494
- } | import("@floating-ui/dom").Derivable<{
494
+ } | import("@floating-ui/core").Derivable<{
495
495
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
496
496
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
497
497
  altBoundary?: boolean | undefined;
@@ -527,7 +527,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
527
527
  autoAlignment?: boolean | undefined;
528
528
  allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
529
529
  boundary?: import("@floating-ui/dom").Boundary | undefined;
530
- } | import("@floating-ui/dom").Derivable<{
530
+ } | import("@floating-ui/core").Derivable<{
531
531
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
532
532
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
533
533
  altBoundary?: boolean | undefined;
@@ -642,10 +642,49 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
642
642
  multiple: boolean;
643
643
  unselectable: boolean;
644
644
  modifiers: string | string[];
645
+ size: boolean | {
646
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
647
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
648
+ altBoundary?: boolean | undefined;
649
+ padding?: import("@floating-ui/utils").Padding | undefined;
650
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
651
+ apply?: ((args: {
652
+ x: number;
653
+ y: number;
654
+ initialPlacement: import("@floating-ui/utils").Placement;
655
+ placement: import("@floating-ui/utils").Placement;
656
+ strategy: import("@floating-ui/utils").Strategy;
657
+ middlewareData: import("@floating-ui/core").MiddlewareData;
658
+ rects: import("@floating-ui/utils").ElementRects;
659
+ platform: import("@floating-ui/core").Platform;
660
+ elements: import("@floating-ui/dom").Elements;
661
+ } & {
662
+ availableWidth: number;
663
+ availableHeight: number;
664
+ }) => void | Promise<void>) | undefined;
665
+ } | import("@floating-ui/core").Derivable<{
666
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
667
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
668
+ altBoundary?: boolean | undefined;
669
+ padding?: import("@floating-ui/utils").Padding | undefined;
670
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
671
+ apply?: ((args: {
672
+ x: number;
673
+ y: number;
674
+ initialPlacement: import("@floating-ui/utils").Placement;
675
+ placement: import("@floating-ui/utils").Placement;
676
+ strategy: import("@floating-ui/utils").Strategy;
677
+ middlewareData: import("@floating-ui/core").MiddlewareData;
678
+ rects: import("@floating-ui/utils").ElementRects;
679
+ platform: import("@floating-ui/core").Platform;
680
+ elements: import("@floating-ui/dom").Elements;
681
+ } & {
682
+ availableWidth: number;
683
+ availableHeight: number;
684
+ }) => void | Promise<void>) | undefined;
685
+ }> | undefined;
645
686
  floating: boolean;
646
687
  options: (string | Option)[];
647
- placement: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
648
- strategy: "absolute" | "fixed";
649
688
  label: string | number;
650
689
  shift: boolean | {
651
690
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
@@ -655,11 +694,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
655
694
  crossAxis?: boolean | undefined;
656
695
  mainAxis?: boolean | undefined;
657
696
  limiter?: {
658
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
697
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
659
698
  options?: any;
660
699
  } | undefined;
661
700
  boundary?: import("@floating-ui/dom").Boundary | undefined;
662
- } | import("@floating-ui/dom").Derivable<{
701
+ } | import("@floating-ui/core").Derivable<{
663
702
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
664
703
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
665
704
  altBoundary?: boolean | undefined;
@@ -667,7 +706,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
667
706
  crossAxis?: boolean | undefined;
668
707
  mainAxis?: boolean | undefined;
669
708
  limiter?: {
670
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
709
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
671
710
  options?: any;
672
711
  } | undefined;
673
712
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -680,11 +719,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
680
719
  crossAxis?: boolean | undefined;
681
720
  mainAxis?: boolean | undefined;
682
721
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
683
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
722
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
684
723
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
685
724
  flipAlignment?: boolean | undefined;
686
725
  boundary?: import("@floating-ui/dom").Boundary | undefined;
687
- } | import("@floating-ui/dom").Derivable<{
726
+ } | import("@floating-ui/core").Derivable<{
688
727
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
689
728
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
690
729
  altBoundary?: boolean | undefined;
@@ -692,7 +731,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
692
731
  crossAxis?: boolean | undefined;
693
732
  mainAxis?: boolean | undefined;
694
733
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
695
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
734
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
696
735
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
697
736
  flipAlignment?: boolean | undefined;
698
737
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -709,49 +748,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
709
748
  labelKey: string | Function;
710
749
  valueKey: string | Function;
711
750
  disabledKey: string | Function;
751
+ placement: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
752
+ strategy: "absolute" | "fixed";
712
753
  transitionName: string;
713
754
  offset: string | import("@floating-ui/core").OffsetOptions | undefined;
714
- size: boolean | {
715
- rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
716
- elementContext?: import("@floating-ui/core").ElementContext | undefined;
717
- altBoundary?: boolean | undefined;
718
- padding?: import("@floating-ui/utils").Padding | undefined;
719
- boundary?: import("@floating-ui/dom").Boundary | undefined;
720
- apply?: ((args: {
721
- x: number;
722
- y: number;
723
- initialPlacement: import("@floating-ui/utils").Placement;
724
- placement: import("@floating-ui/utils").Placement;
725
- strategy: import("@floating-ui/utils").Strategy;
726
- middlewareData: import("@floating-ui/core").MiddlewareData;
727
- rects: import("@floating-ui/utils").ElementRects;
728
- platform: import("@floating-ui/core").Platform;
729
- elements: import("@floating-ui/dom").Elements;
730
- } & {
731
- availableWidth: number;
732
- availableHeight: number;
733
- }) => void | Promise<void>) | undefined;
734
- } | import("@floating-ui/dom").Derivable<{
735
- rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
736
- elementContext?: import("@floating-ui/core").ElementContext | undefined;
737
- altBoundary?: boolean | undefined;
738
- padding?: import("@floating-ui/utils").Padding | undefined;
739
- boundary?: import("@floating-ui/dom").Boundary | undefined;
740
- apply?: ((args: {
741
- x: number;
742
- y: number;
743
- initialPlacement: import("@floating-ui/utils").Placement;
744
- placement: import("@floating-ui/utils").Placement;
745
- strategy: import("@floating-ui/utils").Strategy;
746
- middlewareData: import("@floating-ui/core").MiddlewareData;
747
- rects: import("@floating-ui/utils").ElementRects;
748
- platform: import("@floating-ui/core").Platform;
749
- elements: import("@floating-ui/dom").Elements;
750
- } & {
751
- availableWidth: number;
752
- availableHeight: number;
753
- }) => void | Promise<void>) | undefined;
754
- }> | undefined;
755
755
  autoPlacement: boolean | {
756
756
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
757
757
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
@@ -762,7 +762,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
762
762
  autoAlignment?: boolean | undefined;
763
763
  allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
764
764
  boundary?: import("@floating-ui/dom").Boundary | undefined;
765
- } | import("@floating-ui/dom").Derivable<{
765
+ } | import("@floating-ui/core").Derivable<{
766
766
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
767
767
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
768
768
  altBoundary?: boolean | undefined;
@@ -179,11 +179,11 @@ export declare const VvComboboxProps: {
179
179
  crossAxis?: boolean | undefined;
180
180
  mainAxis?: boolean | undefined;
181
181
  limiter?: {
182
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
182
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
183
183
  options?: any;
184
184
  } | undefined;
185
185
  boundary?: import("@floating-ui/dom").Boundary | undefined;
186
- } | import("@floating-ui/dom").Derivable<{
186
+ } | import("@floating-ui/core").Derivable<{
187
187
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
188
188
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
189
189
  altBoundary?: boolean | undefined;
@@ -191,7 +191,7 @@ export declare const VvComboboxProps: {
191
191
  crossAxis?: boolean | undefined;
192
192
  mainAxis?: boolean | undefined;
193
193
  limiter?: {
194
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
194
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
195
195
  options?: any;
196
196
  } | undefined;
197
197
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -207,11 +207,11 @@ export declare const VvComboboxProps: {
207
207
  crossAxis?: boolean | undefined;
208
208
  mainAxis?: boolean | undefined;
209
209
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
210
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
210
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
211
211
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
212
212
  flipAlignment?: boolean | undefined;
213
213
  boundary?: import("@floating-ui/dom").Boundary | undefined;
214
- } | import("@floating-ui/dom").Derivable<{
214
+ } | import("@floating-ui/core").Derivable<{
215
215
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
216
216
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
217
217
  altBoundary?: boolean | undefined;
@@ -219,7 +219,7 @@ export declare const VvComboboxProps: {
219
219
  crossAxis?: boolean | undefined;
220
220
  mainAxis?: boolean | undefined;
221
221
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
222
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
222
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
223
223
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
224
224
  flipAlignment?: boolean | undefined;
225
225
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -247,7 +247,7 @@ export declare const VvComboboxProps: {
247
247
  availableWidth: number;
248
248
  availableHeight: number;
249
249
  }) => void | Promise<void>) | undefined;
250
- } | import("@floating-ui/dom").Derivable<{
250
+ } | import("@floating-ui/core").Derivable<{
251
251
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
252
252
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
253
253
  altBoundary?: boolean | undefined;
@@ -283,7 +283,7 @@ export declare const VvComboboxProps: {
283
283
  autoAlignment?: boolean | undefined;
284
284
  allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
285
285
  boundary?: import("@floating-ui/dom").Boundary | undefined;
286
- } | import("@floating-ui/dom").Derivable<{
286
+ } | import("@floating-ui/core").Derivable<{
287
287
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
288
288
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
289
289
  altBoundary?: boolean | undefined;
@@ -19,7 +19,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
19
19
  open: () => void;
20
20
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
21
21
  [x: string]: (...args: any[]) => void;
22
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
22
+ }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
23
23
  title: StringConstructor;
24
24
  modelValue: {
25
25
  type: BooleanConstructor;