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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. package/dist/components/VvAccordion/VvAccordion.vue.d.ts +1 -1
  2. package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +1 -1
  3. package/dist/components/VvAction/VvAction.vue.d.ts +1 -1
  4. package/dist/components/VvAlert/VvAlert.vue.d.ts +1 -1
  5. package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +1 -1
  6. package/dist/components/VvAvatar/VvAvatar.vue.d.ts +1 -1
  7. package/dist/components/VvAvatarGroup/VvAvatarGroup.vue.d.ts +1 -1
  8. package/dist/components/VvBadge/VvBadge.vue.d.ts +1 -1
  9. package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +1 -1
  10. package/dist/components/VvButton/VvButton.vue.d.ts +1 -1
  11. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +1 -1
  12. package/dist/components/VvCard/VvCard.vue.d.ts +1 -1
  13. package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +1 -1
  14. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +1 -1
  15. package/dist/components/VvCombobox/VvCombobox.vue.d.ts +67 -67
  16. package/dist/components/VvCombobox/index.d.ts +8 -8
  17. package/dist/components/VvDialog/VvDialog.vue.d.ts +1 -1
  18. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +70 -70
  19. package/dist/components/VvDropdown/VvDropdownAction.vue.d.ts +1 -1
  20. package/dist/components/VvDropdown/VvDropdownItem.vue.d.ts +1 -1
  21. package/dist/components/VvDropdown/VvDropdownOptgroup.vue.d.ts +1 -1
  22. package/dist/components/VvDropdown/VvDropdownOption.vue.d.ts +1 -1
  23. package/dist/components/VvDropdown/index.d.ts +8 -8
  24. package/dist/components/VvIcon/VvIcon.vue.d.ts +1 -1
  25. package/dist/components/VvIcon/index.d.ts +12 -0
  26. package/dist/components/VvInputFile/VvInputFile.es.js +231 -67
  27. package/dist/components/VvInputFile/VvInputFile.umd.js +1 -1
  28. package/dist/components/VvInputFile/VvInputFile.vue.d.ts +152 -29
  29. package/dist/components/VvInputFile/index.d.ts +119 -14
  30. package/dist/components/VvInputText/VvInputClearAction.d.ts +6 -4
  31. package/dist/components/VvInputText/VvInputPasswordAction.d.ts +10 -8
  32. package/dist/components/VvInputText/VvInputStepAction.d.ts +1 -1
  33. package/dist/components/VvInputText/VvInputText.es.js +73 -65
  34. package/dist/components/VvInputText/VvInputText.umd.js +1 -1
  35. package/dist/components/VvInputText/VvInputText.vue.d.ts +10 -10
  36. package/dist/components/VvInputText/index.d.ts +6 -15
  37. package/dist/components/VvNav/VvNav.vue.d.ts +1 -1
  38. package/dist/components/VvNav/VvNavItem.vue.d.ts +1 -1
  39. package/dist/components/VvNav/VvNavSeparator.vue.d.ts +1 -1
  40. package/dist/components/VvProgress/VvProgress.vue.d.ts +1 -1
  41. package/dist/components/VvRadio/VvRadio.vue.d.ts +1 -1
  42. package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +1 -1
  43. package/dist/components/VvSelect/VvSelect.vue.d.ts +1 -1
  44. package/dist/components/VvTab/VvTab.vue.d.ts +1 -1
  45. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +1 -1
  46. package/dist/components/VvTooltip/VvTooltip.vue.d.ts +1 -1
  47. package/dist/components/common/HintSlot.d.ts +1 -1
  48. package/dist/components/index.es.js +247 -96
  49. package/dist/components/index.umd.js +1 -1
  50. package/dist/composables/alert/useAlert.d.ts +1 -1
  51. package/dist/composables/dropdown/useProvideDropdown.d.ts +1 -1
  52. package/dist/icons.es.js +210 -210
  53. package/dist/icons.umd.js +1 -1
  54. package/dist/index.es.js +20 -12
  55. package/dist/index.umd.js +1 -1
  56. package/dist/props/index.d.ts +8 -14
  57. package/dist/resolvers/unplugin.es.js +20 -12
  58. package/dist/resolvers/unplugin.umd.js +1 -1
  59. package/dist/stories/InputFile/InputFile.stories.d.ts +1 -2
  60. package/dist/stories/InputFile/{InputFileModifiers.stories.d.ts → InputFileDropArea.stories.d.ts} +4 -4
  61. package/dist/stories/InputFile/InputFileIconPosition.stories.d.ts +8 -0
  62. package/dist/stories/InputFile/InputFileSlots.stories.d.ts +1 -0
  63. package/dist/types/input-file.d.ts +2 -0
  64. package/package.json +49 -49
  65. package/src/assets/icons/detailed.json +1 -1
  66. package/src/assets/icons/normal.json +1 -1
  67. package/src/assets/icons/simple.json +1 -1
  68. package/src/components/VvIcon/index.ts +13 -0
  69. package/src/components/VvInputFile/VvInputFile.vue +108 -40
  70. package/src/components/VvInputFile/index.ts +88 -10
  71. package/src/components/VvInputText/VvInputClearAction.ts +10 -6
  72. package/src/components/VvInputText/VvInputPasswordAction.ts +13 -9
  73. package/src/components/VvInputText/VvInputText.vue +6 -6
  74. package/src/components/VvInputText/index.ts +7 -15
  75. package/src/stories/InputFile/InputFile.settings.ts +1 -1
  76. package/src/stories/InputFile/InputFile.stories.ts +7 -16
  77. package/src/stories/InputFile/{InputFileModifiers.stories.ts → InputFileDropArea.stories.ts} +18 -13
  78. package/src/stories/InputFile/InputFileIconPosition.stories.ts +43 -0
  79. package/src/stories/InputFile/InputFileSlots.stories.ts +11 -3
  80. package/src/types/input-file.ts +4 -2
@@ -33,7 +33,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
33
33
  default: undefined;
34
34
  };
35
35
  offset: {
36
- type: globalThis.PropType<string | import("@floating-ui/vue").OffsetOptions | undefined>;
36
+ type: globalThis.PropType<string | import("@floating-ui/core").OffsetOptions | undefined>;
37
37
  default: number;
38
38
  };
39
39
  shift: {
@@ -45,11 +45,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
45
45
  crossAxis?: boolean | undefined;
46
46
  mainAxis?: boolean | undefined;
47
47
  limiter?: {
48
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
48
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
49
49
  options?: any;
50
50
  } | undefined;
51
51
  boundary?: import("@floating-ui/dom").Boundary | undefined;
52
- } | import("@floating-ui/dom").Derivable<{
52
+ } | import("@floating-ui/core").Derivable<{
53
53
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
54
54
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
55
55
  altBoundary?: boolean | undefined;
@@ -57,7 +57,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
57
57
  crossAxis?: boolean | undefined;
58
58
  mainAxis?: boolean | undefined;
59
59
  limiter?: {
60
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
60
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
61
61
  options?: any;
62
62
  } | undefined;
63
63
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -73,11 +73,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
73
73
  crossAxis?: boolean | undefined;
74
74
  mainAxis?: boolean | undefined;
75
75
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
76
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
76
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
77
77
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
78
78
  flipAlignment?: boolean | undefined;
79
79
  boundary?: import("@floating-ui/dom").Boundary | undefined;
80
- } | import("@floating-ui/dom").Derivable<{
80
+ } | import("@floating-ui/core").Derivable<{
81
81
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
82
82
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
83
83
  altBoundary?: boolean | undefined;
@@ -85,7 +85,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
85
85
  crossAxis?: boolean | undefined;
86
86
  mainAxis?: boolean | undefined;
87
87
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
88
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
88
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
89
89
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
90
90
  flipAlignment?: boolean | undefined;
91
91
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -113,7 +113,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
113
113
  availableWidth: number;
114
114
  availableHeight: number;
115
115
  }) => void | Promise<void>) | undefined;
116
- } | import("@floating-ui/dom").Derivable<{
116
+ } | import("@floating-ui/core").Derivable<{
117
117
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
118
118
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
119
119
  altBoundary?: boolean | undefined;
@@ -149,7 +149,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
149
149
  autoAlignment?: boolean | undefined;
150
150
  allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
151
151
  boundary?: import("@floating-ui/dom").Boundary | undefined;
152
- } | import("@floating-ui/dom").Derivable<{
152
+ } | import("@floating-ui/core").Derivable<{
153
153
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
154
154
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
155
155
  altBoundary?: boolean | undefined;
@@ -199,7 +199,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
199
199
  beforeCollapse: (...args: any[]) => void;
200
200
  afterExpand: (...args: any[]) => void;
201
201
  afterCollapse: (...args: any[]) => void;
202
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
202
+ }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
203
203
  modelValue: {
204
204
  type: BooleanConstructor;
205
205
  default: undefined;
@@ -232,7 +232,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
232
232
  default: undefined;
233
233
  };
234
234
  offset: {
235
- type: globalThis.PropType<string | import("@floating-ui/vue").OffsetOptions | undefined>;
235
+ type: globalThis.PropType<string | import("@floating-ui/core").OffsetOptions | undefined>;
236
236
  default: number;
237
237
  };
238
238
  shift: {
@@ -244,11 +244,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
244
244
  crossAxis?: boolean | undefined;
245
245
  mainAxis?: boolean | undefined;
246
246
  limiter?: {
247
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
247
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
248
248
  options?: any;
249
249
  } | undefined;
250
250
  boundary?: import("@floating-ui/dom").Boundary | undefined;
251
- } | import("@floating-ui/dom").Derivable<{
251
+ } | import("@floating-ui/core").Derivable<{
252
252
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
253
253
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
254
254
  altBoundary?: boolean | undefined;
@@ -256,7 +256,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
256
256
  crossAxis?: boolean | undefined;
257
257
  mainAxis?: boolean | undefined;
258
258
  limiter?: {
259
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
259
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
260
260
  options?: any;
261
261
  } | undefined;
262
262
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -272,11 +272,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
272
272
  crossAxis?: boolean | undefined;
273
273
  mainAxis?: boolean | undefined;
274
274
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
275
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
275
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
276
276
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
277
277
  flipAlignment?: boolean | undefined;
278
278
  boundary?: import("@floating-ui/dom").Boundary | undefined;
279
- } | import("@floating-ui/dom").Derivable<{
279
+ } | import("@floating-ui/core").Derivable<{
280
280
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
281
281
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
282
282
  altBoundary?: boolean | undefined;
@@ -284,7 +284,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
284
284
  crossAxis?: boolean | undefined;
285
285
  mainAxis?: boolean | undefined;
286
286
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
287
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
287
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
288
288
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
289
289
  flipAlignment?: boolean | undefined;
290
290
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -312,7 +312,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
312
312
  availableWidth: number;
313
313
  availableHeight: number;
314
314
  }) => void | Promise<void>) | undefined;
315
- } | import("@floating-ui/dom").Derivable<{
315
+ } | import("@floating-ui/core").Derivable<{
316
316
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
317
317
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
318
318
  altBoundary?: boolean | undefined;
@@ -348,7 +348,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
348
348
  autoAlignment?: boolean | undefined;
349
349
  allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
350
350
  boundary?: import("@floating-ui/dom").Boundary | undefined;
351
- } | import("@floating-ui/dom").Derivable<{
351
+ } | import("@floating-ui/core").Derivable<{
352
352
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
353
353
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
354
354
  altBoundary?: boolean | undefined;
@@ -395,9 +395,48 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
395
395
  }, {
396
396
  modelValue: boolean;
397
397
  modifiers: string | string[];
398
+ size: boolean | {
399
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
400
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
401
+ altBoundary?: boolean | undefined;
402
+ padding?: import("@floating-ui/utils").Padding | undefined;
403
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
404
+ apply?: ((args: {
405
+ x: number;
406
+ y: number;
407
+ initialPlacement: import("@floating-ui/utils").Placement;
408
+ placement: import("@floating-ui/utils").Placement;
409
+ strategy: import("@floating-ui/utils").Strategy;
410
+ middlewareData: import("@floating-ui/core").MiddlewareData;
411
+ rects: import("@floating-ui/utils").ElementRects;
412
+ platform: import("@floating-ui/core").Platform;
413
+ elements: import("@floating-ui/dom").Elements;
414
+ } & {
415
+ availableWidth: number;
416
+ availableHeight: number;
417
+ }) => void | Promise<void>) | undefined;
418
+ } | import("@floating-ui/core").Derivable<{
419
+ rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
420
+ elementContext?: import("@floating-ui/core").ElementContext | undefined;
421
+ altBoundary?: boolean | undefined;
422
+ padding?: import("@floating-ui/utils").Padding | undefined;
423
+ boundary?: import("@floating-ui/dom").Boundary | undefined;
424
+ apply?: ((args: {
425
+ x: number;
426
+ y: number;
427
+ initialPlacement: import("@floating-ui/utils").Placement;
428
+ placement: import("@floating-ui/utils").Placement;
429
+ strategy: import("@floating-ui/utils").Strategy;
430
+ middlewareData: import("@floating-ui/core").MiddlewareData;
431
+ rects: import("@floating-ui/utils").ElementRects;
432
+ platform: import("@floating-ui/core").Platform;
433
+ elements: import("@floating-ui/dom").Elements;
434
+ } & {
435
+ availableWidth: number;
436
+ availableHeight: number;
437
+ }) => void | Promise<void>) | undefined;
438
+ }> | undefined;
398
439
  reference: HTMLElement | null;
399
- placement: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
400
- strategy: "absolute" | "fixed";
401
440
  shift: boolean | {
402
441
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
403
442
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
@@ -406,11 +445,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
406
445
  crossAxis?: boolean | undefined;
407
446
  mainAxis?: boolean | undefined;
408
447
  limiter?: {
409
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
448
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
410
449
  options?: any;
411
450
  } | undefined;
412
451
  boundary?: import("@floating-ui/dom").Boundary | undefined;
413
- } | import("@floating-ui/dom").Derivable<{
452
+ } | import("@floating-ui/core").Derivable<{
414
453
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
415
454
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
416
455
  altBoundary?: boolean | undefined;
@@ -418,7 +457,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
418
457
  crossAxis?: boolean | undefined;
419
458
  mainAxis?: boolean | undefined;
420
459
  limiter?: {
421
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
460
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
422
461
  options?: any;
423
462
  } | undefined;
424
463
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -432,11 +471,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
432
471
  crossAxis?: boolean | undefined;
433
472
  mainAxis?: boolean | undefined;
434
473
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
435
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
474
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
436
475
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
437
476
  flipAlignment?: boolean | undefined;
438
477
  boundary?: import("@floating-ui/dom").Boundary | undefined;
439
- } | import("@floating-ui/dom").Derivable<{
478
+ } | import("@floating-ui/core").Derivable<{
440
479
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
441
480
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
442
481
  altBoundary?: boolean | undefined;
@@ -444,54 +483,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
444
483
  crossAxis?: boolean | undefined;
445
484
  mainAxis?: boolean | undefined;
446
485
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
447
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
486
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
448
487
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
449
488
  flipAlignment?: boolean | undefined;
450
489
  boundary?: import("@floating-ui/dom").Boundary | undefined;
451
490
  }> | undefined;
491
+ placement: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
492
+ strategy: "absolute" | "fixed";
452
493
  transitionName: string;
453
- offset: string | import("@floating-ui/vue").OffsetOptions | undefined;
454
- size: boolean | {
455
- rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
456
- elementContext?: import("@floating-ui/core").ElementContext | undefined;
457
- altBoundary?: boolean | undefined;
458
- padding?: import("@floating-ui/utils").Padding | undefined;
459
- boundary?: import("@floating-ui/dom").Boundary | undefined;
460
- apply?: ((args: {
461
- x: number;
462
- y: number;
463
- initialPlacement: import("@floating-ui/utils").Placement;
464
- placement: import("@floating-ui/utils").Placement;
465
- strategy: import("@floating-ui/utils").Strategy;
466
- middlewareData: import("@floating-ui/core").MiddlewareData;
467
- rects: import("@floating-ui/utils").ElementRects;
468
- platform: import("@floating-ui/core").Platform;
469
- elements: import("@floating-ui/dom").Elements;
470
- } & {
471
- availableWidth: number;
472
- availableHeight: number;
473
- }) => void | Promise<void>) | undefined;
474
- } | import("@floating-ui/dom").Derivable<{
475
- rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
476
- elementContext?: import("@floating-ui/core").ElementContext | undefined;
477
- altBoundary?: boolean | undefined;
478
- padding?: import("@floating-ui/utils").Padding | undefined;
479
- boundary?: import("@floating-ui/dom").Boundary | undefined;
480
- apply?: ((args: {
481
- x: number;
482
- y: number;
483
- initialPlacement: import("@floating-ui/utils").Placement;
484
- placement: import("@floating-ui/utils").Placement;
485
- strategy: import("@floating-ui/utils").Strategy;
486
- middlewareData: import("@floating-ui/core").MiddlewareData;
487
- rects: import("@floating-ui/utils").ElementRects;
488
- platform: import("@floating-ui/core").Platform;
489
- elements: import("@floating-ui/dom").Elements;
490
- } & {
491
- availableWidth: number;
492
- availableHeight: number;
493
- }) => void | Promise<void>) | undefined;
494
- }> | undefined;
494
+ offset: string | import("@floating-ui/core").OffsetOptions | undefined;
495
495
  autoPlacement: boolean | {
496
496
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
497
497
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
@@ -502,7 +502,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
502
502
  autoAlignment?: boolean | undefined;
503
503
  allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
504
504
  boundary?: import("@floating-ui/dom").Boundary | undefined;
505
- } | import("@floating-ui/dom").Derivable<{
505
+ } | import("@floating-ui/core").Derivable<{
506
506
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
507
507
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
508
508
  altBoundary?: boolean | undefined;
@@ -53,7 +53,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
53
53
  type: BooleanConstructor;
54
54
  default: boolean;
55
55
  };
56
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
56
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
57
57
  modifiers: {
58
58
  type: globalThis.PropType<string | string[]>;
59
59
  default: undefined;
@@ -1,4 +1,4 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{}>>, {}, {}>, {
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{}>>, {}, {}>, {
2
2
  default?(_: {}): any;
3
3
  }>;
4
4
  export default _default;
@@ -3,7 +3,7 @@ declare const _default: import("vue").DefineComponent<{
3
3
  type: (StringConstructor | NumberConstructor)[];
4
4
  default: undefined;
5
5
  };
6
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
6
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
7
7
  label: {
8
8
  type: (StringConstructor | NumberConstructor)[];
9
9
  default: undefined;
@@ -24,7 +24,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
24
24
  type: BooleanConstructor;
25
25
  default: boolean;
26
26
  };
27
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<{
27
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
28
28
  deselectHintLabel: {
29
29
  type: StringConstructor;
30
30
  };
@@ -54,11 +54,11 @@ export declare const VvDropdownProps: {
54
54
  crossAxis?: boolean | undefined;
55
55
  mainAxis?: boolean | undefined;
56
56
  limiter?: {
57
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
57
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
58
58
  options?: any;
59
59
  } | undefined;
60
60
  boundary?: import("@floating-ui/dom").Boundary | undefined;
61
- } | import("@floating-ui/dom").Derivable<{
61
+ } | import("@floating-ui/core").Derivable<{
62
62
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
63
63
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
64
64
  altBoundary?: boolean | undefined;
@@ -66,7 +66,7 @@ export declare const VvDropdownProps: {
66
66
  crossAxis?: boolean | undefined;
67
67
  mainAxis?: boolean | undefined;
68
68
  limiter?: {
69
- fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/core").Coords;
69
+ fn: (state: import("@floating-ui/core").MiddlewareState) => import("@floating-ui/utils").Coords;
70
70
  options?: any;
71
71
  } | undefined;
72
72
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -82,11 +82,11 @@ export declare const VvDropdownProps: {
82
82
  crossAxis?: boolean | undefined;
83
83
  mainAxis?: boolean | undefined;
84
84
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
85
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
85
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
86
86
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
87
87
  flipAlignment?: boolean | undefined;
88
88
  boundary?: import("@floating-ui/dom").Boundary | undefined;
89
- } | import("@floating-ui/dom").Derivable<{
89
+ } | import("@floating-ui/core").Derivable<{
90
90
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
91
91
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
92
92
  altBoundary?: boolean | undefined;
@@ -94,7 +94,7 @@ export declare const VvDropdownProps: {
94
94
  crossAxis?: boolean | undefined;
95
95
  mainAxis?: boolean | undefined;
96
96
  fallbackPlacements?: import("@floating-ui/utils").Placement[] | undefined;
97
- fallbackStrategy?: "initialPlacement" | "bestFit" | undefined;
97
+ fallbackStrategy?: "bestFit" | "initialPlacement" | undefined;
98
98
  fallbackAxisSideDirection?: "start" | "end" | "none" | undefined;
99
99
  flipAlignment?: boolean | undefined;
100
100
  boundary?: import("@floating-ui/dom").Boundary | undefined;
@@ -122,7 +122,7 @@ export declare const VvDropdownProps: {
122
122
  availableWidth: number;
123
123
  availableHeight: number;
124
124
  }) => void | Promise<void>) | undefined;
125
- } | import("@floating-ui/dom").Derivable<{
125
+ } | import("@floating-ui/core").Derivable<{
126
126
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
127
127
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
128
128
  altBoundary?: boolean | undefined;
@@ -158,7 +158,7 @@ export declare const VvDropdownProps: {
158
158
  autoAlignment?: boolean | undefined;
159
159
  allowedPlacements?: import("@floating-ui/utils").Placement[] | undefined;
160
160
  boundary?: import("@floating-ui/dom").Boundary | undefined;
161
- } | import("@floating-ui/dom").Derivable<{
161
+ } | import("@floating-ui/core").Derivable<{
162
162
  rootBoundary?: import("@floating-ui/core").RootBoundary | undefined;
163
163
  elementContext?: import("@floating-ui/core").ElementContext | undefined;
164
164
  altBoundary?: boolean | undefined;
@@ -1,7 +1,7 @@
1
1
  import { type VvIconProps } from '.';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<VvIconProps>, {
3
3
  prefix: import(".").IconPrefix;
4
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<VvIconProps>, {
4
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<VvIconProps>, {
5
5
  prefix: import(".").IconPrefix;
6
6
  }>>>, {
7
7
  prefix: string;
@@ -1,4 +1,16 @@
1
1
  import type { IconifyIconOnLoad, IconifyRenderMode } from '@iconify/vue';
2
+ export declare const ACTION_ICONS: {
3
+ readonly showPassword: "eye-on";
4
+ readonly hidePassword: "eye-off";
5
+ readonly showDatePicker: "calendar";
6
+ readonly showTimePicker: "time";
7
+ readonly showColorPicker: "color";
8
+ readonly clear: "close";
9
+ readonly add: "add";
10
+ readonly remove: "trash";
11
+ readonly edit: "edit";
12
+ readonly download: "download";
13
+ };
2
14
  export declare enum IconPrefix {
3
15
  simple = "simple",
4
16
  normal = "normal",