@volverjs/ui-vue 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/VvAccordion/VvAccordion.vue.d.ts +2 -1
- package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +3 -2
- package/dist/components/VvAction/VvAction.vue.d.ts +2 -1
- package/dist/components/VvAlert/VvAlert.es.js +8 -8
- package/dist/components/VvAlert/VvAlert.umd.js +1 -1
- package/dist/components/VvAlert/VvAlert.vue.d.ts +2 -1
- package/dist/components/VvAlertGroup/VvAlertGroup.es.js +8 -8
- package/dist/components/VvAlertGroup/VvAlertGroup.umd.js +1 -1
- package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +2 -1
- package/dist/components/VvAvatar/VvAvatar.vue.d.ts +2 -1
- package/dist/components/VvAvatarGroup/VvAvatarGroup.vue.d.ts +2 -1
- package/dist/components/VvBadge/VvBadge.vue.d.ts +2 -1
- package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +2 -1
- package/dist/components/VvButton/VvButton.es.js +8 -8
- package/dist/components/VvButton/VvButton.umd.js +1 -1
- package/dist/components/VvButton/VvButton.vue.d.ts +2 -1
- package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +2 -1
- package/dist/components/VvCard/VvCard.vue.d.ts +2 -1
- package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +3 -2
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +2 -1
- package/dist/components/VvCombobox/VvCombobox.es.js +8 -8
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +256 -317
- package/dist/components/VvDialog/VvDialog.vue.d.ts +2 -1
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +2 -1
- package/dist/components/VvDropdown/VvDropdownAction.vue.d.ts +3 -2
- package/dist/components/VvDropdown/VvDropdownItem.vue.d.ts +2 -1
- package/dist/components/VvDropdown/VvDropdownOptgroup.vue.d.ts +2 -1
- package/dist/components/VvDropdown/VvDropdownOption.vue.d.ts +2 -1
- package/dist/components/VvIcon/VvIcon.es.js +8 -8
- package/dist/components/VvIcon/VvIcon.umd.js +1 -1
- package/dist/components/VvIcon/VvIcon.vue.d.ts +2 -1
- package/dist/components/VvInputFile/VvInputFile.es.js +8 -8
- package/dist/components/VvInputFile/VvInputFile.umd.js +1 -1
- package/dist/components/VvInputFile/VvInputFile.vue.d.ts +2 -1
- package/dist/components/VvInputText/VvInputText.es.js +8 -8
- package/dist/components/VvInputText/VvInputText.umd.js +1 -1
- package/dist/components/VvInputText/VvInputText.vue.d.ts +2 -1
- package/dist/components/VvNav/VvNav.vue.d.ts +2 -1
- package/dist/components/VvNav/VvNavItem.vue.d.ts +2 -1
- package/dist/components/VvNav/VvNavSeparator.vue.d.ts +2 -1
- package/dist/components/VvProgress/VvProgress.vue.d.ts +2 -1
- package/dist/components/VvRadio/VvRadio.vue.d.ts +3 -2
- package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +2 -1
- package/dist/components/VvSelect/VvSelect.es.js +8 -8
- package/dist/components/VvSelect/VvSelect.umd.js +1 -1
- package/dist/components/VvSelect/VvSelect.vue.d.ts +128 -71
- package/dist/components/VvTab/VvTab.vue.d.ts +2 -1
- package/dist/components/VvTextarea/VvTextarea.es.js +8 -8
- package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +2 -1
- package/dist/components/VvTooltip/VvTooltip.vue.d.ts +2 -1
- package/dist/components/index.es.js +8 -8
- package/dist/components/index.umd.js +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +14 -14
- package/package.json +18 -18
|
@@ -1,322 +1,260 @@
|
|
|
1
1
|
import type { Option } from '../../types/generic';
|
|
2
|
-
declare const
|
|
3
|
-
props: __VLS_PrettifyLocal<
|
|
4
|
-
floating: boolean;
|
|
5
|
-
placement: "top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
6
|
-
strategy: "absolute" | "fixed";
|
|
7
|
-
size: boolean | {
|
|
8
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
9
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
10
|
-
altBoundary?: boolean | undefined;
|
|
11
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
12
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
13
|
-
apply?: ((args: import("@floating-ui/dom").MiddlewareState & {
|
|
14
|
-
availableWidth: number;
|
|
15
|
-
availableHeight: number;
|
|
16
|
-
}) => void | Promise<void>) | undefined;
|
|
17
|
-
} | import("@floating-ui/dom").Derivable<{
|
|
18
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
19
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
20
|
-
altBoundary?: boolean | undefined;
|
|
21
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
22
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
23
|
-
apply?: ((args: import("@floating-ui/dom").MiddlewareState & {
|
|
24
|
-
availableWidth: number;
|
|
25
|
-
availableHeight: number;
|
|
26
|
-
}) => void | Promise<void>) | undefined;
|
|
27
|
-
}> | undefined;
|
|
28
|
-
shift: boolean | {
|
|
29
|
-
crossAxis?: boolean | undefined;
|
|
30
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
31
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
32
|
-
altBoundary?: boolean | undefined;
|
|
33
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
34
|
-
mainAxis?: boolean | undefined;
|
|
35
|
-
limiter?: {
|
|
36
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
37
|
-
options?: any;
|
|
38
|
-
} | undefined;
|
|
39
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
40
|
-
} | import("@floating-ui/dom").Derivable<{
|
|
41
|
-
crossAxis?: boolean | undefined;
|
|
42
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
43
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
44
|
-
altBoundary?: boolean | undefined;
|
|
45
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
46
|
-
mainAxis?: boolean | undefined;
|
|
47
|
-
limiter?: {
|
|
48
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
49
|
-
options?: any;
|
|
50
|
-
} | undefined;
|
|
51
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
52
|
-
}> | undefined;
|
|
53
|
-
label: string | number;
|
|
54
|
-
disabled: boolean;
|
|
55
|
-
modelValue: string | number | boolean | unknown[] | Record<string, any>;
|
|
56
|
-
modifiers: string | string[];
|
|
57
|
-
closeLabel: string;
|
|
58
|
-
icon: string | import("../VvIcon").VvIconProps;
|
|
59
|
-
iconPosition: "before" | "after";
|
|
60
|
-
flip: boolean | {
|
|
61
|
-
crossAxis?: boolean | "alignment" | undefined;
|
|
62
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
63
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
64
|
-
altBoundary?: boolean | undefined;
|
|
65
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
66
|
-
mainAxis?: boolean | undefined;
|
|
67
|
-
fallbackPlacements?: Array<import("@floating-ui/utils").Placement> | undefined;
|
|
68
|
-
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
69
|
-
fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
|
|
70
|
-
flipAlignment?: boolean | undefined;
|
|
71
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
72
|
-
} | import("@floating-ui/dom").Derivable<{
|
|
73
|
-
crossAxis?: boolean | "alignment" | undefined;
|
|
74
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
75
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
76
|
-
altBoundary?: boolean | undefined;
|
|
77
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
78
|
-
mainAxis?: boolean | undefined;
|
|
79
|
-
fallbackPlacements?: Array<import("@floating-ui/utils").Placement> | undefined;
|
|
80
|
-
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
81
|
-
fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
|
|
82
|
-
flipAlignment?: boolean | undefined;
|
|
83
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
84
|
-
}> | undefined;
|
|
85
|
-
required: boolean;
|
|
86
|
-
loading: boolean;
|
|
87
|
-
loadingLabel: string;
|
|
88
|
-
unselectable: boolean;
|
|
89
|
-
multiple: boolean;
|
|
90
|
-
readonly: boolean;
|
|
91
|
-
hintLabel: string;
|
|
92
|
-
invalid: boolean;
|
|
93
|
-
invalidLabel: string | unknown[];
|
|
94
|
-
valid: boolean;
|
|
95
|
-
validLabel: string | unknown[];
|
|
96
|
-
tabindex: string | number;
|
|
97
|
-
options: T[];
|
|
98
|
-
labelKey: string | Function;
|
|
99
|
-
valueKey: string | Function;
|
|
100
|
-
disabledKey: string | Function;
|
|
101
|
-
transitionName: string;
|
|
102
|
-
offset: string | import("@floating-ui/dom").OffsetOptions | undefined;
|
|
103
|
-
autoPlacement: boolean | {
|
|
104
|
-
crossAxis?: boolean | undefined;
|
|
105
|
-
alignment?: (import("@floating-ui/utils").Alignment | null) | undefined;
|
|
106
|
-
autoAlignment?: boolean | undefined;
|
|
107
|
-
allowedPlacements?: Array<import("@floating-ui/utils").Placement> | undefined;
|
|
108
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
109
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
110
|
-
altBoundary?: boolean | undefined;
|
|
111
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
112
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
113
|
-
} | import("@floating-ui/dom").Derivable<{
|
|
114
|
-
crossAxis?: boolean | undefined;
|
|
115
|
-
alignment?: (import("@floating-ui/utils").Alignment | null) | undefined;
|
|
116
|
-
autoAlignment?: boolean | undefined;
|
|
117
|
-
allowedPlacements?: Array<import("@floating-ui/utils").Placement> | undefined;
|
|
118
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
119
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
120
|
-
altBoundary?: boolean | undefined;
|
|
121
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
122
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
123
|
-
}> | undefined;
|
|
124
|
-
arrow: boolean;
|
|
125
|
-
keepOpen: boolean;
|
|
126
|
-
autofocusFirst: boolean;
|
|
127
|
-
triggerWidth: boolean;
|
|
128
|
-
focusOnHover: boolean;
|
|
129
|
-
deselectHintLabel: string;
|
|
130
|
-
selectHintLabel: string;
|
|
131
|
-
selectedHintLabel: string;
|
|
132
|
-
autoselectFirst: boolean;
|
|
133
|
-
showClearAction: boolean;
|
|
134
|
-
iconClear: string | import("../VvIcon").VvIconProps;
|
|
135
|
-
labelClear: string;
|
|
136
|
-
searchFunction: (search: string, options: T[]) => T[] | Promise<T[]>;
|
|
137
|
-
noResultsLabel: string;
|
|
138
|
-
noOptionsLabel: string;
|
|
139
|
-
selectedOptionNotFoundLabel: string;
|
|
140
|
-
deselectActionLabel: string;
|
|
141
|
-
addOptionHintLabel: string;
|
|
142
|
-
addable: boolean;
|
|
143
|
-
searchable: boolean;
|
|
144
|
-
keepSearch: boolean;
|
|
145
|
-
searchPlaceholder: string;
|
|
146
|
-
debounceSearch: string | number;
|
|
147
|
-
minValues: string | number;
|
|
148
|
-
separator: string;
|
|
149
|
-
native: boolean;
|
|
150
|
-
badges: boolean;
|
|
151
|
-
badgeModifiers: string | string[];
|
|
152
|
-
dropdownModifiers: string | string[];
|
|
153
|
-
autoOpen: boolean;
|
|
154
|
-
}> & Omit<{
|
|
155
|
-
readonly floating: boolean;
|
|
156
|
-
readonly placement: "top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
157
|
-
readonly size: boolean | {
|
|
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 | undefined;
|
|
163
|
-
apply?: ((args: import("@floating-ui/dom").MiddlewareState & {
|
|
164
|
-
availableWidth: number;
|
|
165
|
-
availableHeight: number;
|
|
166
|
-
}) => void | Promise<void>) | undefined;
|
|
167
|
-
} | import("@floating-ui/dom").Derivable<{
|
|
168
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
169
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
170
|
-
altBoundary?: boolean | undefined;
|
|
171
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
172
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
173
|
-
apply?: ((args: import("@floating-ui/dom").MiddlewareState & {
|
|
174
|
-
availableWidth: number;
|
|
175
|
-
availableHeight: number;
|
|
176
|
-
}) => void | Promise<void>) | undefined;
|
|
177
|
-
}>;
|
|
178
|
-
readonly shift: boolean | {
|
|
179
|
-
crossAxis?: boolean | undefined;
|
|
180
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
181
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
182
|
-
altBoundary?: boolean | undefined;
|
|
183
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
184
|
-
mainAxis?: boolean | undefined;
|
|
185
|
-
limiter?: {
|
|
186
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
187
|
-
options?: any;
|
|
188
|
-
} | undefined;
|
|
189
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
190
|
-
} | import("@floating-ui/dom").Derivable<{
|
|
191
|
-
crossAxis?: boolean | undefined;
|
|
192
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
193
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
194
|
-
altBoundary?: boolean | undefined;
|
|
195
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
196
|
-
mainAxis?: boolean | undefined;
|
|
197
|
-
limiter?: {
|
|
198
|
-
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
|
|
199
|
-
options?: any;
|
|
200
|
-
} | undefined;
|
|
201
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
202
|
-
}>;
|
|
203
|
-
readonly disabled: boolean;
|
|
204
|
-
readonly closeLabel: string;
|
|
205
|
-
readonly iconPosition: "before" | "after";
|
|
206
|
-
readonly flip: boolean | {
|
|
207
|
-
crossAxis?: boolean | "alignment" | undefined;
|
|
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
|
-
mainAxis?: boolean | undefined;
|
|
213
|
-
fallbackPlacements?: Array<import("@floating-ui/utils").Placement> | undefined;
|
|
214
|
-
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
215
|
-
fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
|
|
216
|
-
flipAlignment?: boolean | undefined;
|
|
217
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
218
|
-
} | import("@floating-ui/dom").Derivable<{
|
|
219
|
-
crossAxis?: boolean | "alignment" | undefined;
|
|
220
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
221
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
222
|
-
altBoundary?: boolean | undefined;
|
|
223
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
224
|
-
mainAxis?: boolean | undefined;
|
|
225
|
-
fallbackPlacements?: Array<import("@floating-ui/utils").Placement> | undefined;
|
|
226
|
-
fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
|
|
227
|
-
fallbackAxisSideDirection?: "none" | "start" | "end" | undefined;
|
|
228
|
-
flipAlignment?: boolean | undefined;
|
|
229
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
230
|
-
}>;
|
|
231
|
-
readonly required: boolean;
|
|
232
|
-
readonly loading: boolean;
|
|
233
|
-
readonly loadingLabel: string;
|
|
234
|
-
readonly unselectable: boolean;
|
|
235
|
-
readonly multiple: boolean;
|
|
236
|
-
readonly readonly: boolean;
|
|
237
|
-
readonly hintLabel: string;
|
|
238
|
-
readonly invalid: boolean;
|
|
239
|
-
readonly valid: boolean;
|
|
240
|
-
readonly tabindex: string | number;
|
|
241
|
-
readonly options: T[];
|
|
242
|
-
readonly labelKey: string | Function;
|
|
243
|
-
readonly valueKey: string | Function;
|
|
244
|
-
readonly disabledKey: string | Function;
|
|
245
|
-
readonly transitionName: string;
|
|
246
|
-
readonly offset: string | import("@floating-ui/dom").OffsetOptions;
|
|
247
|
-
readonly autoPlacement: boolean | {
|
|
248
|
-
crossAxis?: boolean | undefined;
|
|
249
|
-
alignment?: (import("@floating-ui/utils").Alignment | null) | undefined;
|
|
250
|
-
autoAlignment?: boolean | undefined;
|
|
251
|
-
allowedPlacements?: Array<import("@floating-ui/utils").Placement> | undefined;
|
|
252
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
253
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
254
|
-
altBoundary?: boolean | undefined;
|
|
255
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
256
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
257
|
-
} | import("@floating-ui/dom").Derivable<{
|
|
258
|
-
crossAxis?: boolean | undefined;
|
|
259
|
-
alignment?: (import("@floating-ui/utils").Alignment | null) | undefined;
|
|
260
|
-
autoAlignment?: boolean | undefined;
|
|
261
|
-
allowedPlacements?: Array<import("@floating-ui/utils").Placement> | undefined;
|
|
262
|
-
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
263
|
-
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
264
|
-
altBoundary?: boolean | undefined;
|
|
265
|
-
padding?: import("@floating-ui/utils").Padding | undefined;
|
|
266
|
-
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
267
|
-
}>;
|
|
268
|
-
readonly arrow: boolean;
|
|
269
|
-
readonly keepOpen: boolean;
|
|
270
|
-
readonly autofocusFirst: boolean;
|
|
271
|
-
readonly triggerWidth: boolean;
|
|
272
|
-
readonly focusOnHover: boolean;
|
|
273
|
-
readonly deselectHintLabel: string;
|
|
274
|
-
readonly selectHintLabel: string;
|
|
275
|
-
readonly selectedHintLabel: string;
|
|
276
|
-
readonly autoselectFirst: boolean;
|
|
277
|
-
readonly showClearAction: boolean;
|
|
278
|
-
readonly iconClear: string | import("../VvIcon").VvIconProps;
|
|
279
|
-
readonly labelClear: string;
|
|
280
|
-
readonly noResultsLabel: string;
|
|
281
|
-
readonly noOptionsLabel: string;
|
|
282
|
-
readonly selectedOptionNotFoundLabel: string;
|
|
283
|
-
readonly deselectActionLabel: string;
|
|
284
|
-
readonly addOptionHintLabel: string;
|
|
285
|
-
readonly addable: boolean;
|
|
286
|
-
readonly searchable: boolean;
|
|
287
|
-
readonly keepSearch: boolean;
|
|
288
|
-
readonly searchPlaceholder: string;
|
|
289
|
-
readonly debounceSearch: string | number;
|
|
290
|
-
readonly minValues: string | number;
|
|
291
|
-
readonly separator: string;
|
|
292
|
-
readonly native: boolean;
|
|
293
|
-
readonly badges: boolean;
|
|
294
|
-
readonly badgeModifiers: string | string[];
|
|
295
|
-
readonly dropdownModifiers: string | string[];
|
|
296
|
-
readonly autoOpen: boolean;
|
|
297
|
-
readonly strategy?: "absolute" | "fixed" | undefined;
|
|
298
|
-
readonly name?: string | undefined;
|
|
299
|
-
readonly label?: string | number | undefined;
|
|
300
|
-
readonly modelValue?: string | number | boolean | unknown[] | Record<string, any> | undefined;
|
|
301
|
-
readonly modifiers?: string | string[] | undefined;
|
|
302
|
-
readonly id?: string | number | undefined;
|
|
303
|
-
readonly placeholder?: string | undefined;
|
|
304
|
-
readonly icon?: string | import("../VvIcon").VvIconProps | undefined;
|
|
305
|
-
readonly invalidLabel?: string | unknown[] | undefined;
|
|
306
|
-
readonly validLabel?: string | unknown[] | undefined;
|
|
307
|
-
readonly searchFunction?: ((search: string, options: T[]) => T[] | Promise<T[]>) | undefined;
|
|
308
|
-
readonly maxValues?: string | number | undefined;
|
|
309
|
-
readonly onClear?: (() => any) | undefined;
|
|
310
|
-
readonly "onUpdate:modelValue"?: ((args_0: any) => any) | undefined;
|
|
311
|
-
readonly onBlur?: ((args_0: import("@vueuse/core").MaybeElement) => any) | undefined;
|
|
312
|
-
readonly onFocus?: ((args_0: import("@vueuse/core").MaybeElement) => any) | undefined;
|
|
313
|
-
readonly "onUpdate:search"?: ((...args: unknown[]) => any) | undefined;
|
|
314
|
-
readonly "onUpdate:options"?: ((args_0: (string | Option)[]) => any) | undefined;
|
|
315
|
-
readonly "onChange:search"?: ((args_0: string) => any) | undefined;
|
|
316
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "floating" | "placement" | "strategy" | "size" | "shift" | "label" | "disabled" | "modelValue" | "modifiers" | "closeLabel" | "icon" | "iconPosition" | "flip" | "required" | "loading" | "loadingLabel" | "unselectable" | "multiple" | "readonly" | "hintLabel" | "invalid" | "invalidLabel" | "valid" | "validLabel" | "tabindex" | "options" | "labelKey" | "valueKey" | "disabledKey" | "transitionName" | "offset" | "autoPlacement" | "arrow" | "keepOpen" | "autofocusFirst" | "triggerWidth" | "focusOnHover" | "deselectHintLabel" | "selectHintLabel" | "selectedHintLabel" | "autoselectFirst" | "showClearAction" | "iconClear" | "labelClear" | "searchFunction" | "noResultsLabel" | "noOptionsLabel" | "selectedOptionNotFoundLabel" | "deselectActionLabel" | "addOptionHintLabel" | "addable" | "searchable" | "keepSearch" | "searchPlaceholder" | "debounceSearch" | "minValues" | "separator" | "native" | "badges" | "badgeModifiers" | "dropdownModifiers" | "autoOpen">, "name" | "id" | "onFocus" | "onBlur" | "placeholder" | "onClear" | "onUpdate:modelValue" | "maxValues" | "onUpdate:search" | "onUpdate:options" | "onChange:search" | ("floating" | "placement" | "strategy" | "size" | "shift" | "label" | "disabled" | "modelValue" | "modifiers" | "closeLabel" | "icon" | "iconPosition" | "flip" | "required" | "loading" | "loadingLabel" | "unselectable" | "multiple" | "readonly" | "hintLabel" | "invalid" | "invalidLabel" | "valid" | "validLabel" | "tabindex" | "options" | "labelKey" | "valueKey" | "disabledKey" | "transitionName" | "offset" | "autoPlacement" | "arrow" | "keepOpen" | "autofocusFirst" | "triggerWidth" | "focusOnHover" | "deselectHintLabel" | "selectHintLabel" | "selectedHintLabel" | "autoselectFirst" | "showClearAction" | "iconClear" | "labelClear" | "searchFunction" | "noResultsLabel" | "noOptionsLabel" | "selectedOptionNotFoundLabel" | "deselectActionLabel" | "addOptionHintLabel" | "addable" | "searchable" | "keepSearch" | "searchPlaceholder" | "debounceSearch" | "minValues" | "separator" | "native" | "badges" | "badgeModifiers" | "dropdownModifiers" | "autoOpen")> & {
|
|
2
|
+
declare const __VLS_export: <T extends string | Option>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3
|
+
props: __VLS_PrettifyLocal<{
|
|
317
4
|
search?: string;
|
|
318
|
-
} &
|
|
319
|
-
|
|
5
|
+
} & import("vue").ExtractPublicPropTypes<{
|
|
6
|
+
options: {
|
|
7
|
+
type: globalThis.PropType<T[]>;
|
|
8
|
+
default: () => never[];
|
|
9
|
+
};
|
|
10
|
+
searchFunction: {
|
|
11
|
+
type: globalThis.PropType<(search: string, options: T[]) => T[] | Promise<T[]>>;
|
|
12
|
+
default: undefined;
|
|
13
|
+
};
|
|
14
|
+
transitionName: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
modelValue: {
|
|
19
|
+
type: (ObjectConstructor | ArrayConstructor | BooleanConstructor | StringConstructor | NumberConstructor)[];
|
|
20
|
+
default: undefined;
|
|
21
|
+
};
|
|
22
|
+
noResultsLabel: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
noOptionsLabel: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
selectedOptionNotFoundLabel: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
selectedHintLabel: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
deselectActionLabel: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
selectHintLabel: {
|
|
43
|
+
type: StringConstructor;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
deselectHintLabel: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
addOptionHintLabel: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
54
|
+
closeLabel: {
|
|
55
|
+
type: StringConstructor;
|
|
56
|
+
default: string;
|
|
57
|
+
};
|
|
58
|
+
placeholder: StringConstructor;
|
|
59
|
+
addable: BooleanConstructor;
|
|
60
|
+
searchable: BooleanConstructor;
|
|
61
|
+
keepSearch: BooleanConstructor;
|
|
62
|
+
searchPlaceholder: {
|
|
63
|
+
type: StringConstructor;
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
debounceSearch: {
|
|
67
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
68
|
+
default: number;
|
|
69
|
+
};
|
|
70
|
+
multiple: BooleanConstructor;
|
|
71
|
+
minValues: {
|
|
72
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
73
|
+
default: number;
|
|
74
|
+
};
|
|
75
|
+
maxValues: (StringConstructor | NumberConstructor)[];
|
|
76
|
+
unselectable: {
|
|
77
|
+
type: BooleanConstructor;
|
|
78
|
+
default: boolean;
|
|
79
|
+
};
|
|
80
|
+
separator: {
|
|
81
|
+
type: StringConstructor;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
native: BooleanConstructor;
|
|
85
|
+
badges: BooleanConstructor;
|
|
86
|
+
badgeModifiers: {
|
|
87
|
+
type: PropType<string | string[]>;
|
|
88
|
+
default: string;
|
|
89
|
+
};
|
|
90
|
+
triggerWidth: {
|
|
91
|
+
default: boolean;
|
|
92
|
+
type: BooleanConstructor;
|
|
93
|
+
};
|
|
94
|
+
dropdownModifiers: {
|
|
95
|
+
type: PropType<string | string[]>;
|
|
96
|
+
default: string;
|
|
97
|
+
};
|
|
98
|
+
autoOpen: {
|
|
99
|
+
type: BooleanConstructor;
|
|
100
|
+
default: boolean;
|
|
101
|
+
};
|
|
102
|
+
autoselectFirst: {
|
|
103
|
+
type: BooleanConstructor;
|
|
104
|
+
default: boolean;
|
|
105
|
+
};
|
|
106
|
+
keepOpen: {
|
|
107
|
+
type: BooleanConstructor;
|
|
108
|
+
default: boolean;
|
|
109
|
+
};
|
|
110
|
+
focusOnHover: {
|
|
111
|
+
type: BooleanConstructor;
|
|
112
|
+
default: boolean;
|
|
113
|
+
};
|
|
114
|
+
showClearAction: {
|
|
115
|
+
type: BooleanConstructor;
|
|
116
|
+
default: boolean;
|
|
117
|
+
};
|
|
118
|
+
iconClear: {
|
|
119
|
+
type: PropType<string | import("../VvIcon").VvIconProps>;
|
|
120
|
+
default: "close";
|
|
121
|
+
};
|
|
122
|
+
labelClear: {
|
|
123
|
+
type: StringConstructor;
|
|
124
|
+
default: string;
|
|
125
|
+
};
|
|
126
|
+
required: {
|
|
127
|
+
type: BooleanConstructor;
|
|
128
|
+
default: boolean;
|
|
129
|
+
};
|
|
130
|
+
label: {
|
|
131
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
132
|
+
default: undefined;
|
|
133
|
+
};
|
|
134
|
+
placement: {
|
|
135
|
+
type: PropType<`${import("../../constants").Side}` | `${import("../../constants").Placement}`>;
|
|
136
|
+
default: import("../../constants").Side;
|
|
137
|
+
validator: (value: import("../../constants").Side & import("../../constants").Placement) => boolean;
|
|
138
|
+
};
|
|
139
|
+
strategy: {
|
|
140
|
+
type: PropType<`${import("../../constants").Strategy}`>;
|
|
141
|
+
default: undefined;
|
|
142
|
+
validator: (value: import("../../constants").Strategy) => boolean;
|
|
143
|
+
};
|
|
144
|
+
offset: {
|
|
145
|
+
type: PropType<import("../..").OffsetOptions | number | string>;
|
|
146
|
+
default: number;
|
|
147
|
+
};
|
|
148
|
+
shift: {
|
|
149
|
+
type: PropType<import("../..").ShiftOptions | boolean>;
|
|
150
|
+
default: boolean;
|
|
151
|
+
};
|
|
152
|
+
flip: {
|
|
153
|
+
type: PropType<import("../..").FlipOptions | boolean>;
|
|
154
|
+
default: boolean;
|
|
155
|
+
};
|
|
156
|
+
size: {
|
|
157
|
+
type: PropType<import("../..").SizeOptions | boolean>;
|
|
158
|
+
default: () => {
|
|
159
|
+
padding: number;
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
autoPlacement: {
|
|
163
|
+
type: PropType<import("../..").AutoPlacementOptions | boolean>;
|
|
164
|
+
default: boolean;
|
|
165
|
+
};
|
|
166
|
+
arrow: {
|
|
167
|
+
type: BooleanConstructor;
|
|
168
|
+
default: boolean;
|
|
169
|
+
};
|
|
170
|
+
autofocusFirst: {
|
|
171
|
+
type: BooleanConstructor;
|
|
172
|
+
default: boolean;
|
|
173
|
+
};
|
|
174
|
+
floating: {
|
|
175
|
+
type: BooleanConstructor;
|
|
176
|
+
default: boolean;
|
|
177
|
+
};
|
|
178
|
+
icon: {
|
|
179
|
+
type: PropType<string | import("../VvIcon").VvIconProps>;
|
|
180
|
+
default: undefined;
|
|
181
|
+
};
|
|
182
|
+
iconPosition: {
|
|
183
|
+
type: PropType<`${import("../../constants").Position}`>;
|
|
184
|
+
default: import("../../constants").Position;
|
|
185
|
+
validation: (value: import("../../constants").Position) => boolean;
|
|
186
|
+
};
|
|
187
|
+
labelKey: {
|
|
188
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
189
|
+
default: string;
|
|
190
|
+
};
|
|
191
|
+
valueKey: {
|
|
192
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
193
|
+
default: string;
|
|
194
|
+
};
|
|
195
|
+
disabledKey: {
|
|
196
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
197
|
+
default: string;
|
|
198
|
+
};
|
|
199
|
+
modifiers: {
|
|
200
|
+
type: PropType<string | string[]>;
|
|
201
|
+
default: undefined;
|
|
202
|
+
};
|
|
203
|
+
readonly: {
|
|
204
|
+
type: BooleanConstructor;
|
|
205
|
+
default: boolean;
|
|
206
|
+
};
|
|
207
|
+
disabled: {
|
|
208
|
+
type: BooleanConstructor;
|
|
209
|
+
default: boolean;
|
|
210
|
+
};
|
|
211
|
+
loading: {
|
|
212
|
+
type: BooleanConstructor;
|
|
213
|
+
default: boolean;
|
|
214
|
+
};
|
|
215
|
+
loadingLabel: {
|
|
216
|
+
type: StringConstructor;
|
|
217
|
+
default: string;
|
|
218
|
+
};
|
|
219
|
+
hintLabel: {
|
|
220
|
+
type: StringConstructor;
|
|
221
|
+
default: string;
|
|
222
|
+
};
|
|
223
|
+
invalid: {
|
|
224
|
+
type: BooleanConstructor;
|
|
225
|
+
default: boolean;
|
|
226
|
+
};
|
|
227
|
+
invalidLabel: {
|
|
228
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
229
|
+
default: undefined;
|
|
230
|
+
};
|
|
231
|
+
valid: {
|
|
232
|
+
type: BooleanConstructor;
|
|
233
|
+
default: boolean;
|
|
234
|
+
};
|
|
235
|
+
validLabel: {
|
|
236
|
+
type: (ArrayConstructor | StringConstructor)[];
|
|
237
|
+
default: undefined;
|
|
238
|
+
};
|
|
239
|
+
tabindex: {
|
|
240
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
241
|
+
default: number;
|
|
242
|
+
};
|
|
243
|
+
name: {
|
|
244
|
+
type: StringConstructor;
|
|
245
|
+
required: boolean;
|
|
246
|
+
};
|
|
247
|
+
id: (StringConstructor | NumberConstructor)[];
|
|
248
|
+
}> & {
|
|
249
|
+
onClear?: (() => any) | undefined;
|
|
250
|
+
"onUpdate:modelValue"?: ((args_0: any) => any) | undefined;
|
|
251
|
+
onBlur?: ((args_0: import("@vueuse/core").MaybeElement) => any) | undefined;
|
|
252
|
+
onFocus?: ((args_0: import("@vueuse/core").MaybeElement) => any) | undefined;
|
|
253
|
+
"onUpdate:search"?: ((args_0: string) => any) | undefined;
|
|
254
|
+
"onUpdate:options"?: ((args_0: (string | Option)[]) => any) | undefined;
|
|
255
|
+
"onChange:search"?: ((args_0: string) => any) | undefined;
|
|
256
|
+
}> & import("vue").PublicProps;
|
|
257
|
+
expose: (exposed: {}) => void;
|
|
320
258
|
attrs: any;
|
|
321
259
|
slots: {
|
|
322
260
|
'dropdown::before'?: (props: {}) => any;
|
|
@@ -392,6 +330,7 @@ declare const _default: <T extends string | Option>(__VLS_props: NonNullable<Awa
|
|
|
392
330
|
}>) => import("vue").VNode & {
|
|
393
331
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
394
332
|
};
|
|
333
|
+
declare const _default: typeof __VLS_export;
|
|
395
334
|
export default _default;
|
|
396
335
|
type __VLS_PrettifyLocal<T> = {
|
|
397
336
|
[K in keyof T as K]: T[K];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
2
|
title: StringConstructor;
|
|
3
3
|
modelValue: {
|
|
4
4
|
type: BooleanConstructor;
|
|
@@ -62,6 +62,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<globalThis
|
|
|
62
62
|
} & {
|
|
63
63
|
footer?: (props: {}) => any;
|
|
64
64
|
}>;
|
|
65
|
+
declare const _default: typeof __VLS_export;
|
|
65
66
|
export default _default;
|
|
66
67
|
type __VLS_WithSlots<T, S> = T & {
|
|
67
68
|
new (): {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { AutoPlacementOptions, FlipOptions, OffsetOptions, ShiftOptions, SizeOptions } from '../../types/floating-ui';
|
|
2
2
|
import { Side, Strategy } from '../../constants';
|
|
3
|
-
declare const
|
|
3
|
+
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
4
4
|
modelValue: {
|
|
5
5
|
type: BooleanConstructor;
|
|
6
6
|
default: undefined;
|
|
@@ -315,6 +315,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<globalThis
|
|
|
315
315
|
expanded: boolean;
|
|
316
316
|
}) => any;
|
|
317
317
|
}>;
|
|
318
|
+
declare const _default: typeof __VLS_export;
|
|
318
319
|
export default _default;
|
|
319
320
|
type __VLS_WithSlots<T, S> = T & {
|
|
320
321
|
new (): {
|
|
@@ -2,7 +2,7 @@ declare var __VLS_10: {};
|
|
|
2
2
|
type __VLS_Slots = {} & {
|
|
3
3
|
default?: (props: typeof __VLS_10) => any;
|
|
4
4
|
};
|
|
5
|
-
declare const
|
|
5
|
+
declare const __VLS_base: import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
6
6
|
modifiers: {
|
|
7
7
|
type: PropType<string | string[]>;
|
|
8
8
|
default: undefined;
|
|
@@ -108,7 +108,8 @@ declare const __VLS_component: import("vue").DefineComponent<globalThis.ExtractP
|
|
|
108
108
|
active: boolean;
|
|
109
109
|
pressed: boolean;
|
|
110
110
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
111
|
-
declare const
|
|
111
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
112
|
+
declare const _default: typeof __VLS_export;
|
|
112
113
|
export default _default;
|
|
113
114
|
type __VLS_WithSlots<T, S> = T & {
|
|
114
115
|
new (): {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
2
|
focusOnHover: {
|
|
3
3
|
type: BooleanConstructor;
|
|
4
4
|
default: boolean;
|
|
@@ -13,6 +13,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<globalThis
|
|
|
13
13
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
14
14
|
default?: (props: {}) => any;
|
|
15
15
|
}>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
16
17
|
export default _default;
|
|
17
18
|
type __VLS_WithSlots<T, S> = T & {
|
|
18
19
|
new (): {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
2
|
label: {
|
|
3
3
|
type: (StringConstructor | NumberConstructor)[];
|
|
4
4
|
default: undefined;
|
|
@@ -11,4 +11,5 @@ declare const _default: import("vue").DefineComponent<globalThis.ExtractPropType
|
|
|
11
11
|
}>> & Readonly<{}>, {
|
|
12
12
|
label: string | number;
|
|
13
13
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
14
15
|
export default _default;
|