@volverjs/ui-vue 0.0.9-beta.12 → 0.0.9-beta.13
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/auto-imports.d.ts +2 -1
- package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +3 -3
- package/dist/components/VvAlertGroup/index.d.ts +1 -1
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +291 -84
- package/dist/components/VvCombobox/index.d.ts +96 -27
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +290 -83
- package/dist/components/VvDropdown/index.d.ts +96 -27
- package/dist/components/VvSelect/VvSelect.vue.d.ts +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/props/index.d.ts +96 -27
- package/dist/stories/AccordionGroup/AccordionGroup.stories.d.ts +2 -2
- package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +18 -18
- package/package.json +37 -37
- 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/auto-imports.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
/* prettier-ignore */
|
|
3
3
|
// @ts-nocheck
|
|
4
|
+
// noinspection JSUnusedGlobalSymbols
|
|
4
5
|
// Generated by unplugin-auto-import
|
|
5
6
|
export {}
|
|
6
7
|
declare global {
|
|
@@ -115,7 +116,7 @@ declare global {
|
|
|
115
116
|
const unrefElement: typeof import('@vueuse/core')['unrefElement']
|
|
116
117
|
const until: typeof import('@vueuse/core')['until']
|
|
117
118
|
const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
|
|
118
|
-
const useAlert: typeof import('./src/composables/
|
|
119
|
+
const useAlert: typeof import('./src/composables/alert/useAlert')['useAlert']
|
|
119
120
|
const useAnimate: typeof import('@vueuse/core')['useAnimate']
|
|
120
121
|
const useArrayDifference: typeof import('@vueuse/core')['useArrayDifference']
|
|
121
122
|
const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
|
|
@@ -16,7 +16,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
16
16
|
default: boolean;
|
|
17
17
|
};
|
|
18
18
|
inline: {
|
|
19
|
-
type: globalThis.PropType<"start" | "
|
|
19
|
+
type: globalThis.PropType<"start" | "end" | "middle">;
|
|
20
20
|
default: undefined;
|
|
21
21
|
};
|
|
22
22
|
block: {
|
|
@@ -50,7 +50,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
50
50
|
default: boolean;
|
|
51
51
|
};
|
|
52
52
|
inline: {
|
|
53
|
-
type: globalThis.PropType<"start" | "
|
|
53
|
+
type: globalThis.PropType<"start" | "end" | "middle">;
|
|
54
54
|
default: undefined;
|
|
55
55
|
};
|
|
56
56
|
block: {
|
|
@@ -72,7 +72,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
72
72
|
reverse: boolean;
|
|
73
73
|
items: import(".").AlertItem[];
|
|
74
74
|
transition: string;
|
|
75
|
-
inline: "start" | "
|
|
75
|
+
inline: "start" | "end" | "middle";
|
|
76
76
|
stack: boolean;
|
|
77
77
|
block: "top" | "bottom" | "center";
|
|
78
78
|
position: "fixed" | "absolute";
|
|
@@ -94,33 +94,94 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
94
94
|
default: number;
|
|
95
95
|
};
|
|
96
96
|
shift: {
|
|
97
|
-
type: globalThis.PropType<boolean |
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
97
|
+
type: globalThis.PropType<boolean | {
|
|
98
|
+
mainAxis?: boolean | undefined;
|
|
99
|
+
crossAxis?: boolean | undefined;
|
|
100
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
101
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
102
|
+
altBoundary?: boolean | undefined;
|
|
103
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
104
|
+
limiter?: {
|
|
105
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
|
|
106
|
+
options?: any;
|
|
107
|
+
} | undefined;
|
|
108
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
109
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
110
|
+
mainAxis?: boolean | undefined;
|
|
111
|
+
crossAxis?: boolean | undefined;
|
|
112
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
113
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
114
|
+
altBoundary?: boolean | undefined;
|
|
115
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
116
|
+
limiter?: {
|
|
117
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
|
|
118
|
+
options?: any;
|
|
119
|
+
} | undefined;
|
|
120
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
103
121
|
}> | undefined>;
|
|
104
122
|
default: boolean;
|
|
105
123
|
};
|
|
106
124
|
flip: {
|
|
107
|
-
type: globalThis.PropType<boolean |
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
125
|
+
type: globalThis.PropType<boolean | {
|
|
126
|
+
mainAxis?: boolean | undefined;
|
|
127
|
+
crossAxis?: boolean | undefined;
|
|
128
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
129
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
130
|
+
altBoundary?: boolean | undefined;
|
|
131
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
132
|
+
fallbackPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
133
|
+
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
134
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
135
|
+
flipAlignment?: boolean | undefined;
|
|
136
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
137
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
138
|
+
mainAxis?: boolean | undefined;
|
|
139
|
+
crossAxis?: boolean | undefined;
|
|
140
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
141
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
142
|
+
altBoundary?: boolean | undefined;
|
|
143
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
144
|
+
fallbackPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
145
|
+
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
146
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
147
|
+
flipAlignment?: boolean | undefined;
|
|
148
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
113
149
|
}> | undefined>;
|
|
114
150
|
default: boolean;
|
|
115
151
|
};
|
|
116
152
|
size: {
|
|
117
|
-
type: globalThis.PropType<boolean |
|
|
118
|
-
|
|
153
|
+
type: globalThis.PropType<boolean | {
|
|
154
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
155
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
156
|
+
altBoundary?: boolean | undefined;
|
|
157
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
158
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
159
|
+
apply?: ((args: {
|
|
119
160
|
x: number;
|
|
120
161
|
y: number;
|
|
162
|
+
initialPlacement: import("@floating-ui/core").Placement;
|
|
121
163
|
placement: import("@floating-ui/core").Placement;
|
|
122
164
|
strategy: import("@floating-ui/core").Strategy;
|
|
165
|
+
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
166
|
+
rects: import("@floating-ui/core").ElementRects;
|
|
167
|
+
platform: import("@floating-ui/core").Platform;
|
|
168
|
+
elements: import("@floating-ui/dom").Elements;
|
|
169
|
+
} & {
|
|
170
|
+
availableWidth: number;
|
|
171
|
+
availableHeight: number;
|
|
172
|
+
}) => void | Promise<void>) | undefined;
|
|
173
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
174
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
175
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
176
|
+
altBoundary?: boolean | undefined;
|
|
177
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
178
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
179
|
+
apply?: ((args: {
|
|
180
|
+
x: number;
|
|
181
|
+
y: number;
|
|
123
182
|
initialPlacement: import("@floating-ui/core").Placement;
|
|
183
|
+
placement: import("@floating-ui/core").Placement;
|
|
184
|
+
strategy: import("@floating-ui/core").Strategy;
|
|
124
185
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
125
186
|
rects: import("@floating-ui/core").ElementRects;
|
|
126
187
|
platform: import("@floating-ui/core").Platform;
|
|
@@ -128,25 +189,33 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
128
189
|
} & {
|
|
129
190
|
availableWidth: number;
|
|
130
191
|
availableHeight: number;
|
|
131
|
-
}) => void | Promise<void
|
|
132
|
-
} & {
|
|
133
|
-
rootBoundary: import("@floating-ui/core").RootBoundary;
|
|
134
|
-
elementContext: import("@floating-ui/core").ElementContext;
|
|
135
|
-
altBoundary: boolean;
|
|
136
|
-
padding: import("@floating-ui/core").Padding;
|
|
137
|
-
boundary: import("@floating-ui/dom").Boundary;
|
|
192
|
+
}) => void | Promise<void>) | undefined;
|
|
138
193
|
}> | undefined>;
|
|
139
194
|
default: () => {
|
|
140
195
|
padding: number;
|
|
141
196
|
};
|
|
142
197
|
};
|
|
143
198
|
autoPlacement: {
|
|
144
|
-
type: globalThis.PropType<boolean |
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
199
|
+
type: globalThis.PropType<boolean | {
|
|
200
|
+
crossAxis?: boolean | undefined;
|
|
201
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
202
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
203
|
+
altBoundary?: boolean | undefined;
|
|
204
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
205
|
+
alignment?: import("@floating-ui/core").Alignment | null | undefined;
|
|
206
|
+
autoAlignment?: boolean | undefined;
|
|
207
|
+
allowedPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
208
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
209
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
210
|
+
crossAxis?: boolean | undefined;
|
|
211
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
212
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
213
|
+
altBoundary?: boolean | undefined;
|
|
214
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
215
|
+
alignment?: import("@floating-ui/core").Alignment | null | undefined;
|
|
216
|
+
autoAlignment?: boolean | undefined;
|
|
217
|
+
allowedPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
218
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
150
219
|
}> | undefined>;
|
|
151
220
|
default: boolean;
|
|
152
221
|
};
|
|
@@ -307,33 +376,94 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
307
376
|
default: number;
|
|
308
377
|
};
|
|
309
378
|
shift: {
|
|
310
|
-
type: globalThis.PropType<boolean |
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
379
|
+
type: globalThis.PropType<boolean | {
|
|
380
|
+
mainAxis?: boolean | undefined;
|
|
381
|
+
crossAxis?: boolean | undefined;
|
|
382
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
383
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
384
|
+
altBoundary?: boolean | undefined;
|
|
385
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
386
|
+
limiter?: {
|
|
387
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
|
|
388
|
+
options?: any;
|
|
389
|
+
} | undefined;
|
|
390
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
391
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
392
|
+
mainAxis?: boolean | undefined;
|
|
393
|
+
crossAxis?: boolean | undefined;
|
|
394
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
395
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
396
|
+
altBoundary?: boolean | undefined;
|
|
397
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
398
|
+
limiter?: {
|
|
399
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
|
|
400
|
+
options?: any;
|
|
401
|
+
} | undefined;
|
|
402
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
316
403
|
}> | undefined>;
|
|
317
404
|
default: boolean;
|
|
318
405
|
};
|
|
319
406
|
flip: {
|
|
320
|
-
type: globalThis.PropType<boolean |
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
407
|
+
type: globalThis.PropType<boolean | {
|
|
408
|
+
mainAxis?: boolean | undefined;
|
|
409
|
+
crossAxis?: boolean | undefined;
|
|
410
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
411
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
412
|
+
altBoundary?: boolean | undefined;
|
|
413
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
414
|
+
fallbackPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
415
|
+
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
416
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
417
|
+
flipAlignment?: boolean | undefined;
|
|
418
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
419
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
420
|
+
mainAxis?: boolean | undefined;
|
|
421
|
+
crossAxis?: boolean | undefined;
|
|
422
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
423
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
424
|
+
altBoundary?: boolean | undefined;
|
|
425
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
426
|
+
fallbackPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
427
|
+
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
428
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
429
|
+
flipAlignment?: boolean | undefined;
|
|
430
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
326
431
|
}> | undefined>;
|
|
327
432
|
default: boolean;
|
|
328
433
|
};
|
|
329
434
|
size: {
|
|
330
|
-
type: globalThis.PropType<boolean |
|
|
331
|
-
|
|
435
|
+
type: globalThis.PropType<boolean | {
|
|
436
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
437
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
438
|
+
altBoundary?: boolean | undefined;
|
|
439
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
440
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
441
|
+
apply?: ((args: {
|
|
332
442
|
x: number;
|
|
333
443
|
y: number;
|
|
444
|
+
initialPlacement: import("@floating-ui/core").Placement;
|
|
334
445
|
placement: import("@floating-ui/core").Placement;
|
|
335
446
|
strategy: import("@floating-ui/core").Strategy;
|
|
447
|
+
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
448
|
+
rects: import("@floating-ui/core").ElementRects;
|
|
449
|
+
platform: import("@floating-ui/core").Platform;
|
|
450
|
+
elements: import("@floating-ui/dom").Elements;
|
|
451
|
+
} & {
|
|
452
|
+
availableWidth: number;
|
|
453
|
+
availableHeight: number;
|
|
454
|
+
}) => void | Promise<void>) | undefined;
|
|
455
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
456
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
457
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
458
|
+
altBoundary?: boolean | undefined;
|
|
459
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
460
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
461
|
+
apply?: ((args: {
|
|
462
|
+
x: number;
|
|
463
|
+
y: number;
|
|
336
464
|
initialPlacement: import("@floating-ui/core").Placement;
|
|
465
|
+
placement: import("@floating-ui/core").Placement;
|
|
466
|
+
strategy: import("@floating-ui/core").Strategy;
|
|
337
467
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
338
468
|
rects: import("@floating-ui/core").ElementRects;
|
|
339
469
|
platform: import("@floating-ui/core").Platform;
|
|
@@ -341,25 +471,33 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
341
471
|
} & {
|
|
342
472
|
availableWidth: number;
|
|
343
473
|
availableHeight: number;
|
|
344
|
-
}) => void | Promise<void
|
|
345
|
-
} & {
|
|
346
|
-
rootBoundary: import("@floating-ui/core").RootBoundary;
|
|
347
|
-
elementContext: import("@floating-ui/core").ElementContext;
|
|
348
|
-
altBoundary: boolean;
|
|
349
|
-
padding: import("@floating-ui/core").Padding;
|
|
350
|
-
boundary: import("@floating-ui/dom").Boundary;
|
|
474
|
+
}) => void | Promise<void>) | undefined;
|
|
351
475
|
}> | undefined>;
|
|
352
476
|
default: () => {
|
|
353
477
|
padding: number;
|
|
354
478
|
};
|
|
355
479
|
};
|
|
356
480
|
autoPlacement: {
|
|
357
|
-
type: globalThis.PropType<boolean |
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
481
|
+
type: globalThis.PropType<boolean | {
|
|
482
|
+
crossAxis?: boolean | undefined;
|
|
483
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
484
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
485
|
+
altBoundary?: boolean | undefined;
|
|
486
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
487
|
+
alignment?: import("@floating-ui/core").Alignment | null | undefined;
|
|
488
|
+
autoAlignment?: boolean | undefined;
|
|
489
|
+
allowedPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
490
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
491
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
492
|
+
crossAxis?: boolean | undefined;
|
|
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/core").Padding | undefined;
|
|
497
|
+
alignment?: import("@floating-ui/core").Alignment | null | undefined;
|
|
498
|
+
autoAlignment?: boolean | undefined;
|
|
499
|
+
allowedPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
500
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
363
501
|
}> | undefined>;
|
|
364
502
|
default: boolean;
|
|
365
503
|
};
|
|
@@ -429,24 +567,62 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
429
567
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
430
568
|
}, {
|
|
431
569
|
disabled: boolean;
|
|
432
|
-
options: (string | Option)[];
|
|
433
570
|
floating: boolean;
|
|
571
|
+
options: (string | Option)[];
|
|
572
|
+
placement: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
573
|
+
strategy: "fixed" | "absolute";
|
|
434
574
|
modelValue: string | number | boolean | unknown[] | Record<string, any>;
|
|
435
|
-
shift: boolean |
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
575
|
+
shift: boolean | {
|
|
576
|
+
mainAxis?: boolean | undefined;
|
|
577
|
+
crossAxis?: boolean | undefined;
|
|
578
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
579
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
580
|
+
altBoundary?: boolean | undefined;
|
|
581
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
582
|
+
limiter?: {
|
|
583
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
|
|
584
|
+
options?: any;
|
|
585
|
+
} | undefined;
|
|
586
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
587
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
588
|
+
mainAxis?: boolean | undefined;
|
|
589
|
+
crossAxis?: boolean | undefined;
|
|
590
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
591
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
592
|
+
altBoundary?: boolean | undefined;
|
|
593
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
594
|
+
limiter?: {
|
|
595
|
+
fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
|
|
596
|
+
options?: any;
|
|
597
|
+
} | undefined;
|
|
598
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
441
599
|
}> | undefined;
|
|
442
600
|
tabindex: string | number;
|
|
443
601
|
unselectable: boolean;
|
|
444
|
-
flip: boolean |
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
602
|
+
flip: boolean | {
|
|
603
|
+
mainAxis?: boolean | undefined;
|
|
604
|
+
crossAxis?: boolean | undefined;
|
|
605
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
606
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
607
|
+
altBoundary?: boolean | undefined;
|
|
608
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
609
|
+
fallbackPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
610
|
+
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
611
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
612
|
+
flipAlignment?: boolean | undefined;
|
|
613
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
614
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
615
|
+
mainAxis?: boolean | undefined;
|
|
616
|
+
crossAxis?: boolean | undefined;
|
|
617
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
618
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
619
|
+
altBoundary?: boolean | undefined;
|
|
620
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
621
|
+
fallbackPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
622
|
+
fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
|
|
623
|
+
fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
|
|
624
|
+
flipAlignment?: boolean | undefined;
|
|
625
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
450
626
|
}> | undefined;
|
|
451
627
|
closeLabel: string;
|
|
452
628
|
iconPosition: "before" | "after";
|
|
@@ -457,13 +633,38 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
457
633
|
hintLabel: string;
|
|
458
634
|
invalid: boolean;
|
|
459
635
|
valid: boolean;
|
|
460
|
-
size: boolean |
|
|
461
|
-
|
|
636
|
+
size: boolean | {
|
|
637
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
638
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
639
|
+
altBoundary?: boolean | undefined;
|
|
640
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
641
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
642
|
+
apply?: ((args: {
|
|
462
643
|
x: number;
|
|
463
644
|
y: number;
|
|
645
|
+
initialPlacement: import("@floating-ui/core").Placement;
|
|
464
646
|
placement: import("@floating-ui/core").Placement;
|
|
465
647
|
strategy: import("@floating-ui/core").Strategy;
|
|
648
|
+
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
649
|
+
rects: import("@floating-ui/core").ElementRects;
|
|
650
|
+
platform: import("@floating-ui/core").Platform;
|
|
651
|
+
elements: import("@floating-ui/dom").Elements;
|
|
652
|
+
} & {
|
|
653
|
+
availableWidth: number;
|
|
654
|
+
availableHeight: number;
|
|
655
|
+
}) => void | Promise<void>) | undefined;
|
|
656
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
657
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
658
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
659
|
+
altBoundary?: boolean | undefined;
|
|
660
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
661
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
662
|
+
apply?: ((args: {
|
|
663
|
+
x: number;
|
|
664
|
+
y: number;
|
|
466
665
|
initialPlacement: import("@floating-ui/core").Placement;
|
|
666
|
+
placement: import("@floating-ui/core").Placement;
|
|
667
|
+
strategy: import("@floating-ui/core").Strategy;
|
|
467
668
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
468
669
|
rects: import("@floating-ui/core").ElementRects;
|
|
469
670
|
platform: import("@floating-ui/core").Platform;
|
|
@@ -471,27 +672,33 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
471
672
|
} & {
|
|
472
673
|
availableWidth: number;
|
|
473
674
|
availableHeight: number;
|
|
474
|
-
}) => void | Promise<void
|
|
475
|
-
} & {
|
|
476
|
-
rootBoundary: import("@floating-ui/core").RootBoundary;
|
|
477
|
-
elementContext: import("@floating-ui/core").ElementContext;
|
|
478
|
-
altBoundary: boolean;
|
|
479
|
-
padding: import("@floating-ui/core").Padding;
|
|
480
|
-
boundary: import("@floating-ui/dom").Boundary;
|
|
675
|
+
}) => void | Promise<void>) | undefined;
|
|
481
676
|
}> | undefined;
|
|
482
677
|
labelKey: string | Function;
|
|
483
678
|
valueKey: string | Function;
|
|
484
679
|
disabledKey: string | Function;
|
|
485
|
-
placement: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
486
|
-
strategy: "fixed" | "absolute";
|
|
487
680
|
transitionName: string;
|
|
488
681
|
offset: string | import("@floating-ui/core").OffsetOptions | undefined;
|
|
489
|
-
autoPlacement: boolean |
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
682
|
+
autoPlacement: boolean | {
|
|
683
|
+
crossAxis?: boolean | undefined;
|
|
684
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
685
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
686
|
+
altBoundary?: boolean | undefined;
|
|
687
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
688
|
+
alignment?: import("@floating-ui/core").Alignment | null | undefined;
|
|
689
|
+
autoAlignment?: boolean | undefined;
|
|
690
|
+
allowedPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
691
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
692
|
+
} | import("@floating-ui/dom").Derivable<{
|
|
693
|
+
crossAxis?: boolean | undefined;
|
|
694
|
+
rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
|
|
695
|
+
elementContext?: import("@floating-ui/core").ElementContext | undefined;
|
|
696
|
+
altBoundary?: boolean | undefined;
|
|
697
|
+
padding?: import("@floating-ui/core").Padding | undefined;
|
|
698
|
+
alignment?: import("@floating-ui/core").Alignment | null | undefined;
|
|
699
|
+
autoAlignment?: boolean | undefined;
|
|
700
|
+
allowedPlacements?: import("@floating-ui/core").Placement[] | undefined;
|
|
701
|
+
boundary?: import("@floating-ui/dom").Boundary | undefined;
|
|
495
702
|
}> | undefined;
|
|
496
703
|
arrow: boolean;
|
|
497
704
|
keepOpen: boolean;
|