@vuetify/nightly 4.0.0-dev-20230419.0 → 4.0.0-dev-20230421.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 +34 -34
  4. package/dist/json/tags.json +16 -0
  5. package/dist/json/web-types.json +522 -220
  6. package/dist/vuetify-labs.css +293 -130
  7. package/dist/vuetify-labs.d.ts +620 -171
  8. package/dist/vuetify-labs.esm.js +867 -186
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +867 -185
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +166 -3
  13. package/dist/vuetify.d.ts +577 -160
  14. package/dist/vuetify.esm.js +809 -138
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +809 -137
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +802 -736
  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 +47 -24
  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 +52 -10
  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
package/dist/vuetify.d.ts CHANGED
@@ -184,6 +184,45 @@ type DefaultsInstance = undefined | {
184
184
  };
185
185
  type DefaultsOptions = Partial<DefaultsInstance>;
186
186
 
187
+ interface DateAdapter<Date> {
188
+ date(value?: any): Date | null;
189
+ format(date: Date, formatString: string): string;
190
+ startOfMonth(date: Date): Date;
191
+ endOfMonth(date: Date): Date;
192
+ startOfYear(date: Date): Date;
193
+ endOfYear(date: Date): Date;
194
+ isAfter(date: Date, comparing: Date): boolean;
195
+ isEqual(date: Date, comparing: Date): boolean;
196
+ isSameDay(date: Date, comparing: Date): boolean;
197
+ isSameMonth(date: Date, comparing: Date): boolean;
198
+ isValid(date: any): boolean;
199
+ isWithinRange(date: Date, range: [Date, Date]): boolean;
200
+ addDays(date: Date, amount: number): Date;
201
+ addMonths(date: Date, amount: number): Date;
202
+ getYear(date: Date): number;
203
+ setYear(date: Date, year: number): Date;
204
+ getDiff(date: Date, comparing: Date | string, unit?: string): number;
205
+ getWeek(date: Date): number;
206
+ getWeekArray(date: Date): (Date | null)[][];
207
+ getWeekdays(): string[];
208
+ getMonth(date: Date): number;
209
+ }
210
+
211
+ interface DateInstance extends DateAdapter<Date> {
212
+ locale: string;
213
+ }
214
+ type DateOptions = {
215
+ adapter: {
216
+ new (locale: string): DateInstance;
217
+ };
218
+ };
219
+ interface DateProps {
220
+ displayDate: Date;
221
+ hideAdjacentMonths: boolean;
222
+ modelValue: any[];
223
+ }
224
+ declare function useDate(props: DateProps): DateInstance;
225
+
187
226
  type IconValue = string | JSXComponent;
188
227
  declare const IconValue: PropType<IconValue>;
189
228
  interface IconAliases {
@@ -674,6 +713,7 @@ interface VuetifyOptions {
674
713
  aliases?: Record<string, any>;
675
714
  blueprint?: Blueprint;
676
715
  components?: Record<string, any>;
716
+ date?: DateOptions;
677
717
  directives?: Record<string, any>;
678
718
  defaults?: DefaultsOptions;
679
719
  display?: DisplayOptions;
@@ -1279,11 +1319,14 @@ declare const VAppBar: {
1279
1319
  name?: string | undefined;
1280
1320
  border?: string | number | boolean | undefined;
1281
1321
  color?: string | undefined;
1322
+ scrollBehavior?: string | undefined;
1282
1323
  title?: string | undefined;
1283
1324
  image?: string | undefined;
1284
1325
  elevation?: string | number | undefined;
1285
1326
  theme?: string | undefined;
1286
1327
  rounded?: string | number | boolean | undefined;
1328
+ scrollTarget?: string | undefined;
1329
+ scrollThreshold?: string | number | undefined;
1287
1330
  } & {
1288
1331
  $children?: {} | vue.VNodeChild | {
1289
1332
  default?: (() => vue.VNodeChild) | undefined;
@@ -1349,11 +1392,14 @@ declare const VAppBar: {
1349
1392
  name?: string | undefined;
1350
1393
  border?: string | number | boolean | undefined;
1351
1394
  color?: string | undefined;
1395
+ scrollBehavior?: string | undefined;
1352
1396
  title?: string | undefined;
1353
1397
  image?: string | undefined;
1354
1398
  elevation?: string | number | undefined;
1355
1399
  theme?: string | undefined;
1356
1400
  rounded?: string | number | boolean | undefined;
1401
+ scrollTarget?: string | undefined;
1402
+ scrollThreshold?: string | number | undefined;
1357
1403
  } & {
1358
1404
  $children?: {} | vue.VNodeChild | {
1359
1405
  default?: (() => vue.VNodeChild) | undefined;
@@ -1441,11 +1487,14 @@ declare const VAppBar: {
1441
1487
  name?: string | undefined;
1442
1488
  border?: string | number | boolean | undefined;
1443
1489
  color?: string | undefined;
1490
+ scrollBehavior?: string | undefined;
1444
1491
  title?: string | undefined;
1445
1492
  image?: string | undefined;
1446
1493
  elevation?: string | number | undefined;
1447
1494
  theme?: string | undefined;
1448
1495
  rounded?: string | number | boolean | undefined;
1496
+ scrollTarget?: string | undefined;
1497
+ scrollThreshold?: string | number | undefined;
1449
1498
  } & {
1450
1499
  $children?: {} | vue.VNodeChild | {
1451
1500
  default?: (() => vue.VNodeChild) | undefined;
@@ -1501,11 +1550,14 @@ declare const VAppBar: {
1501
1550
  name?: string | undefined;
1502
1551
  border?: string | number | boolean | undefined;
1503
1552
  color?: string | undefined;
1553
+ scrollBehavior?: string | undefined;
1504
1554
  title?: string | undefined;
1505
1555
  image?: string | undefined;
1506
1556
  elevation?: string | number | undefined;
1507
1557
  theme?: string | undefined;
1508
1558
  rounded?: string | number | boolean | undefined;
1559
+ scrollTarget?: string | undefined;
1560
+ scrollThreshold?: string | number | undefined;
1509
1561
  } & {
1510
1562
  $children?: {} | vue.VNodeChild | {
1511
1563
  default?: (() => vue.VNodeChild) | undefined;
@@ -1561,6 +1613,12 @@ declare const VAppBar: {
1561
1613
  type: (StringConstructor | NumberConstructor)[];
1562
1614
  default: number;
1563
1615
  };
1616
+ scrollTarget: {
1617
+ type: StringConstructor;
1618
+ };
1619
+ scrollThreshold: {
1620
+ type: (StringConstructor | NumberConstructor)[];
1621
+ };
1564
1622
  name: {
1565
1623
  type: StringConstructor;
1566
1624
  };
@@ -1602,6 +1660,7 @@ declare const VAppBar: {
1602
1660
  floating: BooleanConstructor;
1603
1661
  image: StringConstructor;
1604
1662
  title: StringConstructor;
1663
+ scrollBehavior: StringConstructor;
1605
1664
  modelValue: {
1606
1665
  type: BooleanConstructor;
1607
1666
  default: boolean;
@@ -1616,6 +1675,12 @@ declare const VAppBar: {
1616
1675
  type: (StringConstructor | NumberConstructor)[];
1617
1676
  default: number;
1618
1677
  };
1678
+ scrollTarget: {
1679
+ type: StringConstructor;
1680
+ };
1681
+ scrollThreshold: {
1682
+ type: (StringConstructor | NumberConstructor)[];
1683
+ };
1619
1684
  name: {
1620
1685
  type: StringConstructor;
1621
1686
  };
@@ -1657,6 +1722,7 @@ declare const VAppBar: {
1657
1722
  floating: BooleanConstructor;
1658
1723
  image: StringConstructor;
1659
1724
  title: StringConstructor;
1725
+ scrollBehavior: StringConstructor;
1660
1726
  modelValue: {
1661
1727
  type: BooleanConstructor;
1662
1728
  default: boolean;
@@ -2609,6 +2675,7 @@ declare const VInput: {
2609
2675
  errorMessages: string | string[];
2610
2676
  maxErrors: string | number;
2611
2677
  rules: ValidationRule[];
2678
+ persistentHint: boolean;
2612
2679
  }> & Omit<{
2613
2680
  error: boolean;
2614
2681
  direction: "horizontal" | "vertical";
@@ -2620,6 +2687,7 @@ declare const VInput: {
2620
2687
  errorMessages: string | string[];
2621
2688
  maxErrors: string | number;
2622
2689
  rules: ValidationRule[];
2690
+ persistentHint: boolean;
2623
2691
  } & {
2624
2692
  id?: string | undefined;
2625
2693
  name?: string | undefined;
@@ -2629,8 +2697,10 @@ declare const VInput: {
2629
2697
  appendIcon?: IconValue | undefined;
2630
2698
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2631
2699
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2700
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
2632
2701
  validateOn?: "input" | "blur" | "submit" | undefined;
2633
2702
  validationValue?: any;
2703
+ hint?: string | undefined;
2634
2704
  hideDetails?: boolean | "auto" | undefined;
2635
2705
  } & {
2636
2706
  $children?: {} | vue.VNodeChild | {
@@ -2658,7 +2728,7 @@ declare const VInput: {
2658
2728
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
2659
2729
  } & {
2660
2730
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
2661
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
2731
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
2662
2732
  $attrs: {
2663
2733
  [x: string]: unknown;
2664
2734
  };
@@ -2683,6 +2753,7 @@ declare const VInput: {
2683
2753
  errorMessages: string | string[];
2684
2754
  maxErrors: string | number;
2685
2755
  rules: ValidationRule[];
2756
+ persistentHint: boolean;
2686
2757
  } & {
2687
2758
  id?: string | undefined;
2688
2759
  name?: string | undefined;
@@ -2692,8 +2763,10 @@ declare const VInput: {
2692
2763
  appendIcon?: IconValue | undefined;
2693
2764
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2694
2765
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2766
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
2695
2767
  validateOn?: "input" | "blur" | "submit" | undefined;
2696
2768
  validationValue?: any;
2769
+ hint?: string | undefined;
2697
2770
  hideDetails?: boolean | "auto" | undefined;
2698
2771
  } & {
2699
2772
  $children?: {} | vue.VNodeChild | {
@@ -2738,6 +2811,7 @@ declare const VInput: {
2738
2811
  errorMessages: string | string[];
2739
2812
  maxErrors: string | number;
2740
2813
  rules: ValidationRule[];
2814
+ persistentHint: boolean;
2741
2815
  }, {}, string> & {
2742
2816
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
2743
2817
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -2769,6 +2843,7 @@ declare const VInput: {
2769
2843
  errorMessages: string | string[];
2770
2844
  maxErrors: string | number;
2771
2845
  rules: ValidationRule[];
2846
+ persistentHint: boolean;
2772
2847
  } & {
2773
2848
  id?: string | undefined;
2774
2849
  name?: string | undefined;
@@ -2778,8 +2853,10 @@ declare const VInput: {
2778
2853
  appendIcon?: IconValue | undefined;
2779
2854
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2780
2855
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2856
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
2781
2857
  validateOn?: "input" | "blur" | "submit" | undefined;
2782
2858
  validationValue?: any;
2859
+ hint?: string | undefined;
2783
2860
  hideDetails?: boolean | "auto" | undefined;
2784
2861
  } & {
2785
2862
  $children?: {} | vue.VNodeChild | {
@@ -2826,6 +2903,7 @@ declare const VInput: {
2826
2903
  errorMessages: string | string[];
2827
2904
  maxErrors: string | number;
2828
2905
  rules: ValidationRule[];
2906
+ persistentHint: boolean;
2829
2907
  } & {
2830
2908
  id?: string | undefined;
2831
2909
  name?: string | undefined;
@@ -2835,8 +2913,10 @@ declare const VInput: {
2835
2913
  appendIcon?: IconValue | undefined;
2836
2914
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2837
2915
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
2916
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
2838
2917
  validateOn?: "input" | "blur" | "submit" | undefined;
2839
2918
  validationValue?: any;
2919
+ hint?: string | undefined;
2840
2920
  hideDetails?: boolean | "auto" | undefined;
2841
2921
  } & {
2842
2922
  $children?: {} | vue.VNodeChild | {
@@ -2881,8 +2961,10 @@ declare const VInput: {
2881
2961
  errorMessages: string | string[];
2882
2962
  maxErrors: string | number;
2883
2963
  rules: ValidationRule[];
2964
+ persistentHint: boolean;
2884
2965
  }, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
2885
2966
  focused: BooleanConstructor;
2967
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
2886
2968
  disabled: BooleanConstructor;
2887
2969
  error: BooleanConstructor;
2888
2970
  errorMessages: {
@@ -2912,6 +2994,8 @@ declare const VInput: {
2912
2994
  appendIcon: PropType<IconValue>;
2913
2995
  prependIcon: PropType<IconValue>;
2914
2996
  hideDetails: PropType<boolean | "auto">;
2997
+ hint: StringConstructor;
2998
+ persistentHint: BooleanConstructor;
2915
2999
  messages: {
2916
3000
  type: PropType<string | string[]>;
2917
3001
  default: () => never[];
@@ -2925,6 +3009,7 @@ declare const VInput: {
2925
3009
  'onClick:append': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
2926
3010
  }, vue.ExtractPropTypes<{
2927
3011
  focused: BooleanConstructor;
3012
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
2928
3013
  disabled: BooleanConstructor;
2929
3014
  error: BooleanConstructor;
2930
3015
  errorMessages: {
@@ -2954,6 +3039,8 @@ declare const VInput: {
2954
3039
  appendIcon: PropType<IconValue>;
2955
3040
  prependIcon: PropType<IconValue>;
2956
3041
  hideDetails: PropType<boolean | "auto">;
3042
+ hint: StringConstructor;
3043
+ persistentHint: BooleanConstructor;
2957
3044
  messages: {
2958
3045
  type: PropType<string | string[]>;
2959
3046
  default: () => never[];
@@ -3030,6 +3117,7 @@ declare const VField: {
3030
3117
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3031
3118
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3032
3119
  focused: BooleanConstructor;
3120
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
3033
3121
  id: StringConstructor;
3034
3122
  }, "$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">>> & {
3035
3123
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -3081,6 +3169,7 @@ declare const VField: {
3081
3169
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3082
3170
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3083
3171
  focused: BooleanConstructor;
3172
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
3084
3173
  id: StringConstructor;
3085
3174
  }, "$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">>> & {
3086
3175
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -3157,6 +3246,7 @@ declare const VField: {
3157
3246
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3158
3247
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3159
3248
  focused: BooleanConstructor;
3249
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
3160
3250
  id: StringConstructor;
3161
3251
  }, "$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">>> & {
3162
3252
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -3200,6 +3290,7 @@ declare const VField: {
3200
3290
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3201
3291
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3202
3292
  focused: BooleanConstructor;
3293
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
3203
3294
  id: StringConstructor;
3204
3295
  }, "$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">>> & {
3205
3296
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -3293,6 +3384,7 @@ declare const VField: {
3293
3384
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3294
3385
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3295
3386
  focused: BooleanConstructor;
3387
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
3296
3388
  id: StringConstructor;
3297
3389
  }, vue.ExtractPropTypes<{
3298
3390
  rounded: {
@@ -3328,6 +3420,7 @@ declare const VField: {
3328
3420
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3329
3421
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3330
3422
  focused: BooleanConstructor;
3423
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
3331
3424
  id: StringConstructor;
3332
3425
  }>>;
3333
3426
  type VField = InstanceType<typeof VField>;
@@ -3444,10 +3537,10 @@ declare const VAutocomplete: {
3444
3537
  errorMessages: string | string[];
3445
3538
  maxErrors: string | number;
3446
3539
  rules: ValidationRule[];
3540
+ persistentHint: boolean;
3447
3541
  clearable: boolean;
3448
3542
  persistentClear: boolean;
3449
3543
  singleLine: boolean;
3450
- persistentHint: boolean;
3451
3544
  persistentPlaceholder: boolean;
3452
3545
  persistentCounter: boolean;
3453
3546
  valueComparator: typeof deepEqual;
@@ -3540,6 +3633,7 @@ declare const VAutocomplete: {
3540
3633
  'onClick:appendInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3541
3634
  'onClick:prependInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
3542
3635
  focused: BooleanConstructor;
3636
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
3543
3637
  validateOn: vue.PropType<"input" | "blur" | "submit" | undefined>;
3544
3638
  errorMessages: {
3545
3639
  type: vue.PropType<string | string[]>;
@@ -3553,12 +3647,12 @@ declare const VAutocomplete: {
3553
3647
  type: vue.PropType<ValidationRule[]>;
3554
3648
  default: () => never[];
3555
3649
  };
3650
+ hint: StringConstructor;
3651
+ persistentHint: BooleanConstructor;
3556
3652
  hideDetails: vue.PropType<boolean | "auto">;
3557
3653
  clearable: BooleanConstructor;
3558
3654
  persistentClear: BooleanConstructor;
3559
3655
  singleLine: BooleanConstructor;
3560
- hint: StringConstructor;
3561
- persistentHint: BooleanConstructor;
3562
3656
  persistentPlaceholder: BooleanConstructor;
3563
3657
  persistentCounter: BooleanConstructor;
3564
3658
  suffix: StringConstructor;
@@ -3936,9 +4030,10 @@ declare const VAutocomplete: {
3936
4030
  noFilter: BooleanConstructor;
3937
4031
  search: StringConstructor;
3938
4032
  }, "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">>> & {
4033
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
3939
4034
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
3940
4035
  "onUpdate:search"?: ((val: any) => any) | undefined;
3941
- } & 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">;
4036
+ } & 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">;
3942
4037
  $attrs: {
3943
4038
  [x: string]: unknown;
3944
4039
  };
@@ -3950,7 +4045,7 @@ declare const VAutocomplete: {
3950
4045
  }>;
3951
4046
  $root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
3952
4047
  $parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
3953
- $emit: ((event: "update:menu", val: boolean) => void) & ((event: "update:search", val: any) => void);
4048
+ $emit: ((event: "update:focused", focused: boolean) => void) & ((event: "update:menu", val: boolean) => void) & ((event: "update:search", val: any) => void);
3954
4049
  $el: any;
3955
4050
  $options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
3956
4051
  transition: Omit<{
@@ -4028,6 +4123,7 @@ declare const VAutocomplete: {
4028
4123
  'onClick:appendInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
4029
4124
  'onClick:prependInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
4030
4125
  focused: BooleanConstructor;
4126
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
4031
4127
  validateOn: vue.PropType<"input" | "blur" | "submit" | undefined>;
4032
4128
  errorMessages: {
4033
4129
  type: vue.PropType<string | string[]>;
@@ -4041,12 +4137,12 @@ declare const VAutocomplete: {
4041
4137
  type: vue.PropType<ValidationRule[]>;
4042
4138
  default: () => never[];
4043
4139
  };
4140
+ hint: StringConstructor;
4141
+ persistentHint: BooleanConstructor;
4044
4142
  hideDetails: vue.PropType<boolean | "auto">;
4045
4143
  clearable: BooleanConstructor;
4046
4144
  persistentClear: BooleanConstructor;
4047
4145
  singleLine: BooleanConstructor;
4048
- hint: StringConstructor;
4049
- persistentHint: BooleanConstructor;
4050
4146
  persistentPlaceholder: BooleanConstructor;
4051
4147
  persistentCounter: BooleanConstructor;
4052
4148
  suffix: StringConstructor;
@@ -4424,6 +4520,7 @@ declare const VAutocomplete: {
4424
4520
  noFilter: BooleanConstructor;
4425
4521
  search: StringConstructor;
4426
4522
  }, "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">>> & {
4523
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
4427
4524
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
4428
4525
  "onUpdate:search"?: ((val: any) => any) | undefined;
4429
4526
  }, {
@@ -4436,6 +4533,7 @@ declare const VAutocomplete: {
4436
4533
  filteredItems: vue.Ref<InternalItem<any>[]>;
4437
4534
  select: (item: InternalItem) => void;
4438
4535
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
4536
+ 'update:focused': (focused: boolean) => boolean;
4439
4537
  'update:search': (val: any) => true;
4440
4538
  'update:modelValue': (val: any) => boolean;
4441
4539
  'update:menu': (val: boolean) => true;
@@ -4464,10 +4562,10 @@ declare const VAutocomplete: {
4464
4562
  errorMessages: string | string[];
4465
4563
  maxErrors: string | number;
4466
4564
  rules: ValidationRule[];
4565
+ persistentHint: boolean;
4467
4566
  clearable: boolean;
4468
4567
  persistentClear: boolean;
4469
4568
  singleLine: boolean;
4470
- persistentHint: boolean;
4471
4569
  persistentPlaceholder: boolean;
4472
4570
  persistentCounter: boolean;
4473
4571
  valueComparator: typeof deepEqual;
@@ -4580,6 +4678,7 @@ declare const VAutocomplete: {
4580
4678
  'onClick:appendInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
4581
4679
  'onClick:prependInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
4582
4680
  focused: BooleanConstructor;
4681
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
4583
4682
  validateOn: vue.PropType<"input" | "blur" | "submit" | undefined>;
4584
4683
  errorMessages: {
4585
4684
  type: vue.PropType<string | string[]>;
@@ -4593,12 +4692,12 @@ declare const VAutocomplete: {
4593
4692
  type: vue.PropType<ValidationRule[]>;
4594
4693
  default: () => never[];
4595
4694
  };
4695
+ hint: StringConstructor;
4696
+ persistentHint: BooleanConstructor;
4596
4697
  hideDetails: vue.PropType<boolean | "auto">;
4597
4698
  clearable: BooleanConstructor;
4598
4699
  persistentClear: BooleanConstructor;
4599
4700
  singleLine: BooleanConstructor;
4600
- hint: StringConstructor;
4601
- persistentHint: BooleanConstructor;
4602
4701
  persistentPlaceholder: BooleanConstructor;
4603
4702
  persistentCounter: BooleanConstructor;
4604
4703
  suffix: StringConstructor;
@@ -4976,6 +5075,7 @@ declare const VAutocomplete: {
4976
5075
  noFilter: BooleanConstructor;
4977
5076
  search: StringConstructor;
4978
5077
  }, "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">>> & {
5078
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
4979
5079
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
4980
5080
  "onUpdate:search"?: ((val: any) => any) | undefined;
4981
5081
  } & vue.ShallowUnwrapRef<{
@@ -5067,6 +5167,7 @@ declare const VAutocomplete: {
5067
5167
  'onClick:appendInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
5068
5168
  'onClick:prependInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
5069
5169
  focused: BooleanConstructor;
5170
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
5070
5171
  validateOn: vue.PropType<"input" | "blur" | "submit" | undefined>;
5071
5172
  errorMessages: {
5072
5173
  type: vue.PropType<string | string[]>;
@@ -5080,12 +5181,12 @@ declare const VAutocomplete: {
5080
5181
  type: vue.PropType<ValidationRule[]>;
5081
5182
  default: () => never[];
5082
5183
  };
5184
+ hint: StringConstructor;
5185
+ persistentHint: BooleanConstructor;
5083
5186
  hideDetails: vue.PropType<boolean | "auto">;
5084
5187
  clearable: BooleanConstructor;
5085
5188
  persistentClear: BooleanConstructor;
5086
5189
  singleLine: BooleanConstructor;
5087
- hint: StringConstructor;
5088
- persistentHint: BooleanConstructor;
5089
5190
  persistentPlaceholder: BooleanConstructor;
5090
5191
  persistentCounter: BooleanConstructor;
5091
5192
  suffix: StringConstructor;
@@ -5463,6 +5564,7 @@ declare const VAutocomplete: {
5463
5564
  noFilter: BooleanConstructor;
5464
5565
  search: StringConstructor;
5465
5566
  }, "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">>> & {
5567
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
5466
5568
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
5467
5569
  "onUpdate:search"?: ((val: any) => any) | undefined;
5468
5570
  }, {
@@ -5475,6 +5577,7 @@ declare const VAutocomplete: {
5475
5577
  filteredItems: vue.Ref<InternalItem<any>[]>;
5476
5578
  select: (item: InternalItem) => void;
5477
5579
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
5580
+ 'update:focused': (focused: boolean) => boolean;
5478
5581
  'update:search': (val: any) => true;
5479
5582
  'update:modelValue': (val: any) => boolean;
5480
5583
  'update:menu': (val: boolean) => true;
@@ -5503,10 +5606,10 @@ declare const VAutocomplete: {
5503
5606
  errorMessages: string | string[];
5504
5607
  maxErrors: string | number;
5505
5608
  rules: ValidationRule[];
5609
+ persistentHint: boolean;
5506
5610
  clearable: boolean;
5507
5611
  persistentClear: boolean;
5508
5612
  singleLine: boolean;
5509
- persistentHint: boolean;
5510
5613
  persistentPlaceholder: boolean;
5511
5614
  persistentCounter: boolean;
5512
5615
  valueComparator: typeof deepEqual;
@@ -5715,6 +5818,7 @@ declare const VAutocomplete: {
5715
5818
  'onClick:appendInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
5716
5819
  'onClick:prependInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
5717
5820
  focused: BooleanConstructor;
5821
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
5718
5822
  validateOn: vue.PropType<"input" | "blur" | "submit" | undefined>;
5719
5823
  errorMessages: {
5720
5824
  type: vue.PropType<string | string[]>;
@@ -5728,12 +5832,12 @@ declare const VAutocomplete: {
5728
5832
  type: vue.PropType<ValidationRule[]>;
5729
5833
  default: () => never[];
5730
5834
  };
5835
+ hint: StringConstructor;
5836
+ persistentHint: BooleanConstructor;
5731
5837
  hideDetails: vue.PropType<boolean | "auto">;
5732
5838
  clearable: BooleanConstructor;
5733
5839
  persistentClear: BooleanConstructor;
5734
5840
  singleLine: BooleanConstructor;
5735
- hint: StringConstructor;
5736
- persistentHint: BooleanConstructor;
5737
5841
  persistentPlaceholder: BooleanConstructor;
5738
5842
  persistentCounter: BooleanConstructor;
5739
5843
  suffix: StringConstructor;
@@ -6186,6 +6290,7 @@ declare const VAutocomplete: {
6186
6290
  'onClick:appendInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
6187
6291
  'onClick:prependInner': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
6188
6292
  focused: BooleanConstructor;
6293
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
6189
6294
  validateOn: vue.PropType<"input" | "blur" | "submit" | undefined>;
6190
6295
  errorMessages: {
6191
6296
  type: vue.PropType<string | string[]>;
@@ -6199,12 +6304,12 @@ declare const VAutocomplete: {
6199
6304
  type: vue.PropType<ValidationRule[]>;
6200
6305
  default: () => never[];
6201
6306
  };
6307
+ hint: StringConstructor;
6308
+ persistentHint: BooleanConstructor;
6202
6309
  hideDetails: vue.PropType<boolean | "auto">;
6203
6310
  clearable: BooleanConstructor;
6204
6311
  persistentClear: BooleanConstructor;
6205
6312
  singleLine: BooleanConstructor;
6206
- hint: StringConstructor;
6207
- persistentHint: BooleanConstructor;
6208
6313
  persistentPlaceholder: BooleanConstructor;
6209
6314
  persistentCounter: BooleanConstructor;
6210
6315
  suffix: StringConstructor;
@@ -9786,7 +9891,7 @@ declare const VCard: {
9786
9891
  title?: (() => vue.VNodeChild) | undefined;
9787
9892
  subtitle?: (() => vue.VNodeChild) | undefined;
9788
9893
  text?: (() => vue.VNodeChild) | undefined;
9789
- loader?: (() => vue.VNodeChild) | undefined;
9894
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9790
9895
  image?: (() => vue.VNodeChild) | undefined;
9791
9896
  prepend?: (() => vue.VNodeChild) | undefined;
9792
9897
  append?: (() => vue.VNodeChild) | undefined;
@@ -9797,7 +9902,7 @@ declare const VCard: {
9797
9902
  title?: (() => vue.VNodeChild) | undefined;
9798
9903
  subtitle?: (() => vue.VNodeChild) | undefined;
9799
9904
  text?: (() => vue.VNodeChild) | undefined;
9800
- loader?: (() => vue.VNodeChild) | undefined;
9905
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9801
9906
  image?: (() => vue.VNodeChild) | undefined;
9802
9907
  prepend?: (() => vue.VNodeChild) | undefined;
9803
9908
  append?: (() => vue.VNodeChild) | undefined;
@@ -9808,7 +9913,7 @@ declare const VCard: {
9808
9913
  title?: false | (() => vue.VNodeChild) | undefined;
9809
9914
  subtitle?: false | (() => vue.VNodeChild) | undefined;
9810
9915
  text?: false | (() => vue.VNodeChild) | undefined;
9811
- loader?: false | (() => vue.VNodeChild) | undefined;
9916
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9812
9917
  image?: false | (() => vue.VNodeChild) | undefined;
9813
9918
  prepend?: false | (() => vue.VNodeChild) | undefined;
9814
9919
  append?: false | (() => vue.VNodeChild) | undefined;
@@ -9819,7 +9924,7 @@ declare const VCard: {
9819
9924
  "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
9820
9925
  "v-slot:subtitle"?: false | (() => vue.VNodeChild) | undefined;
9821
9926
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
9822
- "v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
9927
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9823
9928
  "v-slot:image"?: false | (() => vue.VNodeChild) | undefined;
9824
9929
  "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
9825
9930
  "v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
@@ -9880,7 +9985,7 @@ declare const VCard: {
9880
9985
  title?: (() => vue.VNodeChild) | undefined;
9881
9986
  subtitle?: (() => vue.VNodeChild) | undefined;
9882
9987
  text?: (() => vue.VNodeChild) | undefined;
9883
- loader?: (() => vue.VNodeChild) | undefined;
9988
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9884
9989
  image?: (() => vue.VNodeChild) | undefined;
9885
9990
  prepend?: (() => vue.VNodeChild) | undefined;
9886
9991
  append?: (() => vue.VNodeChild) | undefined;
@@ -9891,7 +9996,7 @@ declare const VCard: {
9891
9996
  title?: (() => vue.VNodeChild) | undefined;
9892
9997
  subtitle?: (() => vue.VNodeChild) | undefined;
9893
9998
  text?: (() => vue.VNodeChild) | undefined;
9894
- loader?: (() => vue.VNodeChild) | undefined;
9999
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9895
10000
  image?: (() => vue.VNodeChild) | undefined;
9896
10001
  prepend?: (() => vue.VNodeChild) | undefined;
9897
10002
  append?: (() => vue.VNodeChild) | undefined;
@@ -9902,7 +10007,7 @@ declare const VCard: {
9902
10007
  title?: false | (() => vue.VNodeChild) | undefined;
9903
10008
  subtitle?: false | (() => vue.VNodeChild) | undefined;
9904
10009
  text?: false | (() => vue.VNodeChild) | undefined;
9905
- loader?: false | (() => vue.VNodeChild) | undefined;
10010
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9906
10011
  image?: false | (() => vue.VNodeChild) | undefined;
9907
10012
  prepend?: false | (() => vue.VNodeChild) | undefined;
9908
10013
  append?: false | (() => vue.VNodeChild) | undefined;
@@ -9913,7 +10018,7 @@ declare const VCard: {
9913
10018
  "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
9914
10019
  "v-slot:subtitle"?: false | (() => vue.VNodeChild) | undefined;
9915
10020
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
9916
- "v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
10021
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9917
10022
  "v-slot:image"?: false | (() => vue.VNodeChild) | undefined;
9918
10023
  "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
9919
10024
  "v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
@@ -9992,7 +10097,7 @@ declare const VCard: {
9992
10097
  title?: (() => vue.VNodeChild) | undefined;
9993
10098
  subtitle?: (() => vue.VNodeChild) | undefined;
9994
10099
  text?: (() => vue.VNodeChild) | undefined;
9995
- loader?: (() => vue.VNodeChild) | undefined;
10100
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
9996
10101
  image?: (() => vue.VNodeChild) | undefined;
9997
10102
  prepend?: (() => vue.VNodeChild) | undefined;
9998
10103
  append?: (() => vue.VNodeChild) | undefined;
@@ -10003,7 +10108,7 @@ declare const VCard: {
10003
10108
  title?: (() => vue.VNodeChild) | undefined;
10004
10109
  subtitle?: (() => vue.VNodeChild) | undefined;
10005
10110
  text?: (() => vue.VNodeChild) | undefined;
10006
- loader?: (() => vue.VNodeChild) | undefined;
10111
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
10007
10112
  image?: (() => vue.VNodeChild) | undefined;
10008
10113
  prepend?: (() => vue.VNodeChild) | undefined;
10009
10114
  append?: (() => vue.VNodeChild) | undefined;
@@ -10014,7 +10119,7 @@ declare const VCard: {
10014
10119
  title?: false | (() => vue.VNodeChild) | undefined;
10015
10120
  subtitle?: false | (() => vue.VNodeChild) | undefined;
10016
10121
  text?: false | (() => vue.VNodeChild) | undefined;
10017
- loader?: false | (() => vue.VNodeChild) | undefined;
10122
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
10018
10123
  image?: false | (() => vue.VNodeChild) | undefined;
10019
10124
  prepend?: false | (() => vue.VNodeChild) | undefined;
10020
10125
  append?: false | (() => vue.VNodeChild) | undefined;
@@ -10025,7 +10130,7 @@ declare const VCard: {
10025
10130
  "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
10026
10131
  "v-slot:subtitle"?: false | (() => vue.VNodeChild) | undefined;
10027
10132
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
10028
- "v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
10133
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
10029
10134
  "v-slot:image"?: false | (() => vue.VNodeChild) | undefined;
10030
10135
  "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
10031
10136
  "v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
@@ -10076,7 +10181,7 @@ declare const VCard: {
10076
10181
  title?: (() => vue.VNodeChild) | undefined;
10077
10182
  subtitle?: (() => vue.VNodeChild) | undefined;
10078
10183
  text?: (() => vue.VNodeChild) | undefined;
10079
- loader?: (() => vue.VNodeChild) | undefined;
10184
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
10080
10185
  image?: (() => vue.VNodeChild) | undefined;
10081
10186
  prepend?: (() => vue.VNodeChild) | undefined;
10082
10187
  append?: (() => vue.VNodeChild) | undefined;
@@ -10087,7 +10192,7 @@ declare const VCard: {
10087
10192
  title?: (() => vue.VNodeChild) | undefined;
10088
10193
  subtitle?: (() => vue.VNodeChild) | undefined;
10089
10194
  text?: (() => vue.VNodeChild) | undefined;
10090
- loader?: (() => vue.VNodeChild) | undefined;
10195
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
10091
10196
  image?: (() => vue.VNodeChild) | undefined;
10092
10197
  prepend?: (() => vue.VNodeChild) | undefined;
10093
10198
  append?: (() => vue.VNodeChild) | undefined;
@@ -10098,7 +10203,7 @@ declare const VCard: {
10098
10203
  title?: false | (() => vue.VNodeChild) | undefined;
10099
10204
  subtitle?: false | (() => vue.VNodeChild) | undefined;
10100
10205
  text?: false | (() => vue.VNodeChild) | undefined;
10101
- loader?: false | (() => vue.VNodeChild) | undefined;
10206
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
10102
10207
  image?: false | (() => vue.VNodeChild) | undefined;
10103
10208
  prepend?: false | (() => vue.VNodeChild) | undefined;
10104
10209
  append?: false | (() => vue.VNodeChild) | undefined;
@@ -10109,7 +10214,7 @@ declare const VCard: {
10109
10214
  "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
10110
10215
  "v-slot:subtitle"?: false | (() => vue.VNodeChild) | undefined;
10111
10216
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
10112
- "v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
10217
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
10113
10218
  "v-slot:image"?: false | (() => vue.VNodeChild) | undefined;
10114
10219
  "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
10115
10220
  "v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
@@ -12409,6 +12514,7 @@ declare const VCheckbox: {
12409
12514
  errorMessages: string | string[];
12410
12515
  maxErrors: string | number;
12411
12516
  rules: ValidationRule[];
12517
+ persistentHint: boolean;
12412
12518
  falseIcon: NonNullable<IconValue>;
12413
12519
  trueIcon: NonNullable<IconValue>;
12414
12520
  valueComparator: typeof deepEqual;
@@ -12427,6 +12533,7 @@ declare const VCheckbox: {
12427
12533
  errorMessages: string | string[];
12428
12534
  maxErrors: string | number;
12429
12535
  rules: ValidationRule[];
12536
+ persistentHint: boolean;
12430
12537
  falseIcon: NonNullable<IconValue>;
12431
12538
  trueIcon: NonNullable<IconValue>;
12432
12539
  valueComparator: typeof deepEqual;
@@ -12444,8 +12551,10 @@ declare const VCheckbox: {
12444
12551
  appendIcon?: IconValue | undefined;
12445
12552
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12446
12553
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12554
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
12447
12555
  validateOn?: "input" | "blur" | "submit" | undefined;
12448
12556
  validationValue?: any;
12557
+ hint?: string | undefined;
12449
12558
  hideDetails?: boolean | "auto" | undefined;
12450
12559
  trueValue?: any;
12451
12560
  falseValue?: any;
@@ -12495,7 +12604,7 @@ declare const VCheckbox: {
12495
12604
  "v-slot:input"?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
12496
12605
  } & {
12497
12606
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
12498
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "multiple" | "readonly" | "indeterminate" | "messages" | "density" | "ripple" | "focused" | "errorMessages" | "maxErrors" | "rules" | "falseIcon" | "trueIcon" | "valueComparator" | "indeterminateIcon">;
12607
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "multiple" | "readonly" | "indeterminate" | "messages" | "density" | "ripple" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint" | "falseIcon" | "trueIcon" | "valueComparator" | "indeterminateIcon">;
12499
12608
  $attrs: {
12500
12609
  [x: string]: unknown;
12501
12610
  };
@@ -12523,6 +12632,7 @@ declare const VCheckbox: {
12523
12632
  errorMessages: string | string[];
12524
12633
  maxErrors: string | number;
12525
12634
  rules: ValidationRule[];
12635
+ persistentHint: boolean;
12526
12636
  falseIcon: NonNullable<IconValue>;
12527
12637
  trueIcon: NonNullable<IconValue>;
12528
12638
  valueComparator: typeof deepEqual;
@@ -12540,8 +12650,10 @@ declare const VCheckbox: {
12540
12650
  appendIcon?: IconValue | undefined;
12541
12651
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12542
12652
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12653
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
12543
12654
  validateOn?: "input" | "blur" | "submit" | undefined;
12544
12655
  validationValue?: any;
12656
+ hint?: string | undefined;
12545
12657
  hideDetails?: boolean | "auto" | undefined;
12546
12658
  trueValue?: any;
12547
12659
  falseValue?: any;
@@ -12607,6 +12719,7 @@ declare const VCheckbox: {
12607
12719
  errorMessages: string | string[];
12608
12720
  maxErrors: string | number;
12609
12721
  rules: ValidationRule[];
12722
+ persistentHint: boolean;
12610
12723
  falseIcon: NonNullable<IconValue>;
12611
12724
  trueIcon: NonNullable<IconValue>;
12612
12725
  valueComparator: typeof deepEqual;
@@ -12645,6 +12758,7 @@ declare const VCheckbox: {
12645
12758
  errorMessages: string | string[];
12646
12759
  maxErrors: string | number;
12647
12760
  rules: ValidationRule[];
12761
+ persistentHint: boolean;
12648
12762
  falseIcon: NonNullable<IconValue>;
12649
12763
  trueIcon: NonNullable<IconValue>;
12650
12764
  valueComparator: typeof deepEqual;
@@ -12662,8 +12776,10 @@ declare const VCheckbox: {
12662
12776
  appendIcon?: IconValue | undefined;
12663
12777
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12664
12778
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12779
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
12665
12780
  validateOn?: "input" | "blur" | "submit" | undefined;
12666
12781
  validationValue?: any;
12782
+ hint?: string | undefined;
12667
12783
  hideDetails?: boolean | "auto" | undefined;
12668
12784
  trueValue?: any;
12669
12785
  falseValue?: any;
@@ -12731,6 +12847,7 @@ declare const VCheckbox: {
12731
12847
  errorMessages: string | string[];
12732
12848
  maxErrors: string | number;
12733
12849
  rules: ValidationRule[];
12850
+ persistentHint: boolean;
12734
12851
  falseIcon: NonNullable<IconValue>;
12735
12852
  trueIcon: NonNullable<IconValue>;
12736
12853
  valueComparator: typeof deepEqual;
@@ -12748,8 +12865,10 @@ declare const VCheckbox: {
12748
12865
  appendIcon?: IconValue | undefined;
12749
12866
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12750
12867
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
12868
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
12751
12869
  validateOn?: "input" | "blur" | "submit" | undefined;
12752
12870
  validationValue?: any;
12871
+ hint?: string | undefined;
12753
12872
  hideDetails?: boolean | "auto" | undefined;
12754
12873
  trueValue?: any;
12755
12874
  falseValue?: any;
@@ -12815,6 +12934,7 @@ declare const VCheckbox: {
12815
12934
  errorMessages: string | string[];
12816
12935
  maxErrors: string | number;
12817
12936
  rules: ValidationRule[];
12937
+ persistentHint: boolean;
12818
12938
  falseIcon: NonNullable<IconValue>;
12819
12939
  trueIcon: NonNullable<IconValue>;
12820
12940
  valueComparator: typeof deepEqual;
@@ -12864,6 +12984,7 @@ declare const VCheckbox: {
12864
12984
  default: string;
12865
12985
  };
12866
12986
  focused: BooleanConstructor;
12987
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
12867
12988
  errorMessages: {
12868
12989
  type: vue.PropType<string | string[]>;
12869
12990
  default: () => never[];
@@ -12881,6 +13002,8 @@ declare const VCheckbox: {
12881
13002
  appendIcon: vue.PropType<IconValue>;
12882
13003
  prependIcon: vue.PropType<IconValue>;
12883
13004
  hideDetails: vue.PropType<boolean | "auto">;
13005
+ hint: StringConstructor;
13006
+ persistentHint: BooleanConstructor;
12884
13007
  messages: {
12885
13008
  type: vue.PropType<string | string[]>;
12886
13009
  default: () => never[];
@@ -12937,6 +13060,7 @@ declare const VCheckbox: {
12937
13060
  default: string;
12938
13061
  };
12939
13062
  focused: BooleanConstructor;
13063
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
12940
13064
  errorMessages: {
12941
13065
  type: vue.PropType<string | string[]>;
12942
13066
  default: () => never[];
@@ -12954,6 +13078,8 @@ declare const VCheckbox: {
12954
13078
  appendIcon: vue.PropType<IconValue>;
12955
13079
  prependIcon: vue.PropType<IconValue>;
12956
13080
  hideDetails: vue.PropType<boolean | "auto">;
13081
+ hint: StringConstructor;
13082
+ persistentHint: BooleanConstructor;
12957
13083
  messages: {
12958
13084
  type: vue.PropType<string | string[]>;
12959
13085
  default: () => never[];
@@ -14788,10 +14914,10 @@ declare const VCombobox: {
14788
14914
  errorMessages: string | string[];
14789
14915
  maxErrors: string | number;
14790
14916
  rules: ValidationRule[];
14917
+ persistentHint: boolean;
14791
14918
  clearable: boolean;
14792
14919
  persistentClear: boolean;
14793
14920
  singleLine: boolean;
14794
- persistentHint: boolean;
14795
14921
  persistentPlaceholder: boolean;
14796
14922
  persistentCounter: boolean;
14797
14923
  valueComparator: typeof deepEqual;
@@ -14884,6 +15010,7 @@ declare const VCombobox: {
14884
15010
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
14885
15011
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
14886
15012
  focused: BooleanConstructor;
15013
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
14887
15014
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
14888
15015
  errorMessages: {
14889
15016
  type: PropType<string | string[]>;
@@ -14897,12 +15024,12 @@ declare const VCombobox: {
14897
15024
  type: PropType<ValidationRule[]>;
14898
15025
  default: () => never[];
14899
15026
  };
15027
+ hint: StringConstructor;
15028
+ persistentHint: BooleanConstructor;
14900
15029
  hideDetails: PropType<boolean | "auto">;
14901
15030
  clearable: BooleanConstructor;
14902
15031
  persistentClear: BooleanConstructor;
14903
15032
  singleLine: BooleanConstructor;
14904
- hint: StringConstructor;
14905
- persistentHint: BooleanConstructor;
14906
15033
  persistentPlaceholder: BooleanConstructor;
14907
15034
  persistentCounter: BooleanConstructor;
14908
15035
  suffix: StringConstructor;
@@ -15286,9 +15413,10 @@ declare const VCombobox: {
15286
15413
  noFilter: BooleanConstructor;
15287
15414
  delimiters: PropType<string[]>;
15288
15415
  }, "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">>> & {
15416
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
15289
15417
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
15290
15418
  "onUpdate:search"?: ((val: string) => any) | undefined;
15291
- } & 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">;
15419
+ } & 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">;
15292
15420
  $attrs: {
15293
15421
  [x: string]: unknown;
15294
15422
  };
@@ -15300,7 +15428,7 @@ declare const VCombobox: {
15300
15428
  }>;
15301
15429
  $root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
15302
15430
  $parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
15303
- $emit: ((event: "update:menu", val: boolean) => void) & ((event: "update:search", val: string) => void);
15431
+ $emit: ((event: "update:focused", focused: boolean) => void) & ((event: "update:menu", val: boolean) => void) & ((event: "update:search", val: string) => void);
15304
15432
  $el: any;
15305
15433
  $options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
15306
15434
  transition: Omit<{
@@ -15378,6 +15506,7 @@ declare const VCombobox: {
15378
15506
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
15379
15507
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
15380
15508
  focused: BooleanConstructor;
15509
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
15381
15510
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
15382
15511
  errorMessages: {
15383
15512
  type: PropType<string | string[]>;
@@ -15391,12 +15520,12 @@ declare const VCombobox: {
15391
15520
  type: PropType<ValidationRule[]>;
15392
15521
  default: () => never[];
15393
15522
  };
15523
+ hint: StringConstructor;
15524
+ persistentHint: BooleanConstructor;
15394
15525
  hideDetails: PropType<boolean | "auto">;
15395
15526
  clearable: BooleanConstructor;
15396
15527
  persistentClear: BooleanConstructor;
15397
15528
  singleLine: BooleanConstructor;
15398
- hint: StringConstructor;
15399
- persistentHint: BooleanConstructor;
15400
15529
  persistentPlaceholder: BooleanConstructor;
15401
15530
  persistentCounter: BooleanConstructor;
15402
15531
  suffix: StringConstructor;
@@ -15780,6 +15909,7 @@ declare const VCombobox: {
15780
15909
  noFilter: BooleanConstructor;
15781
15910
  delimiters: PropType<string[]>;
15782
15911
  }, "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">>> & {
15912
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
15783
15913
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
15784
15914
  "onUpdate:search"?: ((val: string) => any) | undefined;
15785
15915
  }, {
@@ -15791,6 +15921,7 @@ declare const VCombobox: {
15791
15921
  filteredItems: vue.Ref<InternalItem<any>[]>;
15792
15922
  select: (item: InternalItem) => void;
15793
15923
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
15924
+ 'update:focused': (focused: boolean) => true;
15794
15925
  'update:modelValue': (val: any) => true;
15795
15926
  'update:search': (val: string) => true;
15796
15927
  'update:menu': (val: boolean) => true;
@@ -15819,10 +15950,10 @@ declare const VCombobox: {
15819
15950
  errorMessages: string | string[];
15820
15951
  maxErrors: string | number;
15821
15952
  rules: ValidationRule[];
15953
+ persistentHint: boolean;
15822
15954
  clearable: boolean;
15823
15955
  persistentClear: boolean;
15824
15956
  singleLine: boolean;
15825
- persistentHint: boolean;
15826
15957
  persistentPlaceholder: boolean;
15827
15958
  persistentCounter: boolean;
15828
15959
  valueComparator: typeof deepEqual;
@@ -15935,6 +16066,7 @@ declare const VCombobox: {
15935
16066
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
15936
16067
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
15937
16068
  focused: BooleanConstructor;
16069
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
15938
16070
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
15939
16071
  errorMessages: {
15940
16072
  type: PropType<string | string[]>;
@@ -15948,12 +16080,12 @@ declare const VCombobox: {
15948
16080
  type: PropType<ValidationRule[]>;
15949
16081
  default: () => never[];
15950
16082
  };
16083
+ hint: StringConstructor;
16084
+ persistentHint: BooleanConstructor;
15951
16085
  hideDetails: PropType<boolean | "auto">;
15952
16086
  clearable: BooleanConstructor;
15953
16087
  persistentClear: BooleanConstructor;
15954
16088
  singleLine: BooleanConstructor;
15955
- hint: StringConstructor;
15956
- persistentHint: BooleanConstructor;
15957
16089
  persistentPlaceholder: BooleanConstructor;
15958
16090
  persistentCounter: BooleanConstructor;
15959
16091
  suffix: StringConstructor;
@@ -16337,6 +16469,7 @@ declare const VCombobox: {
16337
16469
  noFilter: BooleanConstructor;
16338
16470
  delimiters: PropType<string[]>;
16339
16471
  }, "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">>> & {
16472
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
16340
16473
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
16341
16474
  "onUpdate:search"?: ((val: string) => any) | undefined;
16342
16475
  } & vue.ShallowUnwrapRef<{
@@ -16427,6 +16560,7 @@ declare const VCombobox: {
16427
16560
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
16428
16561
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
16429
16562
  focused: BooleanConstructor;
16563
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
16430
16564
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
16431
16565
  errorMessages: {
16432
16566
  type: PropType<string | string[]>;
@@ -16440,12 +16574,12 @@ declare const VCombobox: {
16440
16574
  type: PropType<ValidationRule[]>;
16441
16575
  default: () => never[];
16442
16576
  };
16577
+ hint: StringConstructor;
16578
+ persistentHint: BooleanConstructor;
16443
16579
  hideDetails: PropType<boolean | "auto">;
16444
16580
  clearable: BooleanConstructor;
16445
16581
  persistentClear: BooleanConstructor;
16446
16582
  singleLine: BooleanConstructor;
16447
- hint: StringConstructor;
16448
- persistentHint: BooleanConstructor;
16449
16583
  persistentPlaceholder: BooleanConstructor;
16450
16584
  persistentCounter: BooleanConstructor;
16451
16585
  suffix: StringConstructor;
@@ -16829,6 +16963,7 @@ declare const VCombobox: {
16829
16963
  noFilter: BooleanConstructor;
16830
16964
  delimiters: PropType<string[]>;
16831
16965
  }, "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">>> & {
16966
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
16832
16967
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
16833
16968
  "onUpdate:search"?: ((val: string) => any) | undefined;
16834
16969
  }, {
@@ -16840,6 +16975,7 @@ declare const VCombobox: {
16840
16975
  filteredItems: vue.Ref<InternalItem<any>[]>;
16841
16976
  select: (item: InternalItem) => void;
16842
16977
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
16978
+ 'update:focused': (focused: boolean) => true;
16843
16979
  'update:modelValue': (val: any) => true;
16844
16980
  'update:search': (val: string) => true;
16845
16981
  'update:menu': (val: boolean) => true;
@@ -16868,10 +17004,10 @@ declare const VCombobox: {
16868
17004
  errorMessages: string | string[];
16869
17005
  maxErrors: string | number;
16870
17006
  rules: ValidationRule[];
17007
+ persistentHint: boolean;
16871
17008
  clearable: boolean;
16872
17009
  persistentClear: boolean;
16873
17010
  singleLine: boolean;
16874
- persistentHint: boolean;
16875
17011
  persistentPlaceholder: boolean;
16876
17012
  persistentCounter: boolean;
16877
17013
  valueComparator: typeof deepEqual;
@@ -17080,6 +17216,7 @@ declare const VCombobox: {
17080
17216
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
17081
17217
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
17082
17218
  focused: BooleanConstructor;
17219
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
17083
17220
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
17084
17221
  errorMessages: {
17085
17222
  type: PropType<string | string[]>;
@@ -17093,12 +17230,12 @@ declare const VCombobox: {
17093
17230
  type: PropType<ValidationRule[]>;
17094
17231
  default: () => never[];
17095
17232
  };
17233
+ hint: StringConstructor;
17234
+ persistentHint: BooleanConstructor;
17096
17235
  hideDetails: PropType<boolean | "auto">;
17097
17236
  clearable: BooleanConstructor;
17098
17237
  persistentClear: BooleanConstructor;
17099
17238
  singleLine: BooleanConstructor;
17100
- hint: StringConstructor;
17101
- persistentHint: BooleanConstructor;
17102
17239
  persistentPlaceholder: BooleanConstructor;
17103
17240
  persistentCounter: BooleanConstructor;
17104
17241
  suffix: StringConstructor;
@@ -17557,6 +17694,7 @@ declare const VCombobox: {
17557
17694
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
17558
17695
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
17559
17696
  focused: BooleanConstructor;
17697
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
17560
17698
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
17561
17699
  errorMessages: {
17562
17700
  type: PropType<string | string[]>;
@@ -17570,12 +17708,12 @@ declare const VCombobox: {
17570
17708
  type: PropType<ValidationRule[]>;
17571
17709
  default: () => never[];
17572
17710
  };
17711
+ hint: StringConstructor;
17712
+ persistentHint: BooleanConstructor;
17573
17713
  hideDetails: PropType<boolean | "auto">;
17574
17714
  clearable: BooleanConstructor;
17575
17715
  persistentClear: BooleanConstructor;
17576
17716
  singleLine: BooleanConstructor;
17577
- hint: StringConstructor;
17578
- persistentHint: BooleanConstructor;
17579
17717
  persistentPlaceholder: BooleanConstructor;
17580
17718
  persistentCounter: BooleanConstructor;
17581
17719
  suffix: StringConstructor;
@@ -24183,11 +24321,11 @@ declare const VFileInput: {
24183
24321
  errorMessages: string | string[];
24184
24322
  maxErrors: string | number;
24185
24323
  rules: ValidationRule[];
24324
+ persistentHint: boolean;
24186
24325
  clearable: boolean;
24187
24326
  dirty: boolean;
24188
24327
  persistentClear: boolean;
24189
24328
  singleLine: boolean;
24190
- persistentHint: boolean;
24191
24329
  chips: boolean;
24192
24330
  counterSizeString: string;
24193
24331
  counterString: string;
@@ -24212,11 +24350,11 @@ declare const VFileInput: {
24212
24350
  errorMessages: string | string[];
24213
24351
  maxErrors: string | number;
24214
24352
  rules: ValidationRule[];
24353
+ persistentHint: boolean;
24215
24354
  clearable: boolean;
24216
24355
  dirty: boolean;
24217
24356
  persistentClear: boolean;
24218
24357
  singleLine: boolean;
24219
- persistentHint: boolean;
24220
24358
  chips: boolean;
24221
24359
  counterSizeString: string;
24222
24360
  counterString: string;
@@ -24238,10 +24376,11 @@ declare const VFileInput: {
24238
24376
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24239
24377
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24240
24378
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24379
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24241
24380
  validateOn?: "input" | "blur" | "submit" | undefined;
24242
24381
  validationValue?: any;
24243
- hideDetails?: boolean | "auto" | undefined;
24244
24382
  hint?: string | undefined;
24383
+ hideDetails?: boolean | "auto" | undefined;
24245
24384
  } & {
24246
24385
  $children?: {} | vue.VNodeChild | {
24247
24386
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & ((args_0: VFieldSlot) => vue.VNodeChild)) | undefined;
@@ -24292,9 +24431,10 @@ declare const VFileInput: {
24292
24431
  "v-slot:counter"?: false | (() => vue.VNodeChild) | undefined;
24293
24432
  } & {
24294
24433
  "onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
24434
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
24295
24435
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
24296
24436
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
24297
- } & 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">;
24437
+ } & 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">;
24298
24438
  $attrs: {
24299
24439
  [x: string]: unknown;
24300
24440
  };
@@ -24306,7 +24446,7 @@ declare const VFileInput: {
24306
24446
  }>;
24307
24447
  $root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
24308
24448
  $parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
24309
- $emit: ((event: "update:modelValue", files: File[]) => void) & ((event: "click:control", e: MouseEvent) => void) & ((event: "mousedown:control", e: MouseEvent) => void);
24449
+ $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);
24310
24450
  $el: any;
24311
24451
  $options: vue.ComponentOptionsBase<{
24312
24452
  flat: boolean;
@@ -24328,11 +24468,11 @@ declare const VFileInput: {
24328
24468
  errorMessages: string | string[];
24329
24469
  maxErrors: string | number;
24330
24470
  rules: ValidationRule[];
24471
+ persistentHint: boolean;
24331
24472
  clearable: boolean;
24332
24473
  dirty: boolean;
24333
24474
  persistentClear: boolean;
24334
24475
  singleLine: boolean;
24335
- persistentHint: boolean;
24336
24476
  chips: boolean;
24337
24477
  counterSizeString: string;
24338
24478
  counterString: string;
@@ -24354,10 +24494,11 @@ declare const VFileInput: {
24354
24494
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24355
24495
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24356
24496
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24497
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24357
24498
  validateOn?: "input" | "blur" | "submit" | undefined;
24358
24499
  validationValue?: any;
24359
- hideDetails?: boolean | "auto" | undefined;
24360
24500
  hint?: string | undefined;
24501
+ hideDetails?: boolean | "auto" | undefined;
24361
24502
  } & {
24362
24503
  $children?: {} | vue.VNodeChild | {
24363
24504
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & ((args_0: VFieldSlot) => vue.VNodeChild)) | undefined;
@@ -24408,6 +24549,7 @@ declare const VFileInput: {
24408
24549
  "v-slot:counter"?: false | (() => vue.VNodeChild) | undefined;
24409
24550
  } & {
24410
24551
  "onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
24552
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
24411
24553
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
24412
24554
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
24413
24555
  }, Omit<Omit<{
@@ -24424,6 +24566,7 @@ declare const VFileInput: {
24424
24566
  errorMessages: string | string[];
24425
24567
  maxErrors: string | number;
24426
24568
  rules: ValidationRule[];
24569
+ persistentHint: boolean;
24427
24570
  }> & Omit<{
24428
24571
  error: boolean;
24429
24572
  direction: "horizontal" | "vertical";
@@ -24435,6 +24578,7 @@ declare const VFileInput: {
24435
24578
  errorMessages: string | string[];
24436
24579
  maxErrors: string | number;
24437
24580
  rules: ValidationRule[];
24581
+ persistentHint: boolean;
24438
24582
  } & {
24439
24583
  id?: string | undefined;
24440
24584
  name?: string | undefined;
@@ -24444,8 +24588,10 @@ declare const VFileInput: {
24444
24588
  appendIcon?: IconValue | undefined;
24445
24589
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24446
24590
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24591
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24447
24592
  validateOn?: "input" | "blur" | "submit" | undefined;
24448
24593
  validationValue?: any;
24594
+ hint?: string | undefined;
24449
24595
  hideDetails?: boolean | "auto" | undefined;
24450
24596
  } & {
24451
24597
  $children?: {} | vue.VNodeChild | {
@@ -24473,7 +24619,7 @@ declare const VFileInput: {
24473
24619
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
24474
24620
  } & {
24475
24621
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
24476
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
24622
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
24477
24623
  $attrs: {
24478
24624
  [x: string]: unknown;
24479
24625
  };
@@ -24498,6 +24644,7 @@ declare const VFileInput: {
24498
24644
  errorMessages: string | string[];
24499
24645
  maxErrors: string | number;
24500
24646
  rules: ValidationRule[];
24647
+ persistentHint: boolean;
24501
24648
  } & {
24502
24649
  id?: string | undefined;
24503
24650
  name?: string | undefined;
@@ -24507,8 +24654,10 @@ declare const VFileInput: {
24507
24654
  appendIcon?: IconValue | undefined;
24508
24655
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24509
24656
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24657
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24510
24658
  validateOn?: "input" | "blur" | "submit" | undefined;
24511
24659
  validationValue?: any;
24660
+ hint?: string | undefined;
24512
24661
  hideDetails?: boolean | "auto" | undefined;
24513
24662
  } & {
24514
24663
  $children?: {} | vue.VNodeChild | {
@@ -24553,6 +24702,7 @@ declare const VFileInput: {
24553
24702
  errorMessages: string | string[];
24554
24703
  maxErrors: string | number;
24555
24704
  rules: ValidationRule[];
24705
+ persistentHint: boolean;
24556
24706
  }, {}, string> & {
24557
24707
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
24558
24708
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -24584,6 +24734,7 @@ declare const VFileInput: {
24584
24734
  errorMessages: string | string[];
24585
24735
  maxErrors: string | number;
24586
24736
  rules: ValidationRule[];
24737
+ persistentHint: boolean;
24587
24738
  } & {
24588
24739
  id?: string | undefined;
24589
24740
  name?: string | undefined;
@@ -24593,8 +24744,10 @@ declare const VFileInput: {
24593
24744
  appendIcon?: IconValue | undefined;
24594
24745
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24595
24746
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24747
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24596
24748
  validateOn?: "input" | "blur" | "submit" | undefined;
24597
24749
  validationValue?: any;
24750
+ hint?: string | undefined;
24598
24751
  hideDetails?: boolean | "auto" | undefined;
24599
24752
  } & {
24600
24753
  $children?: {} | vue.VNodeChild | {
@@ -24626,9 +24779,10 @@ declare const VFileInput: {
24626
24779
  reset: () => void;
24627
24780
  resetValidation: () => void;
24628
24781
  validate: () => Promise<string[]>;
24629
- }> & {} & 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, {
24782
+ }> & {} & 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, {
24630
24783
  'click:control': (e: MouseEvent) => true;
24631
24784
  'mousedown:control': (e: MouseEvent) => true;
24785
+ 'update:focused': (focused: boolean) => true;
24632
24786
  'update:modelValue': (files: File[]) => true;
24633
24787
  }, string, {
24634
24788
  flat: boolean;
@@ -24651,11 +24805,11 @@ declare const VFileInput: {
24651
24805
  errorMessages: string | string[];
24652
24806
  maxErrors: string | number;
24653
24807
  rules: ValidationRule[];
24808
+ persistentHint: boolean;
24654
24809
  clearable: boolean;
24655
24810
  dirty: boolean;
24656
24811
  persistentClear: boolean;
24657
24812
  singleLine: boolean;
24658
- persistentHint: boolean;
24659
24813
  chips: boolean;
24660
24814
  counterSizeString: string;
24661
24815
  counterString: string;
@@ -24700,11 +24854,11 @@ declare const VFileInput: {
24700
24854
  errorMessages: string | string[];
24701
24855
  maxErrors: string | number;
24702
24856
  rules: ValidationRule[];
24857
+ persistentHint: boolean;
24703
24858
  clearable: boolean;
24704
24859
  dirty: boolean;
24705
24860
  persistentClear: boolean;
24706
24861
  singleLine: boolean;
24707
- persistentHint: boolean;
24708
24862
  chips: boolean;
24709
24863
  counterSizeString: string;
24710
24864
  counterString: string;
@@ -24726,10 +24880,11 @@ declare const VFileInput: {
24726
24880
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24727
24881
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24728
24882
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24883
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24729
24884
  validateOn?: "input" | "blur" | "submit" | undefined;
24730
24885
  validationValue?: any;
24731
- hideDetails?: boolean | "auto" | undefined;
24732
24886
  hint?: string | undefined;
24887
+ hideDetails?: boolean | "auto" | undefined;
24733
24888
  } & {
24734
24889
  $children?: {} | vue.VNodeChild | {
24735
24890
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & ((args_0: VFieldSlot) => vue.VNodeChild)) | undefined;
@@ -24780,6 +24935,7 @@ declare const VFileInput: {
24780
24935
  "v-slot:counter"?: false | (() => vue.VNodeChild) | undefined;
24781
24936
  } & {
24782
24937
  "onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
24938
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
24783
24939
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
24784
24940
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
24785
24941
  } & vue.ShallowUnwrapRef<Omit<Omit<{
@@ -24796,6 +24952,7 @@ declare const VFileInput: {
24796
24952
  errorMessages: string | string[];
24797
24953
  maxErrors: string | number;
24798
24954
  rules: ValidationRule[];
24955
+ persistentHint: boolean;
24799
24956
  }> & Omit<{
24800
24957
  error: boolean;
24801
24958
  direction: "horizontal" | "vertical";
@@ -24807,6 +24964,7 @@ declare const VFileInput: {
24807
24964
  errorMessages: string | string[];
24808
24965
  maxErrors: string | number;
24809
24966
  rules: ValidationRule[];
24967
+ persistentHint: boolean;
24810
24968
  } & {
24811
24969
  id?: string | undefined;
24812
24970
  name?: string | undefined;
@@ -24816,8 +24974,10 @@ declare const VFileInput: {
24816
24974
  appendIcon?: IconValue | undefined;
24817
24975
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24818
24976
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24977
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24819
24978
  validateOn?: "input" | "blur" | "submit" | undefined;
24820
24979
  validationValue?: any;
24980
+ hint?: string | undefined;
24821
24981
  hideDetails?: boolean | "auto" | undefined;
24822
24982
  } & {
24823
24983
  $children?: {} | vue.VNodeChild | {
@@ -24845,7 +25005,7 @@ declare const VFileInput: {
24845
25005
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
24846
25006
  } & {
24847
25007
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
24848
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
25008
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
24849
25009
  $attrs: {
24850
25010
  [x: string]: unknown;
24851
25011
  };
@@ -24870,6 +25030,7 @@ declare const VFileInput: {
24870
25030
  errorMessages: string | string[];
24871
25031
  maxErrors: string | number;
24872
25032
  rules: ValidationRule[];
25033
+ persistentHint: boolean;
24873
25034
  } & {
24874
25035
  id?: string | undefined;
24875
25036
  name?: string | undefined;
@@ -24879,8 +25040,10 @@ declare const VFileInput: {
24879
25040
  appendIcon?: IconValue | undefined;
24880
25041
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24881
25042
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
25043
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24882
25044
  validateOn?: "input" | "blur" | "submit" | undefined;
24883
25045
  validationValue?: any;
25046
+ hint?: string | undefined;
24884
25047
  hideDetails?: boolean | "auto" | undefined;
24885
25048
  } & {
24886
25049
  $children?: {} | vue.VNodeChild | {
@@ -24925,6 +25088,7 @@ declare const VFileInput: {
24925
25088
  errorMessages: string | string[];
24926
25089
  maxErrors: string | number;
24927
25090
  rules: ValidationRule[];
25091
+ persistentHint: boolean;
24928
25092
  }, {}, string> & {
24929
25093
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
24930
25094
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -24956,6 +25120,7 @@ declare const VFileInput: {
24956
25120
  errorMessages: string | string[];
24957
25121
  maxErrors: string | number;
24958
25122
  rules: ValidationRule[];
25123
+ persistentHint: boolean;
24959
25124
  } & {
24960
25125
  id?: string | undefined;
24961
25126
  name?: string | undefined;
@@ -24965,8 +25130,10 @@ declare const VFileInput: {
24965
25130
  appendIcon?: IconValue | undefined;
24966
25131
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
24967
25132
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
25133
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
24968
25134
  validateOn?: "input" | "blur" | "submit" | undefined;
24969
25135
  validationValue?: any;
25136
+ hint?: string | undefined;
24970
25137
  hideDetails?: boolean | "auto" | undefined;
24971
25138
  } & {
24972
25139
  $children?: {} | vue.VNodeChild | {
@@ -24998,7 +25165,7 @@ declare const VFileInput: {
24998
25165
  reset: () => void;
24999
25166
  resetValidation: () => void;
25000
25167
  validate: () => Promise<string[]>;
25001
- }> & {} & 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 & {};
25168
+ }> & {} & 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 & {};
25002
25169
  __isFragment?: undefined;
25003
25170
  __isTeleport?: undefined;
25004
25171
  __isSuspense?: undefined;
@@ -25022,11 +25189,11 @@ declare const VFileInput: {
25022
25189
  errorMessages: string | string[];
25023
25190
  maxErrors: string | number;
25024
25191
  rules: ValidationRule[];
25192
+ persistentHint: boolean;
25025
25193
  clearable: boolean;
25026
25194
  dirty: boolean;
25027
25195
  persistentClear: boolean;
25028
25196
  singleLine: boolean;
25029
- persistentHint: boolean;
25030
25197
  chips: boolean;
25031
25198
  counterSizeString: string;
25032
25199
  counterString: string;
@@ -25048,10 +25215,11 @@ declare const VFileInput: {
25048
25215
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
25049
25216
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
25050
25217
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
25218
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
25051
25219
  validateOn?: "input" | "blur" | "submit" | undefined;
25052
25220
  validationValue?: any;
25053
- hideDetails?: boolean | "auto" | undefined;
25054
25221
  hint?: string | undefined;
25222
+ hideDetails?: boolean | "auto" | undefined;
25055
25223
  } & {
25056
25224
  $children?: {} | vue.VNodeChild | {
25057
25225
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & ((args_0: VFieldSlot) => vue.VNodeChild)) | undefined;
@@ -25102,6 +25270,7 @@ declare const VFileInput: {
25102
25270
  "v-slot:counter"?: false | (() => vue.VNodeChild) | undefined;
25103
25271
  } & {
25104
25272
  "onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
25273
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
25105
25274
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
25106
25275
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
25107
25276
  }, Omit<Omit<{
@@ -25118,6 +25287,7 @@ declare const VFileInput: {
25118
25287
  errorMessages: string | string[];
25119
25288
  maxErrors: string | number;
25120
25289
  rules: ValidationRule[];
25290
+ persistentHint: boolean;
25121
25291
  }> & Omit<{
25122
25292
  error: boolean;
25123
25293
  direction: "horizontal" | "vertical";
@@ -25129,6 +25299,7 @@ declare const VFileInput: {
25129
25299
  errorMessages: string | string[];
25130
25300
  maxErrors: string | number;
25131
25301
  rules: ValidationRule[];
25302
+ persistentHint: boolean;
25132
25303
  } & {
25133
25304
  id?: string | undefined;
25134
25305
  name?: string | undefined;
@@ -25138,8 +25309,10 @@ declare const VFileInput: {
25138
25309
  appendIcon?: IconValue | undefined;
25139
25310
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
25140
25311
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
25312
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
25141
25313
  validateOn?: "input" | "blur" | "submit" | undefined;
25142
25314
  validationValue?: any;
25315
+ hint?: string | undefined;
25143
25316
  hideDetails?: boolean | "auto" | undefined;
25144
25317
  } & {
25145
25318
  $children?: {} | vue.VNodeChild | {
@@ -25167,7 +25340,7 @@ declare const VFileInput: {
25167
25340
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
25168
25341
  } & {
25169
25342
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
25170
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
25343
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
25171
25344
  $attrs: {
25172
25345
  [x: string]: unknown;
25173
25346
  };
@@ -25192,6 +25365,7 @@ declare const VFileInput: {
25192
25365
  errorMessages: string | string[];
25193
25366
  maxErrors: string | number;
25194
25367
  rules: ValidationRule[];
25368
+ persistentHint: boolean;
25195
25369
  } & {
25196
25370
  id?: string | undefined;
25197
25371
  name?: string | undefined;
@@ -25201,8 +25375,10 @@ declare const VFileInput: {
25201
25375
  appendIcon?: IconValue | undefined;
25202
25376
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
25203
25377
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
25378
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
25204
25379
  validateOn?: "input" | "blur" | "submit" | undefined;
25205
25380
  validationValue?: any;
25381
+ hint?: string | undefined;
25206
25382
  hideDetails?: boolean | "auto" | undefined;
25207
25383
  } & {
25208
25384
  $children?: {} | vue.VNodeChild | {
@@ -25247,6 +25423,7 @@ declare const VFileInput: {
25247
25423
  errorMessages: string | string[];
25248
25424
  maxErrors: string | number;
25249
25425
  rules: ValidationRule[];
25426
+ persistentHint: boolean;
25250
25427
  }, {}, string> & {
25251
25428
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
25252
25429
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -25278,6 +25455,7 @@ declare const VFileInput: {
25278
25455
  errorMessages: string | string[];
25279
25456
  maxErrors: string | number;
25280
25457
  rules: ValidationRule[];
25458
+ persistentHint: boolean;
25281
25459
  } & {
25282
25460
  id?: string | undefined;
25283
25461
  name?: string | undefined;
@@ -25287,8 +25465,10 @@ declare const VFileInput: {
25287
25465
  appendIcon?: IconValue | undefined;
25288
25466
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
25289
25467
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
25468
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
25290
25469
  validateOn?: "input" | "blur" | "submit" | undefined;
25291
25470
  validationValue?: any;
25471
+ hint?: string | undefined;
25292
25472
  hideDetails?: boolean | "auto" | undefined;
25293
25473
  } & {
25294
25474
  $children?: {} | vue.VNodeChild | {
@@ -25320,9 +25500,10 @@ declare const VFileInput: {
25320
25500
  reset: () => void;
25321
25501
  resetValidation: () => void;
25322
25502
  validate: () => Promise<string[]>;
25323
- }> & {} & 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, {
25503
+ }> & {} & 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, {
25324
25504
  'click:control': (e: MouseEvent) => true;
25325
25505
  'mousedown:control': (e: MouseEvent) => true;
25506
+ 'update:focused': (focused: boolean) => true;
25326
25507
  'update:modelValue': (files: File[]) => true;
25327
25508
  }, string, {
25328
25509
  flat: boolean;
@@ -25345,11 +25526,11 @@ declare const VFileInput: {
25345
25526
  errorMessages: string | string[];
25346
25527
  maxErrors: string | number;
25347
25528
  rules: ValidationRule[];
25529
+ persistentHint: boolean;
25348
25530
  clearable: boolean;
25349
25531
  dirty: boolean;
25350
25532
  persistentClear: boolean;
25351
25533
  singleLine: boolean;
25352
- persistentHint: boolean;
25353
25534
  chips: boolean;
25354
25535
  counterSizeString: string;
25355
25536
  counterString: string;
@@ -25396,6 +25577,7 @@ declare const VFileInput: {
25396
25577
  validator: (val: any) => boolean;
25397
25578
  };
25398
25579
  focused: BooleanConstructor;
25580
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
25399
25581
  errorMessages: {
25400
25582
  type: PropType<string | string[]>;
25401
25583
  default: () => never[];
@@ -25424,6 +25606,8 @@ declare const VFileInput: {
25424
25606
  default: NonNullable<IconValue>;
25425
25607
  };
25426
25608
  hideDetails: PropType<boolean | "auto">;
25609
+ hint: StringConstructor;
25610
+ persistentHint: BooleanConstructor;
25427
25611
  messages: {
25428
25612
  type: PropType<string | string[]>;
25429
25613
  default: () => never[];
@@ -25446,8 +25630,6 @@ declare const VFileInput: {
25446
25630
  default: string;
25447
25631
  };
25448
25632
  multiple: BooleanConstructor;
25449
- hint: StringConstructor;
25450
- persistentHint: BooleanConstructor;
25451
25633
  showSize: {
25452
25634
  type: PropType<boolean | 1024 | 1000>;
25453
25635
  default: boolean;
@@ -25495,6 +25677,7 @@ declare const VFileInput: {
25495
25677
  validator: (val: any) => boolean;
25496
25678
  };
25497
25679
  focused: BooleanConstructor;
25680
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
25498
25681
  errorMessages: {
25499
25682
  type: PropType<string | string[]>;
25500
25683
  default: () => never[];
@@ -25523,6 +25706,8 @@ declare const VFileInput: {
25523
25706
  default: NonNullable<IconValue>;
25524
25707
  };
25525
25708
  hideDetails: PropType<boolean | "auto">;
25709
+ hint: StringConstructor;
25710
+ persistentHint: BooleanConstructor;
25526
25711
  messages: {
25527
25712
  type: PropType<string | string[]>;
25528
25713
  default: () => never[];
@@ -25545,8 +25730,6 @@ declare const VFileInput: {
25545
25730
  default: string;
25546
25731
  };
25547
25732
  multiple: BooleanConstructor;
25548
- hint: StringConstructor;
25549
- persistentHint: BooleanConstructor;
25550
25733
  showSize: {
25551
25734
  type: PropType<boolean | 1024 | 1000>;
25552
25735
  default: boolean;
@@ -39158,6 +39341,7 @@ declare const VRadioGroup: {
39158
39341
  errorMessages: string | string[];
39159
39342
  maxErrors: string | number;
39160
39343
  rules: ValidationRule[];
39344
+ persistentHint: boolean;
39161
39345
  falseIcon: IconValue;
39162
39346
  trueIcon: IconValue;
39163
39347
  valueComparator: typeof deepEqual;
@@ -39176,6 +39360,7 @@ declare const VRadioGroup: {
39176
39360
  errorMessages: string | string[];
39177
39361
  maxErrors: string | number;
39178
39362
  rules: ValidationRule[];
39363
+ persistentHint: boolean;
39179
39364
  falseIcon: IconValue;
39180
39365
  trueIcon: IconValue;
39181
39366
  valueComparator: typeof deepEqual;
@@ -39190,8 +39375,10 @@ declare const VRadioGroup: {
39190
39375
  appendIcon?: IconValue | undefined;
39191
39376
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39192
39377
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39378
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
39193
39379
  validateOn?: "input" | "blur" | "submit" | undefined;
39194
39380
  validationValue?: any;
39381
+ hint?: string | undefined;
39195
39382
  hideDetails?: boolean | "auto" | undefined;
39196
39383
  } & {
39197
39384
  $children?: {} | vue.VNodeChild | {
@@ -39239,7 +39426,7 @@ declare const VRadioGroup: {
39239
39426
  "v-slot:input"?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
39240
39427
  } & {
39241
39428
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
39242
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "type" | "inline" | "error" | "height" | "direction" | "disabled" | "readonly" | "messages" | "density" | "ripple" | "focused" | "errorMessages" | "maxErrors" | "rules" | "falseIcon" | "trueIcon" | "valueComparator">;
39429
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "type" | "inline" | "error" | "height" | "direction" | "disabled" | "readonly" | "messages" | "density" | "ripple" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint" | "falseIcon" | "trueIcon" | "valueComparator">;
39243
39430
  $attrs: {
39244
39431
  [x: string]: unknown;
39245
39432
  };
@@ -39268,6 +39455,7 @@ declare const VRadioGroup: {
39268
39455
  errorMessages: string | string[];
39269
39456
  maxErrors: string | number;
39270
39457
  rules: ValidationRule[];
39458
+ persistentHint: boolean;
39271
39459
  falseIcon: IconValue;
39272
39460
  trueIcon: IconValue;
39273
39461
  valueComparator: typeof deepEqual;
@@ -39282,8 +39470,10 @@ declare const VRadioGroup: {
39282
39470
  appendIcon?: IconValue | undefined;
39283
39471
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39284
39472
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39473
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
39285
39474
  validateOn?: "input" | "blur" | "submit" | undefined;
39286
39475
  validationValue?: any;
39476
+ hint?: string | undefined;
39287
39477
  hideDetails?: boolean | "auto" | undefined;
39288
39478
  } & {
39289
39479
  $children?: {} | vue.VNodeChild | {
@@ -39348,6 +39538,7 @@ declare const VRadioGroup: {
39348
39538
  errorMessages: string | string[];
39349
39539
  maxErrors: string | number;
39350
39540
  rules: ValidationRule[];
39541
+ persistentHint: boolean;
39351
39542
  falseIcon: IconValue;
39352
39543
  trueIcon: IconValue;
39353
39544
  valueComparator: typeof deepEqual;
@@ -39386,6 +39577,7 @@ declare const VRadioGroup: {
39386
39577
  errorMessages: string | string[];
39387
39578
  maxErrors: string | number;
39388
39579
  rules: ValidationRule[];
39580
+ persistentHint: boolean;
39389
39581
  falseIcon: IconValue;
39390
39582
  trueIcon: IconValue;
39391
39583
  valueComparator: typeof deepEqual;
@@ -39400,8 +39592,10 @@ declare const VRadioGroup: {
39400
39592
  appendIcon?: IconValue | undefined;
39401
39593
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39402
39594
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39595
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
39403
39596
  validateOn?: "input" | "blur" | "submit" | undefined;
39404
39597
  validationValue?: any;
39598
+ hint?: string | undefined;
39405
39599
  hideDetails?: boolean | "auto" | undefined;
39406
39600
  } & {
39407
39601
  $children?: {} | vue.VNodeChild | {
@@ -39468,6 +39662,7 @@ declare const VRadioGroup: {
39468
39662
  errorMessages: string | string[];
39469
39663
  maxErrors: string | number;
39470
39664
  rules: ValidationRule[];
39665
+ persistentHint: boolean;
39471
39666
  falseIcon: IconValue;
39472
39667
  trueIcon: IconValue;
39473
39668
  valueComparator: typeof deepEqual;
@@ -39482,8 +39677,10 @@ declare const VRadioGroup: {
39482
39677
  appendIcon?: IconValue | undefined;
39483
39678
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39484
39679
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39680
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
39485
39681
  validateOn?: "input" | "blur" | "submit" | undefined;
39486
39682
  validationValue?: any;
39683
+ hint?: string | undefined;
39487
39684
  hideDetails?: boolean | "auto" | undefined;
39488
39685
  } & {
39489
39686
  $children?: {} | vue.VNodeChild | {
@@ -39548,6 +39745,7 @@ declare const VRadioGroup: {
39548
39745
  errorMessages: string | string[];
39549
39746
  maxErrors: string | number;
39550
39747
  rules: ValidationRule[];
39748
+ persistentHint: boolean;
39551
39749
  falseIcon: IconValue;
39552
39750
  trueIcon: IconValue;
39553
39751
  valueComparator: typeof deepEqual;
@@ -39587,6 +39785,7 @@ declare const VRadioGroup: {
39587
39785
  default: typeof deepEqual;
39588
39786
  };
39589
39787
  focused: BooleanConstructor;
39788
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
39590
39789
  errorMessages: {
39591
39790
  type: vue.PropType<string | string[]>;
39592
39791
  default: () => never[];
@@ -39605,6 +39804,8 @@ declare const VRadioGroup: {
39605
39804
  appendIcon: vue.PropType<IconValue>;
39606
39805
  prependIcon: vue.PropType<IconValue>;
39607
39806
  hideDetails: vue.PropType<boolean | "auto">;
39807
+ hint: StringConstructor;
39808
+ persistentHint: BooleanConstructor;
39608
39809
  messages: {
39609
39810
  type: vue.PropType<string | string[]>;
39610
39811
  default: () => never[];
@@ -39656,6 +39857,7 @@ declare const VRadioGroup: {
39656
39857
  default: typeof deepEqual;
39657
39858
  };
39658
39859
  focused: BooleanConstructor;
39860
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
39659
39861
  errorMessages: {
39660
39862
  type: vue.PropType<string | string[]>;
39661
39863
  default: () => never[];
@@ -39674,6 +39876,8 @@ declare const VRadioGroup: {
39674
39876
  appendIcon: vue.PropType<IconValue>;
39675
39877
  prependIcon: vue.PropType<IconValue>;
39676
39878
  hideDetails: vue.PropType<boolean | "auto">;
39879
+ hint: StringConstructor;
39880
+ persistentHint: BooleanConstructor;
39677
39881
  messages: {
39678
39882
  type: vue.PropType<string | string[]>;
39679
39883
  default: () => never[];
@@ -39715,6 +39919,7 @@ declare const VRangeSlider: {
39715
39919
  errorMessages: string | string[];
39716
39920
  maxErrors: string | number;
39717
39921
  rules: ValidationRule[];
39922
+ persistentHint: boolean;
39718
39923
  showTicks: boolean | "always";
39719
39924
  tickSize: string | number;
39720
39925
  trackSize: string | number;
@@ -39738,6 +39943,7 @@ declare const VRangeSlider: {
39738
39943
  errorMessages: string | string[];
39739
39944
  maxErrors: string | number;
39740
39945
  rules: ValidationRule[];
39946
+ persistentHint: boolean;
39741
39947
  showTicks: boolean | "always";
39742
39948
  tickSize: string | number;
39743
39949
  trackSize: string | number;
@@ -39752,8 +39958,10 @@ declare const VRangeSlider: {
39752
39958
  appendIcon?: IconValue | undefined;
39753
39959
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39754
39960
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39961
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
39755
39962
  validateOn?: "input" | "blur" | "submit" | undefined;
39756
39963
  validationValue?: any;
39964
+ hint?: string | undefined;
39757
39965
  hideDetails?: boolean | "auto" | undefined;
39758
39966
  trackColor?: string | undefined;
39759
39967
  trackFillColor?: string | undefined;
@@ -39795,7 +40003,9 @@ declare const VRangeSlider: {
39795
40003
  } & {
39796
40004
  "onUpdate:modelValue"?: ((value: [number, number]) => any) | undefined;
39797
40005
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
39798
- } & 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">;
40006
+ onEnd?: ((value: [number, number]) => any) | undefined;
40007
+ onStart?: ((value: [number, number]) => any) | undefined;
40008
+ } & 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">;
39799
40009
  $attrs: {
39800
40010
  [x: string]: unknown;
39801
40011
  };
@@ -39807,7 +40017,7 @@ declare const VRangeSlider: {
39807
40017
  }>;
39808
40018
  $root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
39809
40019
  $parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
39810
- $emit: ((event: "update:modelValue", value: [number, number]) => void) & ((event: "update:focused", value: boolean) => void);
40020
+ $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);
39811
40021
  $el: any;
39812
40022
  $options: vue.ComponentOptionsBase<{
39813
40023
  reverse: boolean;
@@ -39827,6 +40037,7 @@ declare const VRangeSlider: {
39827
40037
  errorMessages: string | string[];
39828
40038
  maxErrors: string | number;
39829
40039
  rules: ValidationRule[];
40040
+ persistentHint: boolean;
39830
40041
  showTicks: boolean | "always";
39831
40042
  tickSize: string | number;
39832
40043
  trackSize: string | number;
@@ -39841,8 +40052,10 @@ declare const VRangeSlider: {
39841
40052
  appendIcon?: IconValue | undefined;
39842
40053
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39843
40054
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
40055
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
39844
40056
  validateOn?: "input" | "blur" | "submit" | undefined;
39845
40057
  validationValue?: any;
40058
+ hint?: string | undefined;
39846
40059
  hideDetails?: boolean | "auto" | undefined;
39847
40060
  trackColor?: string | undefined;
39848
40061
  trackFillColor?: string | undefined;
@@ -39884,9 +40097,13 @@ declare const VRangeSlider: {
39884
40097
  } & {
39885
40098
  "onUpdate:modelValue"?: ((value: [number, number]) => any) | undefined;
39886
40099
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
40100
+ onEnd?: ((value: [number, number]) => any) | undefined;
40101
+ onStart?: ((value: [number, number]) => any) | undefined;
39887
40102
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
39888
- 'update:focused': (value: boolean) => boolean;
39889
- 'update:modelValue': (value: [number, number]) => boolean;
40103
+ 'update:focused': (value: boolean) => true;
40104
+ 'update:modelValue': (value: [number, number]) => true;
40105
+ end: (value: [number, number]) => true;
40106
+ start: (value: [number, number]) => true;
39890
40107
  }, string, {
39891
40108
  reverse: boolean;
39892
40109
  max: string | number;
@@ -39906,6 +40123,7 @@ declare const VRangeSlider: {
39906
40123
  errorMessages: string | string[];
39907
40124
  maxErrors: string | number;
39908
40125
  rules: ValidationRule[];
40126
+ persistentHint: boolean;
39909
40127
  showTicks: boolean | "always";
39910
40128
  tickSize: string | number;
39911
40129
  trackSize: string | number;
@@ -39949,6 +40167,7 @@ declare const VRangeSlider: {
39949
40167
  errorMessages: string | string[];
39950
40168
  maxErrors: string | number;
39951
40169
  rules: ValidationRule[];
40170
+ persistentHint: boolean;
39952
40171
  showTicks: boolean | "always";
39953
40172
  tickSize: string | number;
39954
40173
  trackSize: string | number;
@@ -39963,8 +40182,10 @@ declare const VRangeSlider: {
39963
40182
  appendIcon?: IconValue | undefined;
39964
40183
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
39965
40184
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
40185
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
39966
40186
  validateOn?: "input" | "blur" | "submit" | undefined;
39967
40187
  validationValue?: any;
40188
+ hint?: string | undefined;
39968
40189
  hideDetails?: boolean | "auto" | undefined;
39969
40190
  trackColor?: string | undefined;
39970
40191
  trackFillColor?: string | undefined;
@@ -40006,6 +40227,8 @@ declare const VRangeSlider: {
40006
40227
  } & {
40007
40228
  "onUpdate:modelValue"?: ((value: [number, number]) => any) | undefined;
40008
40229
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
40230
+ onEnd?: ((value: [number, number]) => any) | undefined;
40231
+ onStart?: ((value: [number, number]) => any) | undefined;
40009
40232
  } & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties & {};
40010
40233
  __isFragment?: undefined;
40011
40234
  __isTeleport?: undefined;
@@ -40028,6 +40251,7 @@ declare const VRangeSlider: {
40028
40251
  errorMessages: string | string[];
40029
40252
  maxErrors: string | number;
40030
40253
  rules: ValidationRule[];
40254
+ persistentHint: boolean;
40031
40255
  showTicks: boolean | "always";
40032
40256
  tickSize: string | number;
40033
40257
  trackSize: string | number;
@@ -40042,8 +40266,10 @@ declare const VRangeSlider: {
40042
40266
  appendIcon?: IconValue | undefined;
40043
40267
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
40044
40268
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
40269
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
40045
40270
  validateOn?: "input" | "blur" | "submit" | undefined;
40046
40271
  validationValue?: any;
40272
+ hint?: string | undefined;
40047
40273
  hideDetails?: boolean | "auto" | undefined;
40048
40274
  trackColor?: string | undefined;
40049
40275
  trackFillColor?: string | undefined;
@@ -40085,9 +40311,13 @@ declare const VRangeSlider: {
40085
40311
  } & {
40086
40312
  "onUpdate:modelValue"?: ((value: [number, number]) => any) | undefined;
40087
40313
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
40314
+ onEnd?: ((value: [number, number]) => any) | undefined;
40315
+ onStart?: ((value: [number, number]) => any) | undefined;
40088
40316
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
40089
- 'update:focused': (value: boolean) => boolean;
40090
- 'update:modelValue': (value: [number, number]) => boolean;
40317
+ 'update:focused': (value: boolean) => true;
40318
+ 'update:modelValue': (value: [number, number]) => true;
40319
+ end: (value: [number, number]) => true;
40320
+ start: (value: [number, number]) => true;
40091
40321
  }, string, {
40092
40322
  reverse: boolean;
40093
40323
  max: string | number;
@@ -40107,6 +40337,7 @@ declare const VRangeSlider: {
40107
40337
  errorMessages: string | string[];
40108
40338
  maxErrors: string | number;
40109
40339
  rules: ValidationRule[];
40340
+ persistentHint: boolean;
40110
40341
  showTicks: boolean | "always";
40111
40342
  tickSize: string | number;
40112
40343
  trackSize: string | number;
@@ -40180,6 +40411,7 @@ declare const VRangeSlider: {
40180
40411
  };
40181
40412
  reverse: BooleanConstructor;
40182
40413
  focused: BooleanConstructor;
40414
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
40183
40415
  errorMessages: {
40184
40416
  type: PropType<string | string[]>;
40185
40417
  default: () => never[];
@@ -40205,6 +40437,8 @@ declare const VRangeSlider: {
40205
40437
  appendIcon: PropType<IconValue>;
40206
40438
  prependIcon: PropType<IconValue>;
40207
40439
  hideDetails: PropType<boolean | "auto">;
40440
+ hint: StringConstructor;
40441
+ persistentHint: BooleanConstructor;
40208
40442
  messages: {
40209
40443
  type: PropType<string | string[]>;
40210
40444
  default: () => never[];
@@ -40279,6 +40513,7 @@ declare const VRangeSlider: {
40279
40513
  };
40280
40514
  reverse: BooleanConstructor;
40281
40515
  focused: BooleanConstructor;
40516
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
40282
40517
  errorMessages: {
40283
40518
  type: PropType<string | string[]>;
40284
40519
  default: () => never[];
@@ -40304,6 +40539,8 @@ declare const VRangeSlider: {
40304
40539
  appendIcon: PropType<IconValue>;
40305
40540
  prependIcon: PropType<IconValue>;
40306
40541
  hideDetails: PropType<boolean | "auto">;
40542
+ hint: StringConstructor;
40543
+ persistentHint: BooleanConstructor;
40307
40544
  messages: {
40308
40545
  type: PropType<string | string[]>;
40309
40546
  default: () => never[];
@@ -40984,10 +41221,10 @@ declare const VSelect: {
40984
41221
  errorMessages: string | string[];
40985
41222
  maxErrors: string | number;
40986
41223
  rules: ValidationRule[];
41224
+ persistentHint: boolean;
40987
41225
  clearable: boolean;
40988
41226
  persistentClear: boolean;
40989
41227
  singleLine: boolean;
40990
- persistentHint: boolean;
40991
41228
  persistentPlaceholder: boolean;
40992
41229
  persistentCounter: boolean;
40993
41230
  valueComparator: typeof deepEqual;
@@ -41285,6 +41522,7 @@ declare const VSelect: {
41285
41522
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
41286
41523
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
41287
41524
  focused: BooleanConstructor;
41525
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
41288
41526
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
41289
41527
  errorMessages: {
41290
41528
  type: PropType<string | string[]>;
@@ -41298,12 +41536,12 @@ declare const VSelect: {
41298
41536
  type: PropType<ValidationRule[]>;
41299
41537
  default: () => never[];
41300
41538
  };
41539
+ hint: StringConstructor;
41540
+ persistentHint: BooleanConstructor;
41301
41541
  hideDetails: PropType<boolean | "auto">;
41302
41542
  clearable: BooleanConstructor;
41303
41543
  persistentClear: BooleanConstructor;
41304
41544
  singleLine: BooleanConstructor;
41305
- hint: StringConstructor;
41306
- persistentHint: BooleanConstructor;
41307
41545
  persistentPlaceholder: BooleanConstructor;
41308
41546
  persistentCounter: BooleanConstructor;
41309
41547
  suffix: StringConstructor;
@@ -41669,8 +41907,9 @@ declare const VSelect: {
41669
41907
  default: typeof deepEqual;
41670
41908
  };
41671
41909
  }, "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">>> & {
41910
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
41672
41911
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
41673
- } & 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">;
41912
+ } & 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">;
41674
41913
  $attrs: {
41675
41914
  [x: string]: unknown;
41676
41915
  };
@@ -41682,7 +41921,7 @@ declare const VSelect: {
41682
41921
  }>;
41683
41922
  $root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
41684
41923
  $parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
41685
- $emit: (event: "update:menu", val: boolean) => void;
41924
+ $emit: ((event: "update:focused", focused: boolean) => void) & ((event: "update:menu", val: boolean) => void);
41686
41925
  $el: any;
41687
41926
  $options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
41688
41927
  transition: Omit<{
@@ -41968,6 +42207,7 @@ declare const VSelect: {
41968
42207
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
41969
42208
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
41970
42209
  focused: BooleanConstructor;
42210
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
41971
42211
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
41972
42212
  errorMessages: {
41973
42213
  type: PropType<string | string[]>;
@@ -41981,12 +42221,12 @@ declare const VSelect: {
41981
42221
  type: PropType<ValidationRule[]>;
41982
42222
  default: () => never[];
41983
42223
  };
42224
+ hint: StringConstructor;
42225
+ persistentHint: BooleanConstructor;
41984
42226
  hideDetails: PropType<boolean | "auto">;
41985
42227
  clearable: BooleanConstructor;
41986
42228
  persistentClear: BooleanConstructor;
41987
42229
  singleLine: BooleanConstructor;
41988
- hint: StringConstructor;
41989
- persistentHint: BooleanConstructor;
41990
42230
  persistentPlaceholder: BooleanConstructor;
41991
42231
  persistentCounter: BooleanConstructor;
41992
42232
  suffix: StringConstructor;
@@ -42352,11 +42592,14 @@ declare const VSelect: {
42352
42592
  default: typeof deepEqual;
42353
42593
  };
42354
42594
  }, "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">>> & {
42595
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
42355
42596
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
42356
42597
  }, {
42598
+ isFocused: vue.Ref<boolean>;
42357
42599
  menu: vue.WritableComputedRef<boolean>;
42358
42600
  select: (item: InternalItem) => void;
42359
42601
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
42602
+ 'update:focused': (focused: boolean) => boolean;
42360
42603
  'update:modelValue': (val: any) => boolean;
42361
42604
  'update:menu': (val: boolean) => true;
42362
42605
  }, "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, {
@@ -42488,10 +42731,10 @@ declare const VSelect: {
42488
42731
  errorMessages: string | string[];
42489
42732
  maxErrors: string | number;
42490
42733
  rules: ValidationRule[];
42734
+ persistentHint: boolean;
42491
42735
  clearable: boolean;
42492
42736
  persistentClear: boolean;
42493
42737
  singleLine: boolean;
42494
- persistentHint: boolean;
42495
42738
  persistentPlaceholder: boolean;
42496
42739
  persistentCounter: boolean;
42497
42740
  valueComparator: typeof deepEqual;
@@ -42809,6 +43052,7 @@ declare const VSelect: {
42809
43052
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
42810
43053
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
42811
43054
  focused: BooleanConstructor;
43055
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
42812
43056
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
42813
43057
  errorMessages: {
42814
43058
  type: PropType<string | string[]>;
@@ -42822,12 +43066,12 @@ declare const VSelect: {
42822
43066
  type: PropType<ValidationRule[]>;
42823
43067
  default: () => never[];
42824
43068
  };
43069
+ hint: StringConstructor;
43070
+ persistentHint: BooleanConstructor;
42825
43071
  hideDetails: PropType<boolean | "auto">;
42826
43072
  clearable: BooleanConstructor;
42827
43073
  persistentClear: BooleanConstructor;
42828
43074
  singleLine: BooleanConstructor;
42829
- hint: StringConstructor;
42830
- persistentHint: BooleanConstructor;
42831
43075
  persistentPlaceholder: BooleanConstructor;
42832
43076
  persistentCounter: BooleanConstructor;
42833
43077
  suffix: StringConstructor;
@@ -43193,8 +43437,10 @@ declare const VSelect: {
43193
43437
  default: typeof deepEqual;
43194
43438
  };
43195
43439
  }, "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">>> & {
43440
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
43196
43441
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
43197
43442
  } & vue.ShallowUnwrapRef<{
43443
+ isFocused: vue.Ref<boolean>;
43198
43444
  menu: vue.WritableComputedRef<boolean>;
43199
43445
  select: (item: InternalItem) => void;
43200
43446
  } & Omit<any, string | number | symbol>> & {} & vue.ComponentCustomProperties & {};
@@ -43485,6 +43731,7 @@ declare const VSelect: {
43485
43731
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
43486
43732
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
43487
43733
  focused: BooleanConstructor;
43734
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
43488
43735
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
43489
43736
  errorMessages: {
43490
43737
  type: PropType<string | string[]>;
@@ -43498,12 +43745,12 @@ declare const VSelect: {
43498
43745
  type: PropType<ValidationRule[]>;
43499
43746
  default: () => never[];
43500
43747
  };
43748
+ hint: StringConstructor;
43749
+ persistentHint: BooleanConstructor;
43501
43750
  hideDetails: PropType<boolean | "auto">;
43502
43751
  clearable: BooleanConstructor;
43503
43752
  persistentClear: BooleanConstructor;
43504
43753
  singleLine: BooleanConstructor;
43505
- hint: StringConstructor;
43506
- persistentHint: BooleanConstructor;
43507
43754
  persistentPlaceholder: BooleanConstructor;
43508
43755
  persistentCounter: BooleanConstructor;
43509
43756
  suffix: StringConstructor;
@@ -43869,11 +44116,14 @@ declare const VSelect: {
43869
44116
  default: typeof deepEqual;
43870
44117
  };
43871
44118
  }, "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">>> & {
44119
+ "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
43872
44120
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
43873
44121
  }, {
44122
+ isFocused: vue.Ref<boolean>;
43874
44123
  menu: vue.WritableComputedRef<boolean>;
43875
44124
  select: (item: InternalItem) => void;
43876
44125
  } & Omit<any, string | number | symbol>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
44126
+ 'update:focused': (focused: boolean) => boolean;
43877
44127
  'update:modelValue': (val: any) => boolean;
43878
44128
  'update:menu': (val: boolean) => true;
43879
44129
  }, "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, {
@@ -44005,10 +44255,10 @@ declare const VSelect: {
44005
44255
  errorMessages: string | string[];
44006
44256
  maxErrors: string | number;
44007
44257
  rules: ValidationRule[];
44258
+ persistentHint: boolean;
44008
44259
  clearable: boolean;
44009
44260
  persistentClear: boolean;
44010
44261
  singleLine: boolean;
44011
- persistentHint: boolean;
44012
44262
  persistentPlaceholder: boolean;
44013
44263
  persistentCounter: boolean;
44014
44264
  valueComparator: typeof deepEqual;
@@ -44422,6 +44672,7 @@ declare const VSelect: {
44422
44672
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
44423
44673
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
44424
44674
  focused: BooleanConstructor;
44675
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
44425
44676
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
44426
44677
  errorMessages: {
44427
44678
  type: PropType<string | string[]>;
@@ -44435,12 +44686,12 @@ declare const VSelect: {
44435
44686
  type: PropType<ValidationRule[]>;
44436
44687
  default: () => never[];
44437
44688
  };
44689
+ hint: StringConstructor;
44690
+ persistentHint: BooleanConstructor;
44438
44691
  hideDetails: PropType<boolean | "auto">;
44439
44692
  clearable: BooleanConstructor;
44440
44693
  persistentClear: BooleanConstructor;
44441
44694
  singleLine: BooleanConstructor;
44442
- hint: StringConstructor;
44443
- persistentHint: BooleanConstructor;
44444
44695
  persistentPlaceholder: BooleanConstructor;
44445
44696
  persistentCounter: BooleanConstructor;
44446
44697
  suffix: StringConstructor;
@@ -45089,6 +45340,7 @@ declare const VSelect: {
45089
45340
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
45090
45341
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
45091
45342
  focused: BooleanConstructor;
45343
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
45092
45344
  validateOn: PropType<"input" | "blur" | "submit" | undefined>;
45093
45345
  errorMessages: {
45094
45346
  type: PropType<string | string[]>;
@@ -45102,12 +45354,12 @@ declare const VSelect: {
45102
45354
  type: PropType<ValidationRule[]>;
45103
45355
  default: () => never[];
45104
45356
  };
45357
+ hint: StringConstructor;
45358
+ persistentHint: BooleanConstructor;
45105
45359
  hideDetails: PropType<boolean | "auto">;
45106
45360
  clearable: BooleanConstructor;
45107
45361
  persistentClear: BooleanConstructor;
45108
45362
  singleLine: BooleanConstructor;
45109
- hint: StringConstructor;
45110
- persistentHint: BooleanConstructor;
45111
45363
  persistentPlaceholder: BooleanConstructor;
45112
45364
  persistentCounter: BooleanConstructor;
45113
45365
  suffix: StringConstructor;
@@ -46303,6 +46555,7 @@ declare const VSlider: {
46303
46555
  errorMessages: string | string[];
46304
46556
  maxErrors: string | number;
46305
46557
  rules: ValidationRule[];
46558
+ persistentHint: boolean;
46306
46559
  showTicks: boolean | "always";
46307
46560
  tickSize: string | number;
46308
46561
  trackSize: string | number;
@@ -46325,6 +46578,7 @@ declare const VSlider: {
46325
46578
  errorMessages: string | string[];
46326
46579
  maxErrors: string | number;
46327
46580
  rules: ValidationRule[];
46581
+ persistentHint: boolean;
46328
46582
  showTicks: boolean | "always";
46329
46583
  tickSize: string | number;
46330
46584
  trackSize: string | number;
@@ -46339,8 +46593,10 @@ declare const VSlider: {
46339
46593
  appendIcon?: IconValue | undefined;
46340
46594
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46341
46595
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46596
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
46342
46597
  validateOn?: "input" | "blur" | "submit" | undefined;
46343
46598
  validationValue?: any;
46599
+ hint?: string | undefined;
46344
46600
  hideDetails?: boolean | "auto" | undefined;
46345
46601
  trackColor?: string | undefined;
46346
46602
  trackFillColor?: string | undefined;
@@ -46382,7 +46638,9 @@ declare const VSlider: {
46382
46638
  } & {
46383
46639
  "onUpdate:modelValue"?: ((v: number) => any) | undefined;
46384
46640
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
46385
- } & 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">;
46641
+ onEnd?: ((value: number) => any) | undefined;
46642
+ onStart?: ((value: number) => any) | undefined;
46643
+ } & 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">;
46386
46644
  $attrs: {
46387
46645
  [x: string]: unknown;
46388
46646
  };
@@ -46394,7 +46652,7 @@ declare const VSlider: {
46394
46652
  }>;
46395
46653
  $root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
46396
46654
  $parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
46397
- $emit: ((event: "update:modelValue", v: number) => void) & ((event: "update:focused", value: boolean) => void);
46655
+ $emit: ((event: "end", value: number) => void) & ((event: "start", value: number) => void) & ((event: "update:modelValue", v: number) => void) & ((event: "update:focused", value: boolean) => void);
46398
46656
  $el: any;
46399
46657
  $options: vue.ComponentOptionsBase<{
46400
46658
  reverse: boolean;
@@ -46413,6 +46671,7 @@ declare const VSlider: {
46413
46671
  errorMessages: string | string[];
46414
46672
  maxErrors: string | number;
46415
46673
  rules: ValidationRule[];
46674
+ persistentHint: boolean;
46416
46675
  showTicks: boolean | "always";
46417
46676
  tickSize: string | number;
46418
46677
  trackSize: string | number;
@@ -46427,8 +46686,10 @@ declare const VSlider: {
46427
46686
  appendIcon?: IconValue | undefined;
46428
46687
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46429
46688
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46689
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
46430
46690
  validateOn?: "input" | "blur" | "submit" | undefined;
46431
46691
  validationValue?: any;
46692
+ hint?: string | undefined;
46432
46693
  hideDetails?: boolean | "auto" | undefined;
46433
46694
  trackColor?: string | undefined;
46434
46695
  trackFillColor?: string | undefined;
@@ -46470,9 +46731,13 @@ declare const VSlider: {
46470
46731
  } & {
46471
46732
  "onUpdate:modelValue"?: ((v: number) => any) | undefined;
46472
46733
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
46734
+ onEnd?: ((value: number) => any) | undefined;
46735
+ onStart?: ((value: number) => any) | undefined;
46473
46736
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
46474
- 'update:focused': (value: boolean) => boolean;
46475
- 'update:modelValue': (v: number) => boolean;
46737
+ 'update:focused': (value: boolean) => true;
46738
+ 'update:modelValue': (v: number) => true;
46739
+ start: (value: number) => true;
46740
+ end: (value: number) => true;
46476
46741
  }, string, {
46477
46742
  reverse: boolean;
46478
46743
  max: string | number;
@@ -46491,6 +46756,7 @@ declare const VSlider: {
46491
46756
  errorMessages: string | string[];
46492
46757
  maxErrors: string | number;
46493
46758
  rules: ValidationRule[];
46759
+ persistentHint: boolean;
46494
46760
  showTicks: boolean | "always";
46495
46761
  tickSize: string | number;
46496
46762
  trackSize: string | number;
@@ -46533,6 +46799,7 @@ declare const VSlider: {
46533
46799
  errorMessages: string | string[];
46534
46800
  maxErrors: string | number;
46535
46801
  rules: ValidationRule[];
46802
+ persistentHint: boolean;
46536
46803
  showTicks: boolean | "always";
46537
46804
  tickSize: string | number;
46538
46805
  trackSize: string | number;
@@ -46547,8 +46814,10 @@ declare const VSlider: {
46547
46814
  appendIcon?: IconValue | undefined;
46548
46815
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46549
46816
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46817
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
46550
46818
  validateOn?: "input" | "blur" | "submit" | undefined;
46551
46819
  validationValue?: any;
46820
+ hint?: string | undefined;
46552
46821
  hideDetails?: boolean | "auto" | undefined;
46553
46822
  trackColor?: string | undefined;
46554
46823
  trackFillColor?: string | undefined;
@@ -46590,6 +46859,8 @@ declare const VSlider: {
46590
46859
  } & {
46591
46860
  "onUpdate:modelValue"?: ((v: number) => any) | undefined;
46592
46861
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
46862
+ onEnd?: ((value: number) => any) | undefined;
46863
+ onStart?: ((value: number) => any) | undefined;
46593
46864
  } & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties & {};
46594
46865
  __isFragment?: undefined;
46595
46866
  __isTeleport?: undefined;
@@ -46611,6 +46882,7 @@ declare const VSlider: {
46611
46882
  errorMessages: string | string[];
46612
46883
  maxErrors: string | number;
46613
46884
  rules: ValidationRule[];
46885
+ persistentHint: boolean;
46614
46886
  showTicks: boolean | "always";
46615
46887
  tickSize: string | number;
46616
46888
  trackSize: string | number;
@@ -46625,8 +46897,10 @@ declare const VSlider: {
46625
46897
  appendIcon?: IconValue | undefined;
46626
46898
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46627
46899
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
46900
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
46628
46901
  validateOn?: "input" | "blur" | "submit" | undefined;
46629
46902
  validationValue?: any;
46903
+ hint?: string | undefined;
46630
46904
  hideDetails?: boolean | "auto" | undefined;
46631
46905
  trackColor?: string | undefined;
46632
46906
  trackFillColor?: string | undefined;
@@ -46668,9 +46942,13 @@ declare const VSlider: {
46668
46942
  } & {
46669
46943
  "onUpdate:modelValue"?: ((v: number) => any) | undefined;
46670
46944
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
46945
+ onEnd?: ((value: number) => any) | undefined;
46946
+ onStart?: ((value: number) => any) | undefined;
46671
46947
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
46672
- 'update:focused': (value: boolean) => boolean;
46673
- 'update:modelValue': (v: number) => boolean;
46948
+ 'update:focused': (value: boolean) => true;
46949
+ 'update:modelValue': (v: number) => true;
46950
+ start: (value: number) => true;
46951
+ end: (value: number) => true;
46674
46952
  }, string, {
46675
46953
  reverse: boolean;
46676
46954
  max: string | number;
@@ -46689,6 +46967,7 @@ declare const VSlider: {
46689
46967
  errorMessages: string | string[];
46690
46968
  maxErrors: string | number;
46691
46969
  rules: ValidationRule[];
46970
+ persistentHint: boolean;
46692
46971
  showTicks: boolean | "always";
46693
46972
  tickSize: string | number;
46694
46973
  trackSize: string | number;
@@ -46700,6 +46979,7 @@ declare const VSlider: {
46700
46979
  default: number;
46701
46980
  };
46702
46981
  focused: BooleanConstructor;
46982
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
46703
46983
  disabled: BooleanConstructor;
46704
46984
  error: BooleanConstructor;
46705
46985
  errorMessages: {
@@ -46728,6 +47008,8 @@ declare const VSlider: {
46728
47008
  appendIcon: vue.PropType<IconValue>;
46729
47009
  prependIcon: vue.PropType<IconValue>;
46730
47010
  hideDetails: vue.PropType<boolean | "auto">;
47011
+ hint: StringConstructor;
47012
+ persistentHint: BooleanConstructor;
46731
47013
  messages: {
46732
47014
  type: vue.PropType<string | string[]>;
46733
47015
  default: () => never[];
@@ -46798,6 +47080,7 @@ declare const VSlider: {
46798
47080
  default: number;
46799
47081
  };
46800
47082
  focused: BooleanConstructor;
47083
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
46801
47084
  disabled: BooleanConstructor;
46802
47085
  error: BooleanConstructor;
46803
47086
  errorMessages: {
@@ -46826,6 +47109,8 @@ declare const VSlider: {
46826
47109
  appendIcon: vue.PropType<IconValue>;
46827
47110
  prependIcon: vue.PropType<IconValue>;
46828
47111
  hideDetails: vue.PropType<boolean | "auto">;
47112
+ hint: StringConstructor;
47113
+ persistentHint: BooleanConstructor;
46829
47114
  messages: {
46830
47115
  type: vue.PropType<string | string[]>;
46831
47116
  default: () => never[];
@@ -48582,6 +48867,7 @@ declare const VSwitch: {
48582
48867
  errorMessages: string | string[];
48583
48868
  maxErrors: string | number;
48584
48869
  rules: ValidationRule[];
48870
+ persistentHint: boolean;
48585
48871
  valueComparator: typeof deepEqual;
48586
48872
  }> & Omit<{
48587
48873
  flat: boolean;
@@ -48601,6 +48887,7 @@ declare const VSwitch: {
48601
48887
  errorMessages: string | string[];
48602
48888
  maxErrors: string | number;
48603
48889
  rules: ValidationRule[];
48890
+ persistentHint: boolean;
48604
48891
  valueComparator: typeof deepEqual;
48605
48892
  } & {
48606
48893
  type?: string | undefined;
@@ -48615,8 +48902,10 @@ declare const VSwitch: {
48615
48902
  appendIcon?: IconValue | undefined;
48616
48903
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
48617
48904
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
48905
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
48618
48906
  validateOn?: "input" | "blur" | "submit" | undefined;
48619
48907
  validationValue?: any;
48908
+ hint?: string | undefined;
48620
48909
  hideDetails?: boolean | "auto" | undefined;
48621
48910
  falseIcon?: IconValue | undefined;
48622
48911
  trueIcon?: IconValue | undefined;
@@ -48633,6 +48922,7 @@ declare const VSwitch: {
48633
48922
  props: Record<string, unknown>;
48634
48923
  }) => vue.VNodeChild) | undefined;
48635
48924
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48925
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48636
48926
  };
48637
48927
  $slots?: {
48638
48928
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48644,6 +48934,7 @@ declare const VSwitch: {
48644
48934
  props: Record<string, unknown>;
48645
48935
  }) => vue.VNodeChild) | undefined;
48646
48936
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48937
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48647
48938
  } | undefined;
48648
48939
  'v-slots'?: {
48649
48940
  default?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48655,6 +48946,7 @@ declare const VSwitch: {
48655
48946
  props: Record<string, unknown>;
48656
48947
  }) => vue.VNodeChild) | undefined;
48657
48948
  input?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48949
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48658
48950
  } | undefined;
48659
48951
  } & {
48660
48952
  "v-slot:default"?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48666,11 +48958,12 @@ declare const VSwitch: {
48666
48958
  props: Record<string, unknown>;
48667
48959
  }) => vue.VNodeChild) | undefined;
48668
48960
  "v-slot:input"?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
48961
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48669
48962
  } & {
48670
48963
  "onUpdate:modelValue"?: (() => any) | undefined;
48671
48964
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
48672
48965
  "onUpdate:indeterminate"?: ((val: boolean) => any) | undefined;
48673
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "inline" | "error" | "direction" | "inset" | "loading" | "disabled" | "multiple" | "readonly" | "indeterminate" | "messages" | "density" | "ripple" | "focused" | "errorMessages" | "maxErrors" | "rules" | "valueComparator">;
48966
+ } & 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">;
48674
48967
  $attrs: {
48675
48968
  [x: string]: unknown;
48676
48969
  };
@@ -48702,6 +48995,7 @@ declare const VSwitch: {
48702
48995
  errorMessages: string | string[];
48703
48996
  maxErrors: string | number;
48704
48997
  rules: ValidationRule[];
48998
+ persistentHint: boolean;
48705
48999
  valueComparator: typeof deepEqual;
48706
49000
  } & {
48707
49001
  type?: string | undefined;
@@ -48716,8 +49010,10 @@ declare const VSwitch: {
48716
49010
  appendIcon?: IconValue | undefined;
48717
49011
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
48718
49012
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
49013
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
48719
49014
  validateOn?: "input" | "blur" | "submit" | undefined;
48720
49015
  validationValue?: any;
49016
+ hint?: string | undefined;
48721
49017
  hideDetails?: boolean | "auto" | undefined;
48722
49018
  falseIcon?: IconValue | undefined;
48723
49019
  trueIcon?: IconValue | undefined;
@@ -48734,6 +49030,7 @@ declare const VSwitch: {
48734
49030
  props: Record<string, unknown>;
48735
49031
  }) => vue.VNodeChild) | undefined;
48736
49032
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49033
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48737
49034
  };
48738
49035
  $slots?: {
48739
49036
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48745,6 +49042,7 @@ declare const VSwitch: {
48745
49042
  props: Record<string, unknown>;
48746
49043
  }) => vue.VNodeChild) | undefined;
48747
49044
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49045
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48748
49046
  } | undefined;
48749
49047
  'v-slots'?: {
48750
49048
  default?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48756,6 +49054,7 @@ declare const VSwitch: {
48756
49054
  props: Record<string, unknown>;
48757
49055
  }) => vue.VNodeChild) | undefined;
48758
49056
  input?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49057
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48759
49058
  } | undefined;
48760
49059
  } & {
48761
49060
  "v-slot:default"?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48767,6 +49066,7 @@ declare const VSwitch: {
48767
49066
  props: Record<string, unknown>;
48768
49067
  }) => vue.VNodeChild) | undefined;
48769
49068
  "v-slot:input"?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49069
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48770
49070
  } & {
48771
49071
  "onUpdate:modelValue"?: (() => any) | undefined;
48772
49072
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -48793,6 +49093,7 @@ declare const VSwitch: {
48793
49093
  errorMessages: string | string[];
48794
49094
  maxErrors: string | number;
48795
49095
  rules: ValidationRule[];
49096
+ persistentHint: boolean;
48796
49097
  valueComparator: typeof deepEqual;
48797
49098
  }, {}, string> & {
48798
49099
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
@@ -48832,6 +49133,7 @@ declare const VSwitch: {
48832
49133
  errorMessages: string | string[];
48833
49134
  maxErrors: string | number;
48834
49135
  rules: ValidationRule[];
49136
+ persistentHint: boolean;
48835
49137
  valueComparator: typeof deepEqual;
48836
49138
  } & {
48837
49139
  type?: string | undefined;
@@ -48846,8 +49148,10 @@ declare const VSwitch: {
48846
49148
  appendIcon?: IconValue | undefined;
48847
49149
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
48848
49150
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
49151
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
48849
49152
  validateOn?: "input" | "blur" | "submit" | undefined;
48850
49153
  validationValue?: any;
49154
+ hint?: string | undefined;
48851
49155
  hideDetails?: boolean | "auto" | undefined;
48852
49156
  falseIcon?: IconValue | undefined;
48853
49157
  trueIcon?: IconValue | undefined;
@@ -48864,6 +49168,7 @@ declare const VSwitch: {
48864
49168
  props: Record<string, unknown>;
48865
49169
  }) => vue.VNodeChild) | undefined;
48866
49170
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49171
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48867
49172
  };
48868
49173
  $slots?: {
48869
49174
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48875,6 +49180,7 @@ declare const VSwitch: {
48875
49180
  props: Record<string, unknown>;
48876
49181
  }) => vue.VNodeChild) | undefined;
48877
49182
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49183
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48878
49184
  } | undefined;
48879
49185
  'v-slots'?: {
48880
49186
  default?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48886,6 +49192,7 @@ declare const VSwitch: {
48886
49192
  props: Record<string, unknown>;
48887
49193
  }) => vue.VNodeChild) | undefined;
48888
49194
  input?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49195
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48889
49196
  } | undefined;
48890
49197
  } & {
48891
49198
  "v-slot:default"?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48897,6 +49204,7 @@ declare const VSwitch: {
48897
49204
  props: Record<string, unknown>;
48898
49205
  }) => vue.VNodeChild) | undefined;
48899
49206
  "v-slot:input"?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49207
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48900
49208
  } & {
48901
49209
  "onUpdate:modelValue"?: (() => any) | undefined;
48902
49210
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -48923,6 +49231,7 @@ declare const VSwitch: {
48923
49231
  errorMessages: string | string[];
48924
49232
  maxErrors: string | number;
48925
49233
  rules: ValidationRule[];
49234
+ persistentHint: boolean;
48926
49235
  valueComparator: typeof deepEqual;
48927
49236
  } & {
48928
49237
  type?: string | undefined;
@@ -48937,8 +49246,10 @@ declare const VSwitch: {
48937
49246
  appendIcon?: IconValue | undefined;
48938
49247
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
48939
49248
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
49249
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
48940
49250
  validateOn?: "input" | "blur" | "submit" | undefined;
48941
49251
  validationValue?: any;
49252
+ hint?: string | undefined;
48942
49253
  hideDetails?: boolean | "auto" | undefined;
48943
49254
  falseIcon?: IconValue | undefined;
48944
49255
  trueIcon?: IconValue | undefined;
@@ -48955,6 +49266,7 @@ declare const VSwitch: {
48955
49266
  props: Record<string, unknown>;
48956
49267
  }) => vue.VNodeChild) | undefined;
48957
49268
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49269
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48958
49270
  };
48959
49271
  $slots?: {
48960
49272
  default?: (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48966,6 +49278,7 @@ declare const VSwitch: {
48966
49278
  props: Record<string, unknown>;
48967
49279
  }) => vue.VNodeChild) | undefined;
48968
49280
  input?: ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49281
+ loader?: ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48969
49282
  } | undefined;
48970
49283
  'v-slots'?: {
48971
49284
  default?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48977,6 +49290,7 @@ declare const VSwitch: {
48977
49290
  props: Record<string, unknown>;
48978
49291
  }) => vue.VNodeChild) | undefined;
48979
49292
  input?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49293
+ loader?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48980
49294
  } | undefined;
48981
49295
  } & {
48982
49296
  "v-slot:default"?: false | (((args_0: VInputSlot) => vue.VNodeChild) & (() => vue.VNodeChild)) | undefined;
@@ -48988,6 +49302,7 @@ declare const VSwitch: {
48988
49302
  props: Record<string, unknown>;
48989
49303
  }) => vue.VNodeChild) | undefined;
48990
49304
  "v-slot:input"?: false | ((args_0: SelectionControlSlot) => vue.VNodeChild) | undefined;
49305
+ "v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
48991
49306
  } & {
48992
49307
  "onUpdate:modelValue"?: (() => any) | undefined;
48993
49308
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -49014,6 +49329,7 @@ declare const VSwitch: {
49014
49329
  errorMessages: string | string[];
49015
49330
  maxErrors: string | number;
49016
49331
  rules: ValidationRule[];
49332
+ persistentHint: boolean;
49017
49333
  valueComparator: typeof deepEqual;
49018
49334
  }, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
49019
49335
  density: {
@@ -49050,6 +49366,7 @@ declare const VSwitch: {
49050
49366
  falseValue: null;
49051
49367
  value: null;
49052
49368
  focused: BooleanConstructor;
49369
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
49053
49370
  errorMessages: {
49054
49371
  type: vue.PropType<string | string[]>;
49055
49372
  default: () => never[];
@@ -49067,6 +49384,8 @@ declare const VSwitch: {
49067
49384
  appendIcon: vue.PropType<IconValue>;
49068
49385
  prependIcon: vue.PropType<IconValue>;
49069
49386
  hideDetails: vue.PropType<boolean | "auto">;
49387
+ hint: StringConstructor;
49388
+ persistentHint: BooleanConstructor;
49070
49389
  messages: {
49071
49390
  type: vue.PropType<string | string[]>;
49072
49391
  default: () => never[];
@@ -49120,6 +49439,7 @@ declare const VSwitch: {
49120
49439
  falseValue: null;
49121
49440
  value: null;
49122
49441
  focused: BooleanConstructor;
49442
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
49123
49443
  errorMessages: {
49124
49444
  type: vue.PropType<string | string[]>;
49125
49445
  default: () => never[];
@@ -49137,6 +49457,8 @@ declare const VSwitch: {
49137
49457
  appendIcon: vue.PropType<IconValue>;
49138
49458
  prependIcon: vue.PropType<IconValue>;
49139
49459
  hideDetails: vue.PropType<boolean | "auto">;
49460
+ hint: StringConstructor;
49461
+ persistentHint: BooleanConstructor;
49140
49462
  messages: {
49141
49463
  type: vue.PropType<string | string[]>;
49142
49464
  default: () => never[];
@@ -50436,11 +50758,11 @@ declare const VTextarea: {
50436
50758
  errorMessages: string | string[];
50437
50759
  maxErrors: string | number;
50438
50760
  rules: ValidationRule[];
50761
+ persistentHint: boolean;
50439
50762
  clearable: boolean;
50440
50763
  dirty: boolean;
50441
50764
  persistentClear: boolean;
50442
50765
  singleLine: boolean;
50443
- persistentHint: boolean;
50444
50766
  persistentPlaceholder: boolean;
50445
50767
  persistentCounter: boolean;
50446
50768
  autoGrow: boolean;
@@ -50463,11 +50785,11 @@ declare const VTextarea: {
50463
50785
  errorMessages: string | string[];
50464
50786
  maxErrors: string | number;
50465
50787
  rules: ValidationRule[];
50788
+ persistentHint: boolean;
50466
50789
  clearable: boolean;
50467
50790
  dirty: boolean;
50468
50791
  persistentClear: boolean;
50469
50792
  singleLine: boolean;
50470
- persistentHint: boolean;
50471
50793
  persistentPlaceholder: boolean;
50472
50794
  persistentCounter: boolean;
50473
50795
  autoGrow: boolean;
@@ -50495,10 +50817,11 @@ declare const VTextarea: {
50495
50817
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50496
50818
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50497
50819
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50820
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
50498
50821
  validateOn?: "input" | "blur" | "submit" | undefined;
50499
50822
  validationValue?: any;
50500
- hideDetails?: boolean | "auto" | undefined;
50501
50823
  hint?: string | undefined;
50824
+ hideDetails?: boolean | "auto" | undefined;
50502
50825
  suffix?: string | undefined;
50503
50826
  counterValue?: ((value: any) => number) | undefined;
50504
50827
  modelModifiers?: Record<string, boolean> | undefined;
@@ -50548,7 +50871,7 @@ declare const VTextarea: {
50548
50871
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
50549
50872
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
50550
50873
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
50551
- } & 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">;
50874
+ } & 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">;
50552
50875
  $attrs: {
50553
50876
  [x: string]: unknown;
50554
50877
  };
@@ -50579,11 +50902,11 @@ declare const VTextarea: {
50579
50902
  errorMessages: string | string[];
50580
50903
  maxErrors: string | number;
50581
50904
  rules: ValidationRule[];
50905
+ persistentHint: boolean;
50582
50906
  clearable: boolean;
50583
50907
  dirty: boolean;
50584
50908
  persistentClear: boolean;
50585
50909
  singleLine: boolean;
50586
- persistentHint: boolean;
50587
50910
  persistentPlaceholder: boolean;
50588
50911
  persistentCounter: boolean;
50589
50912
  autoGrow: boolean;
@@ -50611,10 +50934,11 @@ declare const VTextarea: {
50611
50934
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50612
50935
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50613
50936
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50937
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
50614
50938
  validateOn?: "input" | "blur" | "submit" | undefined;
50615
50939
  validationValue?: any;
50616
- hideDetails?: boolean | "auto" | undefined;
50617
50940
  hint?: string | undefined;
50941
+ hideDetails?: boolean | "auto" | undefined;
50618
50942
  suffix?: string | undefined;
50619
50943
  counterValue?: ((value: any) => number) | undefined;
50620
50944
  modelModifiers?: Record<string, boolean> | undefined;
@@ -50678,6 +51002,7 @@ declare const VTextarea: {
50678
51002
  errorMessages: string | string[];
50679
51003
  maxErrors: string | number;
50680
51004
  rules: ValidationRule[];
51005
+ persistentHint: boolean;
50681
51006
  }> & Omit<{
50682
51007
  error: boolean;
50683
51008
  direction: "horizontal" | "vertical";
@@ -50689,6 +51014,7 @@ declare const VTextarea: {
50689
51014
  errorMessages: string | string[];
50690
51015
  maxErrors: string | number;
50691
51016
  rules: ValidationRule[];
51017
+ persistentHint: boolean;
50692
51018
  } & {
50693
51019
  id?: string | undefined;
50694
51020
  name?: string | undefined;
@@ -50698,8 +51024,10 @@ declare const VTextarea: {
50698
51024
  appendIcon?: IconValue | undefined;
50699
51025
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50700
51026
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51027
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
50701
51028
  validateOn?: "input" | "blur" | "submit" | undefined;
50702
51029
  validationValue?: any;
51030
+ hint?: string | undefined;
50703
51031
  hideDetails?: boolean | "auto" | undefined;
50704
51032
  } & {
50705
51033
  $children?: {} | vue.VNodeChild | {
@@ -50727,7 +51055,7 @@ declare const VTextarea: {
50727
51055
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
50728
51056
  } & {
50729
51057
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
50730
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
51058
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
50731
51059
  $attrs: {
50732
51060
  [x: string]: unknown;
50733
51061
  };
@@ -50752,6 +51080,7 @@ declare const VTextarea: {
50752
51080
  errorMessages: string | string[];
50753
51081
  maxErrors: string | number;
50754
51082
  rules: ValidationRule[];
51083
+ persistentHint: boolean;
50755
51084
  } & {
50756
51085
  id?: string | undefined;
50757
51086
  name?: string | undefined;
@@ -50761,8 +51090,10 @@ declare const VTextarea: {
50761
51090
  appendIcon?: IconValue | undefined;
50762
51091
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50763
51092
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51093
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
50764
51094
  validateOn?: "input" | "blur" | "submit" | undefined;
50765
51095
  validationValue?: any;
51096
+ hint?: string | undefined;
50766
51097
  hideDetails?: boolean | "auto" | undefined;
50767
51098
  } & {
50768
51099
  $children?: {} | vue.VNodeChild | {
@@ -50807,6 +51138,7 @@ declare const VTextarea: {
50807
51138
  errorMessages: string | string[];
50808
51139
  maxErrors: string | number;
50809
51140
  rules: ValidationRule[];
51141
+ persistentHint: boolean;
50810
51142
  }, {}, string> & {
50811
51143
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
50812
51144
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -50838,6 +51170,7 @@ declare const VTextarea: {
50838
51170
  errorMessages: string | string[];
50839
51171
  maxErrors: string | number;
50840
51172
  rules: ValidationRule[];
51173
+ persistentHint: boolean;
50841
51174
  } & {
50842
51175
  id?: string | undefined;
50843
51176
  name?: string | undefined;
@@ -50847,8 +51180,10 @@ declare const VTextarea: {
50847
51180
  appendIcon?: IconValue | undefined;
50848
51181
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50849
51182
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51183
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
50850
51184
  validateOn?: "input" | "blur" | "submit" | undefined;
50851
51185
  validationValue?: any;
51186
+ hint?: string | undefined;
50852
51187
  hideDetails?: boolean | "auto" | undefined;
50853
51188
  } & {
50854
51189
  $children?: {} | vue.VNodeChild | {
@@ -50880,7 +51215,7 @@ declare const VTextarea: {
50880
51215
  reset: () => void;
50881
51216
  resetValidation: () => void;
50882
51217
  validate: () => Promise<string[]>;
50883
- }> & {} & 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, {
51218
+ }> & {} & 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, {
50884
51219
  'click:control': (e: MouseEvent) => true;
50885
51220
  'mousedown:control': (e: MouseEvent) => true;
50886
51221
  'update:focused': (focused: boolean) => true;
@@ -50903,11 +51238,11 @@ declare const VTextarea: {
50903
51238
  errorMessages: string | string[];
50904
51239
  maxErrors: string | number;
50905
51240
  rules: ValidationRule[];
51241
+ persistentHint: boolean;
50906
51242
  clearable: boolean;
50907
51243
  dirty: boolean;
50908
51244
  persistentClear: boolean;
50909
51245
  singleLine: boolean;
50910
- persistentHint: boolean;
50911
51246
  persistentPlaceholder: boolean;
50912
51247
  persistentCounter: boolean;
50913
51248
  autoGrow: boolean;
@@ -50950,11 +51285,11 @@ declare const VTextarea: {
50950
51285
  errorMessages: string | string[];
50951
51286
  maxErrors: string | number;
50952
51287
  rules: ValidationRule[];
51288
+ persistentHint: boolean;
50953
51289
  clearable: boolean;
50954
51290
  dirty: boolean;
50955
51291
  persistentClear: boolean;
50956
51292
  singleLine: boolean;
50957
- persistentHint: boolean;
50958
51293
  persistentPlaceholder: boolean;
50959
51294
  persistentCounter: boolean;
50960
51295
  autoGrow: boolean;
@@ -50982,10 +51317,11 @@ declare const VTextarea: {
50982
51317
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50983
51318
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
50984
51319
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51320
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
50985
51321
  validateOn?: "input" | "blur" | "submit" | undefined;
50986
51322
  validationValue?: any;
50987
- hideDetails?: boolean | "auto" | undefined;
50988
51323
  hint?: string | undefined;
51324
+ hideDetails?: boolean | "auto" | undefined;
50989
51325
  suffix?: string | undefined;
50990
51326
  counterValue?: ((value: any) => number) | undefined;
50991
51327
  modelModifiers?: Record<string, boolean> | undefined;
@@ -51049,6 +51385,7 @@ declare const VTextarea: {
51049
51385
  errorMessages: string | string[];
51050
51386
  maxErrors: string | number;
51051
51387
  rules: ValidationRule[];
51388
+ persistentHint: boolean;
51052
51389
  }> & Omit<{
51053
51390
  error: boolean;
51054
51391
  direction: "horizontal" | "vertical";
@@ -51060,6 +51397,7 @@ declare const VTextarea: {
51060
51397
  errorMessages: string | string[];
51061
51398
  maxErrors: string | number;
51062
51399
  rules: ValidationRule[];
51400
+ persistentHint: boolean;
51063
51401
  } & {
51064
51402
  id?: string | undefined;
51065
51403
  name?: string | undefined;
@@ -51069,8 +51407,10 @@ declare const VTextarea: {
51069
51407
  appendIcon?: IconValue | undefined;
51070
51408
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51071
51409
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51410
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51072
51411
  validateOn?: "input" | "blur" | "submit" | undefined;
51073
51412
  validationValue?: any;
51413
+ hint?: string | undefined;
51074
51414
  hideDetails?: boolean | "auto" | undefined;
51075
51415
  } & {
51076
51416
  $children?: {} | vue.VNodeChild | {
@@ -51098,7 +51438,7 @@ declare const VTextarea: {
51098
51438
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
51099
51439
  } & {
51100
51440
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
51101
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
51441
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
51102
51442
  $attrs: {
51103
51443
  [x: string]: unknown;
51104
51444
  };
@@ -51123,6 +51463,7 @@ declare const VTextarea: {
51123
51463
  errorMessages: string | string[];
51124
51464
  maxErrors: string | number;
51125
51465
  rules: ValidationRule[];
51466
+ persistentHint: boolean;
51126
51467
  } & {
51127
51468
  id?: string | undefined;
51128
51469
  name?: string | undefined;
@@ -51132,8 +51473,10 @@ declare const VTextarea: {
51132
51473
  appendIcon?: IconValue | undefined;
51133
51474
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51134
51475
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51476
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51135
51477
  validateOn?: "input" | "blur" | "submit" | undefined;
51136
51478
  validationValue?: any;
51479
+ hint?: string | undefined;
51137
51480
  hideDetails?: boolean | "auto" | undefined;
51138
51481
  } & {
51139
51482
  $children?: {} | vue.VNodeChild | {
@@ -51178,6 +51521,7 @@ declare const VTextarea: {
51178
51521
  errorMessages: string | string[];
51179
51522
  maxErrors: string | number;
51180
51523
  rules: ValidationRule[];
51524
+ persistentHint: boolean;
51181
51525
  }, {}, string> & {
51182
51526
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
51183
51527
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -51209,6 +51553,7 @@ declare const VTextarea: {
51209
51553
  errorMessages: string | string[];
51210
51554
  maxErrors: string | number;
51211
51555
  rules: ValidationRule[];
51556
+ persistentHint: boolean;
51212
51557
  } & {
51213
51558
  id?: string | undefined;
51214
51559
  name?: string | undefined;
@@ -51218,8 +51563,10 @@ declare const VTextarea: {
51218
51563
  appendIcon?: IconValue | undefined;
51219
51564
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51220
51565
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51566
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51221
51567
  validateOn?: "input" | "blur" | "submit" | undefined;
51222
51568
  validationValue?: any;
51569
+ hint?: string | undefined;
51223
51570
  hideDetails?: boolean | "auto" | undefined;
51224
51571
  } & {
51225
51572
  $children?: {} | vue.VNodeChild | {
@@ -51251,7 +51598,7 @@ declare const VTextarea: {
51251
51598
  reset: () => void;
51252
51599
  resetValidation: () => void;
51253
51600
  validate: () => Promise<string[]>;
51254
- }> & {} & 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 & {};
51601
+ }> & {} & 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 & {};
51255
51602
  __isFragment?: undefined;
51256
51603
  __isTeleport?: undefined;
51257
51604
  __isSuspense?: undefined;
@@ -51272,11 +51619,11 @@ declare const VTextarea: {
51272
51619
  errorMessages: string | string[];
51273
51620
  maxErrors: string | number;
51274
51621
  rules: ValidationRule[];
51622
+ persistentHint: boolean;
51275
51623
  clearable: boolean;
51276
51624
  dirty: boolean;
51277
51625
  persistentClear: boolean;
51278
51626
  singleLine: boolean;
51279
- persistentHint: boolean;
51280
51627
  persistentPlaceholder: boolean;
51281
51628
  persistentCounter: boolean;
51282
51629
  autoGrow: boolean;
@@ -51304,10 +51651,11 @@ declare const VTextarea: {
51304
51651
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51305
51652
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51306
51653
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51654
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51307
51655
  validateOn?: "input" | "blur" | "submit" | undefined;
51308
51656
  validationValue?: any;
51309
- hideDetails?: boolean | "auto" | undefined;
51310
51657
  hint?: string | undefined;
51658
+ hideDetails?: boolean | "auto" | undefined;
51311
51659
  suffix?: string | undefined;
51312
51660
  counterValue?: ((value: any) => number) | undefined;
51313
51661
  modelModifiers?: Record<string, boolean> | undefined;
@@ -51371,6 +51719,7 @@ declare const VTextarea: {
51371
51719
  errorMessages: string | string[];
51372
51720
  maxErrors: string | number;
51373
51721
  rules: ValidationRule[];
51722
+ persistentHint: boolean;
51374
51723
  }> & Omit<{
51375
51724
  error: boolean;
51376
51725
  direction: "horizontal" | "vertical";
@@ -51382,6 +51731,7 @@ declare const VTextarea: {
51382
51731
  errorMessages: string | string[];
51383
51732
  maxErrors: string | number;
51384
51733
  rules: ValidationRule[];
51734
+ persistentHint: boolean;
51385
51735
  } & {
51386
51736
  id?: string | undefined;
51387
51737
  name?: string | undefined;
@@ -51391,8 +51741,10 @@ declare const VTextarea: {
51391
51741
  appendIcon?: IconValue | undefined;
51392
51742
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51393
51743
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51744
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51394
51745
  validateOn?: "input" | "blur" | "submit" | undefined;
51395
51746
  validationValue?: any;
51747
+ hint?: string | undefined;
51396
51748
  hideDetails?: boolean | "auto" | undefined;
51397
51749
  } & {
51398
51750
  $children?: {} | vue.VNodeChild | {
@@ -51420,7 +51772,7 @@ declare const VTextarea: {
51420
51772
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
51421
51773
  } & {
51422
51774
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
51423
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
51775
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
51424
51776
  $attrs: {
51425
51777
  [x: string]: unknown;
51426
51778
  };
@@ -51445,6 +51797,7 @@ declare const VTextarea: {
51445
51797
  errorMessages: string | string[];
51446
51798
  maxErrors: string | number;
51447
51799
  rules: ValidationRule[];
51800
+ persistentHint: boolean;
51448
51801
  } & {
51449
51802
  id?: string | undefined;
51450
51803
  name?: string | undefined;
@@ -51454,8 +51807,10 @@ declare const VTextarea: {
51454
51807
  appendIcon?: IconValue | undefined;
51455
51808
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51456
51809
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51810
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51457
51811
  validateOn?: "input" | "blur" | "submit" | undefined;
51458
51812
  validationValue?: any;
51813
+ hint?: string | undefined;
51459
51814
  hideDetails?: boolean | "auto" | undefined;
51460
51815
  } & {
51461
51816
  $children?: {} | vue.VNodeChild | {
@@ -51500,6 +51855,7 @@ declare const VTextarea: {
51500
51855
  errorMessages: string | string[];
51501
51856
  maxErrors: string | number;
51502
51857
  rules: ValidationRule[];
51858
+ persistentHint: boolean;
51503
51859
  }, {}, string> & {
51504
51860
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
51505
51861
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -51531,6 +51887,7 @@ declare const VTextarea: {
51531
51887
  errorMessages: string | string[];
51532
51888
  maxErrors: string | number;
51533
51889
  rules: ValidationRule[];
51890
+ persistentHint: boolean;
51534
51891
  } & {
51535
51892
  id?: string | undefined;
51536
51893
  name?: string | undefined;
@@ -51540,8 +51897,10 @@ declare const VTextarea: {
51540
51897
  appendIcon?: IconValue | undefined;
51541
51898
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51542
51899
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51900
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51543
51901
  validateOn?: "input" | "blur" | "submit" | undefined;
51544
51902
  validationValue?: any;
51903
+ hint?: string | undefined;
51545
51904
  hideDetails?: boolean | "auto" | undefined;
51546
51905
  } & {
51547
51906
  $children?: {} | vue.VNodeChild | {
@@ -51573,7 +51932,7 @@ declare const VTextarea: {
51573
51932
  reset: () => void;
51574
51933
  resetValidation: () => void;
51575
51934
  validate: () => Promise<string[]>;
51576
- }> & {} & 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, {
51935
+ }> & {} & 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, {
51577
51936
  'click:control': (e: MouseEvent) => true;
51578
51937
  'mousedown:control': (e: MouseEvent) => true;
51579
51938
  'update:focused': (focused: boolean) => true;
@@ -51596,11 +51955,11 @@ declare const VTextarea: {
51596
51955
  errorMessages: string | string[];
51597
51956
  maxErrors: string | number;
51598
51957
  rules: ValidationRule[];
51958
+ persistentHint: boolean;
51599
51959
  clearable: boolean;
51600
51960
  dirty: boolean;
51601
51961
  persistentClear: boolean;
51602
51962
  singleLine: boolean;
51603
- persistentHint: boolean;
51604
51963
  persistentPlaceholder: boolean;
51605
51964
  persistentCounter: boolean;
51606
51965
  autoGrow: boolean;
@@ -51640,6 +51999,7 @@ declare const VTextarea: {
51640
51999
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
51641
52000
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
51642
52001
  focused: BooleanConstructor;
52002
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
51643
52003
  errorMessages: {
51644
52004
  type: PropType<string | string[]>;
51645
52005
  default: () => never[];
@@ -51666,6 +52026,8 @@ declare const VTextarea: {
51666
52026
  appendIcon: PropType<IconValue>;
51667
52027
  prependIcon: PropType<IconValue>;
51668
52028
  hideDetails: PropType<boolean | "auto">;
52029
+ hint: StringConstructor;
52030
+ persistentHint: BooleanConstructor;
51669
52031
  messages: {
51670
52032
  type: PropType<string | string[]>;
51671
52033
  default: () => never[];
@@ -51681,8 +52043,6 @@ declare const VTextarea: {
51681
52043
  autofocus: BooleanConstructor;
51682
52044
  counter: PropType<string | number | true>;
51683
52045
  counterValue: PropType<(value: any) => number>;
51684
- hint: StringConstructor;
51685
- persistentHint: BooleanConstructor;
51686
52046
  prefix: StringConstructor;
51687
52047
  placeholder: StringConstructor;
51688
52048
  persistentPlaceholder: BooleanConstructor;
@@ -51733,6 +52093,7 @@ declare const VTextarea: {
51733
52093
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
51734
52094
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
51735
52095
  focused: BooleanConstructor;
52096
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
51736
52097
  errorMessages: {
51737
52098
  type: PropType<string | string[]>;
51738
52099
  default: () => never[];
@@ -51759,6 +52120,8 @@ declare const VTextarea: {
51759
52120
  appendIcon: PropType<IconValue>;
51760
52121
  prependIcon: PropType<IconValue>;
51761
52122
  hideDetails: PropType<boolean | "auto">;
52123
+ hint: StringConstructor;
52124
+ persistentHint: BooleanConstructor;
51762
52125
  messages: {
51763
52126
  type: PropType<string | string[]>;
51764
52127
  default: () => never[];
@@ -51774,8 +52137,6 @@ declare const VTextarea: {
51774
52137
  autofocus: BooleanConstructor;
51775
52138
  counter: PropType<string | number | true>;
51776
52139
  counterValue: PropType<(value: any) => number>;
51777
- hint: StringConstructor;
51778
- persistentHint: BooleanConstructor;
51779
52140
  prefix: StringConstructor;
51780
52141
  placeholder: StringConstructor;
51781
52142
  persistentPlaceholder: BooleanConstructor;
@@ -51818,11 +52179,11 @@ declare const VTextField: {
51818
52179
  errorMessages: string | string[];
51819
52180
  maxErrors: string | number;
51820
52181
  rules: ValidationRule[];
52182
+ persistentHint: boolean;
51821
52183
  clearable: boolean;
51822
52184
  dirty: boolean;
51823
52185
  persistentClear: boolean;
51824
52186
  singleLine: boolean;
51825
- persistentHint: boolean;
51826
52187
  persistentPlaceholder: boolean;
51827
52188
  persistentCounter: boolean;
51828
52189
  }> & Omit<{
@@ -51843,11 +52204,11 @@ declare const VTextField: {
51843
52204
  errorMessages: string | string[];
51844
52205
  maxErrors: string | number;
51845
52206
  rules: ValidationRule[];
52207
+ persistentHint: boolean;
51846
52208
  clearable: boolean;
51847
52209
  dirty: boolean;
51848
52210
  persistentClear: boolean;
51849
52211
  singleLine: boolean;
51850
- persistentHint: boolean;
51851
52212
  persistentPlaceholder: boolean;
51852
52213
  persistentCounter: boolean;
51853
52214
  } & {
@@ -51872,10 +52233,11 @@ declare const VTextField: {
51872
52233
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51873
52234
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51874
52235
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52236
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51875
52237
  validateOn?: "input" | "blur" | "submit" | undefined;
51876
52238
  validationValue?: any;
51877
- hideDetails?: boolean | "auto" | undefined;
51878
52239
  hint?: string | undefined;
52240
+ hideDetails?: boolean | "auto" | undefined;
51879
52241
  suffix?: string | undefined;
51880
52242
  counterValue?: ((value: any) => number) | undefined;
51881
52243
  modelModifiers?: Record<string, boolean> | undefined;
@@ -51928,7 +52290,7 @@ declare const VTextField: {
51928
52290
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
51929
52291
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
51930
52292
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
51931
- } & 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">;
52293
+ } & 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">;
51932
52294
  $attrs: {
51933
52295
  [x: string]: unknown;
51934
52296
  };
@@ -51960,11 +52322,11 @@ declare const VTextField: {
51960
52322
  errorMessages: string | string[];
51961
52323
  maxErrors: string | number;
51962
52324
  rules: ValidationRule[];
52325
+ persistentHint: boolean;
51963
52326
  clearable: boolean;
51964
52327
  dirty: boolean;
51965
52328
  persistentClear: boolean;
51966
52329
  singleLine: boolean;
51967
- persistentHint: boolean;
51968
52330
  persistentPlaceholder: boolean;
51969
52331
  persistentCounter: boolean;
51970
52332
  } & {
@@ -51989,10 +52351,11 @@ declare const VTextField: {
51989
52351
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51990
52352
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
51991
52353
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52354
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
51992
52355
  validateOn?: "input" | "blur" | "submit" | undefined;
51993
52356
  validationValue?: any;
51994
- hideDetails?: boolean | "auto" | undefined;
51995
52357
  hint?: string | undefined;
52358
+ hideDetails?: boolean | "auto" | undefined;
51996
52359
  suffix?: string | undefined;
51997
52360
  counterValue?: ((value: any) => number) | undefined;
51998
52361
  modelModifiers?: Record<string, boolean> | undefined;
@@ -52059,6 +52422,7 @@ declare const VTextField: {
52059
52422
  errorMessages: string | string[];
52060
52423
  maxErrors: string | number;
52061
52424
  rules: ValidationRule[];
52425
+ persistentHint: boolean;
52062
52426
  }> & Omit<{
52063
52427
  error: boolean;
52064
52428
  direction: "horizontal" | "vertical";
@@ -52070,6 +52434,7 @@ declare const VTextField: {
52070
52434
  errorMessages: string | string[];
52071
52435
  maxErrors: string | number;
52072
52436
  rules: ValidationRule[];
52437
+ persistentHint: boolean;
52073
52438
  } & {
52074
52439
  id?: string | undefined;
52075
52440
  name?: string | undefined;
@@ -52079,8 +52444,10 @@ declare const VTextField: {
52079
52444
  appendIcon?: IconValue | undefined;
52080
52445
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52081
52446
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52447
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
52082
52448
  validateOn?: "input" | "blur" | "submit" | undefined;
52083
52449
  validationValue?: any;
52450
+ hint?: string | undefined;
52084
52451
  hideDetails?: boolean | "auto" | undefined;
52085
52452
  } & {
52086
52453
  $children?: {} | vue.VNodeChild | {
@@ -52108,7 +52475,7 @@ declare const VTextField: {
52108
52475
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
52109
52476
  } & {
52110
52477
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
52111
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
52478
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
52112
52479
  $attrs: {
52113
52480
  [x: string]: unknown;
52114
52481
  };
@@ -52133,6 +52500,7 @@ declare const VTextField: {
52133
52500
  errorMessages: string | string[];
52134
52501
  maxErrors: string | number;
52135
52502
  rules: ValidationRule[];
52503
+ persistentHint: boolean;
52136
52504
  } & {
52137
52505
  id?: string | undefined;
52138
52506
  name?: string | undefined;
@@ -52142,8 +52510,10 @@ declare const VTextField: {
52142
52510
  appendIcon?: IconValue | undefined;
52143
52511
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52144
52512
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52513
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
52145
52514
  validateOn?: "input" | "blur" | "submit" | undefined;
52146
52515
  validationValue?: any;
52516
+ hint?: string | undefined;
52147
52517
  hideDetails?: boolean | "auto" | undefined;
52148
52518
  } & {
52149
52519
  $children?: {} | vue.VNodeChild | {
@@ -52188,6 +52558,7 @@ declare const VTextField: {
52188
52558
  errorMessages: string | string[];
52189
52559
  maxErrors: string | number;
52190
52560
  rules: ValidationRule[];
52561
+ persistentHint: boolean;
52191
52562
  }, {}, string> & {
52192
52563
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
52193
52564
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -52219,6 +52590,7 @@ declare const VTextField: {
52219
52590
  errorMessages: string | string[];
52220
52591
  maxErrors: string | number;
52221
52592
  rules: ValidationRule[];
52593
+ persistentHint: boolean;
52222
52594
  } & {
52223
52595
  id?: string | undefined;
52224
52596
  name?: string | undefined;
@@ -52228,8 +52600,10 @@ declare const VTextField: {
52228
52600
  appendIcon?: IconValue | undefined;
52229
52601
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52230
52602
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52603
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
52231
52604
  validateOn?: "input" | "blur" | "submit" | undefined;
52232
52605
  validationValue?: any;
52606
+ hint?: string | undefined;
52233
52607
  hideDetails?: boolean | "auto" | undefined;
52234
52608
  } & {
52235
52609
  $children?: {} | vue.VNodeChild | {
@@ -52261,7 +52635,7 @@ declare const VTextField: {
52261
52635
  reset: () => void;
52262
52636
  resetValidation: () => void;
52263
52637
  validate: () => Promise<string[]>;
52264
- }> & {} & 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<{
52638
+ }> & {} & 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<{
52265
52639
  $: vue.ComponentInternalInstance;
52266
52640
  $data: {};
52267
52641
  $props: Partial<{
@@ -52312,6 +52686,7 @@ declare const VTextField: {
52312
52686
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52313
52687
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52314
52688
  focused: BooleanConstructor;
52689
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
52315
52690
  id: StringConstructor;
52316
52691
  }, "$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">>> & {
52317
52692
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -52363,6 +52738,7 @@ declare const VTextField: {
52363
52738
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52364
52739
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52365
52740
  focused: BooleanConstructor;
52741
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
52366
52742
  id: StringConstructor;
52367
52743
  }, "$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">>> & {
52368
52744
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -52439,6 +52815,7 @@ declare const VTextField: {
52439
52815
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52440
52816
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52441
52817
  focused: BooleanConstructor;
52818
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
52442
52819
  id: StringConstructor;
52443
52820
  }, "$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">>> & {
52444
52821
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -52505,11 +52882,11 @@ declare const VTextField: {
52505
52882
  errorMessages: string | string[];
52506
52883
  maxErrors: string | number;
52507
52884
  rules: ValidationRule[];
52885
+ persistentHint: boolean;
52508
52886
  clearable: boolean;
52509
52887
  dirty: boolean;
52510
52888
  persistentClear: boolean;
52511
52889
  singleLine: boolean;
52512
- persistentHint: boolean;
52513
52890
  persistentPlaceholder: boolean;
52514
52891
  persistentCounter: boolean;
52515
52892
  }, {}, string> & {
@@ -52550,11 +52927,11 @@ declare const VTextField: {
52550
52927
  errorMessages: string | string[];
52551
52928
  maxErrors: string | number;
52552
52929
  rules: ValidationRule[];
52930
+ persistentHint: boolean;
52553
52931
  clearable: boolean;
52554
52932
  dirty: boolean;
52555
52933
  persistentClear: boolean;
52556
52934
  singleLine: boolean;
52557
- persistentHint: boolean;
52558
52935
  persistentPlaceholder: boolean;
52559
52936
  persistentCounter: boolean;
52560
52937
  } & {
@@ -52579,10 +52956,11 @@ declare const VTextField: {
52579
52956
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52580
52957
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52581
52958
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52959
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
52582
52960
  validateOn?: "input" | "blur" | "submit" | undefined;
52583
52961
  validationValue?: any;
52584
- hideDetails?: boolean | "auto" | undefined;
52585
52962
  hint?: string | undefined;
52963
+ hideDetails?: boolean | "auto" | undefined;
52586
52964
  suffix?: string | undefined;
52587
52965
  counterValue?: ((value: any) => number) | undefined;
52588
52966
  modelModifiers?: Record<string, boolean> | undefined;
@@ -52649,6 +53027,7 @@ declare const VTextField: {
52649
53027
  errorMessages: string | string[];
52650
53028
  maxErrors: string | number;
52651
53029
  rules: ValidationRule[];
53030
+ persistentHint: boolean;
52652
53031
  }> & Omit<{
52653
53032
  error: boolean;
52654
53033
  direction: "horizontal" | "vertical";
@@ -52660,6 +53039,7 @@ declare const VTextField: {
52660
53039
  errorMessages: string | string[];
52661
53040
  maxErrors: string | number;
52662
53041
  rules: ValidationRule[];
53042
+ persistentHint: boolean;
52663
53043
  } & {
52664
53044
  id?: string | undefined;
52665
53045
  name?: string | undefined;
@@ -52669,8 +53049,10 @@ declare const VTextField: {
52669
53049
  appendIcon?: IconValue | undefined;
52670
53050
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52671
53051
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53052
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
52672
53053
  validateOn?: "input" | "blur" | "submit" | undefined;
52673
53054
  validationValue?: any;
53055
+ hint?: string | undefined;
52674
53056
  hideDetails?: boolean | "auto" | undefined;
52675
53057
  } & {
52676
53058
  $children?: {} | vue.VNodeChild | {
@@ -52698,7 +53080,7 @@ declare const VTextField: {
52698
53080
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
52699
53081
  } & {
52700
53082
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
52701
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
53083
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
52702
53084
  $attrs: {
52703
53085
  [x: string]: unknown;
52704
53086
  };
@@ -52723,6 +53105,7 @@ declare const VTextField: {
52723
53105
  errorMessages: string | string[];
52724
53106
  maxErrors: string | number;
52725
53107
  rules: ValidationRule[];
53108
+ persistentHint: boolean;
52726
53109
  } & {
52727
53110
  id?: string | undefined;
52728
53111
  name?: string | undefined;
@@ -52732,8 +53115,10 @@ declare const VTextField: {
52732
53115
  appendIcon?: IconValue | undefined;
52733
53116
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52734
53117
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53118
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
52735
53119
  validateOn?: "input" | "blur" | "submit" | undefined;
52736
53120
  validationValue?: any;
53121
+ hint?: string | undefined;
52737
53122
  hideDetails?: boolean | "auto" | undefined;
52738
53123
  } & {
52739
53124
  $children?: {} | vue.VNodeChild | {
@@ -52778,6 +53163,7 @@ declare const VTextField: {
52778
53163
  errorMessages: string | string[];
52779
53164
  maxErrors: string | number;
52780
53165
  rules: ValidationRule[];
53166
+ persistentHint: boolean;
52781
53167
  }, {}, string> & {
52782
53168
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
52783
53169
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -52809,6 +53195,7 @@ declare const VTextField: {
52809
53195
  errorMessages: string | string[];
52810
53196
  maxErrors: string | number;
52811
53197
  rules: ValidationRule[];
53198
+ persistentHint: boolean;
52812
53199
  } & {
52813
53200
  id?: string | undefined;
52814
53201
  name?: string | undefined;
@@ -52818,8 +53205,10 @@ declare const VTextField: {
52818
53205
  appendIcon?: IconValue | undefined;
52819
53206
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
52820
53207
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53208
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
52821
53209
  validateOn?: "input" | "blur" | "submit" | undefined;
52822
53210
  validationValue?: any;
53211
+ hint?: string | undefined;
52823
53212
  hideDetails?: boolean | "auto" | undefined;
52824
53213
  } & {
52825
53214
  $children?: {} | vue.VNodeChild | {
@@ -52851,7 +53240,7 @@ declare const VTextField: {
52851
53240
  reset: () => void;
52852
53241
  resetValidation: () => void;
52853
53242
  validate: () => Promise<string[]>;
52854
- }> & {} & 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<{
53243
+ }> & {} & 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<{
52855
53244
  $: vue.ComponentInternalInstance;
52856
53245
  $data: {};
52857
53246
  $props: Partial<{
@@ -52902,6 +53291,7 @@ declare const VTextField: {
52902
53291
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52903
53292
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52904
53293
  focused: BooleanConstructor;
53294
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
52905
53295
  id: StringConstructor;
52906
53296
  }, "$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">>> & {
52907
53297
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -52953,6 +53343,7 @@ declare const VTextField: {
52953
53343
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52954
53344
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52955
53345
  focused: BooleanConstructor;
53346
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
52956
53347
  id: StringConstructor;
52957
53348
  }, "$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">>> & {
52958
53349
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -53029,6 +53420,7 @@ declare const VTextField: {
53029
53420
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53030
53421
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53031
53422
  focused: BooleanConstructor;
53423
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
53032
53424
  id: StringConstructor;
53033
53425
  }, "$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">>> & {
53034
53426
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -53093,11 +53485,11 @@ declare const VTextField: {
53093
53485
  errorMessages: string | string[];
53094
53486
  maxErrors: string | number;
53095
53487
  rules: ValidationRule[];
53488
+ persistentHint: boolean;
53096
53489
  clearable: boolean;
53097
53490
  dirty: boolean;
53098
53491
  persistentClear: boolean;
53099
53492
  singleLine: boolean;
53100
- persistentHint: boolean;
53101
53493
  persistentPlaceholder: boolean;
53102
53494
  persistentCounter: boolean;
53103
53495
  } & {
@@ -53122,10 +53514,11 @@ declare const VTextField: {
53122
53514
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53123
53515
  'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53124
53516
  'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53517
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
53125
53518
  validateOn?: "input" | "blur" | "submit" | undefined;
53126
53519
  validationValue?: any;
53127
- hideDetails?: boolean | "auto" | undefined;
53128
53520
  hint?: string | undefined;
53521
+ hideDetails?: boolean | "auto" | undefined;
53129
53522
  suffix?: string | undefined;
53130
53523
  counterValue?: ((value: any) => number) | undefined;
53131
53524
  modelModifiers?: Record<string, boolean> | undefined;
@@ -53192,6 +53585,7 @@ declare const VTextField: {
53192
53585
  errorMessages: string | string[];
53193
53586
  maxErrors: string | number;
53194
53587
  rules: ValidationRule[];
53588
+ persistentHint: boolean;
53195
53589
  }> & Omit<{
53196
53590
  error: boolean;
53197
53591
  direction: "horizontal" | "vertical";
@@ -53203,6 +53597,7 @@ declare const VTextField: {
53203
53597
  errorMessages: string | string[];
53204
53598
  maxErrors: string | number;
53205
53599
  rules: ValidationRule[];
53600
+ persistentHint: boolean;
53206
53601
  } & {
53207
53602
  id?: string | undefined;
53208
53603
  name?: string | undefined;
@@ -53212,8 +53607,10 @@ declare const VTextField: {
53212
53607
  appendIcon?: IconValue | undefined;
53213
53608
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53214
53609
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53610
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
53215
53611
  validateOn?: "input" | "blur" | "submit" | undefined;
53216
53612
  validationValue?: any;
53613
+ hint?: string | undefined;
53217
53614
  hideDetails?: boolean | "auto" | undefined;
53218
53615
  } & {
53219
53616
  $children?: {} | vue.VNodeChild | {
@@ -53241,7 +53638,7 @@ declare const VTextField: {
53241
53638
  "v-slot:details"?: false | ((args_0: VInputSlot) => vue.VNodeChild) | undefined;
53242
53639
  } & {
53243
53640
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
53244
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules">;
53641
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "error" | "direction" | "disabled" | "readonly" | "messages" | "density" | "focused" | "errorMessages" | "maxErrors" | "rules" | "persistentHint">;
53245
53642
  $attrs: {
53246
53643
  [x: string]: unknown;
53247
53644
  };
@@ -53266,6 +53663,7 @@ declare const VTextField: {
53266
53663
  errorMessages: string | string[];
53267
53664
  maxErrors: string | number;
53268
53665
  rules: ValidationRule[];
53666
+ persistentHint: boolean;
53269
53667
  } & {
53270
53668
  id?: string | undefined;
53271
53669
  name?: string | undefined;
@@ -53275,8 +53673,10 @@ declare const VTextField: {
53275
53673
  appendIcon?: IconValue | undefined;
53276
53674
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53277
53675
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53676
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
53278
53677
  validateOn?: "input" | "blur" | "submit" | undefined;
53279
53678
  validationValue?: any;
53679
+ hint?: string | undefined;
53280
53680
  hideDetails?: boolean | "auto" | undefined;
53281
53681
  } & {
53282
53682
  $children?: {} | vue.VNodeChild | {
@@ -53321,6 +53721,7 @@ declare const VTextField: {
53321
53721
  errorMessages: string | string[];
53322
53722
  maxErrors: string | number;
53323
53723
  rules: ValidationRule[];
53724
+ persistentHint: boolean;
53324
53725
  }, {}, string> & {
53325
53726
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
53326
53727
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -53352,6 +53753,7 @@ declare const VTextField: {
53352
53753
  errorMessages: string | string[];
53353
53754
  maxErrors: string | number;
53354
53755
  rules: ValidationRule[];
53756
+ persistentHint: boolean;
53355
53757
  } & {
53356
53758
  id?: string | undefined;
53357
53759
  name?: string | undefined;
@@ -53361,8 +53763,10 @@ declare const VTextField: {
53361
53763
  appendIcon?: IconValue | undefined;
53362
53764
  'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53363
53765
  'onClick:prepend'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
53766
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
53364
53767
  validateOn?: "input" | "blur" | "submit" | undefined;
53365
53768
  validationValue?: any;
53769
+ hint?: string | undefined;
53366
53770
  hideDetails?: boolean | "auto" | undefined;
53367
53771
  } & {
53368
53772
  $children?: {} | vue.VNodeChild | {
@@ -53394,7 +53798,7 @@ declare const VTextField: {
53394
53798
  reset: () => void;
53395
53799
  resetValidation: () => void;
53396
53800
  validate: () => Promise<string[]>;
53397
- }> & {} & 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<{
53801
+ }> & {} & 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<{
53398
53802
  $: vue.ComponentInternalInstance;
53399
53803
  $data: {};
53400
53804
  $props: Partial<{
@@ -53445,6 +53849,7 @@ declare const VTextField: {
53445
53849
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53446
53850
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53447
53851
  focused: BooleanConstructor;
53852
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
53448
53853
  id: StringConstructor;
53449
53854
  }, "$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">>> & {
53450
53855
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -53496,6 +53901,7 @@ declare const VTextField: {
53496
53901
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53497
53902
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53498
53903
  focused: BooleanConstructor;
53904
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
53499
53905
  id: StringConstructor;
53500
53906
  }, "$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">>> & {
53501
53907
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -53572,6 +53978,7 @@ declare const VTextField: {
53572
53978
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53573
53979
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53574
53980
  focused: BooleanConstructor;
53981
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
53575
53982
  id: StringConstructor;
53576
53983
  }, "$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">>> & {
53577
53984
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
@@ -53638,11 +54045,11 @@ declare const VTextField: {
53638
54045
  errorMessages: string | string[];
53639
54046
  maxErrors: string | number;
53640
54047
  rules: ValidationRule[];
54048
+ persistentHint: boolean;
53641
54049
  clearable: boolean;
53642
54050
  dirty: boolean;
53643
54051
  persistentClear: boolean;
53644
54052
  singleLine: boolean;
53645
- persistentHint: boolean;
53646
54053
  persistentPlaceholder: boolean;
53647
54054
  persistentCounter: boolean;
53648
54055
  }, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
@@ -53679,6 +54086,7 @@ declare const VTextField: {
53679
54086
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53680
54087
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53681
54088
  focused: BooleanConstructor;
54089
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
53682
54090
  errorMessages: {
53683
54091
  type: PropType<string | string[]>;
53684
54092
  default: () => never[];
@@ -53705,6 +54113,8 @@ declare const VTextField: {
53705
54113
  appendIcon: PropType<IconValue>;
53706
54114
  prependIcon: PropType<IconValue>;
53707
54115
  hideDetails: PropType<boolean | "auto">;
54116
+ hint: StringConstructor;
54117
+ persistentHint: BooleanConstructor;
53708
54118
  messages: {
53709
54119
  type: PropType<string | string[]>;
53710
54120
  default: () => never[];
@@ -53719,8 +54129,6 @@ declare const VTextField: {
53719
54129
  autofocus: BooleanConstructor;
53720
54130
  counter: PropType<string | number | true>;
53721
54131
  counterValue: PropType<(value: any) => number>;
53722
- hint: StringConstructor;
53723
- persistentHint: BooleanConstructor;
53724
54132
  prefix: StringConstructor;
53725
54133
  placeholder: StringConstructor;
53726
54134
  persistentPlaceholder: BooleanConstructor;
@@ -53765,6 +54173,7 @@ declare const VTextField: {
53765
54173
  'onClick:appendInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53766
54174
  'onClick:prependInner': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
53767
54175
  focused: BooleanConstructor;
54176
+ 'onUpdate:focused': PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
53768
54177
  errorMessages: {
53769
54178
  type: PropType<string | string[]>;
53770
54179
  default: () => never[];
@@ -53791,6 +54200,8 @@ declare const VTextField: {
53791
54200
  appendIcon: PropType<IconValue>;
53792
54201
  prependIcon: PropType<IconValue>;
53793
54202
  hideDetails: PropType<boolean | "auto">;
54203
+ hint: StringConstructor;
54204
+ persistentHint: BooleanConstructor;
53794
54205
  messages: {
53795
54206
  type: PropType<string | string[]>;
53796
54207
  default: () => never[];
@@ -53805,8 +54216,6 @@ declare const VTextField: {
53805
54216
  autofocus: BooleanConstructor;
53806
54217
  counter: PropType<string | number | true>;
53807
54218
  counterValue: PropType<(value: any) => number>;
53808
- hint: StringConstructor;
53809
- persistentHint: BooleanConstructor;
53810
54219
  prefix: StringConstructor;
53811
54220
  placeholder: StringConstructor;
53812
54221
  persistentPlaceholder: BooleanConstructor;
@@ -56507,6 +56916,7 @@ declare const VValidation: {
56507
56916
  name?: string | undefined;
56508
56917
  label?: string | undefined;
56509
56918
  modelValue?: any;
56919
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
56510
56920
  validateOn?: "input" | "blur" | "submit" | undefined;
56511
56921
  validationValue?: any;
56512
56922
  } & {
@@ -56549,6 +56959,7 @@ declare const VValidation: {
56549
56959
  name?: string | undefined;
56550
56960
  label?: string | undefined;
56551
56961
  modelValue?: any;
56962
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
56552
56963
  validateOn?: "input" | "blur" | "submit" | undefined;
56553
56964
  validationValue?: any;
56554
56965
  } & {
@@ -56609,6 +57020,7 @@ declare const VValidation: {
56609
57020
  name?: string | undefined;
56610
57021
  label?: string | undefined;
56611
57022
  modelValue?: any;
57023
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
56612
57024
  validateOn?: "input" | "blur" | "submit" | undefined;
56613
57025
  validationValue?: any;
56614
57026
  } & {
@@ -56643,6 +57055,7 @@ declare const VValidation: {
56643
57055
  name?: string | undefined;
56644
57056
  label?: string | undefined;
56645
57057
  modelValue?: any;
57058
+ 'onUpdate:focused'?: EventProp<[FocusEvent], (args_0: FocusEvent) => any> | undefined;
56646
57059
  validateOn?: "input" | "blur" | "submit" | undefined;
56647
57060
  validationValue?: any;
56648
57061
  } & {
@@ -56673,6 +57086,7 @@ declare const VValidation: {
56673
57086
  rules: ValidationRule[];
56674
57087
  }, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
56675
57088
  focused: BooleanConstructor;
57089
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
56676
57090
  disabled: BooleanConstructor;
56677
57091
  error: BooleanConstructor;
56678
57092
  errorMessages: {
@@ -56695,6 +57109,7 @@ declare const VValidation: {
56695
57109
  validationValue: null;
56696
57110
  }, vue.ExtractPropTypes<{
56697
57111
  focused: BooleanConstructor;
57112
+ 'onUpdate:focused': vue.PropType<EventProp<[FocusEvent], (args_0: FocusEvent) => any>>;
56698
57113
  disabled: BooleanConstructor;
56699
57114
  error: BooleanConstructor;
56700
57115
  errorMessages: {
@@ -60558,12 +60973,13 @@ declare const createVuetify: {
60558
60973
  n: (value: number) => string;
60559
60974
  provide: (props: LocaleOptions) => LocaleInstance;
60560
60975
  };
60976
+ date: DateOptions;
60561
60977
  };
60562
60978
  version: string;
60563
60979
  };
60564
60980
  declare const version: string;
60565
60981
 
60566
- export { DefaultsInstance, DisplayBreakpoint, DisplayInstance, DisplayThresholds, IconAliases, IconOptions, IconProps, IconSet, LocaleInstance, LocaleMessages, LocaleOptions, RtlInstance, RtlOptions, SubmitEventPromise, ThemeDefinition, ThemeInstance, index_d$1 as components, createVuetify, index_d as directives, useDisplay, useLayout, useLocale, useRtl, useTheme, version };
60982
+ export { DateInstance, DateOptions, DefaultsInstance, DisplayBreakpoint, DisplayInstance, DisplayThresholds, IconAliases, IconOptions, IconProps, IconSet, LocaleInstance, LocaleMessages, LocaleOptions, RtlInstance, RtlOptions, SubmitEventPromise, ThemeDefinition, ThemeInstance, index_d$1 as components, createVuetify, index_d as directives, useDate, useDisplay, useLayout, useLocale, useRtl, useTheme, version };
60567
60983
 
60568
60984
  import type { ComponentPublicInstance, FunctionalComponent, UnwrapNestedRefs } from 'vue'
60569
60985
 
@@ -60596,6 +61012,7 @@ declare module '@vue/runtime-core' {
60596
61012
  theme: UnwrapNestedRefs<ThemeInstance>
60597
61013
  icons: IconOptions
60598
61014
  locale: UnwrapNestedRefs<LocaleInstance & RtlInstance>
61015
+ date: DateOptions
60599
61016
  }
60600
61017
 
60601
61018
  export interface ComponentCustomProperties {
@@ -60621,32 +61038,32 @@ declare module '@vue/runtime-core' {
60621
61038
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
60622
61039
  VBtn: typeof import('vuetify/components')['VBtn']
60623
61040
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
60624
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
60625
61041
  VCard: typeof import('vuetify/components')['VCard']
60626
61042
  VCardActions: typeof import('vuetify/components')['VCardActions']
60627
61043
  VCardItem: typeof import('vuetify/components')['VCardItem']
60628
61044
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
60629
61045
  VCardText: typeof import('vuetify/components')['VCardText']
60630
61046
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
61047
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
60631
61048
  VCarousel: typeof import('vuetify/components')['VCarousel']
60632
61049
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
60633
61050
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
60634
61051
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
60635
61052
  VChip: typeof import('vuetify/components')['VChip']
60636
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
60637
61053
  VCode: typeof import('vuetify/components')['VCode']
60638
61054
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
61055
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
60639
61056
  VCombobox: typeof import('vuetify/components')['VCombobox']
60640
- VCounter: typeof import('vuetify/components')['VCounter']
60641
61057
  VDialog: typeof import('vuetify/components')['VDialog']
61058
+ VCounter: typeof import('vuetify/components')['VCounter']
60642
61059
  VDivider: typeof import('vuetify/components')['VDivider']
60643
61060
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
60644
61061
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
60645
61062
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
60646
61063
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
61064
+ VFileInput: typeof import('vuetify/components')['VFileInput']
60647
61065
  VField: typeof import('vuetify/components')['VField']
60648
61066
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
60649
- VFileInput: typeof import('vuetify/components')['VFileInput']
60650
61067
  VFooter: typeof import('vuetify/components')['VFooter']
60651
61068
  VIcon: typeof import('vuetify/components')['VIcon']
60652
61069
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
@@ -60668,10 +61085,10 @@ declare module '@vue/runtime-core' {
60668
61085
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
60669
61086
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
60670
61087
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
60671
- VMenu: typeof import('vuetify/components')['VMenu']
60672
61088
  VMain: typeof import('vuetify/components')['VMain']
60673
- VMessages: typeof import('vuetify/components')['VMessages']
61089
+ VMenu: typeof import('vuetify/components')['VMenu']
60674
61090
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
61091
+ VMessages: typeof import('vuetify/components')['VMessages']
60675
61092
  VOverlay: typeof import('vuetify/components')['VOverlay']
60676
61093
  VPagination: typeof import('vuetify/components')['VPagination']
60677
61094
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
@@ -60702,19 +61119,19 @@ declare module '@vue/runtime-core' {
60702
61119
  VWindow: typeof import('vuetify/components')['VWindow']
60703
61120
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
60704
61121
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
60705
- VForm: typeof import('vuetify/components')['VForm']
60706
61122
  VContainer: typeof import('vuetify/components')['VContainer']
60707
61123
  VCol: typeof import('vuetify/components')['VCol']
60708
61124
  VRow: typeof import('vuetify/components')['VRow']
60709
61125
  VSpacer: typeof import('vuetify/components')['VSpacer']
60710
61126
  VHover: typeof import('vuetify/components')['VHover']
61127
+ VForm: typeof import('vuetify/components')['VForm']
60711
61128
  VLayout: typeof import('vuetify/components')['VLayout']
60712
61129
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
60713
- VLazy: typeof import('vuetify/components')['VLazy']
60714
61130
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
61131
+ VLazy: typeof import('vuetify/components')['VLazy']
60715
61132
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
60716
- VParallax: typeof import('vuetify/components')['VParallax']
60717
61133
  VRadio: typeof import('vuetify/components')['VRadio']
61134
+ VParallax: typeof import('vuetify/components')['VParallax']
60718
61135
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
60719
61136
  VResponsive: typeof import('vuetify/components')['VResponsive']
60720
61137
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']