@volverjs/ui-vue 0.0.10-beta.42 → 0.0.10-beta.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +12 -12
- package/dist/components/VvAccordionGroup/index.d.ts +4 -4
- package/dist/components/VvAction/VvAction.vue.d.ts +2 -2
- package/dist/components/VvAction/index.d.ts +1 -1
- package/dist/components/VvAlert/VvAlert.vue.d.ts +6 -6
- package/dist/components/VvAlert/index.d.ts +4 -3
- package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +9 -9
- package/dist/components/VvAlertGroup/index.d.ts +4 -4
- package/dist/components/VvAvatarGroup/VvAvatarGroup.vue.d.ts +4 -4
- package/dist/components/VvAvatarGroup/index.d.ts +2 -2
- package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +13 -13
- package/dist/components/VvBreadcrumb/index.d.ts +1 -1
- package/dist/components/VvButton/VvButton.vue.d.ts +4 -4
- package/dist/components/VvButton/index.d.ts +2 -2
- package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +4 -4
- package/dist/components/VvButtonGroup/index.d.ts +2 -2
- package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +1 -1
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +3 -3
- package/dist/components/VvCheckboxGroup/index.d.ts +1 -1
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +438 -559
- package/dist/components/VvCombobox/index.d.ts +21 -241
- package/dist/components/VvDialog/VvDialog.es.js +41 -165
- package/dist/components/VvDialog/VvDialog.umd.js +1 -1
- package/dist/components/VvDialog/VvDialog.vue.d.ts +9 -0
- package/dist/components/VvDialog/index.d.ts +7 -0
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +33 -268
- package/dist/components/VvDropdown/VvDropdownAction.vue.d.ts +8 -6
- package/dist/components/VvDropdown/index.d.ts +9 -117
- package/dist/components/VvIcon/VvIcon.vue.d.ts +1 -1
- package/dist/components/VvInputFile/VvInputFile.es.js +11 -6
- package/dist/components/VvInputFile/VvInputFile.umd.js +1 -1
- package/dist/components/VvInputFile/VvInputFile.vue.d.ts +31 -105
- package/dist/components/VvInputFile/index.d.ts +11 -28
- package/dist/components/VvInputText/VvInputClearAction.d.ts +2 -2
- package/dist/components/VvInputText/VvInputPasswordAction.d.ts +4 -4
- package/dist/components/VvInputText/VvInputText.vue.d.ts +4 -4
- package/dist/components/VvInputText/index.d.ts +4 -9
- package/dist/components/VvNav/VvNav.vue.d.ts +9 -9
- package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +3 -3
- package/dist/components/VvRadioGroup/index.d.ts +1 -1
- package/dist/components/VvSelect/VvSelect.vue.d.ts +174 -184
- package/dist/components/VvSelect/index.d.ts +4 -4
- package/dist/components/VvTab/VvTab.vue.d.ts +13 -13
- package/dist/components/VvTab/index.d.ts +2 -2
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +2 -2
- package/dist/components/VvTextarea/index.d.ts +1 -1
- package/dist/components/VvTooltip/VvTooltip.vue.d.ts +2 -2
- package/dist/components/VvTooltip/index.d.ts +1 -1
- package/dist/components/index.es.js +34 -31
- package/dist/components/index.umd.js +1 -1
- package/dist/composables/alert/useAlert.d.ts +47 -77
- package/dist/composables/index.es.js +1 -2
- package/dist/composables/useBlurhash.d.ts +1 -1
- package/dist/composables/useOptions.d.ts +3 -3
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/index.es.js +1 -4
- package/dist/index.umd.js +1 -1
- package/dist/props/index.d.ts +14 -121
- package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +283 -347
- package/dist/stories/InputFile/InputFile.stories.d.ts +1 -0
- package/dist/test/expect.d.ts +0 -1
- package/dist/types/input-file.d.ts +2 -9
- package/dist/utils/ObjectUtilities.d.ts +1 -1
- package/package.json +29 -30
- package/src/Volver.ts +6 -6
- package/src/assets/icons/detailed.json +1 -1
- package/src/assets/icons/normal.json +1 -1
- package/src/assets/icons/simple.json +1 -1
- package/src/components/VvButtonGroup/index.ts +1 -1
- package/src/components/VvCombobox/index.ts +6 -6
- package/src/components/VvDialog/VvDialog.vue +3 -5
- package/src/components/VvDialog/index.ts +4 -0
- package/src/components/VvInputFile/VvInputFile.vue +8 -3
- package/src/components/VvInputFile/index.ts +2 -0
- package/src/components/VvInputText/VvInputText.vue +18 -18
- package/src/components/common/HintSlot.ts +2 -2
- package/src/composables/group/useInjectedGroupState.ts +3 -3
- package/src/composables/group/useProvideGroupState.ts +3 -3
- package/src/composables/useDefaults.ts +4 -4
- package/src/props/index.ts +1 -1
- package/src/stories/InputFile/InputFile.stories.ts +8 -0
- package/src/types/group.ts +1 -1
- package/src/types/input-file.ts +10 -18
|
@@ -1,256 +1,14 @@
|
|
|
1
1
|
import type { Option } from '../../types/generic';
|
|
2
|
-
declare const _default: <T extends string | Option>(__VLS_props: {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
size?: boolean | {
|
|
7
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
8
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
9
|
-
altBoundary?: boolean | undefined;
|
|
10
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
11
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
12
|
-
apply?: ((args: {
|
|
13
|
-
x: number;
|
|
14
|
-
y: number;
|
|
15
|
-
initialPlacement: import("@floating-ui/utils").Placement;
|
|
16
|
-
placement: import("@floating-ui/utils").Placement;
|
|
17
|
-
strategy: import("@floating-ui/utils").Strategy;
|
|
18
|
-
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
19
|
-
rects: import("@floating-ui/utils").ElementRects;
|
|
20
|
-
platform: import("@floating-ui/core").Platform;
|
|
21
|
-
elements: import("@floating-ui/dom").Elements;
|
|
22
|
-
} & {
|
|
23
|
-
availableWidth: number;
|
|
24
|
-
availableHeight: number;
|
|
25
|
-
}) => void | Promise<void>) | undefined;
|
|
26
|
-
} | import("@floating-ui/core").Derivable<{
|
|
27
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
28
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
29
|
-
altBoundary?: boolean | undefined;
|
|
30
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
31
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
32
|
-
apply?: ((args: {
|
|
33
|
-
x: number;
|
|
34
|
-
y: number;
|
|
35
|
-
initialPlacement: import("@floating-ui/utils").Placement;
|
|
36
|
-
placement: import("@floating-ui/utils").Placement;
|
|
37
|
-
strategy: import("@floating-ui/utils").Strategy;
|
|
38
|
-
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
39
|
-
rects: import("@floating-ui/utils").ElementRects;
|
|
40
|
-
platform: import("@floating-ui/core").Platform;
|
|
41
|
-
elements: import("@floating-ui/dom").Elements;
|
|
42
|
-
} & {
|
|
43
|
-
availableWidth: number;
|
|
44
|
-
availableHeight: number;
|
|
45
|
-
}) => void | Promise<void>) | undefined;
|
|
46
|
-
}> | undefined;
|
|
47
|
-
label?: string | number | undefined;
|
|
48
|
-
disabled?: boolean | undefined;
|
|
49
|
-
modelValue?: string | number | boolean | unknown[] | Record<string, any> | undefined;
|
|
50
|
-
modifiers?: string | string[] | undefined;
|
|
51
|
-
shift?: boolean | {
|
|
52
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
53
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
54
|
-
altBoundary?: boolean | undefined;
|
|
55
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
56
|
-
crossAxis?: boolean | undefined;
|
|
57
|
-
mainAxis?: boolean | undefined;
|
|
58
|
-
limiter?: {
|
|
59
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
60
|
-
options?: any;
|
|
61
|
-
} | undefined;
|
|
62
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
63
|
-
} | import("@floating-ui/core").Derivable<{
|
|
64
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
65
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
66
|
-
altBoundary?: boolean | undefined;
|
|
67
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
68
|
-
crossAxis?: boolean | undefined;
|
|
69
|
-
mainAxis?: boolean | undefined;
|
|
70
|
-
limiter?: {
|
|
71
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
72
|
-
options?: any;
|
|
73
|
-
} | undefined;
|
|
74
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
75
|
-
}> | undefined;
|
|
76
|
-
readonly?: boolean | undefined;
|
|
77
|
-
readonly id?: string | number | undefined;
|
|
78
|
-
onFocus?: ((args_0: import("@vueuse/core").MaybeElement) => any) | undefined;
|
|
79
|
-
onBlur?: ((args_0: import("@vueuse/core").MaybeElement) => any) | undefined;
|
|
80
|
-
flip?: boolean | {
|
|
81
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
82
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
83
|
-
altBoundary?: boolean | undefined;
|
|
84
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
85
|
-
crossAxis?: boolean | undefined;
|
|
86
|
-
mainAxis?: boolean | undefined;
|
|
87
|
-
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
88
|
-
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
89
|
-
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
90
|
-
flipAlignment?: boolean | undefined;
|
|
91
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
92
|
-
} | import("@floating-ui/core").Derivable<{
|
|
93
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
94
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
95
|
-
altBoundary?: boolean | undefined;
|
|
96
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
97
|
-
crossAxis?: boolean | undefined;
|
|
98
|
-
mainAxis?: boolean | undefined;
|
|
99
|
-
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
100
|
-
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
101
|
-
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
102
|
-
flipAlignment?: boolean | undefined;
|
|
103
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
104
|
-
}> | undefined;
|
|
105
|
-
icon?: string | import("../VvIcon/index.js").VvIconProps | undefined;
|
|
106
|
-
closeLabel?: string | undefined;
|
|
107
|
-
iconPosition?: "before" | "after" | undefined;
|
|
108
|
-
loading?: boolean | undefined;
|
|
109
|
-
loadingLabel?: string | undefined;
|
|
110
|
-
unselectable?: boolean | undefined;
|
|
111
|
-
multiple?: boolean | undefined;
|
|
112
|
-
hintLabel?: string | undefined;
|
|
113
|
-
valid?: boolean | undefined;
|
|
114
|
-
validLabel?: string | unknown[] | undefined;
|
|
115
|
-
invalid?: boolean | undefined;
|
|
116
|
-
invalidLabel?: string | unknown[] | undefined;
|
|
117
|
-
tabindex?: string | number | undefined;
|
|
118
|
-
labelKey?: string | Function | undefined;
|
|
119
|
-
valueKey?: string | Function | undefined;
|
|
120
|
-
disabledKey?: string | Function | undefined;
|
|
121
|
-
"onUpdate:modelValue"?: ((args_0: any) => any) | undefined;
|
|
122
|
-
placement?: "top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | undefined;
|
|
123
|
-
strategy?: "absolute" | "fixed" | undefined;
|
|
124
|
-
transitionName?: string | undefined;
|
|
125
|
-
offset?: string | import("@floating-ui/core").OffsetOptions | undefined;
|
|
126
|
-
autoPlacement?: boolean | {
|
|
127
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
128
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
129
|
-
altBoundary?: boolean | undefined;
|
|
130
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
131
|
-
crossAxis?: boolean | undefined;
|
|
132
|
-
alignment?: import("@floating-ui/utils").Alignment | null | undefined;
|
|
133
|
-
autoAlignment?: boolean | undefined;
|
|
134
|
-
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
135
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
136
|
-
} | import("@floating-ui/core").Derivable<{
|
|
137
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
138
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
139
|
-
altBoundary?: boolean | undefined;
|
|
140
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
141
|
-
crossAxis?: boolean | undefined;
|
|
142
|
-
alignment?: import("@floating-ui/utils").Alignment | null | undefined;
|
|
143
|
-
autoAlignment?: boolean | undefined;
|
|
144
|
-
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
145
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
146
|
-
}> | undefined;
|
|
147
|
-
arrow?: boolean | undefined;
|
|
148
|
-
keepOpen?: boolean | undefined;
|
|
149
|
-
autofocusFirst?: boolean | undefined;
|
|
150
|
-
triggerWidth?: boolean | undefined;
|
|
151
|
-
deselectHintLabel?: string | undefined;
|
|
152
|
-
selectHintLabel?: string | undefined;
|
|
153
|
-
selectedHintLabel?: string | undefined;
|
|
154
|
-
autoselectFirst?: boolean | undefined;
|
|
155
|
-
readonly placeholder?: string | undefined;
|
|
156
|
-
"onUpdate:search"?: ((args_0: string) => any) | undefined;
|
|
157
|
-
"onChange:search"?: ((args_0: string) => any) | undefined;
|
|
158
|
-
searchFunction?: ((search: string, options: T[]) => T[] | Promise<T[]>) | undefined;
|
|
159
|
-
noResultsLabel?: string | undefined;
|
|
160
|
-
noOptionsLabel?: string | undefined;
|
|
161
|
-
deselectActionLabel?: string | undefined;
|
|
162
|
-
searchable?: boolean | undefined;
|
|
163
|
-
searchPlaceholder?: string | undefined;
|
|
164
|
-
debounceSearch?: string | number | undefined;
|
|
165
|
-
minValues?: string | number | undefined;
|
|
166
|
-
readonly maxValues?: string | number | undefined;
|
|
167
|
-
separator?: string | undefined;
|
|
168
|
-
native?: boolean | undefined;
|
|
169
|
-
badges?: boolean | undefined;
|
|
170
|
-
badgeModifiers?: string | string[] | undefined;
|
|
171
|
-
dropdownModifiers?: string | string[] | undefined;
|
|
172
|
-
autoOpen?: boolean | undefined;
|
|
173
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
|
|
174
|
-
slots: {
|
|
175
|
-
"dropdown::before"?(_: {}): any;
|
|
176
|
-
before?(_: {
|
|
177
|
-
valid: boolean;
|
|
178
|
-
invalid: boolean;
|
|
179
|
-
modelValue: string | number | boolean | unknown[] | Record<string, any> | undefined;
|
|
180
|
-
}): any;
|
|
181
|
-
value?(_: {
|
|
182
|
-
selectedOptions: T[];
|
|
183
|
-
onInput: (option: T) => void;
|
|
184
|
-
}): any;
|
|
185
|
-
after?(_: {
|
|
186
|
-
valid: boolean;
|
|
187
|
-
invalid: boolean;
|
|
188
|
-
modelValue: string | number | boolean | unknown[] | Record<string, any> | undefined;
|
|
189
|
-
}): any;
|
|
190
|
-
option?(_: {
|
|
191
|
-
option: T;
|
|
192
|
-
selectedOptions: T[];
|
|
193
|
-
selected: boolean;
|
|
194
|
-
disabled: boolean;
|
|
195
|
-
}): any;
|
|
196
|
-
option?(_: {
|
|
197
|
-
option: T;
|
|
198
|
-
selectedOptions: T[];
|
|
199
|
-
selected: boolean;
|
|
200
|
-
disabled: boolean;
|
|
201
|
-
}): any;
|
|
202
|
-
"no-options"?(_: {}): any;
|
|
203
|
-
"no-results"?(_: {}): any;
|
|
204
|
-
"dropdown::after"?(_: {}): any;
|
|
205
|
-
hint?(_: {
|
|
206
|
-
modelValue: unknown;
|
|
207
|
-
valid: boolean;
|
|
208
|
-
invalid: boolean;
|
|
209
|
-
loading: boolean;
|
|
210
|
-
}): any;
|
|
211
|
-
loading?(_: {
|
|
212
|
-
modelValue: unknown;
|
|
213
|
-
valid: boolean;
|
|
214
|
-
invalid: boolean;
|
|
215
|
-
loading: boolean;
|
|
216
|
-
}): any;
|
|
217
|
-
valid?(_: {
|
|
218
|
-
modelValue: unknown;
|
|
219
|
-
valid: boolean;
|
|
220
|
-
invalid: boolean;
|
|
221
|
-
loading: boolean;
|
|
222
|
-
}): any;
|
|
223
|
-
invalid?(_: {
|
|
224
|
-
modelValue: unknown;
|
|
225
|
-
valid: boolean;
|
|
226
|
-
invalid: boolean;
|
|
227
|
-
loading: boolean;
|
|
228
|
-
}): any;
|
|
229
|
-
};
|
|
230
|
-
attrs: any;
|
|
231
|
-
emit: ((evt: "update:modelValue", args_0: any) => void) & ((evt: "blur", args_0: import("@vueuse/core").MaybeElement) => void) & ((evt: "focus", args_0: import("@vueuse/core").MaybeElement) => void) & ((evt: "update:search", args_0: string) => void) & ((evt: "change:search", args_0: string) => void);
|
|
232
|
-
} | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
233
|
-
props: {
|
|
234
|
-
floating?: boolean | undefined;
|
|
235
|
-
readonly name?: string | undefined;
|
|
236
|
-
options?: T[] | undefined;
|
|
237
|
-
size?: boolean | {
|
|
2
|
+
declare const _default: <T extends string | Option>(__VLS_props: Awaited<typeof __VLS_setup>["props"], __VLS_ctx?: __VLS_Prettify<Pick<Awaited<typeof __VLS_setup>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3
|
+
props: __VLS_Prettify<Pick<Partial<{
|
|
4
|
+
floating: boolean;
|
|
5
|
+
size: boolean | {
|
|
238
6
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
239
7
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
240
8
|
altBoundary?: boolean | undefined;
|
|
241
9
|
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
242
|
-
boundary?: import("@floating-ui/dom").Boundary
|
|
243
|
-
apply?: ((args: {
|
|
244
|
-
x: number;
|
|
245
|
-
y: number;
|
|
246
|
-
initialPlacement: import("@floating-ui/utils").Placement;
|
|
247
|
-
placement: import("@floating-ui/utils").Placement;
|
|
248
|
-
strategy: import("@floating-ui/utils").Strategy;
|
|
249
|
-
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
250
|
-
rects: import("@floating-ui/utils").ElementRects;
|
|
251
|
-
platform: import("@floating-ui/core").Platform;
|
|
252
|
-
elements: import("@floating-ui/dom").Elements;
|
|
253
|
-
} & {
|
|
10
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
11
|
+
apply?: ((args: import("@floating-ui/dom").MiddlewareState & {
|
|
254
12
|
availableWidth: number;
|
|
255
13
|
availableHeight: number;
|
|
256
14
|
}) => void | Promise<void>) | undefined;
|
|
@@ -259,27 +17,13 @@ declare const _default: <T extends string | Option>(__VLS_props: {
|
|
|
259
17
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
260
18
|
altBoundary?: boolean | undefined;
|
|
261
19
|
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
262
|
-
boundary?: import("@floating-ui/dom").Boundary
|
|
263
|
-
apply?: ((args: {
|
|
264
|
-
x: number;
|
|
265
|
-
y: number;
|
|
266
|
-
initialPlacement: import("@floating-ui/utils").Placement;
|
|
267
|
-
placement: import("@floating-ui/utils").Placement;
|
|
268
|
-
strategy: import("@floating-ui/utils").Strategy;
|
|
269
|
-
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
270
|
-
rects: import("@floating-ui/utils").ElementRects;
|
|
271
|
-
platform: import("@floating-ui/core").Platform;
|
|
272
|
-
elements: import("@floating-ui/dom").Elements;
|
|
273
|
-
} & {
|
|
20
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
21
|
+
apply?: ((args: import("@floating-ui/dom").MiddlewareState & {
|
|
274
22
|
availableWidth: number;
|
|
275
23
|
availableHeight: number;
|
|
276
24
|
}) => void | Promise<void>) | undefined;
|
|
277
25
|
}> | undefined;
|
|
278
|
-
|
|
279
|
-
disabled?: boolean | undefined;
|
|
280
|
-
modelValue?: string | number | boolean | unknown[] | Record<string, any> | undefined;
|
|
281
|
-
modifiers?: string | string[] | undefined;
|
|
282
|
-
shift?: boolean | {
|
|
26
|
+
shift: boolean | {
|
|
283
27
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
284
28
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
285
29
|
altBoundary?: boolean | undefined;
|
|
@@ -290,7 +34,7 @@ declare const _default: <T extends string | Option>(__VLS_props: {
|
|
|
290
34
|
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
291
35
|
options?: any;
|
|
292
36
|
} | undefined;
|
|
293
|
-
boundary?: import("@floating-ui/dom").Boundary
|
|
37
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
294
38
|
} | import("@floating-ui/core").Derivable<{
|
|
295
39
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
296
40
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
@@ -302,13 +46,14 @@ declare const _default: <T extends string | Option>(__VLS_props: {
|
|
|
302
46
|
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
303
47
|
options?: any;
|
|
304
48
|
} | undefined;
|
|
305
|
-
boundary?: import("@floating-ui/dom").Boundary
|
|
49
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
306
50
|
}> | undefined;
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
51
|
+
label: string | number;
|
|
52
|
+
disabled: boolean;
|
|
53
|
+
modelValue: string | number | boolean | unknown[] | Record<string, any>;
|
|
54
|
+
modifiers: string | string[];
|
|
55
|
+
readonly: boolean;
|
|
56
|
+
flip: boolean | {
|
|
312
57
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
313
58
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
314
59
|
altBoundary?: boolean | undefined;
|
|
@@ -319,7 +64,7 @@ declare const _default: <T extends string | Option>(__VLS_props: {
|
|
|
319
64
|
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
320
65
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
321
66
|
flipAlignment?: boolean | undefined;
|
|
322
|
-
boundary?: import("@floating-ui/dom").Boundary
|
|
67
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
323
68
|
} | import("@floating-ui/core").Derivable<{
|
|
324
69
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
325
70
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
@@ -331,30 +76,165 @@ declare const _default: <T extends string | Option>(__VLS_props: {
|
|
|
331
76
|
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
332
77
|
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
333
78
|
flipAlignment?: boolean | undefined;
|
|
334
|
-
boundary?: import("@floating-ui/dom").Boundary
|
|
79
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
335
80
|
}> | undefined;
|
|
336
|
-
icon
|
|
337
|
-
closeLabel
|
|
338
|
-
iconPosition
|
|
339
|
-
loading
|
|
340
|
-
loadingLabel
|
|
341
|
-
unselectable
|
|
342
|
-
multiple
|
|
343
|
-
hintLabel
|
|
344
|
-
valid
|
|
345
|
-
validLabel
|
|
346
|
-
invalid
|
|
347
|
-
invalidLabel
|
|
348
|
-
tabindex
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
placement
|
|
354
|
-
strategy
|
|
355
|
-
transitionName
|
|
356
|
-
offset
|
|
357
|
-
autoPlacement
|
|
81
|
+
icon: string | import("../VvIcon/index.js").VvIconProps;
|
|
82
|
+
closeLabel: string;
|
|
83
|
+
iconPosition: "before" | "after";
|
|
84
|
+
loading: boolean;
|
|
85
|
+
loadingLabel: string;
|
|
86
|
+
unselectable: boolean;
|
|
87
|
+
multiple: boolean;
|
|
88
|
+
hintLabel: string;
|
|
89
|
+
valid: boolean;
|
|
90
|
+
validLabel: string | unknown[];
|
|
91
|
+
invalid: boolean;
|
|
92
|
+
invalidLabel: string | unknown[];
|
|
93
|
+
tabindex: string | number;
|
|
94
|
+
options: T[];
|
|
95
|
+
labelKey: string | Function;
|
|
96
|
+
valueKey: string | Function;
|
|
97
|
+
disabledKey: string | Function;
|
|
98
|
+
placement: "top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
99
|
+
strategy: "absolute" | "fixed";
|
|
100
|
+
transitionName: string;
|
|
101
|
+
offset: string | import("@floating-ui/core").OffsetOptions | undefined;
|
|
102
|
+
autoPlacement: boolean | {
|
|
103
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
104
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
105
|
+
altBoundary?: boolean | undefined;
|
|
106
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
107
|
+
crossAxis?: boolean | undefined;
|
|
108
|
+
alignment?: import("@floating-ui/utils").Alignment | null | undefined;
|
|
109
|
+
autoAlignment?: boolean | undefined;
|
|
110
|
+
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
111
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
112
|
+
} | import("@floating-ui/core").Derivable<{
|
|
113
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
114
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
115
|
+
altBoundary?: boolean | undefined;
|
|
116
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
117
|
+
crossAxis?: boolean | undefined;
|
|
118
|
+
alignment?: import("@floating-ui/utils").Alignment | null | undefined;
|
|
119
|
+
autoAlignment?: boolean | undefined;
|
|
120
|
+
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
121
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
122
|
+
}> | undefined;
|
|
123
|
+
arrow: boolean;
|
|
124
|
+
keepOpen: boolean;
|
|
125
|
+
autofocusFirst: boolean;
|
|
126
|
+
triggerWidth: boolean;
|
|
127
|
+
deselectHintLabel: string;
|
|
128
|
+
selectHintLabel: string;
|
|
129
|
+
selectedHintLabel: string;
|
|
130
|
+
autoselectFirst: boolean;
|
|
131
|
+
searchFunction: (search: string, options: T[]) => T[] | Promise<T[]>;
|
|
132
|
+
noResultsLabel: string;
|
|
133
|
+
noOptionsLabel: string;
|
|
134
|
+
deselectActionLabel: string;
|
|
135
|
+
searchable: boolean;
|
|
136
|
+
searchPlaceholder: string;
|
|
137
|
+
debounceSearch: string | number;
|
|
138
|
+
minValues: string | number;
|
|
139
|
+
separator: string;
|
|
140
|
+
native: boolean;
|
|
141
|
+
badges: boolean;
|
|
142
|
+
badgeModifiers: string | string[];
|
|
143
|
+
dropdownModifiers: string | string[];
|
|
144
|
+
autoOpen: boolean;
|
|
145
|
+
}> & Omit<{
|
|
146
|
+
readonly floating: boolean;
|
|
147
|
+
readonly size: boolean | {
|
|
148
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
149
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
150
|
+
altBoundary?: boolean | undefined;
|
|
151
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
152
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
153
|
+
apply?: ((args: import("@floating-ui/dom").MiddlewareState & {
|
|
154
|
+
availableWidth: number;
|
|
155
|
+
availableHeight: number;
|
|
156
|
+
}) => void | Promise<void>) | undefined;
|
|
157
|
+
} | import("@floating-ui/core").Derivable<{
|
|
158
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
159
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
160
|
+
altBoundary?: boolean | undefined;
|
|
161
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
162
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
163
|
+
apply?: ((args: import("@floating-ui/dom").MiddlewareState & {
|
|
164
|
+
availableWidth: number;
|
|
165
|
+
availableHeight: number;
|
|
166
|
+
}) => void | Promise<void>) | undefined;
|
|
167
|
+
}> | undefined;
|
|
168
|
+
readonly shift: boolean | {
|
|
169
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
170
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
171
|
+
altBoundary?: boolean | undefined;
|
|
172
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
173
|
+
crossAxis?: boolean | undefined;
|
|
174
|
+
mainAxis?: boolean | undefined;
|
|
175
|
+
limiter?: {
|
|
176
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
177
|
+
options?: any;
|
|
178
|
+
} | undefined;
|
|
179
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
180
|
+
} | import("@floating-ui/core").Derivable<{
|
|
181
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
182
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
183
|
+
altBoundary?: boolean | undefined;
|
|
184
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
185
|
+
crossAxis?: boolean | undefined;
|
|
186
|
+
mainAxis?: boolean | undefined;
|
|
187
|
+
limiter?: {
|
|
188
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
189
|
+
options?: any;
|
|
190
|
+
} | undefined;
|
|
191
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
192
|
+
}> | undefined;
|
|
193
|
+
readonly disabled: boolean;
|
|
194
|
+
readonly readonly: boolean;
|
|
195
|
+
readonly flip: boolean | {
|
|
196
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
197
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
198
|
+
altBoundary?: boolean | undefined;
|
|
199
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
200
|
+
crossAxis?: boolean | undefined;
|
|
201
|
+
mainAxis?: boolean | undefined;
|
|
202
|
+
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
203
|
+
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
204
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
205
|
+
flipAlignment?: boolean | undefined;
|
|
206
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
207
|
+
} | import("@floating-ui/core").Derivable<{
|
|
208
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
209
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
210
|
+
altBoundary?: boolean | undefined;
|
|
211
|
+
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
212
|
+
crossAxis?: boolean | undefined;
|
|
213
|
+
mainAxis?: boolean | undefined;
|
|
214
|
+
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
215
|
+
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
216
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
217
|
+
flipAlignment?: boolean | undefined;
|
|
218
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
219
|
+
}> | undefined;
|
|
220
|
+
readonly closeLabel: string;
|
|
221
|
+
readonly iconPosition: "before" | "after";
|
|
222
|
+
readonly loading: boolean;
|
|
223
|
+
readonly loadingLabel: string;
|
|
224
|
+
readonly unselectable: boolean;
|
|
225
|
+
readonly multiple: boolean;
|
|
226
|
+
readonly hintLabel: string;
|
|
227
|
+
readonly valid: boolean;
|
|
228
|
+
readonly invalid: boolean;
|
|
229
|
+
readonly tabindex: string | number;
|
|
230
|
+
readonly options: T[];
|
|
231
|
+
readonly labelKey: string | Function;
|
|
232
|
+
readonly valueKey: string | Function;
|
|
233
|
+
readonly disabledKey: string | Function;
|
|
234
|
+
readonly placement: "top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
235
|
+
readonly transitionName: string;
|
|
236
|
+
readonly offset: string | import("@floating-ui/core").OffsetOptions | undefined;
|
|
237
|
+
readonly autoPlacement: boolean | {
|
|
358
238
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
359
239
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
360
240
|
altBoundary?: boolean | undefined;
|
|
@@ -363,7 +243,7 @@ declare const _default: <T extends string | Option>(__VLS_props: {
|
|
|
363
243
|
alignment?: import("@floating-ui/utils").Alignment | null | undefined;
|
|
364
244
|
autoAlignment?: boolean | undefined;
|
|
365
245
|
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
366
|
-
boundary?: import("@floating-ui/dom").Boundary
|
|
246
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
367
247
|
} | import("@floating-ui/core").Derivable<{
|
|
368
248
|
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
369
249
|
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
@@ -373,38 +253,269 @@ declare const _default: <T extends string | Option>(__VLS_props: {
|
|
|
373
253
|
alignment?: import("@floating-ui/utils").Alignment | null | undefined;
|
|
374
254
|
autoAlignment?: boolean | undefined;
|
|
375
255
|
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
376
|
-
boundary?: import("@floating-ui/dom").Boundary
|
|
256
|
+
boundary?: import("@floating-ui/dom").Boundary;
|
|
377
257
|
}> | undefined;
|
|
378
|
-
arrow
|
|
379
|
-
keepOpen
|
|
380
|
-
autofocusFirst
|
|
381
|
-
triggerWidth
|
|
382
|
-
deselectHintLabel
|
|
383
|
-
selectHintLabel
|
|
384
|
-
selectedHintLabel
|
|
385
|
-
autoselectFirst
|
|
258
|
+
readonly arrow: boolean;
|
|
259
|
+
readonly keepOpen: boolean;
|
|
260
|
+
readonly autofocusFirst: boolean;
|
|
261
|
+
readonly triggerWidth: boolean;
|
|
262
|
+
readonly deselectHintLabel: string;
|
|
263
|
+
readonly selectHintLabel: string;
|
|
264
|
+
readonly selectedHintLabel: string;
|
|
265
|
+
readonly autoselectFirst: boolean;
|
|
266
|
+
readonly noResultsLabel: string;
|
|
267
|
+
readonly noOptionsLabel: string;
|
|
268
|
+
readonly deselectActionLabel: string;
|
|
269
|
+
readonly searchable: boolean;
|
|
270
|
+
readonly searchPlaceholder: string;
|
|
271
|
+
readonly debounceSearch: string | number;
|
|
272
|
+
readonly minValues: string | number;
|
|
273
|
+
readonly separator: string;
|
|
274
|
+
readonly native: boolean;
|
|
275
|
+
readonly badges: boolean;
|
|
276
|
+
readonly badgeModifiers: string | string[];
|
|
277
|
+
readonly dropdownModifiers: string | string[];
|
|
278
|
+
readonly autoOpen: boolean;
|
|
279
|
+
readonly name?: string | undefined;
|
|
280
|
+
readonly label?: string | number | undefined;
|
|
281
|
+
readonly modelValue?: string | number | boolean | unknown[] | Record<string, any> | undefined;
|
|
282
|
+
readonly modifiers?: string | string[] | undefined;
|
|
283
|
+
readonly id?: string | number | undefined;
|
|
284
|
+
readonly icon?: string | import("../VvIcon/index.js").VvIconProps | undefined;
|
|
285
|
+
readonly validLabel?: string | unknown[] | undefined;
|
|
286
|
+
readonly invalidLabel?: string | unknown[] | undefined;
|
|
287
|
+
readonly strategy?: "absolute" | "fixed" | undefined;
|
|
386
288
|
readonly placeholder?: string | undefined;
|
|
289
|
+
readonly searchFunction?: ((search: string, options: T[]) => T[] | Promise<T[]>) | undefined;
|
|
290
|
+
readonly maxValues?: string | number | undefined;
|
|
291
|
+
onFocus?: ((args_0: import("@vueuse/core").MaybeElement) => any) | undefined;
|
|
292
|
+
onBlur?: ((args_0: import("@vueuse/core").MaybeElement) => any) | undefined;
|
|
293
|
+
"onUpdate:modelValue"?: ((args_0: any) => any) | undefined;
|
|
387
294
|
"onUpdate:search"?: ((args_0: string) => any) | undefined;
|
|
388
295
|
"onChange:search"?: ((args_0: string) => any) | undefined;
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
296
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
297
|
+
options: {
|
|
298
|
+
type: globalThis.PropType<T[]>;
|
|
299
|
+
default: () => never[];
|
|
300
|
+
};
|
|
301
|
+
searchFunction: {
|
|
302
|
+
type: globalThis.PropType<(search: string, options: T[]) => T[] | Promise<T[]>>;
|
|
303
|
+
default: undefined;
|
|
304
|
+
};
|
|
305
|
+
transitionName: {
|
|
306
|
+
type: StringConstructor;
|
|
307
|
+
default: string;
|
|
308
|
+
};
|
|
309
|
+
modelValue: {
|
|
310
|
+
type: (ObjectConstructor | ArrayConstructor | BooleanConstructor | StringConstructor | NumberConstructor)[];
|
|
311
|
+
default: undefined;
|
|
312
|
+
};
|
|
313
|
+
noResultsLabel: {
|
|
314
|
+
type: StringConstructor;
|
|
315
|
+
default: string;
|
|
316
|
+
};
|
|
317
|
+
noOptionsLabel: {
|
|
318
|
+
type: StringConstructor;
|
|
319
|
+
default: string;
|
|
320
|
+
};
|
|
321
|
+
selectedHintLabel: {
|
|
322
|
+
type: StringConstructor;
|
|
323
|
+
default: string;
|
|
324
|
+
};
|
|
325
|
+
deselectActionLabel: {
|
|
326
|
+
type: StringConstructor;
|
|
327
|
+
default: string;
|
|
328
|
+
};
|
|
329
|
+
selectHintLabel: {
|
|
330
|
+
type: StringConstructor;
|
|
331
|
+
default: string;
|
|
332
|
+
};
|
|
333
|
+
deselectHintLabel: {
|
|
334
|
+
type: StringConstructor;
|
|
335
|
+
default: string;
|
|
336
|
+
};
|
|
337
|
+
closeLabel: {
|
|
338
|
+
type: StringConstructor;
|
|
339
|
+
default: string;
|
|
340
|
+
};
|
|
341
|
+
placeholder: StringConstructor;
|
|
342
|
+
searchable: BooleanConstructor;
|
|
343
|
+
searchPlaceholder: {
|
|
344
|
+
type: StringConstructor;
|
|
345
|
+
default: string;
|
|
346
|
+
};
|
|
347
|
+
debounceSearch: {
|
|
348
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
349
|
+
default: number;
|
|
350
|
+
};
|
|
351
|
+
multiple: BooleanConstructor;
|
|
352
|
+
minValues: {
|
|
353
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
354
|
+
default: number;
|
|
355
|
+
};
|
|
356
|
+
maxValues: (StringConstructor | NumberConstructor)[];
|
|
357
|
+
unselectable: {
|
|
358
|
+
type: BooleanConstructor;
|
|
359
|
+
default: boolean;
|
|
360
|
+
};
|
|
361
|
+
separator: {
|
|
362
|
+
type: StringConstructor;
|
|
363
|
+
default: string;
|
|
364
|
+
};
|
|
365
|
+
native: BooleanConstructor;
|
|
366
|
+
badges: BooleanConstructor;
|
|
367
|
+
badgeModifiers: {
|
|
368
|
+
type: globalThis.PropType<string | string[]>;
|
|
369
|
+
default: string;
|
|
370
|
+
};
|
|
371
|
+
triggerWidth: {
|
|
372
|
+
default: boolean;
|
|
373
|
+
type: BooleanConstructor;
|
|
374
|
+
};
|
|
375
|
+
dropdownModifiers: {
|
|
376
|
+
type: globalThis.PropType<string | string[]>;
|
|
377
|
+
default: string;
|
|
378
|
+
};
|
|
379
|
+
autoOpen: {
|
|
380
|
+
type: BooleanConstructor;
|
|
381
|
+
default: boolean;
|
|
382
|
+
};
|
|
383
|
+
autoselectFirst: {
|
|
384
|
+
type: BooleanConstructor;
|
|
385
|
+
default: boolean;
|
|
386
|
+
};
|
|
387
|
+
keepOpen: {
|
|
388
|
+
type: BooleanConstructor;
|
|
389
|
+
default: boolean;
|
|
390
|
+
};
|
|
391
|
+
label: {
|
|
392
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
393
|
+
default: undefined;
|
|
394
|
+
};
|
|
395
|
+
placement: {
|
|
396
|
+
type: globalThis.PropType<`${import("../../constants").Side}` | `${import("../../constants").Placement}`>;
|
|
397
|
+
default: import("../../constants").Side;
|
|
398
|
+
validator: (value: import("../../constants").Side & import("../../constants").Placement) => boolean;
|
|
399
|
+
};
|
|
400
|
+
strategy: {
|
|
401
|
+
type: globalThis.PropType<`${import("../../constants").Strategy}`>;
|
|
402
|
+
default: undefined;
|
|
403
|
+
validator: (value: import("../../constants").Strategy) => boolean;
|
|
404
|
+
};
|
|
405
|
+
offset: {
|
|
406
|
+
type: globalThis.PropType<import("../../index.js").OffsetOptions | number | string>;
|
|
407
|
+
default: number;
|
|
408
|
+
};
|
|
409
|
+
shift: {
|
|
410
|
+
type: globalThis.PropType<import("../../index.js").ShiftOptions | boolean>;
|
|
411
|
+
default: boolean;
|
|
412
|
+
};
|
|
413
|
+
flip: {
|
|
414
|
+
type: globalThis.PropType<import("../../index.js").FlipOptions | boolean>;
|
|
415
|
+
default: boolean;
|
|
416
|
+
};
|
|
417
|
+
size: {
|
|
418
|
+
type: globalThis.PropType<import("../../index.js").SizeOptions | boolean>;
|
|
419
|
+
default: () => {
|
|
420
|
+
padding: number;
|
|
421
|
+
};
|
|
422
|
+
};
|
|
423
|
+
autoPlacement: {
|
|
424
|
+
type: globalThis.PropType<import("../../index.js").AutoPlacementOptions | boolean>;
|
|
425
|
+
default: boolean;
|
|
426
|
+
};
|
|
427
|
+
arrow: {
|
|
428
|
+
type: BooleanConstructor;
|
|
429
|
+
default: boolean;
|
|
430
|
+
};
|
|
431
|
+
autofocusFirst: {
|
|
432
|
+
type: BooleanConstructor;
|
|
433
|
+
default: boolean;
|
|
434
|
+
};
|
|
435
|
+
floating: {
|
|
436
|
+
type: BooleanConstructor;
|
|
437
|
+
default: boolean;
|
|
438
|
+
};
|
|
439
|
+
icon: {
|
|
440
|
+
type: globalThis.PropType<string | import("../VvIcon/index.js").VvIconProps>;
|
|
441
|
+
default: undefined;
|
|
442
|
+
};
|
|
443
|
+
iconPosition: {
|
|
444
|
+
type: globalThis.PropType<`${import("../../constants").Position}`>;
|
|
445
|
+
default: import("../../constants").Position;
|
|
446
|
+
validation: (value: import("../../constants").Position) => boolean;
|
|
447
|
+
};
|
|
448
|
+
labelKey: {
|
|
449
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
450
|
+
default: string;
|
|
451
|
+
};
|
|
452
|
+
valueKey: {
|
|
453
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
454
|
+
default: string;
|
|
455
|
+
};
|
|
456
|
+
disabledKey: {
|
|
457
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
458
|
+
default: string;
|
|
459
|
+
};
|
|
460
|
+
modifiers: {
|
|
461
|
+
type: globalThis.PropType<string | string[]>;
|
|
462
|
+
default: undefined;
|
|
463
|
+
};
|
|
464
|
+
readonly: {
|
|
465
|
+
type: BooleanConstructor;
|
|
466
|
+
default: boolean;
|
|
467
|
+
};
|
|
468
|
+
disabled: {
|
|
469
|
+
type: BooleanConstructor;
|
|
470
|
+
default: boolean;
|
|
471
|
+
};
|
|
472
|
+
loading: {
|
|
473
|
+
type: BooleanConstructor;
|
|
474
|
+
default: boolean;
|
|
475
|
+
};
|
|
476
|
+
loadingLabel: {
|
|
477
|
+
type: StringConstructor;
|
|
478
|
+
default: string;
|
|
479
|
+
};
|
|
480
|
+
hintLabel: {
|
|
481
|
+
type: StringConstructor;
|
|
482
|
+
default: string;
|
|
483
|
+
};
|
|
484
|
+
invalid: {
|
|
485
|
+
type: BooleanConstructor;
|
|
486
|
+
default: boolean;
|
|
487
|
+
};
|
|
488
|
+
invalidLabel: {
|
|
489
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
490
|
+
default: undefined;
|
|
491
|
+
};
|
|
492
|
+
valid: {
|
|
493
|
+
type: BooleanConstructor;
|
|
494
|
+
default: boolean;
|
|
495
|
+
};
|
|
496
|
+
validLabel: {
|
|
497
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
498
|
+
default: undefined;
|
|
499
|
+
};
|
|
500
|
+
tabindex: {
|
|
501
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
502
|
+
default: number;
|
|
503
|
+
};
|
|
504
|
+
name: {
|
|
505
|
+
type: StringConstructor;
|
|
506
|
+
required: boolean;
|
|
507
|
+
};
|
|
508
|
+
id: (StringConstructor | NumberConstructor)[];
|
|
509
|
+
}>> & {
|
|
510
|
+
onFocus?: ((args_0: import("@vueuse/core").MaybeElement) => any) | undefined;
|
|
511
|
+
onBlur?: ((args_0: import("@vueuse/core").MaybeElement) => any) | undefined;
|
|
512
|
+
"onUpdate:modelValue"?: ((args_0: any) => any) | undefined;
|
|
513
|
+
"onUpdate:search"?: ((args_0: string) => any) | undefined;
|
|
514
|
+
"onChange:search"?: ((args_0: string) => any) | undefined;
|
|
515
|
+
}, "floating" | "size" | "shift" | "label" | "disabled" | "modelValue" | "modifiers" | "readonly" | "flip" | "icon" | "closeLabel" | "iconPosition" | "loading" | "loadingLabel" | "unselectable" | "multiple" | "hintLabel" | "valid" | "validLabel" | "invalid" | "invalidLabel" | "tabindex" | "options" | "labelKey" | "valueKey" | "disabledKey" | "placement" | "strategy" | "transitionName" | "offset" | "autoPlacement" | "arrow" | "keepOpen" | "autofocusFirst" | "triggerWidth" | "deselectHintLabel" | "selectHintLabel" | "selectedHintLabel" | "autoselectFirst" | "searchFunction" | "noResultsLabel" | "noOptionsLabel" | "deselectActionLabel" | "searchable" | "searchPlaceholder" | "debounceSearch" | "minValues" | "separator" | "native" | "badges" | "badgeModifiers" | "dropdownModifiers" | "autoOpen">, "name" | "id" | "onFocus" | "onBlur" | "onUpdate:modelValue" | "placeholder" | "onUpdate:search" | "onChange:search" | "maxValues" | ("floating" | "size" | "shift" | "label" | "disabled" | "modelValue" | "modifiers" | "readonly" | "flip" | "icon" | "closeLabel" | "iconPosition" | "loading" | "loadingLabel" | "unselectable" | "multiple" | "hintLabel" | "valid" | "validLabel" | "invalid" | "invalidLabel" | "tabindex" | "options" | "labelKey" | "valueKey" | "disabledKey" | "placement" | "strategy" | "transitionName" | "offset" | "autoPlacement" | "arrow" | "keepOpen" | "autofocusFirst" | "triggerWidth" | "deselectHintLabel" | "selectHintLabel" | "selectedHintLabel" | "autoselectFirst" | "searchFunction" | "noResultsLabel" | "noOptionsLabel" | "deselectActionLabel" | "searchable" | "searchPlaceholder" | "debounceSearch" | "minValues" | "separator" | "native" | "badges" | "badgeModifiers" | "dropdownModifiers" | "autoOpen")> & {}> & __VLS_BuiltInPublicProps;
|
|
516
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
406
517
|
attrs: any;
|
|
407
|
-
slots: {
|
|
518
|
+
slots: ReturnType<() => {
|
|
408
519
|
"dropdown::before"?(_: {}): any;
|
|
409
520
|
before?(_: {
|
|
410
521
|
valid: boolean;
|
|
@@ -459,244 +570,12 @@ declare const _default: <T extends string | Option>(__VLS_props: {
|
|
|
459
570
|
invalid: boolean;
|
|
460
571
|
loading: boolean;
|
|
461
572
|
}): any;
|
|
462
|
-
}
|
|
463
|
-
emit: ((evt: "update:modelValue", args_0: any) => void) & ((evt: "blur", args_0: import("@vueuse/core").MaybeElement) => void) & ((evt: "focus", args_0: import("@vueuse/core").MaybeElement) => void) & ((evt: "update:search", args_0: string) => void) & ((evt: "change:search", args_0: string) => void);
|
|
573
|
+
}>;
|
|
574
|
+
emit: (((evt: "update:modelValue", args_0: any) => void) & ((evt: "blur", args_0: import("@vueuse/core").MaybeElement) => void) & ((evt: "focus", args_0: import("@vueuse/core").MaybeElement) => void) & ((evt: "update:search", args_0: string) => void) & ((evt: "change:search", args_0: string) => void)) & {};
|
|
464
575
|
}>) => globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
465
576
|
[key: string]: any;
|
|
466
577
|
}> & {
|
|
467
|
-
__ctx?:
|
|
468
|
-
props: {
|
|
469
|
-
floating?: boolean | undefined;
|
|
470
|
-
readonly name?: string | undefined;
|
|
471
|
-
options?: T[] | undefined;
|
|
472
|
-
size?: boolean | {
|
|
473
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
474
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
475
|
-
altBoundary?: boolean | undefined;
|
|
476
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
477
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
478
|
-
apply?: ((args: {
|
|
479
|
-
x: number;
|
|
480
|
-
y: number;
|
|
481
|
-
initialPlacement: import("@floating-ui/utils").Placement;
|
|
482
|
-
placement: import("@floating-ui/utils").Placement;
|
|
483
|
-
strategy: import("@floating-ui/utils").Strategy;
|
|
484
|
-
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
485
|
-
rects: import("@floating-ui/utils").ElementRects;
|
|
486
|
-
platform: import("@floating-ui/core").Platform;
|
|
487
|
-
elements: import("@floating-ui/dom").Elements;
|
|
488
|
-
} & {
|
|
489
|
-
availableWidth: number;
|
|
490
|
-
availableHeight: number;
|
|
491
|
-
}) => void | Promise<void>) | undefined;
|
|
492
|
-
} | import("@floating-ui/core").Derivable<{
|
|
493
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
494
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
495
|
-
altBoundary?: boolean | undefined;
|
|
496
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
497
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
498
|
-
apply?: ((args: {
|
|
499
|
-
x: number;
|
|
500
|
-
y: number;
|
|
501
|
-
initialPlacement: import("@floating-ui/utils").Placement;
|
|
502
|
-
placement: import("@floating-ui/utils").Placement;
|
|
503
|
-
strategy: import("@floating-ui/utils").Strategy;
|
|
504
|
-
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
505
|
-
rects: import("@floating-ui/utils").ElementRects;
|
|
506
|
-
platform: import("@floating-ui/core").Platform;
|
|
507
|
-
elements: import("@floating-ui/dom").Elements;
|
|
508
|
-
} & {
|
|
509
|
-
availableWidth: number;
|
|
510
|
-
availableHeight: number;
|
|
511
|
-
}) => void | Promise<void>) | undefined;
|
|
512
|
-
}> | undefined;
|
|
513
|
-
label?: string | number | undefined;
|
|
514
|
-
disabled?: boolean | undefined;
|
|
515
|
-
modelValue?: string | number | boolean | unknown[] | Record<string, any> | undefined;
|
|
516
|
-
modifiers?: string | string[] | undefined;
|
|
517
|
-
shift?: boolean | {
|
|
518
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
519
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
520
|
-
altBoundary?: boolean | undefined;
|
|
521
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
522
|
-
crossAxis?: boolean | undefined;
|
|
523
|
-
mainAxis?: boolean | undefined;
|
|
524
|
-
limiter?: {
|
|
525
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
526
|
-
options?: any;
|
|
527
|
-
} | undefined;
|
|
528
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
529
|
-
} | import("@floating-ui/core").Derivable<{
|
|
530
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
531
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
532
|
-
altBoundary?: boolean | undefined;
|
|
533
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
534
|
-
crossAxis?: boolean | undefined;
|
|
535
|
-
mainAxis?: boolean | undefined;
|
|
536
|
-
limiter?: {
|
|
537
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
538
|
-
options?: any;
|
|
539
|
-
} | undefined;
|
|
540
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
541
|
-
}> | undefined;
|
|
542
|
-
readonly?: boolean | undefined;
|
|
543
|
-
readonly id?: string | number | undefined;
|
|
544
|
-
onFocus?: ((args_0: import("@vueuse/core").MaybeElement) => any) | undefined;
|
|
545
|
-
onBlur?: ((args_0: import("@vueuse/core").MaybeElement) => any) | undefined;
|
|
546
|
-
flip?: boolean | {
|
|
547
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
548
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
549
|
-
altBoundary?: boolean | undefined;
|
|
550
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
551
|
-
crossAxis?: boolean | undefined;
|
|
552
|
-
mainAxis?: boolean | undefined;
|
|
553
|
-
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
554
|
-
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
555
|
-
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
556
|
-
flipAlignment?: boolean | undefined;
|
|
557
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
558
|
-
} | import("@floating-ui/core").Derivable<{
|
|
559
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
560
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
561
|
-
altBoundary?: boolean | undefined;
|
|
562
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
563
|
-
crossAxis?: boolean | undefined;
|
|
564
|
-
mainAxis?: boolean | undefined;
|
|
565
|
-
fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
566
|
-
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
567
|
-
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
568
|
-
flipAlignment?: boolean | undefined;
|
|
569
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
570
|
-
}> | undefined;
|
|
571
|
-
icon?: string | import("../VvIcon/index.js").VvIconProps | undefined;
|
|
572
|
-
closeLabel?: string | undefined;
|
|
573
|
-
iconPosition?: "before" | "after" | undefined;
|
|
574
|
-
loading?: boolean | undefined;
|
|
575
|
-
loadingLabel?: string | undefined;
|
|
576
|
-
unselectable?: boolean | undefined;
|
|
577
|
-
multiple?: boolean | undefined;
|
|
578
|
-
hintLabel?: string | undefined;
|
|
579
|
-
valid?: boolean | undefined;
|
|
580
|
-
validLabel?: string | unknown[] | undefined;
|
|
581
|
-
invalid?: boolean | undefined;
|
|
582
|
-
invalidLabel?: string | unknown[] | undefined;
|
|
583
|
-
tabindex?: string | number | undefined;
|
|
584
|
-
labelKey?: string | Function | undefined;
|
|
585
|
-
valueKey?: string | Function | undefined;
|
|
586
|
-
disabledKey?: string | Function | undefined;
|
|
587
|
-
"onUpdate:modelValue"?: ((args_0: any) => any) | undefined;
|
|
588
|
-
placement?: "top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | undefined;
|
|
589
|
-
strategy?: "absolute" | "fixed" | undefined;
|
|
590
|
-
transitionName?: string | undefined;
|
|
591
|
-
offset?: string | import("@floating-ui/core").OffsetOptions | undefined;
|
|
592
|
-
autoPlacement?: boolean | {
|
|
593
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
594
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
595
|
-
altBoundary?: boolean | undefined;
|
|
596
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
597
|
-
crossAxis?: boolean | undefined;
|
|
598
|
-
alignment?: import("@floating-ui/utils").Alignment | null | undefined;
|
|
599
|
-
autoAlignment?: boolean | undefined;
|
|
600
|
-
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
601
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
602
|
-
} | import("@floating-ui/core").Derivable<{
|
|
603
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
604
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
605
|
-
altBoundary?: boolean | undefined;
|
|
606
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
607
|
-
crossAxis?: boolean | undefined;
|
|
608
|
-
alignment?: import("@floating-ui/utils").Alignment | null | undefined;
|
|
609
|
-
autoAlignment?: boolean | undefined;
|
|
610
|
-
allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
|
|
611
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
612
|
-
}> | undefined;
|
|
613
|
-
arrow?: boolean | undefined;
|
|
614
|
-
keepOpen?: boolean | undefined;
|
|
615
|
-
autofocusFirst?: boolean | undefined;
|
|
616
|
-
triggerWidth?: boolean | undefined;
|
|
617
|
-
deselectHintLabel?: string | undefined;
|
|
618
|
-
selectHintLabel?: string | undefined;
|
|
619
|
-
selectedHintLabel?: string | undefined;
|
|
620
|
-
autoselectFirst?: boolean | undefined;
|
|
621
|
-
readonly placeholder?: string | undefined;
|
|
622
|
-
"onUpdate:search"?: ((args_0: string) => any) | undefined;
|
|
623
|
-
"onChange:search"?: ((args_0: string) => any) | undefined;
|
|
624
|
-
searchFunction?: ((search: string, options: T[]) => T[] | Promise<T[]>) | undefined;
|
|
625
|
-
noResultsLabel?: string | undefined;
|
|
626
|
-
noOptionsLabel?: string | undefined;
|
|
627
|
-
deselectActionLabel?: string | undefined;
|
|
628
|
-
searchable?: boolean | undefined;
|
|
629
|
-
searchPlaceholder?: string | undefined;
|
|
630
|
-
debounceSearch?: string | number | undefined;
|
|
631
|
-
minValues?: string | number | undefined;
|
|
632
|
-
readonly maxValues?: string | number | undefined;
|
|
633
|
-
separator?: string | undefined;
|
|
634
|
-
native?: boolean | undefined;
|
|
635
|
-
badges?: boolean | undefined;
|
|
636
|
-
badgeModifiers?: string | string[] | undefined;
|
|
637
|
-
dropdownModifiers?: string | string[] | undefined;
|
|
638
|
-
autoOpen?: boolean | undefined;
|
|
639
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
640
|
-
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
641
|
-
attrs: any;
|
|
642
|
-
slots: {
|
|
643
|
-
"dropdown::before"?(_: {}): any;
|
|
644
|
-
before?(_: {
|
|
645
|
-
valid: boolean;
|
|
646
|
-
invalid: boolean;
|
|
647
|
-
modelValue: string | number | boolean | unknown[] | Record<string, any> | undefined;
|
|
648
|
-
}): any;
|
|
649
|
-
value?(_: {
|
|
650
|
-
selectedOptions: T[];
|
|
651
|
-
onInput: (option: T) => void;
|
|
652
|
-
}): any;
|
|
653
|
-
after?(_: {
|
|
654
|
-
valid: boolean;
|
|
655
|
-
invalid: boolean;
|
|
656
|
-
modelValue: string | number | boolean | unknown[] | Record<string, any> | undefined;
|
|
657
|
-
}): any;
|
|
658
|
-
option?(_: {
|
|
659
|
-
option: T;
|
|
660
|
-
selectedOptions: T[];
|
|
661
|
-
selected: boolean;
|
|
662
|
-
disabled: boolean;
|
|
663
|
-
}): any;
|
|
664
|
-
option?(_: {
|
|
665
|
-
option: T;
|
|
666
|
-
selectedOptions: T[];
|
|
667
|
-
selected: boolean;
|
|
668
|
-
disabled: boolean;
|
|
669
|
-
}): any;
|
|
670
|
-
"no-options"?(_: {}): any;
|
|
671
|
-
"no-results"?(_: {}): any;
|
|
672
|
-
"dropdown::after"?(_: {}): any;
|
|
673
|
-
hint?(_: {
|
|
674
|
-
modelValue: unknown;
|
|
675
|
-
valid: boolean;
|
|
676
|
-
invalid: boolean;
|
|
677
|
-
loading: boolean;
|
|
678
|
-
}): any;
|
|
679
|
-
loading?(_: {
|
|
680
|
-
modelValue: unknown;
|
|
681
|
-
valid: boolean;
|
|
682
|
-
invalid: boolean;
|
|
683
|
-
loading: boolean;
|
|
684
|
-
}): any;
|
|
685
|
-
valid?(_: {
|
|
686
|
-
modelValue: unknown;
|
|
687
|
-
valid: boolean;
|
|
688
|
-
invalid: boolean;
|
|
689
|
-
loading: boolean;
|
|
690
|
-
}): any;
|
|
691
|
-
invalid?(_: {
|
|
692
|
-
modelValue: unknown;
|
|
693
|
-
valid: boolean;
|
|
694
|
-
invalid: boolean;
|
|
695
|
-
loading: boolean;
|
|
696
|
-
}): any;
|
|
697
|
-
};
|
|
698
|
-
emit: ((evt: "update:modelValue", args_0: any) => void) & ((evt: "blur", args_0: import("@vueuse/core").MaybeElement) => void) & ((evt: "focus", args_0: import("@vueuse/core").MaybeElement) => void) & ((evt: "update:search", args_0: string) => void) & ((evt: "change:search", args_0: string) => void);
|
|
699
|
-
} | undefined;
|
|
578
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
700
579
|
};
|
|
701
580
|
export default _default;
|
|
702
581
|
type __VLS_Prettify<T> = {
|