@vuetify/nightly 4.0.0-dev-20230419.0 → 4.0.0-dev-20230422.0

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 (121) hide show
  1. package/CHANGELOG.md +7 -2
  2. package/dist/json/attributes.json +172 -108
  3. package/dist/json/importMap.json +58 -58
  4. package/dist/json/tags.json +16 -0
  5. package/dist/json/web-types.json +522 -220
  6. package/dist/vuetify-labs.css +335 -172
  7. package/dist/vuetify-labs.d.ts +620 -171
  8. package/dist/vuetify-labs.esm.js +864 -182
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +864 -181
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +166 -3
  13. package/dist/vuetify.d.ts +584 -167
  14. package/dist/vuetify.esm.js +806 -134
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +806 -133
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +748 -682
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/adapters/date-adapter.mjs +2 -0
  22. package/lib/adapters/date-adapter.mjs.map +1 -0
  23. package/lib/adapters/vuetify.mjs +399 -0
  24. package/lib/adapters/vuetify.mjs.map +1 -0
  25. package/lib/blueprints/index.d.ts +34 -0
  26. package/lib/blueprints/md1.d.ts +34 -0
  27. package/lib/blueprints/md2.d.ts +34 -0
  28. package/lib/blueprints/md3.d.ts +34 -0
  29. package/lib/components/VAppBar/VAppBar.mjs +62 -10
  30. package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
  31. package/lib/components/VAppBar/index.d.ts +26 -0
  32. package/lib/components/VAutocomplete/VAutocomplete.css +9 -0
  33. package/lib/components/VAutocomplete/VAutocomplete.mjs +50 -6
  34. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  35. package/lib/components/VAutocomplete/VAutocomplete.sass +10 -0
  36. package/lib/components/VAutocomplete/index.d.ts +29 -17
  37. package/lib/components/VBtn/_mixins.scss +1 -1
  38. package/lib/components/VCard/VCard.mjs.map +1 -1
  39. package/lib/components/VCard/index.d.ts +21 -16
  40. package/lib/components/VCheckbox/VCheckbox.mjs +2 -2
  41. package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
  42. package/lib/components/VCheckbox/index.d.ts +22 -1
  43. package/lib/components/VCombobox/VCombobox.css +1 -1
  44. package/lib/components/VCombobox/VCombobox.mjs +6 -4
  45. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  46. package/lib/components/VCombobox/VCombobox.sass +1 -1
  47. package/lib/components/VCombobox/index.d.ts +29 -17
  48. package/lib/components/VField/index.d.ts +6 -0
  49. package/lib/components/VFileInput/VFileInput.mjs +13 -17
  50. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  51. package/lib/components/VFileInput/index.d.ts +68 -23
  52. package/lib/components/VInput/VInput.mjs +14 -7
  53. package/lib/components/VInput/VInput.mjs.map +1 -1
  54. package/lib/components/VInput/index.d.ts +22 -1
  55. package/lib/components/VOverlay/locationStrategies.mjs +9 -4
  56. package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
  57. package/lib/components/VRadioGroup/VRadioGroup.mjs +2 -2
  58. package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
  59. package/lib/components/VRadioGroup/index.d.ts +22 -1
  60. package/lib/components/VRangeSlider/VRangeSlider.mjs +33 -22
  61. package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
  62. package/lib/components/VRangeSlider/index.d.ts +39 -6
  63. package/lib/components/VSelect/VSelect.mjs +6 -0
  64. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  65. package/lib/components/VSelect/index.d.ts +32 -17
  66. package/lib/components/VSlider/VSlider.mjs +33 -15
  67. package/lib/components/VSlider/VSlider.mjs.map +1 -1
  68. package/lib/components/VSlider/index.d.ts +39 -6
  69. package/lib/components/VSlider/slider.mjs +43 -23
  70. package/lib/components/VSlider/slider.mjs.map +1 -1
  71. package/lib/components/VSwitch/VSwitch.mjs +5 -3
  72. package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
  73. package/lib/components/VSwitch/index.d.ts +43 -1
  74. package/lib/components/VTextField/VTextField.mjs +4 -12
  75. package/lib/components/VTextField/VTextField.mjs.map +1 -1
  76. package/lib/components/VTextField/index.d.ts +70 -22
  77. package/lib/components/VTextarea/VTextarea.mjs +4 -12
  78. package/lib/components/VTextarea/VTextarea.mjs.map +1 -1
  79. package/lib/components/VTextarea/index.d.ts +61 -22
  80. package/lib/components/VToolbar/VToolbar.css +3 -1
  81. package/lib/components/VToolbar/VToolbar.sass +3 -1
  82. package/lib/components/VValidation/index.d.ts +10 -1
  83. package/lib/components/index.d.ts +525 -150
  84. package/lib/composables/date.mjs +39 -0
  85. package/lib/composables/date.mjs.map +1 -0
  86. package/lib/composables/focus.mjs +3 -2
  87. package/lib/composables/focus.mjs.map +1 -1
  88. package/lib/composables/index.mjs +1 -0
  89. package/lib/composables/index.mjs.map +1 -1
  90. package/lib/composables/items.mjs +7 -2
  91. package/lib/composables/items.mjs.map +1 -1
  92. package/lib/composables/scroll.mjs +3 -0
  93. package/lib/composables/scroll.mjs.map +1 -1
  94. package/lib/entry-bundler.mjs +1 -1
  95. package/lib/framework.mjs +8 -3
  96. package/lib/framework.mjs.map +1 -1
  97. package/lib/iconsets/mdi-svg.mjs +2 -2
  98. package/lib/iconsets/mdi-svg.mjs.map +1 -1
  99. package/lib/index.d.ts +59 -17
  100. package/lib/labs/VDataTable/VDataTable.mjs +2 -2
  101. package/lib/labs/VDataTable/VDataTable.mjs.map +1 -1
  102. package/lib/labs/VDataTable/VDataTableFooter.mjs.map +1 -1
  103. package/lib/labs/VDataTable/VDataTableHeaders.mjs.map +1 -1
  104. package/lib/labs/VDataTable/VDataTableRows.mjs +52 -44
  105. package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
  106. package/lib/labs/VDataTable/VDataTableServer.mjs +2 -1
  107. package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
  108. package/lib/labs/VDataTable/VDataTableVirtual.mjs +0 -1
  109. package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
  110. package/lib/labs/VDataTable/composables/options.mjs +2 -1
  111. package/lib/labs/VDataTable/composables/options.mjs.map +1 -1
  112. package/lib/labs/VDataTable/index.d.ts +44 -11
  113. package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs +1 -0
  114. package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs.map +1 -1
  115. package/lib/labs/VSkeletonLoader/index.d.ts +9 -9
  116. package/lib/labs/components.d.ts +53 -20
  117. package/lib/styles/main.css +152 -0
  118. package/lib/styles/settings/_utilities.scss +11 -1
  119. package/lib/util/helpers.mjs +4 -0
  120. package/lib/util/helpers.mjs.map +1 -1
  121. package/package.json +2 -2
@@ -673,11 +673,14 @@ declare const VAppBar: {
673
673
  name?: string | undefined;
674
674
  border?: string | number | boolean | undefined;
675
675
  color?: string | undefined;
676
+ scrollBehavior?: string | undefined;
676
677
  title?: string | undefined;
677
678
  image?: string | undefined;
678
679
  elevation?: string | number | undefined;
679
680
  theme?: string | undefined;
680
681
  rounded?: string | number | boolean | undefined;
682
+ scrollTarget?: string | undefined;
683
+ scrollThreshold?: string | number | undefined;
681
684
  } & {
682
685
  $children?: {} | vue.VNodeChild | {
683
686
  default?: (() => vue.VNodeChild) | undefined;
@@ -743,11 +746,14 @@ declare const VAppBar: {
743
746
  name?: string | undefined;
744
747
  border?: string | number | boolean | undefined;
745
748
  color?: string | undefined;
749
+ scrollBehavior?: string | undefined;
746
750
  title?: string | undefined;
747
751
  image?: string | undefined;
748
752
  elevation?: string | number | undefined;
749
753
  theme?: string | undefined;
750
754
  rounded?: string | number | boolean | undefined;
755
+ scrollTarget?: string | undefined;
756
+ scrollThreshold?: string | number | undefined;
751
757
  } & {
752
758
  $children?: {} | vue.VNodeChild | {
753
759
  default?: (() => vue.VNodeChild) | undefined;
@@ -835,11 +841,14 @@ declare const VAppBar: {
835
841
  name?: string | undefined;
836
842
  border?: string | number | boolean | undefined;
837
843
  color?: string | undefined;
844
+ scrollBehavior?: string | undefined;
838
845
  title?: string | undefined;
839
846
  image?: string | undefined;
840
847
  elevation?: string | number | undefined;
841
848
  theme?: string | undefined;
842
849
  rounded?: string | number | boolean | undefined;
850
+ scrollTarget?: string | undefined;
851
+ scrollThreshold?: string | number | undefined;
843
852
  } & {
844
853
  $children?: {} | vue.VNodeChild | {
845
854
  default?: (() => vue.VNodeChild) | undefined;
@@ -895,11 +904,14 @@ declare const VAppBar: {
895
904
  name?: string | undefined;
896
905
  border?: string | number | boolean | undefined;
897
906
  color?: string | undefined;
907
+ scrollBehavior?: string | undefined;
898
908
  title?: string | undefined;
899
909
  image?: string | undefined;
900
910
  elevation?: string | number | undefined;
901
911
  theme?: string | undefined;
902
912
  rounded?: string | number | boolean | undefined;
913
+ scrollTarget?: string | undefined;
914
+ scrollThreshold?: string | number | undefined;
903
915
  } & {
904
916
  $children?: {} | vue.VNodeChild | {
905
917
  default?: (() => vue.VNodeChild) | undefined;
@@ -955,6 +967,12 @@ declare const VAppBar: {
955
967
  type: (StringConstructor | NumberConstructor)[];
956
968
  default: number;
957
969
  };
970
+ scrollTarget: {
971
+ type: StringConstructor;
972
+ };
973
+ scrollThreshold: {
974
+ type: (StringConstructor | NumberConstructor)[];
975
+ };
958
976
  name: {
959
977
  type: StringConstructor;
960
978
  };
@@ -996,6 +1014,7 @@ declare const VAppBar: {
996
1014
  floating: BooleanConstructor;
997
1015
  image: StringConstructor;
998
1016
  title: StringConstructor;
1017
+ scrollBehavior: StringConstructor;
999
1018
  modelValue: {
1000
1019
  type: BooleanConstructor;
1001
1020
  default: boolean;
@@ -1010,6 +1029,12 @@ declare const VAppBar: {
1010
1029
  type: (StringConstructor | NumberConstructor)[];
1011
1030
  default: number;
1012
1031
  };
1032
+ scrollTarget: {
1033
+ type: StringConstructor;
1034
+ };
1035
+ scrollThreshold: {
1036
+ type: (StringConstructor | NumberConstructor)[];
1037
+ };
1013
1038
  name: {
1014
1039
  type: StringConstructor;
1015
1040
  };
@@ -1051,6 +1076,7 @@ declare const VAppBar: {
1051
1076
  floating: BooleanConstructor;
1052
1077
  image: StringConstructor;
1053
1078
  title: StringConstructor;
1079
+ scrollBehavior: StringConstructor;
1054
1080
  modelValue: {
1055
1081
  type: BooleanConstructor;
1056
1082
  default: boolean;
@@ -2409,6 +2435,7 @@ declare const VInput: {
2409
2435
  errorMessages: string | string[];
2410
2436
  maxErrors: string | number;
2411
2437
  rules: ValidationRule[];
2438
+ persistentHint: boolean;
2412
2439
  }> & Omit<{
2413
2440
  error: boolean;
2414
2441
  direction: "horizontal" | "vertical";
@@ -2420,6 +2447,7 @@ declare const VInput: {
2420
2447
  errorMessages: string | string[];
2421
2448
  maxErrors: string | number;
2422
2449
  rules: ValidationRule[];
2450
+ persistentHint: boolean;
2423
2451
  } & {
2424
2452
  id?: string | undefined;
2425
2453
  name?: string | undefined;
@@ -2429,8 +2457,10 @@ declare const VInput: {
2429
2457
  appendIcon?: IconValue | undefined;
2430
2458
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2431
2459
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2460
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
2432
2461
  validateOn?: "input" | "blur" | "submit" | undefined;
2433
2462
  validationValue?: any;
2463
+ hint?: string | undefined;
2434
2464
  hideDetails?: boolean | "auto" | undefined;
2435
2465
  } & {
2436
2466
  $children?: {} | vue.VNodeChild | {
@@ -2458,7 +2488,7 @@ declare const VInput: {
2458
2488
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
2459
2489
  } & {
2460
2490
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
2461
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
2491
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
2462
2492
  $attrs: {
2463
2493
  [x: string]: unknown;
2464
2494
  };
@@ -2483,6 +2513,7 @@ declare const VInput: {
2483
2513
  errorMessages: string | string[];
2484
2514
  maxErrors: string | number;
2485
2515
  rules: ValidationRule[];
2516
+ persistentHint: boolean;
2486
2517
  } & {
2487
2518
  id?: string | undefined;
2488
2519
  name?: string | undefined;
@@ -2492,8 +2523,10 @@ declare const VInput: {
2492
2523
  appendIcon?: IconValue | undefined;
2493
2524
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2494
2525
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2526
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
2495
2527
  validateOn?: "input" | "blur" | "submit" | undefined;
2496
2528
  validationValue?: any;
2529
+ hint?: string | undefined;
2497
2530
  hideDetails?: boolean | "auto" | undefined;
2498
2531
  } & {
2499
2532
  $children?: {} | vue.VNodeChild | {
@@ -2538,6 +2571,7 @@ declare const VInput: {
2538
2571
  errorMessages: string | string[];
2539
2572
  maxErrors: string | number;
2540
2573
  rules: ValidationRule[];
2574
+ persistentHint: boolean;
2541
2575
  }, {}, string> & {
2542
2576
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
2543
2577
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -2569,6 +2603,7 @@ declare const VInput: {
2569
2603
  errorMessages: string | string[];
2570
2604
  maxErrors: string | number;
2571
2605
  rules: ValidationRule[];
2606
+ persistentHint: boolean;
2572
2607
  } & {
2573
2608
  id?: string | undefined;
2574
2609
  name?: string | undefined;
@@ -2578,8 +2613,10 @@ declare const VInput: {
2578
2613
  appendIcon?: IconValue | undefined;
2579
2614
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2580
2615
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2616
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
2581
2617
  validateOn?: "input" | "blur" | "submit" | undefined;
2582
2618
  validationValue?: any;
2619
+ hint?: string | undefined;
2583
2620
  hideDetails?: boolean | "auto" | undefined;
2584
2621
  } & {
2585
2622
  $children?: {} | vue.VNodeChild | {
@@ -2626,6 +2663,7 @@ declare const VInput: {
2626
2663
  errorMessages: string | string[];
2627
2664
  maxErrors: string | number;
2628
2665
  rules: ValidationRule[];
2666
+ persistentHint: boolean;
2629
2667
  } & {
2630
2668
  id?: string | undefined;
2631
2669
  name?: string | undefined;
@@ -2635,8 +2673,10 @@ declare const VInput: {
2635
2673
  appendIcon?: IconValue | undefined;
2636
2674
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2637
2675
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2676
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
2638
2677
  validateOn?: "input" | "blur" | "submit" | undefined;
2639
2678
  validationValue?: any;
2679
+ hint?: string | undefined;
2640
2680
  hideDetails?: boolean | "auto" | undefined;
2641
2681
  } & {
2642
2682
  $children?: {} | vue.VNodeChild | {
@@ -2681,8 +2721,10 @@ declare const VInput: {
2681
2721
  errorMessages: string | string[];
2682
2722
  maxErrors: string | number;
2683
2723
  rules: ValidationRule[];
2724
+ persistentHint: boolean;
2684
2725
  }, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
2685
2726
  focused: BooleanConstructor;
2727
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
2686
2728
  disabled: BooleanConstructor;
2687
2729
  error: BooleanConstructor;
2688
2730
  errorMessages: {
@@ -2712,6 +2754,8 @@ declare const VInput: {
2712
2754
  appendIcon: PropType<IconValue>;
2713
2755
  prependIcon: PropType<IconValue>;
2714
2756
  hideDetails: PropType<boolean | "auto">;
2757
+ hint: StringConstructor;
2758
+ persistentHint: BooleanConstructor;
2715
2759
  messages: {
2716
2760
  type: PropType<string | string[]>;
2717
2761
  default: () => never[];
@@ -2725,6 +2769,7 @@ declare const VInput: {
2725
2769
  'onClick:append': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
2726
2770
  }, vue.ExtractPropTypes<{
2727
2771
  focused: BooleanConstructor;
2772
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
2728
2773
  disabled: BooleanConstructor;
2729
2774
  error: BooleanConstructor;
2730
2775
  errorMessages: {
@@ -2754,6 +2799,8 @@ declare const VInput: {
2754
2799
  appendIcon: PropType<IconValue>;
2755
2800
  prependIcon: PropType<IconValue>;
2756
2801
  hideDetails: PropType<boolean | "auto">;
2802
+ hint: StringConstructor;
2803
+ persistentHint: BooleanConstructor;
2757
2804
  messages: {
2758
2805
  type: PropType<string | string[]>;
2759
2806
  default: () => never[];
@@ -2830,6 +2877,7 @@ declare const VField: {
2830
2877
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
2831
2878
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
2832
2879
  focused: BooleanConstructor;
2880
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
2833
2881
  id: StringConstructor;
2834
2882
  }, "$children" | "v-slot:default" | "$slots" | "v-slots" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner">>> & {
2835
2883
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -2881,6 +2929,7 @@ declare const VField: {
2881
2929
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
2882
2930
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
2883
2931
  focused: BooleanConstructor;
2932
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
2884
2933
  id: StringConstructor;
2885
2934
  }, "$children" | "v-slot:default" | "$slots" | "v-slots" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner">>> & {
2886
2935
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -2957,6 +3006,7 @@ declare const VField: {
2957
3006
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
2958
3007
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
2959
3008
  focused: BooleanConstructor;
3009
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
2960
3010
  id: StringConstructor;
2961
3011
  }, "$children" | "v-slot:default" | "$slots" | "v-slots" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner">>> & {
2962
3012
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -3000,6 +3050,7 @@ declare const VField: {
3000
3050
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3001
3051
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3002
3052
  focused: BooleanConstructor;
3053
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
3003
3054
  id: StringConstructor;
3004
3055
  }, "$children" | "v-slot:default" | "$slots" | "v-slots" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner">>> & {
3005
3056
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -3093,6 +3144,7 @@ declare const VField: {
3093
3144
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3094
3145
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3095
3146
  focused: BooleanConstructor;
3147
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
3096
3148
  id: StringConstructor;
3097
3149
  }, vue.ExtractPropTypes<{
3098
3150
  rounded: {
@@ -3128,6 +3180,7 @@ declare const VField: {
3128
3180
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3129
3181
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3130
3182
  focused: BooleanConstructor;
3183
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
3131
3184
  id: StringConstructor;
3132
3185
  }>>;
3133
3186
  type VField = InstanceType<typeof VField>;
@@ -3244,10 +3297,10 @@ declare const VAutocomplete: {
3244
3297
  errorMessages: string | string[];
3245
3298
  maxErrors: string | number;
3246
3299
  rules: ValidationRule[];
3300
+ persistentHint: boolean;
3247
3301
  clearable: boolean;
3248
3302
  persistentClear: boolean;
3249
3303
  singleLine: boolean;
3250
- persistentHint: boolean;
3251
3304
  persistentPlaceholder: boolean;
3252
3305
  persistentCounter: boolean;
3253
3306
  valueComparator: typeof deepEqual;
@@ -3340,6 +3393,7 @@ declare const VAutocomplete: {
3340
3393
  'onClick:appendInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3341
3394
  'onClick:prependInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3342
3395
  focused: BooleanConstructor;
3396
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
3343
3397
  validateOn: vue.PropType<"input" | "blur" | "submit" | undefined>;
3344
3398
  errorMessages: {
3345
3399
  type: vue.PropType<string | string[]>;
@@ -3353,12 +3407,12 @@ declare const VAutocomplete: {
3353
3407
  type: vue.PropType<ValidationRule[]>;
3354
3408
  default: () => never[];
3355
3409
  };
3410
+ hint: StringConstructor;
3411
+ persistentHint: BooleanConstructor;
3356
3412
  hideDetails: vue.PropType<boolean | "auto">;
3357
3413
  clearable: BooleanConstructor;
3358
3414
  persistentClear: BooleanConstructor;
3359
3415
  singleLine: BooleanConstructor;
3360
- hint: StringConstructor;
3361
- persistentHint: BooleanConstructor;
3362
3416
  persistentPlaceholder: BooleanConstructor;
3363
3417
  persistentCounter: BooleanConstructor;
3364
3418
  suffix: StringConstructor;
@@ -3736,9 +3790,10 @@ declare const VAutocomplete: {
3736
3790
  noFilter: BooleanConstructor;
3737
3791
  search: StringConstructor;
3738
3792
  }, "multiple" | "$children" | "$slots" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:details" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
3793
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
3739
3794
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
3740
3795
  "onUpdate:search"?: ((val: any) => any) | undefined;
3741
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "reverse" | "type" | "error" | "active" | "direction" | "transition" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "noDataText" | "messages" | "rounded" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "valueComparator" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
3796
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "reverse" | "type" | "error" | "active" | "direction" | "transition" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "noDataText" | "messages" | "rounded" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint" | "clearable" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter" | "valueComparator" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
3742
3797
  $attrs: {
3743
3798
  [x: string]: unknown;
3744
3799
  };
@@ -3750,7 +3805,7 @@ declare const VAutocomplete: {
3750
3805
  }>;
3751
3806
  $root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
3752
3807
  $parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
3753
- $emit: ((event: "update:menu", val: boolean) => void) & ((event: "update:search", val: any) => void);
3808
+ $emit: ((event: "update:focused", focused: boolean) => void) & ((event: "update:menu", val: boolean) => void) & ((event: "update:search", val: any) => void);
3754
3809
  $el: any;
3755
3810
  $options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
3756
3811
  transition: Omit<{
@@ -3828,6 +3883,7 @@ declare const VAutocomplete: {
3828
3883
  'onClick:appendInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3829
3884
  'onClick:prependInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3830
3885
  focused: BooleanConstructor;
3886
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
3831
3887
  validateOn: vue.PropType<"input" | "blur" | "submit" | undefined>;
3832
3888
  errorMessages: {
3833
3889
  type: vue.PropType<string | string[]>;
@@ -3841,12 +3897,12 @@ declare const VAutocomplete: {
3841
3897
  type: vue.PropType<ValidationRule[]>;
3842
3898
  default: () => never[];
3843
3899
  };
3900
+ hint: StringConstructor;
3901
+ persistentHint: BooleanConstructor;
3844
3902
  hideDetails: vue.PropType<boolean | "auto">;
3845
3903
  clearable: BooleanConstructor;
3846
3904
  persistentClear: BooleanConstructor;
3847
3905
  singleLine: BooleanConstructor;
3848
- hint: StringConstructor;
3849
- persistentHint: BooleanConstructor;
3850
3906
  persistentPlaceholder: BooleanConstructor;
3851
3907
  persistentCounter: BooleanConstructor;
3852
3908
  suffix: StringConstructor;
@@ -4224,6 +4280,7 @@ declare const VAutocomplete: {
4224
4280
  noFilter: BooleanConstructor;
4225
4281
  search: StringConstructor;
4226
4282
  }, "multiple" | "$children" | "$slots" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:details" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
4283
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
4227
4284
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
4228
4285
  "onUpdate:search"?: ((val: any) => any) | undefined;
4229
4286
  }, {
@@ -4236,6 +4293,7 @@ declare const VAutocomplete: {
4236
4293
  filteredItems: vue.Ref<InternalItem<any>[]>;
4237
4294
  select: (item: InternalItem) => void;
4238
4295
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
4296
+ 'update:focused': (focused: boolean) => boolean;
4239
4297
  'update:search': (val: any) => true;
4240
4298
  'update:modelValue': (val: any) => boolean;
4241
4299
  'update:menu': (val: boolean) => true;
@@ -4264,10 +4322,10 @@ declare const VAutocomplete: {
4264
4322
  errorMessages: string | string[];
4265
4323
  maxErrors: string | number;
4266
4324
  rules: ValidationRule[];
4325
+ persistentHint: boolean;
4267
4326
  clearable: boolean;
4268
4327
  persistentClear: boolean;
4269
4328
  singleLine: boolean;
4270
- persistentHint: boolean;
4271
4329
  persistentPlaceholder: boolean;
4272
4330
  persistentCounter: boolean;
4273
4331
  valueComparator: typeof deepEqual;
@@ -4380,6 +4438,7 @@ declare const VAutocomplete: {
4380
4438
  'onClick:appendInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
4381
4439
  'onClick:prependInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
4382
4440
  focused: BooleanConstructor;
4441
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
4383
4442
  validateOn: vue.PropType<"input" | "blur" | "submit" | undefined>;
4384
4443
  errorMessages: {
4385
4444
  type: vue.PropType<string | string[]>;
@@ -4393,12 +4452,12 @@ declare const VAutocomplete: {
4393
4452
  type: vue.PropType<ValidationRule[]>;
4394
4453
  default: () => never[];
4395
4454
  };
4455
+ hint: StringConstructor;
4456
+ persistentHint: BooleanConstructor;
4396
4457
  hideDetails: vue.PropType<boolean | "auto">;
4397
4458
  clearable: BooleanConstructor;
4398
4459
  persistentClear: BooleanConstructor;
4399
4460
  singleLine: BooleanConstructor;
4400
- hint: StringConstructor;
4401
- persistentHint: BooleanConstructor;
4402
4461
  persistentPlaceholder: BooleanConstructor;
4403
4462
  persistentCounter: BooleanConstructor;
4404
4463
  suffix: StringConstructor;
@@ -4776,6 +4835,7 @@ declare const VAutocomplete: {
4776
4835
  noFilter: BooleanConstructor;
4777
4836
  search: StringConstructor;
4778
4837
  }, "multiple" | "$children" | "$slots" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:details" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
4838
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
4779
4839
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
4780
4840
  "onUpdate:search"?: ((val: any) => any) | undefined;
4781
4841
  } & vue.ShallowUnwrapRef<{
@@ -4867,6 +4927,7 @@ declare const VAutocomplete: {
4867
4927
  'onClick:appendInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
4868
4928
  'onClick:prependInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
4869
4929
  focused: BooleanConstructor;
4930
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
4870
4931
  validateOn: vue.PropType<"input" | "blur" | "submit" | undefined>;
4871
4932
  errorMessages: {
4872
4933
  type: vue.PropType<string | string[]>;
@@ -4880,12 +4941,12 @@ declare const VAutocomplete: {
4880
4941
  type: vue.PropType<ValidationRule[]>;
4881
4942
  default: () => never[];
4882
4943
  };
4944
+ hint: StringConstructor;
4945
+ persistentHint: BooleanConstructor;
4883
4946
  hideDetails: vue.PropType<boolean | "auto">;
4884
4947
  clearable: BooleanConstructor;
4885
4948
  persistentClear: BooleanConstructor;
4886
4949
  singleLine: BooleanConstructor;
4887
- hint: StringConstructor;
4888
- persistentHint: BooleanConstructor;
4889
4950
  persistentPlaceholder: BooleanConstructor;
4890
4951
  persistentCounter: BooleanConstructor;
4891
4952
  suffix: StringConstructor;
@@ -5263,6 +5324,7 @@ declare const VAutocomplete: {
5263
5324
  noFilter: BooleanConstructor;
5264
5325
  search: StringConstructor;
5265
5326
  }, "multiple" | "$children" | "$slots" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:details" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
5327
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
5266
5328
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
5267
5329
  "onUpdate:search"?: ((val: any) => any) | undefined;
5268
5330
  }, {
@@ -5275,6 +5337,7 @@ declare const VAutocomplete: {
5275
5337
  filteredItems: vue.Ref<InternalItem<any>[]>;
5276
5338
  select: (item: InternalItem) => void;
5277
5339
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
5340
+ 'update:focused': (focused: boolean) => boolean;
5278
5341
  'update:search': (val: any) => true;
5279
5342
  'update:modelValue': (val: any) => boolean;
5280
5343
  'update:menu': (val: boolean) => true;
@@ -5303,10 +5366,10 @@ declare const VAutocomplete: {
5303
5366
  errorMessages: string | string[];
5304
5367
  maxErrors: string | number;
5305
5368
  rules: ValidationRule[];
5369
+ persistentHint: boolean;
5306
5370
  clearable: boolean;
5307
5371
  persistentClear: boolean;
5308
5372
  singleLine: boolean;
5309
- persistentHint: boolean;
5310
5373
  persistentPlaceholder: boolean;
5311
5374
  persistentCounter: boolean;
5312
5375
  valueComparator: typeof deepEqual;
@@ -5515,6 +5578,7 @@ declare const VAutocomplete: {
5515
5578
  'onClick:appendInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
5516
5579
  'onClick:prependInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
5517
5580
  focused: BooleanConstructor;
5581
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
5518
5582
  validateOn: vue.PropType<"input" | "blur" | "submit" | undefined>;
5519
5583
  errorMessages: {
5520
5584
  type: vue.PropType<string | string[]>;
@@ -5528,12 +5592,12 @@ declare const VAutocomplete: {
5528
5592
  type: vue.PropType<ValidationRule[]>;
5529
5593
  default: () => never[];
5530
5594
  };
5595
+ hint: StringConstructor;
5596
+ persistentHint: BooleanConstructor;
5531
5597
  hideDetails: vue.PropType<boolean | "auto">;
5532
5598
  clearable: BooleanConstructor;
5533
5599
  persistentClear: BooleanConstructor;
5534
5600
  singleLine: BooleanConstructor;
5535
- hint: StringConstructor;
5536
- persistentHint: BooleanConstructor;
5537
5601
  persistentPlaceholder: BooleanConstructor;
5538
5602
  persistentCounter: BooleanConstructor;
5539
5603
  suffix: StringConstructor;
@@ -5986,6 +6050,7 @@ declare const VAutocomplete: {
5986
6050
  'onClick:appendInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
5987
6051
  'onClick:prependInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
5988
6052
  focused: BooleanConstructor;
6053
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
5989
6054
  validateOn: vue.PropType<"input" | "blur" | "submit" | undefined>;
5990
6055
  errorMessages: {
5991
6056
  type: vue.PropType<string | string[]>;
@@ -5999,12 +6064,12 @@ declare const VAutocomplete: {
5999
6064
  type: vue.PropType<ValidationRule[]>;
6000
6065
  default: () => never[];
6001
6066
  };
6067
+ hint: StringConstructor;
6068
+ persistentHint: BooleanConstructor;
6002
6069
  hideDetails: vue.PropType<boolean | "auto">;
6003
6070
  clearable: BooleanConstructor;
6004
6071
  persistentClear: BooleanConstructor;
6005
6072
  singleLine: BooleanConstructor;
6006
- hint: StringConstructor;
6007
- persistentHint: BooleanConstructor;
6008
6073
  persistentPlaceholder: BooleanConstructor;
6009
6074
  persistentCounter: BooleanConstructor;
6010
6075
  suffix: StringConstructor;
@@ -9586,7 +9651,7 @@ declare const VCard: {
9586
9651
  title?: (() => vue.VNodeChild) | undefined;
9587
9652
  subtitle?: (() => vue.VNodeChild) | undefined;
9588
9653
  text?: (() => vue.VNodeChild) | undefined;
9589
- loader?: (() => vue.VNodeChild) | undefined;
9654
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9590
9655
  image?: (() => vue.VNodeChild) | undefined;
9591
9656
  prepend?: (() => vue.VNodeChild) | undefined;
9592
9657
  append?: (() => vue.VNodeChild) | undefined;
@@ -9597,7 +9662,7 @@ declare const VCard: {
9597
9662
  title?: (() => vue.VNodeChild) | undefined;
9598
9663
  subtitle?: (() => vue.VNodeChild) | undefined;
9599
9664
  text?: (() => vue.VNodeChild) | undefined;
9600
- loader?: (() => vue.VNodeChild) | undefined;
9665
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9601
9666
  image?: (() => vue.VNodeChild) | undefined;
9602
9667
  prepend?: (() => vue.VNodeChild) | undefined;
9603
9668
  append?: (() => vue.VNodeChild) | undefined;
@@ -9608,7 +9673,7 @@ declare const VCard: {
9608
9673
  title?: false | (() => vue.VNodeChild) | undefined;
9609
9674
  subtitle?: false | (() => vue.VNodeChild) | undefined;
9610
9675
  text?: false | (() => vue.VNodeChild) | undefined;
9611
- loader?: false | (() => vue.VNodeChild) | undefined;
9676
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9612
9677
  image?: false | (() => vue.VNodeChild) | undefined;
9613
9678
  prepend?: false | (() => vue.VNodeChild) | undefined;
9614
9679
  append?: false | (() => vue.VNodeChild) | undefined;
@@ -9619,7 +9684,7 @@ declare const VCard: {
9619
9684
  "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
9620
9685
  "v-slot:subtitle"?: false | (() => vue.VNodeChild) | undefined;
9621
9686
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
9622
- "v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
9687
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9623
9688
  "v-slot:image"?: false | (() => vue.VNodeChild) | undefined;
9624
9689
  "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
9625
9690
  "v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
@@ -9680,7 +9745,7 @@ declare const VCard: {
9680
9745
  title?: (() => vue.VNodeChild) | undefined;
9681
9746
  subtitle?: (() => vue.VNodeChild) | undefined;
9682
9747
  text?: (() => vue.VNodeChild) | undefined;
9683
- loader?: (() => vue.VNodeChild) | undefined;
9748
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9684
9749
  image?: (() => vue.VNodeChild) | undefined;
9685
9750
  prepend?: (() => vue.VNodeChild) | undefined;
9686
9751
  append?: (() => vue.VNodeChild) | undefined;
@@ -9691,7 +9756,7 @@ declare const VCard: {
9691
9756
  title?: (() => vue.VNodeChild) | undefined;
9692
9757
  subtitle?: (() => vue.VNodeChild) | undefined;
9693
9758
  text?: (() => vue.VNodeChild) | undefined;
9694
- loader?: (() => vue.VNodeChild) | undefined;
9759
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9695
9760
  image?: (() => vue.VNodeChild) | undefined;
9696
9761
  prepend?: (() => vue.VNodeChild) | undefined;
9697
9762
  append?: (() => vue.VNodeChild) | undefined;
@@ -9702,7 +9767,7 @@ declare const VCard: {
9702
9767
  title?: false | (() => vue.VNodeChild) | undefined;
9703
9768
  subtitle?: false | (() => vue.VNodeChild) | undefined;
9704
9769
  text?: false | (() => vue.VNodeChild) | undefined;
9705
- loader?: false | (() => vue.VNodeChild) | undefined;
9770
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9706
9771
  image?: false | (() => vue.VNodeChild) | undefined;
9707
9772
  prepend?: false | (() => vue.VNodeChild) | undefined;
9708
9773
  append?: false | (() => vue.VNodeChild) | undefined;
@@ -9713,7 +9778,7 @@ declare const VCard: {
9713
9778
  "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
9714
9779
  "v-slot:subtitle"?: false | (() => vue.VNodeChild) | undefined;
9715
9780
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
9716
- "v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
9781
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9717
9782
  "v-slot:image"?: false | (() => vue.VNodeChild) | undefined;
9718
9783
  "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
9719
9784
  "v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
@@ -9792,7 +9857,7 @@ declare const VCard: {
9792
9857
  title?: (() => vue.VNodeChild) | undefined;
9793
9858
  subtitle?: (() => vue.VNodeChild) | undefined;
9794
9859
  text?: (() => vue.VNodeChild) | undefined;
9795
- loader?: (() => vue.VNodeChild) | undefined;
9860
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9796
9861
  image?: (() => vue.VNodeChild) | undefined;
9797
9862
  prepend?: (() => vue.VNodeChild) | undefined;
9798
9863
  append?: (() => vue.VNodeChild) | undefined;
@@ -9803,7 +9868,7 @@ declare const VCard: {
9803
9868
  title?: (() => vue.VNodeChild) | undefined;
9804
9869
  subtitle?: (() => vue.VNodeChild) | undefined;
9805
9870
  text?: (() => vue.VNodeChild) | undefined;
9806
- loader?: (() => vue.VNodeChild) | undefined;
9871
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9807
9872
  image?: (() => vue.VNodeChild) | undefined;
9808
9873
  prepend?: (() => vue.VNodeChild) | undefined;
9809
9874
  append?: (() => vue.VNodeChild) | undefined;
@@ -9814,7 +9879,7 @@ declare const VCard: {
9814
9879
  title?: false | (() => vue.VNodeChild) | undefined;
9815
9880
  subtitle?: false | (() => vue.VNodeChild) | undefined;
9816
9881
  text?: false | (() => vue.VNodeChild) | undefined;
9817
- loader?: false | (() => vue.VNodeChild) | undefined;
9882
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9818
9883
  image?: false | (() => vue.VNodeChild) | undefined;
9819
9884
  prepend?: false | (() => vue.VNodeChild) | undefined;
9820
9885
  append?: false | (() => vue.VNodeChild) | undefined;
@@ -9825,7 +9890,7 @@ declare const VCard: {
9825
9890
  "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
9826
9891
  "v-slot:subtitle"?: false | (() => vue.VNodeChild) | undefined;
9827
9892
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
9828
- "v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
9893
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9829
9894
  "v-slot:image"?: false | (() => vue.VNodeChild) | undefined;
9830
9895
  "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
9831
9896
  "v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
@@ -9876,7 +9941,7 @@ declare const VCard: {
9876
9941
  title?: (() => vue.VNodeChild) | undefined;
9877
9942
  subtitle?: (() => vue.VNodeChild) | undefined;
9878
9943
  text?: (() => vue.VNodeChild) | undefined;
9879
- loader?: (() => vue.VNodeChild) | undefined;
9944
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9880
9945
  image?: (() => vue.VNodeChild) | undefined;
9881
9946
  prepend?: (() => vue.VNodeChild) | undefined;
9882
9947
  append?: (() => vue.VNodeChild) | undefined;
@@ -9887,7 +9952,7 @@ declare const VCard: {
9887
9952
  title?: (() => vue.VNodeChild) | undefined;
9888
9953
  subtitle?: (() => vue.VNodeChild) | undefined;
9889
9954
  text?: (() => vue.VNodeChild) | undefined;
9890
- loader?: (() => vue.VNodeChild) | undefined;
9955
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9891
9956
  image?: (() => vue.VNodeChild) | undefined;
9892
9957
  prepend?: (() => vue.VNodeChild) | undefined;
9893
9958
  append?: (() => vue.VNodeChild) | undefined;
@@ -9898,7 +9963,7 @@ declare const VCard: {
9898
9963
  title?: false | (() => vue.VNodeChild) | undefined;
9899
9964
  subtitle?: false | (() => vue.VNodeChild) | undefined;
9900
9965
  text?: false | (() => vue.VNodeChild) | undefined;
9901
- loader?: false | (() => vue.VNodeChild) | undefined;
9966
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9902
9967
  image?: false | (() => vue.VNodeChild) | undefined;
9903
9968
  prepend?: false | (() => vue.VNodeChild) | undefined;
9904
9969
  append?: false | (() => vue.VNodeChild) | undefined;
@@ -9909,7 +9974,7 @@ declare const VCard: {
9909
9974
  "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
9910
9975
  "v-slot:subtitle"?: false | (() => vue.VNodeChild) | undefined;
9911
9976
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
9912
- "v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
9977
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9913
9978
  "v-slot:image"?: false | (() => vue.VNodeChild) | undefined;
9914
9979
  "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
9915
9980
  "v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
@@ -12196,6 +12261,7 @@ declare const VCheckbox: {
12196
12261
  errorMessages: string | string[];
12197
12262
  maxErrors: string | number;
12198
12263
  rules: ValidationRule[];
12264
+ persistentHint: boolean;
12199
12265
  falseIcon: NonNullable<IconValue>;
12200
12266
  trueIcon: NonNullable<IconValue>;
12201
12267
  valueComparator: typeof deepEqual;
@@ -12214,6 +12280,7 @@ declare const VCheckbox: {
12214
12280
  errorMessages: string | string[];
12215
12281
  maxErrors: string | number;
12216
12282
  rules: ValidationRule[];
12283
+ persistentHint: boolean;
12217
12284
  falseIcon: NonNullable<IconValue>;
12218
12285
  trueIcon: NonNullable<IconValue>;
12219
12286
  valueComparator: typeof deepEqual;
@@ -12231,8 +12298,10 @@ declare const VCheckbox: {
12231
12298
  appendIcon?: IconValue | undefined;
12232
12299
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12233
12300
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12301
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
12234
12302
  validateOn?: "input" | "blur" | "submit" | undefined;
12235
12303
  validationValue?: any;
12304
+ hint?: string | undefined;
12236
12305
  hideDetails?: boolean | "auto" | undefined;
12237
12306
  trueValue?: any;
12238
12307
  falseValue?: any;
@@ -12282,7 +12351,7 @@ declare const VCheckbox: {
12282
12351
  "v-slot:input"?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
12283
12352
  } & {
12284
12353
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
12285
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "multiple" | "readonly" | "indeterminate" | "messages" | "density" | "ripple" | "focused" | "errorMessages" | "maxErrors" | "rules" | "falseIcon" | "trueIcon" | "valueComparator" | "indeterminateIcon">;
12354
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "multiple" | "readonly" | "indeterminate" | "messages" | "density" | "ripple" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint" | "falseIcon" | "trueIcon" | "valueComparator" | "indeterminateIcon">;
12286
12355
  $attrs: {
12287
12356
  [x: string]: unknown;
12288
12357
  };
@@ -12310,6 +12379,7 @@ declare const VCheckbox: {
12310
12379
  errorMessages: string | string[];
12311
12380
  maxErrors: string | number;
12312
12381
  rules: ValidationRule[];
12382
+ persistentHint: boolean;
12313
12383
  falseIcon: NonNullable<IconValue>;
12314
12384
  trueIcon: NonNullable<IconValue>;
12315
12385
  valueComparator: typeof deepEqual;
@@ -12327,8 +12397,10 @@ declare const VCheckbox: {
12327
12397
  appendIcon?: IconValue | undefined;
12328
12398
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12329
12399
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12400
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
12330
12401
  validateOn?: "input" | "blur" | "submit" | undefined;
12331
12402
  validationValue?: any;
12403
+ hint?: string | undefined;
12332
12404
  hideDetails?: boolean | "auto" | undefined;
12333
12405
  trueValue?: any;
12334
12406
  falseValue?: any;
@@ -12394,6 +12466,7 @@ declare const VCheckbox: {
12394
12466
  errorMessages: string | string[];
12395
12467
  maxErrors: string | number;
12396
12468
  rules: ValidationRule[];
12469
+ persistentHint: boolean;
12397
12470
  falseIcon: NonNullable<IconValue>;
12398
12471
  trueIcon: NonNullable<IconValue>;
12399
12472
  valueComparator: typeof deepEqual;
@@ -12432,6 +12505,7 @@ declare const VCheckbox: {
12432
12505
  errorMessages: string | string[];
12433
12506
  maxErrors: string | number;
12434
12507
  rules: ValidationRule[];
12508
+ persistentHint: boolean;
12435
12509
  falseIcon: NonNullable<IconValue>;
12436
12510
  trueIcon: NonNullable<IconValue>;
12437
12511
  valueComparator: typeof deepEqual;
@@ -12449,8 +12523,10 @@ declare const VCheckbox: {
12449
12523
  appendIcon?: IconValue | undefined;
12450
12524
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12451
12525
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12526
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
12452
12527
  validateOn?: "input" | "blur" | "submit" | undefined;
12453
12528
  validationValue?: any;
12529
+ hint?: string | undefined;
12454
12530
  hideDetails?: boolean | "auto" | undefined;
12455
12531
  trueValue?: any;
12456
12532
  falseValue?: any;
@@ -12518,6 +12594,7 @@ declare const VCheckbox: {
12518
12594
  errorMessages: string | string[];
12519
12595
  maxErrors: string | number;
12520
12596
  rules: ValidationRule[];
12597
+ persistentHint: boolean;
12521
12598
  falseIcon: NonNullable<IconValue>;
12522
12599
  trueIcon: NonNullable<IconValue>;
12523
12600
  valueComparator: typeof deepEqual;
@@ -12535,8 +12612,10 @@ declare const VCheckbox: {
12535
12612
  appendIcon?: IconValue | undefined;
12536
12613
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12537
12614
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12615
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
12538
12616
  validateOn?: "input" | "blur" | "submit" | undefined;
12539
12617
  validationValue?: any;
12618
+ hint?: string | undefined;
12540
12619
  hideDetails?: boolean | "auto" | undefined;
12541
12620
  trueValue?: any;
12542
12621
  falseValue?: any;
@@ -12602,6 +12681,7 @@ declare const VCheckbox: {
12602
12681
  errorMessages: string | string[];
12603
12682
  maxErrors: string | number;
12604
12683
  rules: ValidationRule[];
12684
+ persistentHint: boolean;
12605
12685
  falseIcon: NonNullable<IconValue>;
12606
12686
  trueIcon: NonNullable<IconValue>;
12607
12687
  valueComparator: typeof deepEqual;
@@ -12651,6 +12731,7 @@ declare const VCheckbox: {
12651
12731
  default: string;
12652
12732
  };
12653
12733
  focused: BooleanConstructor;
12734
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
12654
12735
  errorMessages: {
12655
12736
  type: vue.PropType<string | string[]>;
12656
12737
  default: () => never[];
@@ -12668,6 +12749,8 @@ declare const VCheckbox: {
12668
12749
  appendIcon: vue.PropType<IconValue>;
12669
12750
  prependIcon: vue.PropType<IconValue>;
12670
12751
  hideDetails: vue.PropType<boolean | "auto">;
12752
+ hint: StringConstructor;
12753
+ persistentHint: BooleanConstructor;
12671
12754
  messages: {
12672
12755
  type: vue.PropType<string | string[]>;
12673
12756
  default: () => never[];
@@ -12724,6 +12807,7 @@ declare const VCheckbox: {
12724
12807
  default: string;
12725
12808
  };
12726
12809
  focused: BooleanConstructor;
12810
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
12727
12811
  errorMessages: {
12728
12812
  type: vue.PropType<string | string[]>;
12729
12813
  default: () => never[];
@@ -12741,6 +12825,8 @@ declare const VCheckbox: {
12741
12825
  appendIcon: vue.PropType<IconValue>;
12742
12826
  prependIcon: vue.PropType<IconValue>;
12743
12827
  hideDetails: vue.PropType<boolean | "auto">;
12828
+ hint: StringConstructor;
12829
+ persistentHint: BooleanConstructor;
12744
12830
  messages: {
12745
12831
  type: vue.PropType<string | string[]>;
12746
12832
  default: () => never[];
@@ -14575,10 +14661,10 @@ declare const VCombobox: {
14575
14661
  errorMessages: string | string[];
14576
14662
  maxErrors: string | number;
14577
14663
  rules: ValidationRule[];
14664
+ persistentHint: boolean;
14578
14665
  clearable: boolean;
14579
14666
  persistentClear: boolean;
14580
14667
  singleLine: boolean;
14581
- persistentHint: boolean;
14582
14668
  persistentPlaceholder: boolean;
14583
14669
  persistentCounter: boolean;
14584
14670
  valueComparator: typeof deepEqual;
@@ -14671,6 +14757,7 @@ declare const VCombobox: {
14671
14757
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
14672
14758
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
14673
14759
  focused: BooleanConstructor;
14760
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
14674
14761
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
14675
14762
  errorMessages: {
14676
14763
  type: PropType<string | string[]>;
@@ -14684,12 +14771,12 @@ declare const VCombobox: {
14684
14771
  type: PropType<ValidationRule[]>;
14685
14772
  default: () => never[];
14686
14773
  };
14774
+ hint: StringConstructor;
14775
+ persistentHint: BooleanConstructor;
14687
14776
  hideDetails: PropType<boolean | "auto">;
14688
14777
  clearable: BooleanConstructor;
14689
14778
  persistentClear: BooleanConstructor;
14690
14779
  singleLine: BooleanConstructor;
14691
- hint: StringConstructor;
14692
- persistentHint: BooleanConstructor;
14693
14780
  persistentPlaceholder: BooleanConstructor;
14694
14781
  persistentCounter: BooleanConstructor;
14695
14782
  suffix: StringConstructor;
@@ -15073,9 +15160,10 @@ declare const VCombobox: {
15073
15160
  noFilter: BooleanConstructor;
15074
15161
  delimiters: PropType<string[]>;
15075
15162
  }, "multiple" | "$children" | "$slots" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:details" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
15163
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
15076
15164
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
15077
15165
  "onUpdate:search"?: ((val: string) => any) | undefined;
15078
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "reverse" | "type" | "error" | "active" | "direction" | "transition" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "noDataText" | "messages" | "rounded" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "valueComparator" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
15166
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "reverse" | "type" | "error" | "active" | "direction" | "transition" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "noDataText" | "messages" | "rounded" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint" | "clearable" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter" | "valueComparator" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
15079
15167
  $attrs: {
15080
15168
  [x: string]: unknown;
15081
15169
  };
@@ -15087,7 +15175,7 @@ declare const VCombobox: {
15087
15175
  }>;
15088
15176
  $root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
15089
15177
  $parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
15090
- $emit: ((event: "update:menu", val: boolean) => void) & ((event: "update:search", val: string) => void);
15178
+ $emit: ((event: "update:focused", focused: boolean) => void) & ((event: "update:menu", val: boolean) => void) & ((event: "update:search", val: string) => void);
15091
15179
  $el: any;
15092
15180
  $options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
15093
15181
  transition: Omit<{
@@ -15165,6 +15253,7 @@ declare const VCombobox: {
15165
15253
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
15166
15254
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
15167
15255
  focused: BooleanConstructor;
15256
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
15168
15257
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
15169
15258
  errorMessages: {
15170
15259
  type: PropType<string | string[]>;
@@ -15178,12 +15267,12 @@ declare const VCombobox: {
15178
15267
  type: PropType<ValidationRule[]>;
15179
15268
  default: () => never[];
15180
15269
  };
15270
+ hint: StringConstructor;
15271
+ persistentHint: BooleanConstructor;
15181
15272
  hideDetails: PropType<boolean | "auto">;
15182
15273
  clearable: BooleanConstructor;
15183
15274
  persistentClear: BooleanConstructor;
15184
15275
  singleLine: BooleanConstructor;
15185
- hint: StringConstructor;
15186
- persistentHint: BooleanConstructor;
15187
15276
  persistentPlaceholder: BooleanConstructor;
15188
15277
  persistentCounter: BooleanConstructor;
15189
15278
  suffix: StringConstructor;
@@ -15567,6 +15656,7 @@ declare const VCombobox: {
15567
15656
  noFilter: BooleanConstructor;
15568
15657
  delimiters: PropType<string[]>;
15569
15658
  }, "multiple" | "$children" | "$slots" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:details" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
15659
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
15570
15660
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
15571
15661
  "onUpdate:search"?: ((val: string) => any) | undefined;
15572
15662
  }, {
@@ -15578,6 +15668,7 @@ declare const VCombobox: {
15578
15668
  filteredItems: vue.Ref<InternalItem<any>[]>;
15579
15669
  select: (item: InternalItem) => void;
15580
15670
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
15671
+ 'update:focused': (focused: boolean) => true;
15581
15672
  'update:modelValue': (val: any) => true;
15582
15673
  'update:search': (val: string) => true;
15583
15674
  'update:menu': (val: boolean) => true;
@@ -15606,10 +15697,10 @@ declare const VCombobox: {
15606
15697
  errorMessages: string | string[];
15607
15698
  maxErrors: string | number;
15608
15699
  rules: ValidationRule[];
15700
+ persistentHint: boolean;
15609
15701
  clearable: boolean;
15610
15702
  persistentClear: boolean;
15611
15703
  singleLine: boolean;
15612
- persistentHint: boolean;
15613
15704
  persistentPlaceholder: boolean;
15614
15705
  persistentCounter: boolean;
15615
15706
  valueComparator: typeof deepEqual;
@@ -15722,6 +15813,7 @@ declare const VCombobox: {
15722
15813
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
15723
15814
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
15724
15815
  focused: BooleanConstructor;
15816
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
15725
15817
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
15726
15818
  errorMessages: {
15727
15819
  type: PropType<string | string[]>;
@@ -15735,12 +15827,12 @@ declare const VCombobox: {
15735
15827
  type: PropType<ValidationRule[]>;
15736
15828
  default: () => never[];
15737
15829
  };
15830
+ hint: StringConstructor;
15831
+ persistentHint: BooleanConstructor;
15738
15832
  hideDetails: PropType<boolean | "auto">;
15739
15833
  clearable: BooleanConstructor;
15740
15834
  persistentClear: BooleanConstructor;
15741
15835
  singleLine: BooleanConstructor;
15742
- hint: StringConstructor;
15743
- persistentHint: BooleanConstructor;
15744
15836
  persistentPlaceholder: BooleanConstructor;
15745
15837
  persistentCounter: BooleanConstructor;
15746
15838
  suffix: StringConstructor;
@@ -16124,6 +16216,7 @@ declare const VCombobox: {
16124
16216
  noFilter: BooleanConstructor;
16125
16217
  delimiters: PropType<string[]>;
16126
16218
  }, "multiple" | "$children" | "$slots" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:details" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
16219
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
16127
16220
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
16128
16221
  "onUpdate:search"?: ((val: string) => any) | undefined;
16129
16222
  } & vue.ShallowUnwrapRef<{
@@ -16214,6 +16307,7 @@ declare const VCombobox: {
16214
16307
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
16215
16308
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
16216
16309
  focused: BooleanConstructor;
16310
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
16217
16311
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
16218
16312
  errorMessages: {
16219
16313
  type: PropType<string | string[]>;
@@ -16227,12 +16321,12 @@ declare const VCombobox: {
16227
16321
  type: PropType<ValidationRule[]>;
16228
16322
  default: () => never[];
16229
16323
  };
16324
+ hint: StringConstructor;
16325
+ persistentHint: BooleanConstructor;
16230
16326
  hideDetails: PropType<boolean | "auto">;
16231
16327
  clearable: BooleanConstructor;
16232
16328
  persistentClear: BooleanConstructor;
16233
16329
  singleLine: BooleanConstructor;
16234
- hint: StringConstructor;
16235
- persistentHint: BooleanConstructor;
16236
16330
  persistentPlaceholder: BooleanConstructor;
16237
16331
  persistentCounter: BooleanConstructor;
16238
16332
  suffix: StringConstructor;
@@ -16616,6 +16710,7 @@ declare const VCombobox: {
16616
16710
  noFilter: BooleanConstructor;
16617
16711
  delimiters: PropType<string[]>;
16618
16712
  }, "multiple" | "$children" | "$slots" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:details" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
16713
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
16619
16714
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
16620
16715
  "onUpdate:search"?: ((val: string) => any) | undefined;
16621
16716
  }, {
@@ -16627,6 +16722,7 @@ declare const VCombobox: {
16627
16722
  filteredItems: vue.Ref<InternalItem<any>[]>;
16628
16723
  select: (item: InternalItem) => void;
16629
16724
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
16725
+ 'update:focused': (focused: boolean) => true;
16630
16726
  'update:modelValue': (val: any) => true;
16631
16727
  'update:search': (val: string) => true;
16632
16728
  'update:menu': (val: boolean) => true;
@@ -16655,10 +16751,10 @@ declare const VCombobox: {
16655
16751
  errorMessages: string | string[];
16656
16752
  maxErrors: string | number;
16657
16753
  rules: ValidationRule[];
16754
+ persistentHint: boolean;
16658
16755
  clearable: boolean;
16659
16756
  persistentClear: boolean;
16660
16757
  singleLine: boolean;
16661
- persistentHint: boolean;
16662
16758
  persistentPlaceholder: boolean;
16663
16759
  persistentCounter: boolean;
16664
16760
  valueComparator: typeof deepEqual;
@@ -16867,6 +16963,7 @@ declare const VCombobox: {
16867
16963
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
16868
16964
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
16869
16965
  focused: BooleanConstructor;
16966
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
16870
16967
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
16871
16968
  errorMessages: {
16872
16969
  type: PropType<string | string[]>;
@@ -16880,12 +16977,12 @@ declare const VCombobox: {
16880
16977
  type: PropType<ValidationRule[]>;
16881
16978
  default: () => never[];
16882
16979
  };
16980
+ hint: StringConstructor;
16981
+ persistentHint: BooleanConstructor;
16883
16982
  hideDetails: PropType<boolean | "auto">;
16884
16983
  clearable: BooleanConstructor;
16885
16984
  persistentClear: BooleanConstructor;
16886
16985
  singleLine: BooleanConstructor;
16887
- hint: StringConstructor;
16888
- persistentHint: BooleanConstructor;
16889
16986
  persistentPlaceholder: BooleanConstructor;
16890
16987
  persistentCounter: BooleanConstructor;
16891
16988
  suffix: StringConstructor;
@@ -17344,6 +17441,7 @@ declare const VCombobox: {
17344
17441
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
17345
17442
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
17346
17443
  focused: BooleanConstructor;
17444
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
17347
17445
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
17348
17446
  errorMessages: {
17349
17447
  type: PropType<string | string[]>;
@@ -17357,12 +17455,12 @@ declare const VCombobox: {
17357
17455
  type: PropType<ValidationRule[]>;
17358
17456
  default: () => never[];
17359
17457
  };
17458
+ hint: StringConstructor;
17459
+ persistentHint: BooleanConstructor;
17360
17460
  hideDetails: PropType<boolean | "auto">;
17361
17461
  clearable: BooleanConstructor;
17362
17462
  persistentClear: BooleanConstructor;
17363
17463
  singleLine: BooleanConstructor;
17364
- hint: StringConstructor;
17365
- persistentHint: BooleanConstructor;
17366
17464
  persistentPlaceholder: BooleanConstructor;
17367
17465
  persistentCounter: BooleanConstructor;
17368
17466
  suffix: StringConstructor;
@@ -23976,11 +24074,11 @@ declare const VFileInput: {
23976
24074
  errorMessages: string | string[];
23977
24075
  maxErrors: string | number;
23978
24076
  rules: ValidationRule[];
24077
+ persistentHint: boolean;
23979
24078
  clearable: boolean;
23980
24079
  dirty: boolean;
23981
24080
  persistentClear: boolean;
23982
24081
  singleLine: boolean;
23983
- persistentHint: boolean;
23984
24082
  chips: boolean;
23985
24083
  counterSizeString: string;
23986
24084
  counterString: string;
@@ -24005,11 +24103,11 @@ declare const VFileInput: {
24005
24103
  errorMessages: string | string[];
24006
24104
  maxErrors: string | number;
24007
24105
  rules: ValidationRule[];
24106
+ persistentHint: boolean;
24008
24107
  clearable: boolean;
24009
24108
  dirty: boolean;
24010
24109
  persistentClear: boolean;
24011
24110
  singleLine: boolean;
24012
- persistentHint: boolean;
24013
24111
  chips: boolean;
24014
24112
  counterSizeString: string;
24015
24113
  counterString: string;
@@ -24031,10 +24129,11 @@ declare const VFileInput: {
24031
24129
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24032
24130
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24033
24131
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24132
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24034
24133
  validateOn?: "input" | "blur" | "submit" | undefined;
24035
24134
  validationValue?: any;
24036
- hideDetails?: boolean | "auto" | undefined;
24037
24135
  hint?: string | undefined;
24136
+ hideDetails?: boolean | "auto" | undefined;
24038
24137
  } & {
24039
24138
  $children?: {} | vue.VNodeChild | {
24040
24139
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & ((args_0: VFieldSlot) => vue.VNodeChild)) | undefined;
@@ -24085,9 +24184,10 @@ declare const VFileInput: {
24085
24184
  "v-slot:counter"?: false | (() => vue.VNodeChild) | undefined;
24086
24185
  } & {
24087
24186
  "onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
24187
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
24088
24188
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
24089
24189
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
24090
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "reverse" | "error" | "active" | "direction" | "disabled" | "multiple" | "readonly" | "counter" | "messages" | "rounded" | "density" | "variant" | "modelValue" | "prependIcon" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentHint" | "chips" | "counterSizeString" | "counterString" | "showSize">;
24190
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "reverse" | "error" | "active" | "direction" | "disabled" | "multiple" | "readonly" | "counter" | "messages" | "rounded" | "density" | "variant" | "modelValue" | "prependIcon" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "chips" | "counterSizeString" | "counterString" | "showSize">;
24091
24191
  $attrs: {
24092
24192
  [x: string]: unknown;
24093
24193
  };
@@ -24099,7 +24199,7 @@ declare const VFileInput: {
24099
24199
  }>;
24100
24200
  $root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
24101
24201
  $parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
24102
- $emit: ((event: "update:modelValue", files: File[]) => void) & ((event: "click:control", e: MouseEvent) => void) & ((event: "mousedown:control", e: MouseEvent) => void);
24202
+ $emit: ((event: "update:modelValue", files: File[]) => void) & ((event: "update:focused", focused: boolean) => void) & ((event: "click:control", e: MouseEvent) => void) & ((event: "mousedown:control", e: MouseEvent) => void);
24103
24203
  $el: any;
24104
24204
  $options: vue.ComponentOptionsBase<{
24105
24205
  flat: boolean;
@@ -24121,11 +24221,11 @@ declare const VFileInput: {
24121
24221
  errorMessages: string | string[];
24122
24222
  maxErrors: string | number;
24123
24223
  rules: ValidationRule[];
24224
+ persistentHint: boolean;
24124
24225
  clearable: boolean;
24125
24226
  dirty: boolean;
24126
24227
  persistentClear: boolean;
24127
24228
  singleLine: boolean;
24128
- persistentHint: boolean;
24129
24229
  chips: boolean;
24130
24230
  counterSizeString: string;
24131
24231
  counterString: string;
@@ -24147,10 +24247,11 @@ declare const VFileInput: {
24147
24247
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24148
24248
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24149
24249
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24250
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24150
24251
  validateOn?: "input" | "blur" | "submit" | undefined;
24151
24252
  validationValue?: any;
24152
- hideDetails?: boolean | "auto" | undefined;
24153
24253
  hint?: string | undefined;
24254
+ hideDetails?: boolean | "auto" | undefined;
24154
24255
  } & {
24155
24256
  $children?: {} | vue.VNodeChild | {
24156
24257
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & ((args_0: VFieldSlot) => vue.VNodeChild)) | undefined;
@@ -24201,6 +24302,7 @@ declare const VFileInput: {
24201
24302
  "v-slot:counter"?: false | (() => vue.VNodeChild) | undefined;
24202
24303
  } & {
24203
24304
  "onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
24305
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
24204
24306
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
24205
24307
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
24206
24308
  }, Omit<Omit<{
@@ -24217,6 +24319,7 @@ declare const VFileInput: {
24217
24319
  errorMessages: string | string[];
24218
24320
  maxErrors: string | number;
24219
24321
  rules: ValidationRule[];
24322
+ persistentHint: boolean;
24220
24323
  }> & Omit<{
24221
24324
  error: boolean;
24222
24325
  direction: "horizontal" | "vertical";
@@ -24228,6 +24331,7 @@ declare const VFileInput: {
24228
24331
  errorMessages: string | string[];
24229
24332
  maxErrors: string | number;
24230
24333
  rules: ValidationRule[];
24334
+ persistentHint: boolean;
24231
24335
  } & {
24232
24336
  id?: string | undefined;
24233
24337
  name?: string | undefined;
@@ -24237,8 +24341,10 @@ declare const VFileInput: {
24237
24341
  appendIcon?: IconValue | undefined;
24238
24342
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24239
24343
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24344
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24240
24345
  validateOn?: "input" | "blur" | "submit" | undefined;
24241
24346
  validationValue?: any;
24347
+ hint?: string | undefined;
24242
24348
  hideDetails?: boolean | "auto" | undefined;
24243
24349
  } & {
24244
24350
  $children?: {} | vue.VNodeChild | {
@@ -24266,7 +24372,7 @@ declare const VFileInput: {
24266
24372
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
24267
24373
  } & {
24268
24374
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
24269
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
24375
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
24270
24376
  $attrs: {
24271
24377
  [x: string]: unknown;
24272
24378
  };
@@ -24291,6 +24397,7 @@ declare const VFileInput: {
24291
24397
  errorMessages: string | string[];
24292
24398
  maxErrors: string | number;
24293
24399
  rules: ValidationRule[];
24400
+ persistentHint: boolean;
24294
24401
  } & {
24295
24402
  id?: string | undefined;
24296
24403
  name?: string | undefined;
@@ -24300,8 +24407,10 @@ declare const VFileInput: {
24300
24407
  appendIcon?: IconValue | undefined;
24301
24408
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24302
24409
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24410
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24303
24411
  validateOn?: "input" | "blur" | "submit" | undefined;
24304
24412
  validationValue?: any;
24413
+ hint?: string | undefined;
24305
24414
  hideDetails?: boolean | "auto" | undefined;
24306
24415
  } & {
24307
24416
  $children?: {} | vue.VNodeChild | {
@@ -24346,6 +24455,7 @@ declare const VFileInput: {
24346
24455
  errorMessages: string | string[];
24347
24456
  maxErrors: string | number;
24348
24457
  rules: ValidationRule[];
24458
+ persistentHint: boolean;
24349
24459
  }, {}, string> & {
24350
24460
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
24351
24461
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -24377,6 +24487,7 @@ declare const VFileInput: {
24377
24487
  errorMessages: string | string[];
24378
24488
  maxErrors: string | number;
24379
24489
  rules: ValidationRule[];
24490
+ persistentHint: boolean;
24380
24491
  } & {
24381
24492
  id?: string | undefined;
24382
24493
  name?: string | undefined;
@@ -24386,8 +24497,10 @@ declare const VFileInput: {
24386
24497
  appendIcon?: IconValue | undefined;
24387
24498
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24388
24499
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24500
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24389
24501
  validateOn?: "input" | "blur" | "submit" | undefined;
24390
24502
  validationValue?: any;
24503
+ hint?: string | undefined;
24391
24504
  hideDetails?: boolean | "auto" | undefined;
24392
24505
  } & {
24393
24506
  $children?: {} | vue.VNodeChild | {
@@ -24419,9 +24532,10 @@ declare const VFileInput: {
24419
24532
  reset: () => void;
24420
24533
  resetValidation: () => void;
24421
24534
  validate: () => Promise<string[]>;
24422
- }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules") | "v-slot:details">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
24535
+ }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "validateOn" | "validationValue" | "hint" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint") | "v-slot:details">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
24423
24536
  'click:control': (e: MouseEvent) => true;
24424
24537
  'mousedown:control': (e: MouseEvent) => true;
24538
+ 'update:focused': (focused: boolean) => true;
24425
24539
  'update:modelValue': (files: File[]) => true;
24426
24540
  }, string, {
24427
24541
  flat: boolean;
@@ -24444,11 +24558,11 @@ declare const VFileInput: {
24444
24558
  errorMessages: string | string[];
24445
24559
  maxErrors: string | number;
24446
24560
  rules: ValidationRule[];
24561
+ persistentHint: boolean;
24447
24562
  clearable: boolean;
24448
24563
  dirty: boolean;
24449
24564
  persistentClear: boolean;
24450
24565
  singleLine: boolean;
24451
- persistentHint: boolean;
24452
24566
  chips: boolean;
24453
24567
  counterSizeString: string;
24454
24568
  counterString: string;
@@ -24493,11 +24607,11 @@ declare const VFileInput: {
24493
24607
  errorMessages: string | string[];
24494
24608
  maxErrors: string | number;
24495
24609
  rules: ValidationRule[];
24610
+ persistentHint: boolean;
24496
24611
  clearable: boolean;
24497
24612
  dirty: boolean;
24498
24613
  persistentClear: boolean;
24499
24614
  singleLine: boolean;
24500
- persistentHint: boolean;
24501
24615
  chips: boolean;
24502
24616
  counterSizeString: string;
24503
24617
  counterString: string;
@@ -24519,10 +24633,11 @@ declare const VFileInput: {
24519
24633
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24520
24634
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24521
24635
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24636
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24522
24637
  validateOn?: "input" | "blur" | "submit" | undefined;
24523
24638
  validationValue?: any;
24524
- hideDetails?: boolean | "auto" | undefined;
24525
24639
  hint?: string | undefined;
24640
+ hideDetails?: boolean | "auto" | undefined;
24526
24641
  } & {
24527
24642
  $children?: {} | vue.VNodeChild | {
24528
24643
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & ((args_0: VFieldSlot) => vue.VNodeChild)) | undefined;
@@ -24573,6 +24688,7 @@ declare const VFileInput: {
24573
24688
  "v-slot:counter"?: false | (() => vue.VNodeChild) | undefined;
24574
24689
  } & {
24575
24690
  "onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
24691
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
24576
24692
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
24577
24693
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
24578
24694
  } & vue.ShallowUnwrapRef<Omit<Omit<{
@@ -24589,6 +24705,7 @@ declare const VFileInput: {
24589
24705
  errorMessages: string | string[];
24590
24706
  maxErrors: string | number;
24591
24707
  rules: ValidationRule[];
24708
+ persistentHint: boolean;
24592
24709
  }> & Omit<{
24593
24710
  error: boolean;
24594
24711
  direction: "horizontal" | "vertical";
@@ -24600,6 +24717,7 @@ declare const VFileInput: {
24600
24717
  errorMessages: string | string[];
24601
24718
  maxErrors: string | number;
24602
24719
  rules: ValidationRule[];
24720
+ persistentHint: boolean;
24603
24721
  } & {
24604
24722
  id?: string | undefined;
24605
24723
  name?: string | undefined;
@@ -24609,8 +24727,10 @@ declare const VFileInput: {
24609
24727
  appendIcon?: IconValue | undefined;
24610
24728
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24611
24729
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24730
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24612
24731
  validateOn?: "input" | "blur" | "submit" | undefined;
24613
24732
  validationValue?: any;
24733
+ hint?: string | undefined;
24614
24734
  hideDetails?: boolean | "auto" | undefined;
24615
24735
  } & {
24616
24736
  $children?: {} | vue.VNodeChild | {
@@ -24638,7 +24758,7 @@ declare const VFileInput: {
24638
24758
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
24639
24759
  } & {
24640
24760
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
24641
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
24761
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
24642
24762
  $attrs: {
24643
24763
  [x: string]: unknown;
24644
24764
  };
@@ -24663,6 +24783,7 @@ declare const VFileInput: {
24663
24783
  errorMessages: string | string[];
24664
24784
  maxErrors: string | number;
24665
24785
  rules: ValidationRule[];
24786
+ persistentHint: boolean;
24666
24787
  } & {
24667
24788
  id?: string | undefined;
24668
24789
  name?: string | undefined;
@@ -24672,8 +24793,10 @@ declare const VFileInput: {
24672
24793
  appendIcon?: IconValue | undefined;
24673
24794
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24674
24795
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24796
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24675
24797
  validateOn?: "input" | "blur" | "submit" | undefined;
24676
24798
  validationValue?: any;
24799
+ hint?: string | undefined;
24677
24800
  hideDetails?: boolean | "auto" | undefined;
24678
24801
  } & {
24679
24802
  $children?: {} | vue.VNodeChild | {
@@ -24718,6 +24841,7 @@ declare const VFileInput: {
24718
24841
  errorMessages: string | string[];
24719
24842
  maxErrors: string | number;
24720
24843
  rules: ValidationRule[];
24844
+ persistentHint: boolean;
24721
24845
  }, {}, string> & {
24722
24846
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
24723
24847
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -24749,6 +24873,7 @@ declare const VFileInput: {
24749
24873
  errorMessages: string | string[];
24750
24874
  maxErrors: string | number;
24751
24875
  rules: ValidationRule[];
24876
+ persistentHint: boolean;
24752
24877
  } & {
24753
24878
  id?: string | undefined;
24754
24879
  name?: string | undefined;
@@ -24758,8 +24883,10 @@ declare const VFileInput: {
24758
24883
  appendIcon?: IconValue | undefined;
24759
24884
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24760
24885
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24886
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24761
24887
  validateOn?: "input" | "blur" | "submit" | undefined;
24762
24888
  validationValue?: any;
24889
+ hint?: string | undefined;
24763
24890
  hideDetails?: boolean | "auto" | undefined;
24764
24891
  } & {
24765
24892
  $children?: {} | vue.VNodeChild | {
@@ -24791,7 +24918,7 @@ declare const VFileInput: {
24791
24918
  reset: () => void;
24792
24919
  resetValidation: () => void;
24793
24920
  validate: () => Promise<string[]>;
24794
- }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules") | "v-slot:details">, `$${any}`>> & {} & vue.ComponentCustomProperties & {};
24921
+ }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "validateOn" | "validationValue" | "hint" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint") | "v-slot:details">, `$${any}`>> & {} & vue.ComponentCustomProperties & {};
24795
24922
  __isFragment?: undefined;
24796
24923
  __isTeleport?: undefined;
24797
24924
  __isSuspense?: undefined;
@@ -24815,11 +24942,11 @@ declare const VFileInput: {
24815
24942
  errorMessages: string | string[];
24816
24943
  maxErrors: string | number;
24817
24944
  rules: ValidationRule[];
24945
+ persistentHint: boolean;
24818
24946
  clearable: boolean;
24819
24947
  dirty: boolean;
24820
24948
  persistentClear: boolean;
24821
24949
  singleLine: boolean;
24822
- persistentHint: boolean;
24823
24950
  chips: boolean;
24824
24951
  counterSizeString: string;
24825
24952
  counterString: string;
@@ -24841,10 +24968,11 @@ declare const VFileInput: {
24841
24968
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24842
24969
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24843
24970
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24971
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24844
24972
  validateOn?: "input" | "blur" | "submit" | undefined;
24845
24973
  validationValue?: any;
24846
- hideDetails?: boolean | "auto" | undefined;
24847
24974
  hint?: string | undefined;
24975
+ hideDetails?: boolean | "auto" | undefined;
24848
24976
  } & {
24849
24977
  $children?: {} | vue.VNodeChild | {
24850
24978
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & ((args_0: VFieldSlot) => vue.VNodeChild)) | undefined;
@@ -24895,6 +25023,7 @@ declare const VFileInput: {
24895
25023
  "v-slot:counter"?: false | (() => vue.VNodeChild) | undefined;
24896
25024
  } & {
24897
25025
  "onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
25026
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
24898
25027
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
24899
25028
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
24900
25029
  }, Omit<Omit<{
@@ -24911,6 +25040,7 @@ declare const VFileInput: {
24911
25040
  errorMessages: string | string[];
24912
25041
  maxErrors: string | number;
24913
25042
  rules: ValidationRule[];
25043
+ persistentHint: boolean;
24914
25044
  }> & Omit<{
24915
25045
  error: boolean;
24916
25046
  direction: "horizontal" | "vertical";
@@ -24922,6 +25052,7 @@ declare const VFileInput: {
24922
25052
  errorMessages: string | string[];
24923
25053
  maxErrors: string | number;
24924
25054
  rules: ValidationRule[];
25055
+ persistentHint: boolean;
24925
25056
  } & {
24926
25057
  id?: string | undefined;
24927
25058
  name?: string | undefined;
@@ -24931,8 +25062,10 @@ declare const VFileInput: {
24931
25062
  appendIcon?: IconValue | undefined;
24932
25063
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24933
25064
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
25065
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24934
25066
  validateOn?: "input" | "blur" | "submit" | undefined;
24935
25067
  validationValue?: any;
25068
+ hint?: string | undefined;
24936
25069
  hideDetails?: boolean | "auto" | undefined;
24937
25070
  } & {
24938
25071
  $children?: {} | vue.VNodeChild | {
@@ -24960,7 +25093,7 @@ declare const VFileInput: {
24960
25093
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
24961
25094
  } & {
24962
25095
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
24963
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
25096
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
24964
25097
  $attrs: {
24965
25098
  [x: string]: unknown;
24966
25099
  };
@@ -24985,6 +25118,7 @@ declare const VFileInput: {
24985
25118
  errorMessages: string | string[];
24986
25119
  maxErrors: string | number;
24987
25120
  rules: ValidationRule[];
25121
+ persistentHint: boolean;
24988
25122
  } & {
24989
25123
  id?: string | undefined;
24990
25124
  name?: string | undefined;
@@ -24994,8 +25128,10 @@ declare const VFileInput: {
24994
25128
  appendIcon?: IconValue | undefined;
24995
25129
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24996
25130
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
25131
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24997
25132
  validateOn?: "input" | "blur" | "submit" | undefined;
24998
25133
  validationValue?: any;
25134
+ hint?: string | undefined;
24999
25135
  hideDetails?: boolean | "auto" | undefined;
25000
25136
  } & {
25001
25137
  $children?: {} | vue.VNodeChild | {
@@ -25040,6 +25176,7 @@ declare const VFileInput: {
25040
25176
  errorMessages: string | string[];
25041
25177
  maxErrors: string | number;
25042
25178
  rules: ValidationRule[];
25179
+ persistentHint: boolean;
25043
25180
  }, {}, string> & {
25044
25181
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
25045
25182
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -25071,6 +25208,7 @@ declare const VFileInput: {
25071
25208
  errorMessages: string | string[];
25072
25209
  maxErrors: string | number;
25073
25210
  rules: ValidationRule[];
25211
+ persistentHint: boolean;
25074
25212
  } & {
25075
25213
  id?: string | undefined;
25076
25214
  name?: string | undefined;
@@ -25080,8 +25218,10 @@ declare const VFileInput: {
25080
25218
  appendIcon?: IconValue | undefined;
25081
25219
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
25082
25220
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
25221
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
25083
25222
  validateOn?: "input" | "blur" | "submit" | undefined;
25084
25223
  validationValue?: any;
25224
+ hint?: string | undefined;
25085
25225
  hideDetails?: boolean | "auto" | undefined;
25086
25226
  } & {
25087
25227
  $children?: {} | vue.VNodeChild | {
@@ -25113,9 +25253,10 @@ declare const VFileInput: {
25113
25253
  reset: () => void;
25114
25254
  resetValidation: () => void;
25115
25255
  validate: () => Promise<string[]>;
25116
- }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules") | "v-slot:details">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
25256
+ }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "validateOn" | "validationValue" | "hint" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint") | "v-slot:details">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
25117
25257
  'click:control': (e: MouseEvent) => true;
25118
25258
  'mousedown:control': (e: MouseEvent) => true;
25259
+ 'update:focused': (focused: boolean) => true;
25119
25260
  'update:modelValue': (files: File[]) => true;
25120
25261
  }, string, {
25121
25262
  flat: boolean;
@@ -25138,11 +25279,11 @@ declare const VFileInput: {
25138
25279
  errorMessages: string | string[];
25139
25280
  maxErrors: string | number;
25140
25281
  rules: ValidationRule[];
25282
+ persistentHint: boolean;
25141
25283
  clearable: boolean;
25142
25284
  dirty: boolean;
25143
25285
  persistentClear: boolean;
25144
25286
  singleLine: boolean;
25145
- persistentHint: boolean;
25146
25287
  chips: boolean;
25147
25288
  counterSizeString: string;
25148
25289
  counterString: string;
@@ -25189,6 +25330,7 @@ declare const VFileInput: {
25189
25330
  validator: (val: any) => boolean;
25190
25331
  };
25191
25332
  focused: BooleanConstructor;
25333
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
25192
25334
  errorMessages: {
25193
25335
  type: PropType<string | string[]>;
25194
25336
  default: () => never[];
@@ -25217,6 +25359,8 @@ declare const VFileInput: {
25217
25359
  default: NonNullable<IconValue>;
25218
25360
  };
25219
25361
  hideDetails: PropType<boolean | "auto">;
25362
+ hint: StringConstructor;
25363
+ persistentHint: BooleanConstructor;
25220
25364
  messages: {
25221
25365
  type: PropType<string | string[]>;
25222
25366
  default: () => never[];
@@ -25239,8 +25383,6 @@ declare const VFileInput: {
25239
25383
  default: string;
25240
25384
  };
25241
25385
  multiple: BooleanConstructor;
25242
- hint: StringConstructor;
25243
- persistentHint: BooleanConstructor;
25244
25386
  showSize: {
25245
25387
  type: PropType<boolean | 1024 | 1000>;
25246
25388
  default: boolean;
@@ -25288,6 +25430,7 @@ declare const VFileInput: {
25288
25430
  validator: (val: any) => boolean;
25289
25431
  };
25290
25432
  focused: BooleanConstructor;
25433
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
25291
25434
  errorMessages: {
25292
25435
  type: PropType<string | string[]>;
25293
25436
  default: () => never[];
@@ -25316,6 +25459,8 @@ declare const VFileInput: {
25316
25459
  default: NonNullable<IconValue>;
25317
25460
  };
25318
25461
  hideDetails: PropType<boolean | "auto">;
25462
+ hint: StringConstructor;
25463
+ persistentHint: BooleanConstructor;
25319
25464
  messages: {
25320
25465
  type: PropType<string | string[]>;
25321
25466
  default: () => never[];
@@ -25338,8 +25483,6 @@ declare const VFileInput: {
25338
25483
  default: string;
25339
25484
  };
25340
25485
  multiple: BooleanConstructor;
25341
- hint: StringConstructor;
25342
- persistentHint: BooleanConstructor;
25343
25486
  showSize: {
25344
25487
  type: PropType<boolean | 1024 | 1000>;
25345
25488
  default: boolean;
@@ -38962,6 +39105,7 @@ declare const VRadioGroup: {
38962
39105
  errorMessages: string | string[];
38963
39106
  maxErrors: string | number;
38964
39107
  rules: ValidationRule[];
39108
+ persistentHint: boolean;
38965
39109
  falseIcon: IconValue;
38966
39110
  trueIcon: IconValue;
38967
39111
  valueComparator: typeof deepEqual;
@@ -38980,6 +39124,7 @@ declare const VRadioGroup: {
38980
39124
  errorMessages: string | string[];
38981
39125
  maxErrors: string | number;
38982
39126
  rules: ValidationRule[];
39127
+ persistentHint: boolean;
38983
39128
  falseIcon: IconValue;
38984
39129
  trueIcon: IconValue;
38985
39130
  valueComparator: typeof deepEqual;
@@ -38994,8 +39139,10 @@ declare const VRadioGroup: {
38994
39139
  appendIcon?: IconValue | undefined;
38995
39140
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
38996
39141
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39142
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
38997
39143
  validateOn?: "input" | "blur" | "submit" | undefined;
38998
39144
  validationValue?: any;
39145
+ hint?: string | undefined;
38999
39146
  hideDetails?: boolean | "auto" | undefined;
39000
39147
  } & {
39001
39148
  $children?: {} | vue.VNodeChild | {
@@ -39043,7 +39190,7 @@ declare const VRadioGroup: {
39043
39190
  "v-slot:input"?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
39044
39191
  } & {
39045
39192
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
39046
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "type" | "inline" | "error" | "height" | "direction" | "disabled" | "readonly" | "messages" | "density" | "ripple" | "focused" | "errorMessages" | "maxErrors" | "rules" | "falseIcon" | "trueIcon" | "valueComparator">;
39193
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "type" | "inline" | "error" | "height" | "direction" | "disabled" | "readonly" | "messages" | "density" | "ripple" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint" | "falseIcon" | "trueIcon" | "valueComparator">;
39047
39194
  $attrs: {
39048
39195
  [x: string]: unknown;
39049
39196
  };
@@ -39072,6 +39219,7 @@ declare const VRadioGroup: {
39072
39219
  errorMessages: string | string[];
39073
39220
  maxErrors: string | number;
39074
39221
  rules: ValidationRule[];
39222
+ persistentHint: boolean;
39075
39223
  falseIcon: IconValue;
39076
39224
  trueIcon: IconValue;
39077
39225
  valueComparator: typeof deepEqual;
@@ -39086,8 +39234,10 @@ declare const VRadioGroup: {
39086
39234
  appendIcon?: IconValue | undefined;
39087
39235
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39088
39236
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39237
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
39089
39238
  validateOn?: "input" | "blur" | "submit" | undefined;
39090
39239
  validationValue?: any;
39240
+ hint?: string | undefined;
39091
39241
  hideDetails?: boolean | "auto" | undefined;
39092
39242
  } & {
39093
39243
  $children?: {} | vue.VNodeChild | {
@@ -39152,6 +39302,7 @@ declare const VRadioGroup: {
39152
39302
  errorMessages: string | string[];
39153
39303
  maxErrors: string | number;
39154
39304
  rules: ValidationRule[];
39305
+ persistentHint: boolean;
39155
39306
  falseIcon: IconValue;
39156
39307
  trueIcon: IconValue;
39157
39308
  valueComparator: typeof deepEqual;
@@ -39190,6 +39341,7 @@ declare const VRadioGroup: {
39190
39341
  errorMessages: string | string[];
39191
39342
  maxErrors: string | number;
39192
39343
  rules: ValidationRule[];
39344
+ persistentHint: boolean;
39193
39345
  falseIcon: IconValue;
39194
39346
  trueIcon: IconValue;
39195
39347
  valueComparator: typeof deepEqual;
@@ -39204,8 +39356,10 @@ declare const VRadioGroup: {
39204
39356
  appendIcon?: IconValue | undefined;
39205
39357
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39206
39358
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39359
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
39207
39360
  validateOn?: "input" | "blur" | "submit" | undefined;
39208
39361
  validationValue?: any;
39362
+ hint?: string | undefined;
39209
39363
  hideDetails?: boolean | "auto" | undefined;
39210
39364
  } & {
39211
39365
  $children?: {} | vue.VNodeChild | {
@@ -39272,6 +39426,7 @@ declare const VRadioGroup: {
39272
39426
  errorMessages: string | string[];
39273
39427
  maxErrors: string | number;
39274
39428
  rules: ValidationRule[];
39429
+ persistentHint: boolean;
39275
39430
  falseIcon: IconValue;
39276
39431
  trueIcon: IconValue;
39277
39432
  valueComparator: typeof deepEqual;
@@ -39286,8 +39441,10 @@ declare const VRadioGroup: {
39286
39441
  appendIcon?: IconValue | undefined;
39287
39442
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39288
39443
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39444
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
39289
39445
  validateOn?: "input" | "blur" | "submit" | undefined;
39290
39446
  validationValue?: any;
39447
+ hint?: string | undefined;
39291
39448
  hideDetails?: boolean | "auto" | undefined;
39292
39449
  } & {
39293
39450
  $children?: {} | vue.VNodeChild | {
@@ -39352,6 +39509,7 @@ declare const VRadioGroup: {
39352
39509
  errorMessages: string | string[];
39353
39510
  maxErrors: string | number;
39354
39511
  rules: ValidationRule[];
39512
+ persistentHint: boolean;
39355
39513
  falseIcon: IconValue;
39356
39514
  trueIcon: IconValue;
39357
39515
  valueComparator: typeof deepEqual;
@@ -39391,6 +39549,7 @@ declare const VRadioGroup: {
39391
39549
  default: typeof deepEqual;
39392
39550
  };
39393
39551
  focused: BooleanConstructor;
39552
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
39394
39553
  errorMessages: {
39395
39554
  type: vue.PropType<string | string[]>;
39396
39555
  default: () => never[];
@@ -39409,6 +39568,8 @@ declare const VRadioGroup: {
39409
39568
  appendIcon: vue.PropType<IconValue>;
39410
39569
  prependIcon: vue.PropType<IconValue>;
39411
39570
  hideDetails: vue.PropType<boolean | "auto">;
39571
+ hint: StringConstructor;
39572
+ persistentHint: BooleanConstructor;
39412
39573
  messages: {
39413
39574
  type: vue.PropType<string | string[]>;
39414
39575
  default: () => never[];
@@ -39460,6 +39621,7 @@ declare const VRadioGroup: {
39460
39621
  default: typeof deepEqual;
39461
39622
  };
39462
39623
  focused: BooleanConstructor;
39624
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
39463
39625
  errorMessages: {
39464
39626
  type: vue.PropType<string | string[]>;
39465
39627
  default: () => never[];
@@ -39478,6 +39640,8 @@ declare const VRadioGroup: {
39478
39640
  appendIcon: vue.PropType<IconValue>;
39479
39641
  prependIcon: vue.PropType<IconValue>;
39480
39642
  hideDetails: vue.PropType<boolean | "auto">;
39643
+ hint: StringConstructor;
39644
+ persistentHint: BooleanConstructor;
39481
39645
  messages: {
39482
39646
  type: vue.PropType<string | string[]>;
39483
39647
  default: () => never[];
@@ -39519,6 +39683,7 @@ declare const VRangeSlider: {
39519
39683
  errorMessages: string | string[];
39520
39684
  maxErrors: string | number;
39521
39685
  rules: ValidationRule[];
39686
+ persistentHint: boolean;
39522
39687
  showTicks: boolean | "always";
39523
39688
  tickSize: string | number;
39524
39689
  trackSize: string | number;
@@ -39542,6 +39707,7 @@ declare const VRangeSlider: {
39542
39707
  errorMessages: string | string[];
39543
39708
  maxErrors: string | number;
39544
39709
  rules: ValidationRule[];
39710
+ persistentHint: boolean;
39545
39711
  showTicks: boolean | "always";
39546
39712
  tickSize: string | number;
39547
39713
  trackSize: string | number;
@@ -39556,8 +39722,10 @@ declare const VRangeSlider: {
39556
39722
  appendIcon?: IconValue | undefined;
39557
39723
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39558
39724
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39725
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
39559
39726
  validateOn?: "input" | "blur" | "submit" | undefined;
39560
39727
  validationValue?: any;
39728
+ hint?: string | undefined;
39561
39729
  hideDetails?: boolean | "auto" | undefined;
39562
39730
  trackColor?: string | undefined;
39563
39731
  trackFillColor?: string | undefined;
@@ -39599,7 +39767,9 @@ declare const VRangeSlider: {
39599
39767
  } & {
39600
39768
  "onUpdate:modelValue"?: ((value: [number, number]) => any) | undefined;
39601
39769
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
39602
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "max" | "error" | "strict" | "direction" | "disabled" | "readonly" | "step" | "min" | "elevation" | "messages" | "rounded" | "density" | "modelValue" | "focused" | "errorMessages" | "maxErrors" | "rules" | "showTicks" | "tickSize" | "trackSize" | "thumbLabel" | "thumbSize">;
39770
+ onEnd?: ((value: [number, number]) => any) | undefined;
39771
+ onStart?: ((value: [number, number]) => any) | undefined;
39772
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "max" | "error" | "strict" | "direction" | "disabled" | "readonly" | "step" | "min" | "elevation" | "messages" | "rounded" | "density" | "modelValue" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint" | "showTicks" | "tickSize" | "trackSize" | "thumbLabel" | "thumbSize">;
39603
39773
  $attrs: {
39604
39774
  [x: string]: unknown;
39605
39775
  };
@@ -39611,7 +39781,7 @@ declare const VRangeSlider: {
39611
39781
  }>;
39612
39782
  $root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
39613
39783
  $parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
39614
- $emit: ((event: "update:modelValue", value: [number, number]) => void) & ((event: "update:focused", value: boolean) => void);
39784
+ $emit: ((event: "end", value: [number, number]) => void) & ((event: "start", value: [number, number]) => void) & ((event: "update:modelValue", value: [number, number]) => void) & ((event: "update:focused", value: boolean) => void);
39615
39785
  $el: any;
39616
39786
  $options: vue.ComponentOptionsBase<{
39617
39787
  reverse: boolean;
@@ -39631,6 +39801,7 @@ declare const VRangeSlider: {
39631
39801
  errorMessages: string | string[];
39632
39802
  maxErrors: string | number;
39633
39803
  rules: ValidationRule[];
39804
+ persistentHint: boolean;
39634
39805
  showTicks: boolean | "always";
39635
39806
  tickSize: string | number;
39636
39807
  trackSize: string | number;
@@ -39645,8 +39816,10 @@ declare const VRangeSlider: {
39645
39816
  appendIcon?: IconValue | undefined;
39646
39817
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39647
39818
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39819
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
39648
39820
  validateOn?: "input" | "blur" | "submit" | undefined;
39649
39821
  validationValue?: any;
39822
+ hint?: string | undefined;
39650
39823
  hideDetails?: boolean | "auto" | undefined;
39651
39824
  trackColor?: string | undefined;
39652
39825
  trackFillColor?: string | undefined;
@@ -39688,9 +39861,13 @@ declare const VRangeSlider: {
39688
39861
  } & {
39689
39862
  "onUpdate:modelValue"?: ((value: [number, number]) => any) | undefined;
39690
39863
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
39864
+ onEnd?: ((value: [number, number]) => any) | undefined;
39865
+ onStart?: ((value: [number, number]) => any) | undefined;
39691
39866
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
39692
- 'update:focused': (value: boolean) => boolean;
39693
- 'update:modelValue': (value: [number, number]) => boolean;
39867
+ 'update:focused': (value: boolean) => true;
39868
+ 'update:modelValue': (value: [number, number]) => true;
39869
+ end: (value: [number, number]) => true;
39870
+ start: (value: [number, number]) => true;
39694
39871
  }, string, {
39695
39872
  reverse: boolean;
39696
39873
  max: string | number;
@@ -39710,6 +39887,7 @@ declare const VRangeSlider: {
39710
39887
  errorMessages: string | string[];
39711
39888
  maxErrors: string | number;
39712
39889
  rules: ValidationRule[];
39890
+ persistentHint: boolean;
39713
39891
  showTicks: boolean | "always";
39714
39892
  tickSize: string | number;
39715
39893
  trackSize: string | number;
@@ -39753,6 +39931,7 @@ declare const VRangeSlider: {
39753
39931
  errorMessages: string | string[];
39754
39932
  maxErrors: string | number;
39755
39933
  rules: ValidationRule[];
39934
+ persistentHint: boolean;
39756
39935
  showTicks: boolean | "always";
39757
39936
  tickSize: string | number;
39758
39937
  trackSize: string | number;
@@ -39767,8 +39946,10 @@ declare const VRangeSlider: {
39767
39946
  appendIcon?: IconValue | undefined;
39768
39947
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39769
39948
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39949
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
39770
39950
  validateOn?: "input" | "blur" | "submit" | undefined;
39771
39951
  validationValue?: any;
39952
+ hint?: string | undefined;
39772
39953
  hideDetails?: boolean | "auto" | undefined;
39773
39954
  trackColor?: string | undefined;
39774
39955
  trackFillColor?: string | undefined;
@@ -39810,6 +39991,8 @@ declare const VRangeSlider: {
39810
39991
  } & {
39811
39992
  "onUpdate:modelValue"?: ((value: [number, number]) => any) | undefined;
39812
39993
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
39994
+ onEnd?: ((value: [number, number]) => any) | undefined;
39995
+ onStart?: ((value: [number, number]) => any) | undefined;
39813
39996
  } & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties & {};
39814
39997
  __isFragment?: undefined;
39815
39998
  __isTeleport?: undefined;
@@ -39832,6 +40015,7 @@ declare const VRangeSlider: {
39832
40015
  errorMessages: string | string[];
39833
40016
  maxErrors: string | number;
39834
40017
  rules: ValidationRule[];
40018
+ persistentHint: boolean;
39835
40019
  showTicks: boolean | "always";
39836
40020
  tickSize: string | number;
39837
40021
  trackSize: string | number;
@@ -39846,8 +40030,10 @@ declare const VRangeSlider: {
39846
40030
  appendIcon?: IconValue | undefined;
39847
40031
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39848
40032
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
40033
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
39849
40034
  validateOn?: "input" | "blur" | "submit" | undefined;
39850
40035
  validationValue?: any;
40036
+ hint?: string | undefined;
39851
40037
  hideDetails?: boolean | "auto" | undefined;
39852
40038
  trackColor?: string | undefined;
39853
40039
  trackFillColor?: string | undefined;
@@ -39889,9 +40075,13 @@ declare const VRangeSlider: {
39889
40075
  } & {
39890
40076
  "onUpdate:modelValue"?: ((value: [number, number]) => any) | undefined;
39891
40077
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
40078
+ onEnd?: ((value: [number, number]) => any) | undefined;
40079
+ onStart?: ((value: [number, number]) => any) | undefined;
39892
40080
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
39893
- 'update:focused': (value: boolean) => boolean;
39894
- 'update:modelValue': (value: [number, number]) => boolean;
40081
+ 'update:focused': (value: boolean) => true;
40082
+ 'update:modelValue': (value: [number, number]) => true;
40083
+ end: (value: [number, number]) => true;
40084
+ start: (value: [number, number]) => true;
39895
40085
  }, string, {
39896
40086
  reverse: boolean;
39897
40087
  max: string | number;
@@ -39911,6 +40101,7 @@ declare const VRangeSlider: {
39911
40101
  errorMessages: string | string[];
39912
40102
  maxErrors: string | number;
39913
40103
  rules: ValidationRule[];
40104
+ persistentHint: boolean;
39914
40105
  showTicks: boolean | "always";
39915
40106
  tickSize: string | number;
39916
40107
  trackSize: string | number;
@@ -39984,6 +40175,7 @@ declare const VRangeSlider: {
39984
40175
  };
39985
40176
  reverse: BooleanConstructor;
39986
40177
  focused: BooleanConstructor;
40178
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
39987
40179
  errorMessages: {
39988
40180
  type: PropType<string | string[]>;
39989
40181
  default: () => never[];
@@ -40009,6 +40201,8 @@ declare const VRangeSlider: {
40009
40201
  appendIcon: PropType<IconValue>;
40010
40202
  prependIcon: PropType<IconValue>;
40011
40203
  hideDetails: PropType<boolean | "auto">;
40204
+ hint: StringConstructor;
40205
+ persistentHint: BooleanConstructor;
40012
40206
  messages: {
40013
40207
  type: PropType<string | string[]>;
40014
40208
  default: () => never[];
@@ -40083,6 +40277,7 @@ declare const VRangeSlider: {
40083
40277
  };
40084
40278
  reverse: BooleanConstructor;
40085
40279
  focused: BooleanConstructor;
40280
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
40086
40281
  errorMessages: {
40087
40282
  type: PropType<string | string[]>;
40088
40283
  default: () => never[];
@@ -40108,6 +40303,8 @@ declare const VRangeSlider: {
40108
40303
  appendIcon: PropType<IconValue>;
40109
40304
  prependIcon: PropType<IconValue>;
40110
40305
  hideDetails: PropType<boolean | "auto">;
40306
+ hint: StringConstructor;
40307
+ persistentHint: BooleanConstructor;
40111
40308
  messages: {
40112
40309
  type: PropType<string | string[]>;
40113
40310
  default: () => never[];
@@ -40788,10 +40985,10 @@ declare const VSelect: {
40788
40985
  errorMessages: string | string[];
40789
40986
  maxErrors: string | number;
40790
40987
  rules: ValidationRule[];
40988
+ persistentHint: boolean;
40791
40989
  clearable: boolean;
40792
40990
  persistentClear: boolean;
40793
40991
  singleLine: boolean;
40794
- persistentHint: boolean;
40795
40992
  persistentPlaceholder: boolean;
40796
40993
  persistentCounter: boolean;
40797
40994
  valueComparator: typeof deepEqual;
@@ -41089,6 +41286,7 @@ declare const VSelect: {
41089
41286
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
41090
41287
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
41091
41288
  focused: BooleanConstructor;
41289
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
41092
41290
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
41093
41291
  errorMessages: {
41094
41292
  type: PropType<string | string[]>;
@@ -41102,12 +41300,12 @@ declare const VSelect: {
41102
41300
  type: PropType<ValidationRule[]>;
41103
41301
  default: () => never[];
41104
41302
  };
41303
+ hint: StringConstructor;
41304
+ persistentHint: BooleanConstructor;
41105
41305
  hideDetails: PropType<boolean | "auto">;
41106
41306
  clearable: BooleanConstructor;
41107
41307
  persistentClear: BooleanConstructor;
41108
41308
  singleLine: BooleanConstructor;
41109
- hint: StringConstructor;
41110
- persistentHint: BooleanConstructor;
41111
41309
  persistentPlaceholder: BooleanConstructor;
41112
41310
  persistentCounter: BooleanConstructor;
41113
41311
  suffix: StringConstructor;
@@ -41473,8 +41671,9 @@ declare const VSelect: {
41473
41671
  default: typeof deepEqual;
41474
41672
  };
41475
41673
  }, "multiple" | "$children" | "$slots" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:details" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
41674
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
41476
41675
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
41477
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "reverse" | "type" | "error" | "active" | "direction" | "transition" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "noDataText" | "messages" | "rounded" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "valueComparator" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear">;
41676
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "reverse" | "type" | "error" | "active" | "direction" | "transition" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "noDataText" | "messages" | "rounded" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint" | "clearable" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter" | "valueComparator" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear">;
41478
41677
  $attrs: {
41479
41678
  [x: string]: unknown;
41480
41679
  };
@@ -41486,7 +41685,7 @@ declare const VSelect: {
41486
41685
  }>;
41487
41686
  $root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
41488
41687
  $parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
41489
- $emit: (event: "update:menu", val: boolean) => void;
41688
+ $emit: ((event: "update:focused", focused: boolean) => void) & ((event: "update:menu", val: boolean) => void);
41490
41689
  $el: any;
41491
41690
  $options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
41492
41691
  transition: Omit<{
@@ -41772,6 +41971,7 @@ declare const VSelect: {
41772
41971
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
41773
41972
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
41774
41973
  focused: BooleanConstructor;
41974
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
41775
41975
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
41776
41976
  errorMessages: {
41777
41977
  type: PropType<string | string[]>;
@@ -41785,12 +41985,12 @@ declare const VSelect: {
41785
41985
  type: PropType<ValidationRule[]>;
41786
41986
  default: () => never[];
41787
41987
  };
41988
+ hint: StringConstructor;
41989
+ persistentHint: BooleanConstructor;
41788
41990
  hideDetails: PropType<boolean | "auto">;
41789
41991
  clearable: BooleanConstructor;
41790
41992
  persistentClear: BooleanConstructor;
41791
41993
  singleLine: BooleanConstructor;
41792
- hint: StringConstructor;
41793
- persistentHint: BooleanConstructor;
41794
41994
  persistentPlaceholder: BooleanConstructor;
41795
41995
  persistentCounter: BooleanConstructor;
41796
41996
  suffix: StringConstructor;
@@ -42156,11 +42356,14 @@ declare const VSelect: {
42156
42356
  default: typeof deepEqual;
42157
42357
  };
42158
42358
  }, "multiple" | "$children" | "$slots" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:details" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
42359
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
42159
42360
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
42160
42361
  }, {
42362
+ isFocused: vue.Ref<boolean>;
42161
42363
  menu: vue.WritableComputedRef<boolean>;
42162
42364
  select: (item: InternalItem) => void;
42163
42365
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
42366
+ 'update:focused': (focused: boolean) => boolean;
42164
42367
  'update:modelValue': (val: any) => boolean;
42165
42368
  'update:menu': (val: boolean) => true;
42166
42369
  }, "multiple" | "$children" | "$slots" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:details" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
@@ -42292,10 +42495,10 @@ declare const VSelect: {
42292
42495
  errorMessages: string | string[];
42293
42496
  maxErrors: string | number;
42294
42497
  rules: ValidationRule[];
42498
+ persistentHint: boolean;
42295
42499
  clearable: boolean;
42296
42500
  persistentClear: boolean;
42297
42501
  singleLine: boolean;
42298
- persistentHint: boolean;
42299
42502
  persistentPlaceholder: boolean;
42300
42503
  persistentCounter: boolean;
42301
42504
  valueComparator: typeof deepEqual;
@@ -42613,6 +42816,7 @@ declare const VSelect: {
42613
42816
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
42614
42817
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
42615
42818
  focused: BooleanConstructor;
42819
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
42616
42820
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
42617
42821
  errorMessages: {
42618
42822
  type: PropType<string | string[]>;
@@ -42626,12 +42830,12 @@ declare const VSelect: {
42626
42830
  type: PropType<ValidationRule[]>;
42627
42831
  default: () => never[];
42628
42832
  };
42833
+ hint: StringConstructor;
42834
+ persistentHint: BooleanConstructor;
42629
42835
  hideDetails: PropType<boolean | "auto">;
42630
42836
  clearable: BooleanConstructor;
42631
42837
  persistentClear: BooleanConstructor;
42632
42838
  singleLine: BooleanConstructor;
42633
- hint: StringConstructor;
42634
- persistentHint: BooleanConstructor;
42635
42839
  persistentPlaceholder: BooleanConstructor;
42636
42840
  persistentCounter: BooleanConstructor;
42637
42841
  suffix: StringConstructor;
@@ -42997,8 +43201,10 @@ declare const VSelect: {
42997
43201
  default: typeof deepEqual;
42998
43202
  };
42999
43203
  }, "multiple" | "$children" | "$slots" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:details" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
43204
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
43000
43205
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
43001
43206
  } & vue.ShallowUnwrapRef<{
43207
+ isFocused: vue.Ref<boolean>;
43002
43208
  menu: vue.WritableComputedRef<boolean>;
43003
43209
  select: (item: InternalItem) => void;
43004
43210
  } & Omit<any, string | number | symbol>> & {} & vue.ComponentCustomProperties & {};
@@ -43289,6 +43495,7 @@ declare const VSelect: {
43289
43495
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
43290
43496
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
43291
43497
  focused: BooleanConstructor;
43498
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
43292
43499
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
43293
43500
  errorMessages: {
43294
43501
  type: PropType<string | string[]>;
@@ -43302,12 +43509,12 @@ declare const VSelect: {
43302
43509
  type: PropType<ValidationRule[]>;
43303
43510
  default: () => never[];
43304
43511
  };
43512
+ hint: StringConstructor;
43513
+ persistentHint: BooleanConstructor;
43305
43514
  hideDetails: PropType<boolean | "auto">;
43306
43515
  clearable: BooleanConstructor;
43307
43516
  persistentClear: BooleanConstructor;
43308
43517
  singleLine: BooleanConstructor;
43309
- hint: StringConstructor;
43310
- persistentHint: BooleanConstructor;
43311
43518
  persistentPlaceholder: BooleanConstructor;
43312
43519
  persistentCounter: BooleanConstructor;
43313
43520
  suffix: StringConstructor;
@@ -43673,11 +43880,14 @@ declare const VSelect: {
43673
43880
  default: typeof deepEqual;
43674
43881
  };
43675
43882
  }, "multiple" | "$children" | "$slots" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:details" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
43883
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
43676
43884
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
43677
43885
  }, {
43886
+ isFocused: vue.Ref<boolean>;
43678
43887
  menu: vue.WritableComputedRef<boolean>;
43679
43888
  select: (item: InternalItem) => void;
43680
43889
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
43890
+ 'update:focused': (focused: boolean) => boolean;
43681
43891
  'update:modelValue': (val: any) => boolean;
43682
43892
  'update:menu': (val: boolean) => true;
43683
43893
  }, "multiple" | "$children" | "$slots" | "v-slots" | "items" | "v-slot:append" | "v-slot:prepend" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:details" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
@@ -43809,10 +44019,10 @@ declare const VSelect: {
43809
44019
  errorMessages: string | string[];
43810
44020
  maxErrors: string | number;
43811
44021
  rules: ValidationRule[];
44022
+ persistentHint: boolean;
43812
44023
  clearable: boolean;
43813
44024
  persistentClear: boolean;
43814
44025
  singleLine: boolean;
43815
- persistentHint: boolean;
43816
44026
  persistentPlaceholder: boolean;
43817
44027
  persistentCounter: boolean;
43818
44028
  valueComparator: typeof deepEqual;
@@ -44226,6 +44436,7 @@ declare const VSelect: {
44226
44436
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
44227
44437
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
44228
44438
  focused: BooleanConstructor;
44439
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
44229
44440
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
44230
44441
  errorMessages: {
44231
44442
  type: PropType<string | string[]>;
@@ -44239,12 +44450,12 @@ declare const VSelect: {
44239
44450
  type: PropType<ValidationRule[]>;
44240
44451
  default: () => never[];
44241
44452
  };
44453
+ hint: StringConstructor;
44454
+ persistentHint: BooleanConstructor;
44242
44455
  hideDetails: PropType<boolean | "auto">;
44243
44456
  clearable: BooleanConstructor;
44244
44457
  persistentClear: BooleanConstructor;
44245
44458
  singleLine: BooleanConstructor;
44246
- hint: StringConstructor;
44247
- persistentHint: BooleanConstructor;
44248
44459
  persistentPlaceholder: BooleanConstructor;
44249
44460
  persistentCounter: BooleanConstructor;
44250
44461
  suffix: StringConstructor;
@@ -44893,6 +45104,7 @@ declare const VSelect: {
44893
45104
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
44894
45105
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
44895
45106
  focused: BooleanConstructor;
45107
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
44896
45108
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
44897
45109
  errorMessages: {
44898
45110
  type: PropType<string | string[]>;
@@ -44906,12 +45118,12 @@ declare const VSelect: {
44906
45118
  type: PropType<ValidationRule[]>;
44907
45119
  default: () => never[];
44908
45120
  };
45121
+ hint: StringConstructor;
45122
+ persistentHint: BooleanConstructor;
44909
45123
  hideDetails: PropType<boolean | "auto">;
44910
45124
  clearable: BooleanConstructor;
44911
45125
  persistentClear: BooleanConstructor;
44912
45126
  singleLine: BooleanConstructor;
44913
- hint: StringConstructor;
44914
- persistentHint: BooleanConstructor;
44915
45127
  persistentPlaceholder: BooleanConstructor;
44916
45128
  persistentCounter: BooleanConstructor;
44917
45129
  suffix: StringConstructor;
@@ -46107,6 +46319,7 @@ declare const VSlider: {
46107
46319
  errorMessages: string | string[];
46108
46320
  maxErrors: string | number;
46109
46321
  rules: ValidationRule[];
46322
+ persistentHint: boolean;
46110
46323
  showTicks: boolean | "always";
46111
46324
  tickSize: string | number;
46112
46325
  trackSize: string | number;
@@ -46129,6 +46342,7 @@ declare const VSlider: {
46129
46342
  errorMessages: string | string[];
46130
46343
  maxErrors: string | number;
46131
46344
  rules: ValidationRule[];
46345
+ persistentHint: boolean;
46132
46346
  showTicks: boolean | "always";
46133
46347
  tickSize: string | number;
46134
46348
  trackSize: string | number;
@@ -46143,8 +46357,10 @@ declare const VSlider: {
46143
46357
  appendIcon?: IconValue | undefined;
46144
46358
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46145
46359
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46360
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
46146
46361
  validateOn?: "input" | "blur" | "submit" | undefined;
46147
46362
  validationValue?: any;
46363
+ hint?: string | undefined;
46148
46364
  hideDetails?: boolean | "auto" | undefined;
46149
46365
  trackColor?: string | undefined;
46150
46366
  trackFillColor?: string | undefined;
@@ -46186,7 +46402,9 @@ declare const VSlider: {
46186
46402
  } & {
46187
46403
  "onUpdate:modelValue"?: ((v: number) => any) | undefined;
46188
46404
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
46189
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "max" | "error" | "direction" | "disabled" | "readonly" | "step" | "min" | "elevation" | "messages" | "rounded" | "density" | "modelValue" | "focused" | "errorMessages" | "maxErrors" | "rules" | "showTicks" | "tickSize" | "trackSize" | "thumbLabel" | "thumbSize">;
46405
+ onEnd?: ((value: number) => any) | undefined;
46406
+ onStart?: ((value: number) => any) | undefined;
46407
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "max" | "error" | "direction" | "disabled" | "readonly" | "step" | "min" | "elevation" | "messages" | "rounded" | "density" | "modelValue" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint" | "showTicks" | "tickSize" | "trackSize" | "thumbLabel" | "thumbSize">;
46190
46408
  $attrs: {
46191
46409
  [x: string]: unknown;
46192
46410
  };
@@ -46198,7 +46416,7 @@ declare const VSlider: {
46198
46416
  }>;
46199
46417
  $root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
46200
46418
  $parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
46201
- $emit: ((event: "update:modelValue", v: number) => void) & ((event: "update:focused", value: boolean) => void);
46419
+ $emit: ((event: "end", value: number) => void) & ((event: "start", value: number) => void) & ((event: "update:modelValue", v: number) => void) & ((event: "update:focused", value: boolean) => void);
46202
46420
  $el: any;
46203
46421
  $options: vue.ComponentOptionsBase<{
46204
46422
  reverse: boolean;
@@ -46217,6 +46435,7 @@ declare const VSlider: {
46217
46435
  errorMessages: string | string[];
46218
46436
  maxErrors: string | number;
46219
46437
  rules: ValidationRule[];
46438
+ persistentHint: boolean;
46220
46439
  showTicks: boolean | "always";
46221
46440
  tickSize: string | number;
46222
46441
  trackSize: string | number;
@@ -46231,8 +46450,10 @@ declare const VSlider: {
46231
46450
  appendIcon?: IconValue | undefined;
46232
46451
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46233
46452
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46453
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
46234
46454
  validateOn?: "input" | "blur" | "submit" | undefined;
46235
46455
  validationValue?: any;
46456
+ hint?: string | undefined;
46236
46457
  hideDetails?: boolean | "auto" | undefined;
46237
46458
  trackColor?: string | undefined;
46238
46459
  trackFillColor?: string | undefined;
@@ -46274,9 +46495,13 @@ declare const VSlider: {
46274
46495
  } & {
46275
46496
  "onUpdate:modelValue"?: ((v: number) => any) | undefined;
46276
46497
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
46498
+ onEnd?: ((value: number) => any) | undefined;
46499
+ onStart?: ((value: number) => any) | undefined;
46277
46500
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
46278
- 'update:focused': (value: boolean) => boolean;
46279
- 'update:modelValue': (v: number) => boolean;
46501
+ 'update:focused': (value: boolean) => true;
46502
+ 'update:modelValue': (v: number) => true;
46503
+ start: (value: number) => true;
46504
+ end: (value: number) => true;
46280
46505
  }, string, {
46281
46506
  reverse: boolean;
46282
46507
  max: string | number;
@@ -46295,6 +46520,7 @@ declare const VSlider: {
46295
46520
  errorMessages: string | string[];
46296
46521
  maxErrors: string | number;
46297
46522
  rules: ValidationRule[];
46523
+ persistentHint: boolean;
46298
46524
  showTicks: boolean | "always";
46299
46525
  tickSize: string | number;
46300
46526
  trackSize: string | number;
@@ -46337,6 +46563,7 @@ declare const VSlider: {
46337
46563
  errorMessages: string | string[];
46338
46564
  maxErrors: string | number;
46339
46565
  rules: ValidationRule[];
46566
+ persistentHint: boolean;
46340
46567
  showTicks: boolean | "always";
46341
46568
  tickSize: string | number;
46342
46569
  trackSize: string | number;
@@ -46351,8 +46578,10 @@ declare const VSlider: {
46351
46578
  appendIcon?: IconValue | undefined;
46352
46579
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46353
46580
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46581
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
46354
46582
  validateOn?: "input" | "blur" | "submit" | undefined;
46355
46583
  validationValue?: any;
46584
+ hint?: string | undefined;
46356
46585
  hideDetails?: boolean | "auto" | undefined;
46357
46586
  trackColor?: string | undefined;
46358
46587
  trackFillColor?: string | undefined;
@@ -46394,6 +46623,8 @@ declare const VSlider: {
46394
46623
  } & {
46395
46624
  "onUpdate:modelValue"?: ((v: number) => any) | undefined;
46396
46625
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
46626
+ onEnd?: ((value: number) => any) | undefined;
46627
+ onStart?: ((value: number) => any) | undefined;
46397
46628
  } & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties & {};
46398
46629
  __isFragment?: undefined;
46399
46630
  __isTeleport?: undefined;
@@ -46415,6 +46646,7 @@ declare const VSlider: {
46415
46646
  errorMessages: string | string[];
46416
46647
  maxErrors: string | number;
46417
46648
  rules: ValidationRule[];
46649
+ persistentHint: boolean;
46418
46650
  showTicks: boolean | "always";
46419
46651
  tickSize: string | number;
46420
46652
  trackSize: string | number;
@@ -46429,8 +46661,10 @@ declare const VSlider: {
46429
46661
  appendIcon?: IconValue | undefined;
46430
46662
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46431
46663
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46664
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
46432
46665
  validateOn?: "input" | "blur" | "submit" | undefined;
46433
46666
  validationValue?: any;
46667
+ hint?: string | undefined;
46434
46668
  hideDetails?: boolean | "auto" | undefined;
46435
46669
  trackColor?: string | undefined;
46436
46670
  trackFillColor?: string | undefined;
@@ -46472,9 +46706,13 @@ declare const VSlider: {
46472
46706
  } & {
46473
46707
  "onUpdate:modelValue"?: ((v: number) => any) | undefined;
46474
46708
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
46709
+ onEnd?: ((value: number) => any) | undefined;
46710
+ onStart?: ((value: number) => any) | undefined;
46475
46711
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
46476
- 'update:focused': (value: boolean) => boolean;
46477
- 'update:modelValue': (v: number) => boolean;
46712
+ 'update:focused': (value: boolean) => true;
46713
+ 'update:modelValue': (v: number) => true;
46714
+ start: (value: number) => true;
46715
+ end: (value: number) => true;
46478
46716
  }, string, {
46479
46717
  reverse: boolean;
46480
46718
  max: string | number;
@@ -46493,6 +46731,7 @@ declare const VSlider: {
46493
46731
  errorMessages: string | string[];
46494
46732
  maxErrors: string | number;
46495
46733
  rules: ValidationRule[];
46734
+ persistentHint: boolean;
46496
46735
  showTicks: boolean | "always";
46497
46736
  tickSize: string | number;
46498
46737
  trackSize: string | number;
@@ -46504,6 +46743,7 @@ declare const VSlider: {
46504
46743
  default: number;
46505
46744
  };
46506
46745
  focused: BooleanConstructor;
46746
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
46507
46747
  disabled: BooleanConstructor;
46508
46748
  error: BooleanConstructor;
46509
46749
  errorMessages: {
@@ -46532,6 +46772,8 @@ declare const VSlider: {
46532
46772
  appendIcon: vue.PropType<IconValue>;
46533
46773
  prependIcon: vue.PropType<IconValue>;
46534
46774
  hideDetails: vue.PropType<boolean | "auto">;
46775
+ hint: StringConstructor;
46776
+ persistentHint: BooleanConstructor;
46535
46777
  messages: {
46536
46778
  type: vue.PropType<string | string[]>;
46537
46779
  default: () => never[];
@@ -46602,6 +46844,7 @@ declare const VSlider: {
46602
46844
  default: number;
46603
46845
  };
46604
46846
  focused: BooleanConstructor;
46847
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
46605
46848
  disabled: BooleanConstructor;
46606
46849
  error: BooleanConstructor;
46607
46850
  errorMessages: {
@@ -46630,6 +46873,8 @@ declare const VSlider: {
46630
46873
  appendIcon: vue.PropType<IconValue>;
46631
46874
  prependIcon: vue.PropType<IconValue>;
46632
46875
  hideDetails: vue.PropType<boolean | "auto">;
46876
+ hint: StringConstructor;
46877
+ persistentHint: BooleanConstructor;
46633
46878
  messages: {
46634
46879
  type: vue.PropType<string | string[]>;
46635
46880
  default: () => never[];
@@ -48386,6 +48631,7 @@ declare const VSwitch: {
48386
48631
  errorMessages: string | string[];
48387
48632
  maxErrors: string | number;
48388
48633
  rules: ValidationRule[];
48634
+ persistentHint: boolean;
48389
48635
  valueComparator: typeof deepEqual;
48390
48636
  }> & Omit<{
48391
48637
  flat: boolean;
@@ -48405,6 +48651,7 @@ declare const VSwitch: {
48405
48651
  errorMessages: string | string[];
48406
48652
  maxErrors: string | number;
48407
48653
  rules: ValidationRule[];
48654
+ persistentHint: boolean;
48408
48655
  valueComparator: typeof deepEqual;
48409
48656
  } & {
48410
48657
  type?: string | undefined;
@@ -48419,8 +48666,10 @@ declare const VSwitch: {
48419
48666
  appendIcon?: IconValue | undefined;
48420
48667
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
48421
48668
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
48669
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
48422
48670
  validateOn?: "input" | "blur" | "submit" | undefined;
48423
48671
  validationValue?: any;
48672
+ hint?: string | undefined;
48424
48673
  hideDetails?: boolean | "auto" | undefined;
48425
48674
  falseIcon?: IconValue | undefined;
48426
48675
  trueIcon?: IconValue | undefined;
@@ -48437,6 +48686,7 @@ declare const VSwitch: {
48437
48686
  props: Record<string, unknown>;
48438
48687
  }) => vue.VNodeChild) | undefined;
48439
48688
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48689
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48440
48690
  };
48441
48691
  $slots?: {
48442
48692
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48448,6 +48698,7 @@ declare const VSwitch: {
48448
48698
  props: Record<string, unknown>;
48449
48699
  }) => vue.VNodeChild) | undefined;
48450
48700
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48701
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48451
48702
  } | undefined;
48452
48703
  'v-slots'?: {
48453
48704
  default?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48459,6 +48710,7 @@ declare const VSwitch: {
48459
48710
  props: Record<string, unknown>;
48460
48711
  }) => vue.VNodeChild) | undefined;
48461
48712
  input?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48713
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48462
48714
  } | undefined;
48463
48715
  } & {
48464
48716
  "v-slot:default"?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48470,11 +48722,12 @@ declare const VSwitch: {
48470
48722
  props: Record<string, unknown>;
48471
48723
  }) => vue.VNodeChild) | undefined;
48472
48724
  "v-slot:input"?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48725
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48473
48726
  } & {
48474
48727
  "onUpdate:modelValue"?: (() => any) | undefined;
48475
48728
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
48476
48729
  "onUpdate:indeterminate"?: ((val: boolean) => any) | undefined;
48477
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "inline" | "error" | "direction" | "inset" | "loading" | "disabled" | "multiple" | "readonly" | "indeterminate" | "messages" | "density" | "ripple" | "focused" | "errorMessages" | "maxErrors" | "rules" | "valueComparator">;
48730
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "inline" | "error" | "direction" | "inset" | "loading" | "disabled" | "multiple" | "readonly" | "indeterminate" | "messages" | "density" | "ripple" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint" | "valueComparator">;
48478
48731
  $attrs: {
48479
48732
  [x: string]: unknown;
48480
48733
  };
@@ -48506,6 +48759,7 @@ declare const VSwitch: {
48506
48759
  errorMessages: string | string[];
48507
48760
  maxErrors: string | number;
48508
48761
  rules: ValidationRule[];
48762
+ persistentHint: boolean;
48509
48763
  valueComparator: typeof deepEqual;
48510
48764
  } & {
48511
48765
  type?: string | undefined;
@@ -48520,8 +48774,10 @@ declare const VSwitch: {
48520
48774
  appendIcon?: IconValue | undefined;
48521
48775
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
48522
48776
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
48777
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
48523
48778
  validateOn?: "input" | "blur" | "submit" | undefined;
48524
48779
  validationValue?: any;
48780
+ hint?: string | undefined;
48525
48781
  hideDetails?: boolean | "auto" | undefined;
48526
48782
  falseIcon?: IconValue | undefined;
48527
48783
  trueIcon?: IconValue | undefined;
@@ -48538,6 +48794,7 @@ declare const VSwitch: {
48538
48794
  props: Record<string, unknown>;
48539
48795
  }) => vue.VNodeChild) | undefined;
48540
48796
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48797
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48541
48798
  };
48542
48799
  $slots?: {
48543
48800
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48549,6 +48806,7 @@ declare const VSwitch: {
48549
48806
  props: Record<string, unknown>;
48550
48807
  }) => vue.VNodeChild) | undefined;
48551
48808
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48809
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48552
48810
  } | undefined;
48553
48811
  'v-slots'?: {
48554
48812
  default?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48560,6 +48818,7 @@ declare const VSwitch: {
48560
48818
  props: Record<string, unknown>;
48561
48819
  }) => vue.VNodeChild) | undefined;
48562
48820
  input?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48821
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48563
48822
  } | undefined;
48564
48823
  } & {
48565
48824
  "v-slot:default"?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48571,6 +48830,7 @@ declare const VSwitch: {
48571
48830
  props: Record<string, unknown>;
48572
48831
  }) => vue.VNodeChild) | undefined;
48573
48832
  "v-slot:input"?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48833
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48574
48834
  } & {
48575
48835
  "onUpdate:modelValue"?: (() => any) | undefined;
48576
48836
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -48597,6 +48857,7 @@ declare const VSwitch: {
48597
48857
  errorMessages: string | string[];
48598
48858
  maxErrors: string | number;
48599
48859
  rules: ValidationRule[];
48860
+ persistentHint: boolean;
48600
48861
  valueComparator: typeof deepEqual;
48601
48862
  }, {}, string> & {
48602
48863
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
@@ -48636,6 +48897,7 @@ declare const VSwitch: {
48636
48897
  errorMessages: string | string[];
48637
48898
  maxErrors: string | number;
48638
48899
  rules: ValidationRule[];
48900
+ persistentHint: boolean;
48639
48901
  valueComparator: typeof deepEqual;
48640
48902
  } & {
48641
48903
  type?: string | undefined;
@@ -48650,8 +48912,10 @@ declare const VSwitch: {
48650
48912
  appendIcon?: IconValue | undefined;
48651
48913
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
48652
48914
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
48915
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
48653
48916
  validateOn?: "input" | "blur" | "submit" | undefined;
48654
48917
  validationValue?: any;
48918
+ hint?: string | undefined;
48655
48919
  hideDetails?: boolean | "auto" | undefined;
48656
48920
  falseIcon?: IconValue | undefined;
48657
48921
  trueIcon?: IconValue | undefined;
@@ -48668,6 +48932,7 @@ declare const VSwitch: {
48668
48932
  props: Record<string, unknown>;
48669
48933
  }) => vue.VNodeChild) | undefined;
48670
48934
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48935
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48671
48936
  };
48672
48937
  $slots?: {
48673
48938
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48679,6 +48944,7 @@ declare const VSwitch: {
48679
48944
  props: Record<string, unknown>;
48680
48945
  }) => vue.VNodeChild) | undefined;
48681
48946
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48947
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48682
48948
  } | undefined;
48683
48949
  'v-slots'?: {
48684
48950
  default?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48690,6 +48956,7 @@ declare const VSwitch: {
48690
48956
  props: Record<string, unknown>;
48691
48957
  }) => vue.VNodeChild) | undefined;
48692
48958
  input?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48959
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48693
48960
  } | undefined;
48694
48961
  } & {
48695
48962
  "v-slot:default"?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48701,6 +48968,7 @@ declare const VSwitch: {
48701
48968
  props: Record<string, unknown>;
48702
48969
  }) => vue.VNodeChild) | undefined;
48703
48970
  "v-slot:input"?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48971
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48704
48972
  } & {
48705
48973
  "onUpdate:modelValue"?: (() => any) | undefined;
48706
48974
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -48727,6 +48995,7 @@ declare const VSwitch: {
48727
48995
  errorMessages: string | string[];
48728
48996
  maxErrors: string | number;
48729
48997
  rules: ValidationRule[];
48998
+ persistentHint: boolean;
48730
48999
  valueComparator: typeof deepEqual;
48731
49000
  } & {
48732
49001
  type?: string | undefined;
@@ -48741,8 +49010,10 @@ declare const VSwitch: {
48741
49010
  appendIcon?: IconValue | undefined;
48742
49011
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
48743
49012
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
49013
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
48744
49014
  validateOn?: "input" | "blur" | "submit" | undefined;
48745
49015
  validationValue?: any;
49016
+ hint?: string | undefined;
48746
49017
  hideDetails?: boolean | "auto" | undefined;
48747
49018
  falseIcon?: IconValue | undefined;
48748
49019
  trueIcon?: IconValue | undefined;
@@ -48759,6 +49030,7 @@ declare const VSwitch: {
48759
49030
  props: Record<string, unknown>;
48760
49031
  }) => vue.VNodeChild) | undefined;
48761
49032
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49033
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48762
49034
  };
48763
49035
  $slots?: {
48764
49036
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48770,6 +49042,7 @@ declare const VSwitch: {
48770
49042
  props: Record<string, unknown>;
48771
49043
  }) => vue.VNodeChild) | undefined;
48772
49044
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49045
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48773
49046
  } | undefined;
48774
49047
  'v-slots'?: {
48775
49048
  default?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48781,6 +49054,7 @@ declare const VSwitch: {
48781
49054
  props: Record<string, unknown>;
48782
49055
  }) => vue.VNodeChild) | undefined;
48783
49056
  input?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49057
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48784
49058
  } | undefined;
48785
49059
  } & {
48786
49060
  "v-slot:default"?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48792,6 +49066,7 @@ declare const VSwitch: {
48792
49066
  props: Record<string, unknown>;
48793
49067
  }) => vue.VNodeChild) | undefined;
48794
49068
  "v-slot:input"?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49069
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48795
49070
  } & {
48796
49071
  "onUpdate:modelValue"?: (() => any) | undefined;
48797
49072
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -48818,6 +49093,7 @@ declare const VSwitch: {
48818
49093
  errorMessages: string | string[];
48819
49094
  maxErrors: string | number;
48820
49095
  rules: ValidationRule[];
49096
+ persistentHint: boolean;
48821
49097
  valueComparator: typeof deepEqual;
48822
49098
  }, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
48823
49099
  density: {
@@ -48854,6 +49130,7 @@ declare const VSwitch: {
48854
49130
  falseValue: null;
48855
49131
  value: null;
48856
49132
  focused: BooleanConstructor;
49133
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
48857
49134
  errorMessages: {
48858
49135
  type: vue.PropType<string | string[]>;
48859
49136
  default: () => never[];
@@ -48871,6 +49148,8 @@ declare const VSwitch: {
48871
49148
  appendIcon: vue.PropType<IconValue>;
48872
49149
  prependIcon: vue.PropType<IconValue>;
48873
49150
  hideDetails: vue.PropType<boolean | "auto">;
49151
+ hint: StringConstructor;
49152
+ persistentHint: BooleanConstructor;
48874
49153
  messages: {
48875
49154
  type: vue.PropType<string | string[]>;
48876
49155
  default: () => never[];
@@ -48924,6 +49203,7 @@ declare const VSwitch: {
48924
49203
  falseValue: null;
48925
49204
  value: null;
48926
49205
  focused: BooleanConstructor;
49206
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
48927
49207
  errorMessages: {
48928
49208
  type: vue.PropType<string | string[]>;
48929
49209
  default: () => never[];
@@ -48941,6 +49221,8 @@ declare const VSwitch: {
48941
49221
  appendIcon: vue.PropType<IconValue>;
48942
49222
  prependIcon: vue.PropType<IconValue>;
48943
49223
  hideDetails: vue.PropType<boolean | "auto">;
49224
+ hint: StringConstructor;
49225
+ persistentHint: BooleanConstructor;
48944
49226
  messages: {
48945
49227
  type: vue.PropType<string | string[]>;
48946
49228
  default: () => never[];
@@ -50240,11 +50522,11 @@ declare const VTextarea: {
50240
50522
  errorMessages: string | string[];
50241
50523
  maxErrors: string | number;
50242
50524
  rules: ValidationRule[];
50525
+ persistentHint: boolean;
50243
50526
  clearable: boolean;
50244
50527
  dirty: boolean;
50245
50528
  persistentClear: boolean;
50246
50529
  singleLine: boolean;
50247
- persistentHint: boolean;
50248
50530
  persistentPlaceholder: boolean;
50249
50531
  persistentCounter: boolean;
50250
50532
  autoGrow: boolean;
@@ -50267,11 +50549,11 @@ declare const VTextarea: {
50267
50549
  errorMessages: string | string[];
50268
50550
  maxErrors: string | number;
50269
50551
  rules: ValidationRule[];
50552
+ persistentHint: boolean;
50270
50553
  clearable: boolean;
50271
50554
  dirty: boolean;
50272
50555
  persistentClear: boolean;
50273
50556
  singleLine: boolean;
50274
- persistentHint: boolean;
50275
50557
  persistentPlaceholder: boolean;
50276
50558
  persistentCounter: boolean;
50277
50559
  autoGrow: boolean;
@@ -50299,10 +50581,11 @@ declare const VTextarea: {
50299
50581
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50300
50582
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50301
50583
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50584
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
50302
50585
  validateOn?: "input" | "blur" | "submit" | undefined;
50303
50586
  validationValue?: any;
50304
- hideDetails?: boolean | "auto" | undefined;
50305
50587
  hint?: string | undefined;
50588
+ hideDetails?: boolean | "auto" | undefined;
50306
50589
  suffix?: string | undefined;
50307
50590
  counterValue?: ((value: any) => number) | undefined;
50308
50591
  modelModifiers?: Record<string, boolean> | undefined;
@@ -50352,7 +50635,7 @@ declare const VTextarea: {
50352
50635
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
50353
50636
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
50354
50637
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
50355
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "reverse" | "error" | "active" | "direction" | "autofocus" | "disabled" | "readonly" | "messages" | "rounded" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "autoGrow" | "noResize" | "rows">;
50638
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "reverse" | "error" | "active" | "direction" | "autofocus" | "disabled" | "readonly" | "messages" | "rounded" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter" | "autoGrow" | "noResize" | "rows">;
50356
50639
  $attrs: {
50357
50640
  [x: string]: unknown;
50358
50641
  };
@@ -50383,11 +50666,11 @@ declare const VTextarea: {
50383
50666
  errorMessages: string | string[];
50384
50667
  maxErrors: string | number;
50385
50668
  rules: ValidationRule[];
50669
+ persistentHint: boolean;
50386
50670
  clearable: boolean;
50387
50671
  dirty: boolean;
50388
50672
  persistentClear: boolean;
50389
50673
  singleLine: boolean;
50390
- persistentHint: boolean;
50391
50674
  persistentPlaceholder: boolean;
50392
50675
  persistentCounter: boolean;
50393
50676
  autoGrow: boolean;
@@ -50415,10 +50698,11 @@ declare const VTextarea: {
50415
50698
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50416
50699
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50417
50700
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50701
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
50418
50702
  validateOn?: "input" | "blur" | "submit" | undefined;
50419
50703
  validationValue?: any;
50420
- hideDetails?: boolean | "auto" | undefined;
50421
50704
  hint?: string | undefined;
50705
+ hideDetails?: boolean | "auto" | undefined;
50422
50706
  suffix?: string | undefined;
50423
50707
  counterValue?: ((value: any) => number) | undefined;
50424
50708
  modelModifiers?: Record<string, boolean> | undefined;
@@ -50482,6 +50766,7 @@ declare const VTextarea: {
50482
50766
  errorMessages: string | string[];
50483
50767
  maxErrors: string | number;
50484
50768
  rules: ValidationRule[];
50769
+ persistentHint: boolean;
50485
50770
  }> & Omit<{
50486
50771
  error: boolean;
50487
50772
  direction: "horizontal" | "vertical";
@@ -50493,6 +50778,7 @@ declare const VTextarea: {
50493
50778
  errorMessages: string | string[];
50494
50779
  maxErrors: string | number;
50495
50780
  rules: ValidationRule[];
50781
+ persistentHint: boolean;
50496
50782
  } & {
50497
50783
  id?: string | undefined;
50498
50784
  name?: string | undefined;
@@ -50502,8 +50788,10 @@ declare const VTextarea: {
50502
50788
  appendIcon?: IconValue | undefined;
50503
50789
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50504
50790
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50791
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
50505
50792
  validateOn?: "input" | "blur" | "submit" | undefined;
50506
50793
  validationValue?: any;
50794
+ hint?: string | undefined;
50507
50795
  hideDetails?: boolean | "auto" | undefined;
50508
50796
  } & {
50509
50797
  $children?: {} | vue.VNodeChild | {
@@ -50531,7 +50819,7 @@ declare const VTextarea: {
50531
50819
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
50532
50820
  } & {
50533
50821
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
50534
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
50822
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
50535
50823
  $attrs: {
50536
50824
  [x: string]: unknown;
50537
50825
  };
@@ -50556,6 +50844,7 @@ declare const VTextarea: {
50556
50844
  errorMessages: string | string[];
50557
50845
  maxErrors: string | number;
50558
50846
  rules: ValidationRule[];
50847
+ persistentHint: boolean;
50559
50848
  } & {
50560
50849
  id?: string | undefined;
50561
50850
  name?: string | undefined;
@@ -50565,8 +50854,10 @@ declare const VTextarea: {
50565
50854
  appendIcon?: IconValue | undefined;
50566
50855
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50567
50856
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50857
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
50568
50858
  validateOn?: "input" | "blur" | "submit" | undefined;
50569
50859
  validationValue?: any;
50860
+ hint?: string | undefined;
50570
50861
  hideDetails?: boolean | "auto" | undefined;
50571
50862
  } & {
50572
50863
  $children?: {} | vue.VNodeChild | {
@@ -50611,6 +50902,7 @@ declare const VTextarea: {
50611
50902
  errorMessages: string | string[];
50612
50903
  maxErrors: string | number;
50613
50904
  rules: ValidationRule[];
50905
+ persistentHint: boolean;
50614
50906
  }, {}, string> & {
50615
50907
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
50616
50908
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -50642,6 +50934,7 @@ declare const VTextarea: {
50642
50934
  errorMessages: string | string[];
50643
50935
  maxErrors: string | number;
50644
50936
  rules: ValidationRule[];
50937
+ persistentHint: boolean;
50645
50938
  } & {
50646
50939
  id?: string | undefined;
50647
50940
  name?: string | undefined;
@@ -50651,8 +50944,10 @@ declare const VTextarea: {
50651
50944
  appendIcon?: IconValue | undefined;
50652
50945
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50653
50946
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50947
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
50654
50948
  validateOn?: "input" | "blur" | "submit" | undefined;
50655
50949
  validationValue?: any;
50950
+ hint?: string | undefined;
50656
50951
  hideDetails?: boolean | "auto" | undefined;
50657
50952
  } & {
50658
50953
  $children?: {} | vue.VNodeChild | {
@@ -50684,7 +50979,7 @@ declare const VTextarea: {
50684
50979
  reset: () => void;
50685
50980
  resetValidation: () => void;
50686
50981
  validate: () => Promise<string[]>;
50687
- }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules") | "v-slot:details">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
50982
+ }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "validateOn" | "validationValue" | "hint" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint") | "v-slot:details">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
50688
50983
  'click:control': (e: MouseEvent) => true;
50689
50984
  'mousedown:control': (e: MouseEvent) => true;
50690
50985
  'update:focused': (focused: boolean) => true;
@@ -50707,11 +51002,11 @@ declare const VTextarea: {
50707
51002
  errorMessages: string | string[];
50708
51003
  maxErrors: string | number;
50709
51004
  rules: ValidationRule[];
51005
+ persistentHint: boolean;
50710
51006
  clearable: boolean;
50711
51007
  dirty: boolean;
50712
51008
  persistentClear: boolean;
50713
51009
  singleLine: boolean;
50714
- persistentHint: boolean;
50715
51010
  persistentPlaceholder: boolean;
50716
51011
  persistentCounter: boolean;
50717
51012
  autoGrow: boolean;
@@ -50754,11 +51049,11 @@ declare const VTextarea: {
50754
51049
  errorMessages: string | string[];
50755
51050
  maxErrors: string | number;
50756
51051
  rules: ValidationRule[];
51052
+ persistentHint: boolean;
50757
51053
  clearable: boolean;
50758
51054
  dirty: boolean;
50759
51055
  persistentClear: boolean;
50760
51056
  singleLine: boolean;
50761
- persistentHint: boolean;
50762
51057
  persistentPlaceholder: boolean;
50763
51058
  persistentCounter: boolean;
50764
51059
  autoGrow: boolean;
@@ -50786,10 +51081,11 @@ declare const VTextarea: {
50786
51081
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50787
51082
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50788
51083
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51084
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
50789
51085
  validateOn?: "input" | "blur" | "submit" | undefined;
50790
51086
  validationValue?: any;
50791
- hideDetails?: boolean | "auto" | undefined;
50792
51087
  hint?: string | undefined;
51088
+ hideDetails?: boolean | "auto" | undefined;
50793
51089
  suffix?: string | undefined;
50794
51090
  counterValue?: ((value: any) => number) | undefined;
50795
51091
  modelModifiers?: Record<string, boolean> | undefined;
@@ -50853,6 +51149,7 @@ declare const VTextarea: {
50853
51149
  errorMessages: string | string[];
50854
51150
  maxErrors: string | number;
50855
51151
  rules: ValidationRule[];
51152
+ persistentHint: boolean;
50856
51153
  }> & Omit<{
50857
51154
  error: boolean;
50858
51155
  direction: "horizontal" | "vertical";
@@ -50864,6 +51161,7 @@ declare const VTextarea: {
50864
51161
  errorMessages: string | string[];
50865
51162
  maxErrors: string | number;
50866
51163
  rules: ValidationRule[];
51164
+ persistentHint: boolean;
50867
51165
  } & {
50868
51166
  id?: string | undefined;
50869
51167
  name?: string | undefined;
@@ -50873,8 +51171,10 @@ declare const VTextarea: {
50873
51171
  appendIcon?: IconValue | undefined;
50874
51172
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50875
51173
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51174
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
50876
51175
  validateOn?: "input" | "blur" | "submit" | undefined;
50877
51176
  validationValue?: any;
51177
+ hint?: string | undefined;
50878
51178
  hideDetails?: boolean | "auto" | undefined;
50879
51179
  } & {
50880
51180
  $children?: {} | vue.VNodeChild | {
@@ -50902,7 +51202,7 @@ declare const VTextarea: {
50902
51202
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
50903
51203
  } & {
50904
51204
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
50905
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
51205
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
50906
51206
  $attrs: {
50907
51207
  [x: string]: unknown;
50908
51208
  };
@@ -50927,6 +51227,7 @@ declare const VTextarea: {
50927
51227
  errorMessages: string | string[];
50928
51228
  maxErrors: string | number;
50929
51229
  rules: ValidationRule[];
51230
+ persistentHint: boolean;
50930
51231
  } & {
50931
51232
  id?: string | undefined;
50932
51233
  name?: string | undefined;
@@ -50936,8 +51237,10 @@ declare const VTextarea: {
50936
51237
  appendIcon?: IconValue | undefined;
50937
51238
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50938
51239
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51240
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
50939
51241
  validateOn?: "input" | "blur" | "submit" | undefined;
50940
51242
  validationValue?: any;
51243
+ hint?: string | undefined;
50941
51244
  hideDetails?: boolean | "auto" | undefined;
50942
51245
  } & {
50943
51246
  $children?: {} | vue.VNodeChild | {
@@ -50982,6 +51285,7 @@ declare const VTextarea: {
50982
51285
  errorMessages: string | string[];
50983
51286
  maxErrors: string | number;
50984
51287
  rules: ValidationRule[];
51288
+ persistentHint: boolean;
50985
51289
  }, {}, string> & {
50986
51290
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
50987
51291
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -51013,6 +51317,7 @@ declare const VTextarea: {
51013
51317
  errorMessages: string | string[];
51014
51318
  maxErrors: string | number;
51015
51319
  rules: ValidationRule[];
51320
+ persistentHint: boolean;
51016
51321
  } & {
51017
51322
  id?: string | undefined;
51018
51323
  name?: string | undefined;
@@ -51022,8 +51327,10 @@ declare const VTextarea: {
51022
51327
  appendIcon?: IconValue | undefined;
51023
51328
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51024
51329
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51330
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51025
51331
  validateOn?: "input" | "blur" | "submit" | undefined;
51026
51332
  validationValue?: any;
51333
+ hint?: string | undefined;
51027
51334
  hideDetails?: boolean | "auto" | undefined;
51028
51335
  } & {
51029
51336
  $children?: {} | vue.VNodeChild | {
@@ -51055,7 +51362,7 @@ declare const VTextarea: {
51055
51362
  reset: () => void;
51056
51363
  resetValidation: () => void;
51057
51364
  validate: () => Promise<string[]>;
51058
- }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules") | "v-slot:details">, `$${any}`>> & {} & vue.ComponentCustomProperties & {};
51365
+ }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "validateOn" | "validationValue" | "hint" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint") | "v-slot:details">, `$${any}`>> & {} & vue.ComponentCustomProperties & {};
51059
51366
  __isFragment?: undefined;
51060
51367
  __isTeleport?: undefined;
51061
51368
  __isSuspense?: undefined;
@@ -51076,11 +51383,11 @@ declare const VTextarea: {
51076
51383
  errorMessages: string | string[];
51077
51384
  maxErrors: string | number;
51078
51385
  rules: ValidationRule[];
51386
+ persistentHint: boolean;
51079
51387
  clearable: boolean;
51080
51388
  dirty: boolean;
51081
51389
  persistentClear: boolean;
51082
51390
  singleLine: boolean;
51083
- persistentHint: boolean;
51084
51391
  persistentPlaceholder: boolean;
51085
51392
  persistentCounter: boolean;
51086
51393
  autoGrow: boolean;
@@ -51108,10 +51415,11 @@ declare const VTextarea: {
51108
51415
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51109
51416
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51110
51417
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51418
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51111
51419
  validateOn?: "input" | "blur" | "submit" | undefined;
51112
51420
  validationValue?: any;
51113
- hideDetails?: boolean | "auto" | undefined;
51114
51421
  hint?: string | undefined;
51422
+ hideDetails?: boolean | "auto" | undefined;
51115
51423
  suffix?: string | undefined;
51116
51424
  counterValue?: ((value: any) => number) | undefined;
51117
51425
  modelModifiers?: Record<string, boolean> | undefined;
@@ -51175,6 +51483,7 @@ declare const VTextarea: {
51175
51483
  errorMessages: string | string[];
51176
51484
  maxErrors: string | number;
51177
51485
  rules: ValidationRule[];
51486
+ persistentHint: boolean;
51178
51487
  }> & Omit<{
51179
51488
  error: boolean;
51180
51489
  direction: "horizontal" | "vertical";
@@ -51186,6 +51495,7 @@ declare const VTextarea: {
51186
51495
  errorMessages: string | string[];
51187
51496
  maxErrors: string | number;
51188
51497
  rules: ValidationRule[];
51498
+ persistentHint: boolean;
51189
51499
  } & {
51190
51500
  id?: string | undefined;
51191
51501
  name?: string | undefined;
@@ -51195,8 +51505,10 @@ declare const VTextarea: {
51195
51505
  appendIcon?: IconValue | undefined;
51196
51506
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51197
51507
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51508
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51198
51509
  validateOn?: "input" | "blur" | "submit" | undefined;
51199
51510
  validationValue?: any;
51511
+ hint?: string | undefined;
51200
51512
  hideDetails?: boolean | "auto" | undefined;
51201
51513
  } & {
51202
51514
  $children?: {} | vue.VNodeChild | {
@@ -51224,7 +51536,7 @@ declare const VTextarea: {
51224
51536
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
51225
51537
  } & {
51226
51538
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
51227
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
51539
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
51228
51540
  $attrs: {
51229
51541
  [x: string]: unknown;
51230
51542
  };
@@ -51249,6 +51561,7 @@ declare const VTextarea: {
51249
51561
  errorMessages: string | string[];
51250
51562
  maxErrors: string | number;
51251
51563
  rules: ValidationRule[];
51564
+ persistentHint: boolean;
51252
51565
  } & {
51253
51566
  id?: string | undefined;
51254
51567
  name?: string | undefined;
@@ -51258,8 +51571,10 @@ declare const VTextarea: {
51258
51571
  appendIcon?: IconValue | undefined;
51259
51572
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51260
51573
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51574
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51261
51575
  validateOn?: "input" | "blur" | "submit" | undefined;
51262
51576
  validationValue?: any;
51577
+ hint?: string | undefined;
51263
51578
  hideDetails?: boolean | "auto" | undefined;
51264
51579
  } & {
51265
51580
  $children?: {} | vue.VNodeChild | {
@@ -51304,6 +51619,7 @@ declare const VTextarea: {
51304
51619
  errorMessages: string | string[];
51305
51620
  maxErrors: string | number;
51306
51621
  rules: ValidationRule[];
51622
+ persistentHint: boolean;
51307
51623
  }, {}, string> & {
51308
51624
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
51309
51625
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -51335,6 +51651,7 @@ declare const VTextarea: {
51335
51651
  errorMessages: string | string[];
51336
51652
  maxErrors: string | number;
51337
51653
  rules: ValidationRule[];
51654
+ persistentHint: boolean;
51338
51655
  } & {
51339
51656
  id?: string | undefined;
51340
51657
  name?: string | undefined;
@@ -51344,8 +51661,10 @@ declare const VTextarea: {
51344
51661
  appendIcon?: IconValue | undefined;
51345
51662
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51346
51663
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51664
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51347
51665
  validateOn?: "input" | "blur" | "submit" | undefined;
51348
51666
  validationValue?: any;
51667
+ hint?: string | undefined;
51349
51668
  hideDetails?: boolean | "auto" | undefined;
51350
51669
  } & {
51351
51670
  $children?: {} | vue.VNodeChild | {
@@ -51377,7 +51696,7 @@ declare const VTextarea: {
51377
51696
  reset: () => void;
51378
51697
  resetValidation: () => void;
51379
51698
  validate: () => Promise<string[]>;
51380
- }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules") | "v-slot:details">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
51699
+ }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "validateOn" | "validationValue" | "hint" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint") | "v-slot:details">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
51381
51700
  'click:control': (e: MouseEvent) => true;
51382
51701
  'mousedown:control': (e: MouseEvent) => true;
51383
51702
  'update:focused': (focused: boolean) => true;
@@ -51400,11 +51719,11 @@ declare const VTextarea: {
51400
51719
  errorMessages: string | string[];
51401
51720
  maxErrors: string | number;
51402
51721
  rules: ValidationRule[];
51722
+ persistentHint: boolean;
51403
51723
  clearable: boolean;
51404
51724
  dirty: boolean;
51405
51725
  persistentClear: boolean;
51406
51726
  singleLine: boolean;
51407
- persistentHint: boolean;
51408
51727
  persistentPlaceholder: boolean;
51409
51728
  persistentCounter: boolean;
51410
51729
  autoGrow: boolean;
@@ -51444,6 +51763,7 @@ declare const VTextarea: {
51444
51763
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
51445
51764
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
51446
51765
  focused: BooleanConstructor;
51766
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
51447
51767
  errorMessages: {
51448
51768
  type: PropType<string | string[]>;
51449
51769
  default: () => never[];
@@ -51470,6 +51790,8 @@ declare const VTextarea: {
51470
51790
  appendIcon: PropType<IconValue>;
51471
51791
  prependIcon: PropType<IconValue>;
51472
51792
  hideDetails: PropType<boolean | "auto">;
51793
+ hint: StringConstructor;
51794
+ persistentHint: BooleanConstructor;
51473
51795
  messages: {
51474
51796
  type: PropType<string | string[]>;
51475
51797
  default: () => never[];
@@ -51485,8 +51807,6 @@ declare const VTextarea: {
51485
51807
  autofocus: BooleanConstructor;
51486
51808
  counter: PropType<string | number | true>;
51487
51809
  counterValue: PropType<(value: any) => number>;
51488
- hint: StringConstructor;
51489
- persistentHint: BooleanConstructor;
51490
51810
  prefix: StringConstructor;
51491
51811
  placeholder: StringConstructor;
51492
51812
  persistentPlaceholder: BooleanConstructor;
@@ -51537,6 +51857,7 @@ declare const VTextarea: {
51537
51857
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
51538
51858
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
51539
51859
  focused: BooleanConstructor;
51860
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
51540
51861
  errorMessages: {
51541
51862
  type: PropType<string | string[]>;
51542
51863
  default: () => never[];
@@ -51563,6 +51884,8 @@ declare const VTextarea: {
51563
51884
  appendIcon: PropType<IconValue>;
51564
51885
  prependIcon: PropType<IconValue>;
51565
51886
  hideDetails: PropType<boolean | "auto">;
51887
+ hint: StringConstructor;
51888
+ persistentHint: BooleanConstructor;
51566
51889
  messages: {
51567
51890
  type: PropType<string | string[]>;
51568
51891
  default: () => never[];
@@ -51578,8 +51901,6 @@ declare const VTextarea: {
51578
51901
  autofocus: BooleanConstructor;
51579
51902
  counter: PropType<string | number | true>;
51580
51903
  counterValue: PropType<(value: any) => number>;
51581
- hint: StringConstructor;
51582
- persistentHint: BooleanConstructor;
51583
51904
  prefix: StringConstructor;
51584
51905
  placeholder: StringConstructor;
51585
51906
  persistentPlaceholder: BooleanConstructor;
@@ -51622,11 +51943,11 @@ declare const VTextField: {
51622
51943
  errorMessages: string | string[];
51623
51944
  maxErrors: string | number;
51624
51945
  rules: ValidationRule[];
51946
+ persistentHint: boolean;
51625
51947
  clearable: boolean;
51626
51948
  dirty: boolean;
51627
51949
  persistentClear: boolean;
51628
51950
  singleLine: boolean;
51629
- persistentHint: boolean;
51630
51951
  persistentPlaceholder: boolean;
51631
51952
  persistentCounter: boolean;
51632
51953
  }> & Omit<{
@@ -51647,11 +51968,11 @@ declare const VTextField: {
51647
51968
  errorMessages: string | string[];
51648
51969
  maxErrors: string | number;
51649
51970
  rules: ValidationRule[];
51971
+ persistentHint: boolean;
51650
51972
  clearable: boolean;
51651
51973
  dirty: boolean;
51652
51974
  persistentClear: boolean;
51653
51975
  singleLine: boolean;
51654
- persistentHint: boolean;
51655
51976
  persistentPlaceholder: boolean;
51656
51977
  persistentCounter: boolean;
51657
51978
  } & {
@@ -51676,10 +51997,11 @@ declare const VTextField: {
51676
51997
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51677
51998
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51678
51999
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52000
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51679
52001
  validateOn?: "input" | "blur" | "submit" | undefined;
51680
52002
  validationValue?: any;
51681
- hideDetails?: boolean | "auto" | undefined;
51682
52003
  hint?: string | undefined;
52004
+ hideDetails?: boolean | "auto" | undefined;
51683
52005
  suffix?: string | undefined;
51684
52006
  counterValue?: ((value: any) => number) | undefined;
51685
52007
  modelModifiers?: Record<string, boolean> | undefined;
@@ -51732,7 +52054,7 @@ declare const VTextField: {
51732
52054
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
51733
52055
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
51734
52056
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
51735
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "reverse" | "type" | "error" | "active" | "direction" | "autofocus" | "disabled" | "readonly" | "messages" | "rounded" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter">;
52057
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "reverse" | "type" | "error" | "active" | "direction" | "autofocus" | "disabled" | "readonly" | "messages" | "rounded" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter">;
51736
52058
  $attrs: {
51737
52059
  [x: string]: unknown;
51738
52060
  };
@@ -51764,11 +52086,11 @@ declare const VTextField: {
51764
52086
  errorMessages: string | string[];
51765
52087
  maxErrors: string | number;
51766
52088
  rules: ValidationRule[];
52089
+ persistentHint: boolean;
51767
52090
  clearable: boolean;
51768
52091
  dirty: boolean;
51769
52092
  persistentClear: boolean;
51770
52093
  singleLine: boolean;
51771
- persistentHint: boolean;
51772
52094
  persistentPlaceholder: boolean;
51773
52095
  persistentCounter: boolean;
51774
52096
  } & {
@@ -51793,10 +52115,11 @@ declare const VTextField: {
51793
52115
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51794
52116
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51795
52117
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52118
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51796
52119
  validateOn?: "input" | "blur" | "submit" | undefined;
51797
52120
  validationValue?: any;
51798
- hideDetails?: boolean | "auto" | undefined;
51799
52121
  hint?: string | undefined;
52122
+ hideDetails?: boolean | "auto" | undefined;
51800
52123
  suffix?: string | undefined;
51801
52124
  counterValue?: ((value: any) => number) | undefined;
51802
52125
  modelModifiers?: Record<string, boolean> | undefined;
@@ -51863,6 +52186,7 @@ declare const VTextField: {
51863
52186
  errorMessages: string | string[];
51864
52187
  maxErrors: string | number;
51865
52188
  rules: ValidationRule[];
52189
+ persistentHint: boolean;
51866
52190
  }> & Omit<{
51867
52191
  error: boolean;
51868
52192
  direction: "horizontal" | "vertical";
@@ -51874,6 +52198,7 @@ declare const VTextField: {
51874
52198
  errorMessages: string | string[];
51875
52199
  maxErrors: string | number;
51876
52200
  rules: ValidationRule[];
52201
+ persistentHint: boolean;
51877
52202
  } & {
51878
52203
  id?: string | undefined;
51879
52204
  name?: string | undefined;
@@ -51883,8 +52208,10 @@ declare const VTextField: {
51883
52208
  appendIcon?: IconValue | undefined;
51884
52209
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51885
52210
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52211
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51886
52212
  validateOn?: "input" | "blur" | "submit" | undefined;
51887
52213
  validationValue?: any;
52214
+ hint?: string | undefined;
51888
52215
  hideDetails?: boolean | "auto" | undefined;
51889
52216
  } & {
51890
52217
  $children?: {} | vue.VNodeChild | {
@@ -51912,7 +52239,7 @@ declare const VTextField: {
51912
52239
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
51913
52240
  } & {
51914
52241
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
51915
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
52242
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
51916
52243
  $attrs: {
51917
52244
  [x: string]: unknown;
51918
52245
  };
@@ -51937,6 +52264,7 @@ declare const VTextField: {
51937
52264
  errorMessages: string | string[];
51938
52265
  maxErrors: string | number;
51939
52266
  rules: ValidationRule[];
52267
+ persistentHint: boolean;
51940
52268
  } & {
51941
52269
  id?: string | undefined;
51942
52270
  name?: string | undefined;
@@ -51946,8 +52274,10 @@ declare const VTextField: {
51946
52274
  appendIcon?: IconValue | undefined;
51947
52275
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51948
52276
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52277
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51949
52278
  validateOn?: "input" | "blur" | "submit" | undefined;
51950
52279
  validationValue?: any;
52280
+ hint?: string | undefined;
51951
52281
  hideDetails?: boolean | "auto" | undefined;
51952
52282
  } & {
51953
52283
  $children?: {} | vue.VNodeChild | {
@@ -51992,6 +52322,7 @@ declare const VTextField: {
51992
52322
  errorMessages: string | string[];
51993
52323
  maxErrors: string | number;
51994
52324
  rules: ValidationRule[];
52325
+ persistentHint: boolean;
51995
52326
  }, {}, string> & {
51996
52327
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
51997
52328
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -52023,6 +52354,7 @@ declare const VTextField: {
52023
52354
  errorMessages: string | string[];
52024
52355
  maxErrors: string | number;
52025
52356
  rules: ValidationRule[];
52357
+ persistentHint: boolean;
52026
52358
  } & {
52027
52359
  id?: string | undefined;
52028
52360
  name?: string | undefined;
@@ -52032,8 +52364,10 @@ declare const VTextField: {
52032
52364
  appendIcon?: IconValue | undefined;
52033
52365
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52034
52366
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52367
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
52035
52368
  validateOn?: "input" | "blur" | "submit" | undefined;
52036
52369
  validationValue?: any;
52370
+ hint?: string | undefined;
52037
52371
  hideDetails?: boolean | "auto" | undefined;
52038
52372
  } & {
52039
52373
  $children?: {} | vue.VNodeChild | {
@@ -52065,7 +52399,7 @@ declare const VTextField: {
52065
52399
  reset: () => void;
52066
52400
  resetValidation: () => void;
52067
52401
  validate: () => Promise<string[]>;
52068
- }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules") | "v-slot:details">, `$${any}`> & Omit<Omit<{
52402
+ }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "validateOn" | "validationValue" | "hint" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint") | "v-slot:details">, `$${any}`> & Omit<Omit<{
52069
52403
  $: vue.ComponentInternalInstance;
52070
52404
  $data: {};
52071
52405
  $props: Partial<{
@@ -52116,6 +52450,7 @@ declare const VTextField: {
52116
52450
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52117
52451
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52118
52452
  focused: BooleanConstructor;
52453
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
52119
52454
  id: StringConstructor;
52120
52455
  }, "$children" | "v-slot:default" | "$slots" | "v-slots" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner">>> & {
52121
52456
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -52167,6 +52502,7 @@ declare const VTextField: {
52167
52502
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52168
52503
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52169
52504
  focused: BooleanConstructor;
52505
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
52170
52506
  id: StringConstructor;
52171
52507
  }, "$children" | "v-slot:default" | "$slots" | "v-slots" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner">>> & {
52172
52508
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -52243,6 +52579,7 @@ declare const VTextField: {
52243
52579
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52244
52580
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52245
52581
  focused: BooleanConstructor;
52582
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
52246
52583
  id: StringConstructor;
52247
52584
  }, "$children" | "v-slot:default" | "$slots" | "v-slots" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner">>> & {
52248
52585
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -52309,11 +52646,11 @@ declare const VTextField: {
52309
52646
  errorMessages: string | string[];
52310
52647
  maxErrors: string | number;
52311
52648
  rules: ValidationRule[];
52649
+ persistentHint: boolean;
52312
52650
  clearable: boolean;
52313
52651
  dirty: boolean;
52314
52652
  persistentClear: boolean;
52315
52653
  singleLine: boolean;
52316
- persistentHint: boolean;
52317
52654
  persistentPlaceholder: boolean;
52318
52655
  persistentCounter: boolean;
52319
52656
  }, {}, string> & {
@@ -52354,11 +52691,11 @@ declare const VTextField: {
52354
52691
  errorMessages: string | string[];
52355
52692
  maxErrors: string | number;
52356
52693
  rules: ValidationRule[];
52694
+ persistentHint: boolean;
52357
52695
  clearable: boolean;
52358
52696
  dirty: boolean;
52359
52697
  persistentClear: boolean;
52360
52698
  singleLine: boolean;
52361
- persistentHint: boolean;
52362
52699
  persistentPlaceholder: boolean;
52363
52700
  persistentCounter: boolean;
52364
52701
  } & {
@@ -52383,10 +52720,11 @@ declare const VTextField: {
52383
52720
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52384
52721
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52385
52722
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52723
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
52386
52724
  validateOn?: "input" | "blur" | "submit" | undefined;
52387
52725
  validationValue?: any;
52388
- hideDetails?: boolean | "auto" | undefined;
52389
52726
  hint?: string | undefined;
52727
+ hideDetails?: boolean | "auto" | undefined;
52390
52728
  suffix?: string | undefined;
52391
52729
  counterValue?: ((value: any) => number) | undefined;
52392
52730
  modelModifiers?: Record<string, boolean> | undefined;
@@ -52453,6 +52791,7 @@ declare const VTextField: {
52453
52791
  errorMessages: string | string[];
52454
52792
  maxErrors: string | number;
52455
52793
  rules: ValidationRule[];
52794
+ persistentHint: boolean;
52456
52795
  }> & Omit<{
52457
52796
  error: boolean;
52458
52797
  direction: "horizontal" | "vertical";
@@ -52464,6 +52803,7 @@ declare const VTextField: {
52464
52803
  errorMessages: string | string[];
52465
52804
  maxErrors: string | number;
52466
52805
  rules: ValidationRule[];
52806
+ persistentHint: boolean;
52467
52807
  } & {
52468
52808
  id?: string | undefined;
52469
52809
  name?: string | undefined;
@@ -52473,8 +52813,10 @@ declare const VTextField: {
52473
52813
  appendIcon?: IconValue | undefined;
52474
52814
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52475
52815
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52816
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
52476
52817
  validateOn?: "input" | "blur" | "submit" | undefined;
52477
52818
  validationValue?: any;
52819
+ hint?: string | undefined;
52478
52820
  hideDetails?: boolean | "auto" | undefined;
52479
52821
  } & {
52480
52822
  $children?: {} | vue.VNodeChild | {
@@ -52502,7 +52844,7 @@ declare const VTextField: {
52502
52844
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
52503
52845
  } & {
52504
52846
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
52505
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
52847
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
52506
52848
  $attrs: {
52507
52849
  [x: string]: unknown;
52508
52850
  };
@@ -52527,6 +52869,7 @@ declare const VTextField: {
52527
52869
  errorMessages: string | string[];
52528
52870
  maxErrors: string | number;
52529
52871
  rules: ValidationRule[];
52872
+ persistentHint: boolean;
52530
52873
  } & {
52531
52874
  id?: string | undefined;
52532
52875
  name?: string | undefined;
@@ -52536,8 +52879,10 @@ declare const VTextField: {
52536
52879
  appendIcon?: IconValue | undefined;
52537
52880
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52538
52881
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52882
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
52539
52883
  validateOn?: "input" | "blur" | "submit" | undefined;
52540
52884
  validationValue?: any;
52885
+ hint?: string | undefined;
52541
52886
  hideDetails?: boolean | "auto" | undefined;
52542
52887
  } & {
52543
52888
  $children?: {} | vue.VNodeChild | {
@@ -52582,6 +52927,7 @@ declare const VTextField: {
52582
52927
  errorMessages: string | string[];
52583
52928
  maxErrors: string | number;
52584
52929
  rules: ValidationRule[];
52930
+ persistentHint: boolean;
52585
52931
  }, {}, string> & {
52586
52932
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
52587
52933
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -52613,6 +52959,7 @@ declare const VTextField: {
52613
52959
  errorMessages: string | string[];
52614
52960
  maxErrors: string | number;
52615
52961
  rules: ValidationRule[];
52962
+ persistentHint: boolean;
52616
52963
  } & {
52617
52964
  id?: string | undefined;
52618
52965
  name?: string | undefined;
@@ -52622,8 +52969,10 @@ declare const VTextField: {
52622
52969
  appendIcon?: IconValue | undefined;
52623
52970
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52624
52971
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52972
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
52625
52973
  validateOn?: "input" | "blur" | "submit" | undefined;
52626
52974
  validationValue?: any;
52975
+ hint?: string | undefined;
52627
52976
  hideDetails?: boolean | "auto" | undefined;
52628
52977
  } & {
52629
52978
  $children?: {} | vue.VNodeChild | {
@@ -52655,7 +53004,7 @@ declare const VTextField: {
52655
53004
  reset: () => void;
52656
53005
  resetValidation: () => void;
52657
53006
  validate: () => Promise<string[]>;
52658
- }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules") | "v-slot:details">, `$${any}`> & Omit<Omit<{
53007
+ }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "validateOn" | "validationValue" | "hint" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint") | "v-slot:details">, `$${any}`> & Omit<Omit<{
52659
53008
  $: vue.ComponentInternalInstance;
52660
53009
  $data: {};
52661
53010
  $props: Partial<{
@@ -52706,6 +53055,7 @@ declare const VTextField: {
52706
53055
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52707
53056
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52708
53057
  focused: BooleanConstructor;
53058
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
52709
53059
  id: StringConstructor;
52710
53060
  }, "$children" | "v-slot:default" | "$slots" | "v-slots" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner">>> & {
52711
53061
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -52757,6 +53107,7 @@ declare const VTextField: {
52757
53107
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52758
53108
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52759
53109
  focused: BooleanConstructor;
53110
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
52760
53111
  id: StringConstructor;
52761
53112
  }, "$children" | "v-slot:default" | "$slots" | "v-slots" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner">>> & {
52762
53113
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -52833,6 +53184,7 @@ declare const VTextField: {
52833
53184
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52834
53185
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52835
53186
  focused: BooleanConstructor;
53187
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
52836
53188
  id: StringConstructor;
52837
53189
  }, "$children" | "v-slot:default" | "$slots" | "v-slots" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner">>> & {
52838
53190
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -52897,11 +53249,11 @@ declare const VTextField: {
52897
53249
  errorMessages: string | string[];
52898
53250
  maxErrors: string | number;
52899
53251
  rules: ValidationRule[];
53252
+ persistentHint: boolean;
52900
53253
  clearable: boolean;
52901
53254
  dirty: boolean;
52902
53255
  persistentClear: boolean;
52903
53256
  singleLine: boolean;
52904
- persistentHint: boolean;
52905
53257
  persistentPlaceholder: boolean;
52906
53258
  persistentCounter: boolean;
52907
53259
  } & {
@@ -52926,10 +53278,11 @@ declare const VTextField: {
52926
53278
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52927
53279
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52928
53280
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53281
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
52929
53282
  validateOn?: "input" | "blur" | "submit" | undefined;
52930
53283
  validationValue?: any;
52931
- hideDetails?: boolean | "auto" | undefined;
52932
53284
  hint?: string | undefined;
53285
+ hideDetails?: boolean | "auto" | undefined;
52933
53286
  suffix?: string | undefined;
52934
53287
  counterValue?: ((value: any) => number) | undefined;
52935
53288
  modelModifiers?: Record<string, boolean> | undefined;
@@ -52996,6 +53349,7 @@ declare const VTextField: {
52996
53349
  errorMessages: string | string[];
52997
53350
  maxErrors: string | number;
52998
53351
  rules: ValidationRule[];
53352
+ persistentHint: boolean;
52999
53353
  }> & Omit<{
53000
53354
  error: boolean;
53001
53355
  direction: "horizontal" | "vertical";
@@ -53007,6 +53361,7 @@ declare const VTextField: {
53007
53361
  errorMessages: string | string[];
53008
53362
  maxErrors: string | number;
53009
53363
  rules: ValidationRule[];
53364
+ persistentHint: boolean;
53010
53365
  } & {
53011
53366
  id?: string | undefined;
53012
53367
  name?: string | undefined;
@@ -53016,8 +53371,10 @@ declare const VTextField: {
53016
53371
  appendIcon?: IconValue | undefined;
53017
53372
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53018
53373
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53374
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
53019
53375
  validateOn?: "input" | "blur" | "submit" | undefined;
53020
53376
  validationValue?: any;
53377
+ hint?: string | undefined;
53021
53378
  hideDetails?: boolean | "auto" | undefined;
53022
53379
  } & {
53023
53380
  $children?: {} | vue.VNodeChild | {
@@ -53045,7 +53402,7 @@ declare const VTextField: {
53045
53402
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
53046
53403
  } & {
53047
53404
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
53048
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
53405
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
53049
53406
  $attrs: {
53050
53407
  [x: string]: unknown;
53051
53408
  };
@@ -53070,6 +53427,7 @@ declare const VTextField: {
53070
53427
  errorMessages: string | string[];
53071
53428
  maxErrors: string | number;
53072
53429
  rules: ValidationRule[];
53430
+ persistentHint: boolean;
53073
53431
  } & {
53074
53432
  id?: string | undefined;
53075
53433
  name?: string | undefined;
@@ -53079,8 +53437,10 @@ declare const VTextField: {
53079
53437
  appendIcon?: IconValue | undefined;
53080
53438
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53081
53439
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53440
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
53082
53441
  validateOn?: "input" | "blur" | "submit" | undefined;
53083
53442
  validationValue?: any;
53443
+ hint?: string | undefined;
53084
53444
  hideDetails?: boolean | "auto" | undefined;
53085
53445
  } & {
53086
53446
  $children?: {} | vue.VNodeChild | {
@@ -53125,6 +53485,7 @@ declare const VTextField: {
53125
53485
  errorMessages: string | string[];
53126
53486
  maxErrors: string | number;
53127
53487
  rules: ValidationRule[];
53488
+ persistentHint: boolean;
53128
53489
  }, {}, string> & {
53129
53490
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
53130
53491
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -53156,6 +53517,7 @@ declare const VTextField: {
53156
53517
  errorMessages: string | string[];
53157
53518
  maxErrors: string | number;
53158
53519
  rules: ValidationRule[];
53520
+ persistentHint: boolean;
53159
53521
  } & {
53160
53522
  id?: string | undefined;
53161
53523
  name?: string | undefined;
@@ -53165,8 +53527,10 @@ declare const VTextField: {
53165
53527
  appendIcon?: IconValue | undefined;
53166
53528
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53167
53529
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53530
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
53168
53531
  validateOn?: "input" | "blur" | "submit" | undefined;
53169
53532
  validationValue?: any;
53533
+ hint?: string | undefined;
53170
53534
  hideDetails?: boolean | "auto" | undefined;
53171
53535
  } & {
53172
53536
  $children?: {} | vue.VNodeChild | {
@@ -53198,7 +53562,7 @@ declare const VTextField: {
53198
53562
  reset: () => void;
53199
53563
  resetValidation: () => void;
53200
53564
  validate: () => Promise<string[]>;
53201
- }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "validateOn" | "validationValue" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules") | "v-slot:details">, `$${any}`> & Omit<Omit<{
53565
+ }> & {} & vue.ComponentCustomProperties & {}, "id" | "name" | "label" | "$children" | "v-slot:default" | "$slots" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:append" | "v-slot:prepend" | "modelValue" | "onUpdate:modelValue" | "prependIcon" | "appendIcon" | "onClick:append" | "onClick:prepend" | "onUpdate:focused" | "validateOn" | "validationValue" | "hint" | "hideDetails" | ("error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint") | "v-slot:details">, `$${any}`> & Omit<Omit<{
53202
53566
  $: vue.ComponentInternalInstance;
53203
53567
  $data: {};
53204
53568
  $props: Partial<{
@@ -53249,6 +53613,7 @@ declare const VTextField: {
53249
53613
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53250
53614
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53251
53615
  focused: BooleanConstructor;
53616
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
53252
53617
  id: StringConstructor;
53253
53618
  }, "$children" | "v-slot:default" | "$slots" | "v-slots" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner">>> & {
53254
53619
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -53300,6 +53665,7 @@ declare const VTextField: {
53300
53665
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53301
53666
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53302
53667
  focused: BooleanConstructor;
53668
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
53303
53669
  id: StringConstructor;
53304
53670
  }, "$children" | "v-slot:default" | "$slots" | "v-slots" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner">>> & {
53305
53671
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -53376,6 +53742,7 @@ declare const VTextField: {
53376
53742
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53377
53743
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53378
53744
  focused: BooleanConstructor;
53745
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
53379
53746
  id: StringConstructor;
53380
53747
  }, "$children" | "v-slot:default" | "$slots" | "v-slots" | "modelValue" | "onUpdate:modelValue" | "v-slot:loader" | "v-slot:clear" | "v-slot:label" | "v-slot:prepend-inner" | "v-slot:append-inner">>> & {
53381
53748
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -53442,11 +53809,11 @@ declare const VTextField: {
53442
53809
  errorMessages: string | string[];
53443
53810
  maxErrors: string | number;
53444
53811
  rules: ValidationRule[];
53812
+ persistentHint: boolean;
53445
53813
  clearable: boolean;
53446
53814
  dirty: boolean;
53447
53815
  persistentClear: boolean;
53448
53816
  singleLine: boolean;
53449
- persistentHint: boolean;
53450
53817
  persistentPlaceholder: boolean;
53451
53818
  persistentCounter: boolean;
53452
53819
  }, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
@@ -53483,6 +53850,7 @@ declare const VTextField: {
53483
53850
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53484
53851
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53485
53852
  focused: BooleanConstructor;
53853
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
53486
53854
  errorMessages: {
53487
53855
  type: PropType<string | string[]>;
53488
53856
  default: () => never[];
@@ -53509,6 +53877,8 @@ declare const VTextField: {
53509
53877
  appendIcon: PropType<IconValue>;
53510
53878
  prependIcon: PropType<IconValue>;
53511
53879
  hideDetails: PropType<boolean | "auto">;
53880
+ hint: StringConstructor;
53881
+ persistentHint: BooleanConstructor;
53512
53882
  messages: {
53513
53883
  type: PropType<string | string[]>;
53514
53884
  default: () => never[];
@@ -53523,8 +53893,6 @@ declare const VTextField: {
53523
53893
  autofocus: BooleanConstructor;
53524
53894
  counter: PropType<string | number | true>;
53525
53895
  counterValue: PropType<(value: any) => number>;
53526
- hint: StringConstructor;
53527
- persistentHint: BooleanConstructor;
53528
53896
  prefix: StringConstructor;
53529
53897
  placeholder: StringConstructor;
53530
53898
  persistentPlaceholder: BooleanConstructor;
@@ -53569,6 +53937,7 @@ declare const VTextField: {
53569
53937
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53570
53938
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53571
53939
  focused: BooleanConstructor;
53940
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
53572
53941
  errorMessages: {
53573
53942
  type: PropType<string | string[]>;
53574
53943
  default: () => never[];
@@ -53595,6 +53964,8 @@ declare const VTextField: {
53595
53964
  appendIcon: PropType<IconValue>;
53596
53965
  prependIcon: PropType<IconValue>;
53597
53966
  hideDetails: PropType<boolean | "auto">;
53967
+ hint: StringConstructor;
53968
+ persistentHint: BooleanConstructor;
53598
53969
  messages: {
53599
53970
  type: PropType<string | string[]>;
53600
53971
  default: () => never[];
@@ -53609,8 +53980,6 @@ declare const VTextField: {
53609
53980
  autofocus: BooleanConstructor;
53610
53981
  counter: PropType<string | number | true>;
53611
53982
  counterValue: PropType<(value: any) => number>;
53612
- hint: StringConstructor;
53613
- persistentHint: BooleanConstructor;
53614
53983
  prefix: StringConstructor;
53615
53984
  placeholder: StringConstructor;
53616
53985
  persistentPlaceholder: BooleanConstructor;
@@ -56311,6 +56680,7 @@ declare const VValidation: {
56311
56680
  name?: string | undefined;
56312
56681
  label?: string | undefined;
56313
56682
  modelValue?: any;
56683
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
56314
56684
  validateOn?: "input" | "blur" | "submit" | undefined;
56315
56685
  validationValue?: any;
56316
56686
  } & {
@@ -56353,6 +56723,7 @@ declare const VValidation: {
56353
56723
  name?: string | undefined;
56354
56724
  label?: string | undefined;
56355
56725
  modelValue?: any;
56726
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
56356
56727
  validateOn?: "input" | "blur" | "submit" | undefined;
56357
56728
  validationValue?: any;
56358
56729
  } & {
@@ -56413,6 +56784,7 @@ declare const VValidation: {
56413
56784
  name?: string | undefined;
56414
56785
  label?: string | undefined;
56415
56786
  modelValue?: any;
56787
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
56416
56788
  validateOn?: "input" | "blur" | "submit" | undefined;
56417
56789
  validationValue?: any;
56418
56790
  } & {
@@ -56447,6 +56819,7 @@ declare const VValidation: {
56447
56819
  name?: string | undefined;
56448
56820
  label?: string | undefined;
56449
56821
  modelValue?: any;
56822
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
56450
56823
  validateOn?: "input" | "blur" | "submit" | undefined;
56451
56824
  validationValue?: any;
56452
56825
  } & {
@@ -56477,6 +56850,7 @@ declare const VValidation: {
56477
56850
  rules: ValidationRule[];
56478
56851
  }, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
56479
56852
  focused: BooleanConstructor;
56853
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
56480
56854
  disabled: BooleanConstructor;
56481
56855
  error: BooleanConstructor;
56482
56856
  errorMessages: {
@@ -56499,6 +56873,7 @@ declare const VValidation: {
56499
56873
  validationValue: null;
56500
56874
  }, vue.ExtractPropTypes<{
56501
56875
  focused: BooleanConstructor;
56876
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
56502
56877
  disabled: BooleanConstructor;
56503
56878
  error: BooleanConstructor;
56504
56879
  errorMessages: {