vuetify 3.5.11 → 3.5.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (182) hide show
  1. package/dist/_component-variables-labs.sass +2 -1
  2. package/dist/json/attributes.json +243 -19
  3. package/dist/json/importMap-labs.json +14 -2
  4. package/dist/json/importMap.json +118 -118
  5. package/dist/json/tags.json +71 -0
  6. package/dist/json/web-types.json +747 -38
  7. package/dist/vuetify-labs.css +2574 -2324
  8. package/dist/vuetify-labs.d.ts +1117 -154
  9. package/dist/vuetify-labs.esm.js +676 -26
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +676 -26
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +1806 -1797
  14. package/dist/vuetify.d.ts +319 -190
  15. package/dist/vuetify.esm.js +34 -20
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +34 -20
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +94 -93
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAvatar/VAvatar.css +6 -0
  23. package/lib/components/VAvatar/VAvatar.sass +6 -0
  24. package/lib/components/VAvatar/_variables.scss +2 -0
  25. package/lib/components/VCheckbox/index.d.mts +54 -18
  26. package/lib/components/VChip/VChip.css +5 -2
  27. package/lib/components/VChip/VChip.sass +3 -0
  28. package/lib/components/VChip/_variables.scss +2 -2
  29. package/lib/components/VDivider/VDivider.css +1 -1
  30. package/lib/components/VDivider/VDivider.sass +1 -1
  31. package/lib/components/VExpansionPanel/VExpansionPanel.css +3 -3
  32. package/lib/components/VExpansionPanel/VExpansionPanel.sass +2 -2
  33. package/lib/components/VField/VField.css +1 -1
  34. package/lib/components/VField/_variables.scss +1 -1
  35. package/lib/components/VFileInput/index.d.mts +12 -12
  36. package/lib/components/VForm/index.d.mts +42 -42
  37. package/lib/components/VInput/index.d.mts +6 -6
  38. package/lib/components/VRadio/index.d.mts +27 -9
  39. package/lib/components/VRadioGroup/index.d.mts +27 -9
  40. package/lib/components/VSelectionControl/VSelectionControl.mjs +1 -0
  41. package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
  42. package/lib/components/VSelectionControl/index.d.mts +27 -9
  43. package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs +1 -1
  44. package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs.map +1 -1
  45. package/lib/components/VSelectionControlGroup/index.d.mts +27 -9
  46. package/lib/components/VSwitch/index.d.mts +27 -9
  47. package/lib/components/VTextField/index.d.mts +12 -12
  48. package/lib/components/VTextarea/index.d.mts +12 -12
  49. package/lib/components/VValidation/index.d.mts +6 -6
  50. package/lib/components/index.d.mts +279 -153
  51. package/lib/composables/form.mjs.map +1 -1
  52. package/lib/composables/router.mjs +17 -9
  53. package/lib/composables/router.mjs.map +1 -1
  54. package/lib/composables/transition.mjs +5 -2
  55. package/lib/composables/transition.mjs.map +1 -1
  56. package/lib/composables/validation.mjs +5 -4
  57. package/lib/composables/validation.mjs.map +1 -1
  58. package/lib/entry-bundler.mjs +1 -1
  59. package/lib/framework.mjs +1 -1
  60. package/lib/index.d.mts +40 -37
  61. package/lib/labs/VNumberInput/VNumberInput.mjs +4 -4
  62. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  63. package/lib/labs/VTimePicker/SelectingTimes.mjs.map +1 -0
  64. package/lib/labs/VTimePicker/VTimePicker.css +8 -0
  65. package/lib/labs/VTimePicker/VTimePicker.mjs +265 -0
  66. package/lib/labs/VTimePicker/VTimePicker.mjs.map +1 -0
  67. package/lib/labs/VTimePicker/VTimePicker.sass +10 -0
  68. package/lib/labs/VTimePicker/VTimePickerClock.css +130 -0
  69. package/lib/labs/VTimePicker/VTimePickerClock.mjs +244 -0
  70. package/lib/labs/VTimePicker/VTimePickerClock.mjs.map +1 -0
  71. package/lib/{components → labs}/VTimePicker/VTimePickerClock.sass +22 -39
  72. package/lib/labs/VTimePicker/VTimePickerControls.css +104 -0
  73. package/lib/labs/VTimePicker/VTimePickerControls.mjs +125 -0
  74. package/lib/labs/VTimePicker/VTimePickerControls.mjs.map +1 -0
  75. package/lib/labs/VTimePicker/VTimePickerControls.sass +102 -0
  76. package/lib/labs/VTimePicker/_variables.scss +34 -0
  77. package/lib/labs/VTimePicker/index.d.mts +848 -0
  78. package/lib/labs/VTimePicker/index.mjs +4 -0
  79. package/lib/labs/VTimePicker/index.mjs.map +1 -0
  80. package/lib/labs/components.d.mts +835 -1
  81. package/lib/labs/components.mjs +1 -0
  82. package/lib/labs/components.mjs.map +1 -1
  83. package/lib/locale/af.mjs +2 -1
  84. package/lib/locale/af.mjs.map +1 -1
  85. package/lib/locale/ar.mjs +2 -1
  86. package/lib/locale/ar.mjs.map +1 -1
  87. package/lib/locale/az.mjs +2 -1
  88. package/lib/locale/az.mjs.map +1 -1
  89. package/lib/locale/bg.mjs +2 -1
  90. package/lib/locale/bg.mjs.map +1 -1
  91. package/lib/locale/ca.mjs +2 -1
  92. package/lib/locale/ca.mjs.map +1 -1
  93. package/lib/locale/ckb.mjs +2 -1
  94. package/lib/locale/ckb.mjs.map +1 -1
  95. package/lib/locale/cs.mjs +2 -1
  96. package/lib/locale/cs.mjs.map +1 -1
  97. package/lib/locale/da.mjs +2 -1
  98. package/lib/locale/da.mjs.map +1 -1
  99. package/lib/locale/de.mjs +2 -1
  100. package/lib/locale/de.mjs.map +1 -1
  101. package/lib/locale/el.mjs +2 -1
  102. package/lib/locale/el.mjs.map +1 -1
  103. package/lib/locale/en.mjs +2 -1
  104. package/lib/locale/en.mjs.map +1 -1
  105. package/lib/locale/es.mjs +2 -1
  106. package/lib/locale/es.mjs.map +1 -1
  107. package/lib/locale/et.mjs +2 -1
  108. package/lib/locale/et.mjs.map +1 -1
  109. package/lib/locale/fa.mjs +2 -1
  110. package/lib/locale/fa.mjs.map +1 -1
  111. package/lib/locale/fi.mjs +2 -1
  112. package/lib/locale/fi.mjs.map +1 -1
  113. package/lib/locale/fr.mjs +2 -1
  114. package/lib/locale/fr.mjs.map +1 -1
  115. package/lib/locale/he.mjs +2 -1
  116. package/lib/locale/he.mjs.map +1 -1
  117. package/lib/locale/hr.mjs +2 -1
  118. package/lib/locale/hr.mjs.map +1 -1
  119. package/lib/locale/hu.mjs +2 -1
  120. package/lib/locale/hu.mjs.map +1 -1
  121. package/lib/locale/id.mjs +2 -1
  122. package/lib/locale/id.mjs.map +1 -1
  123. package/lib/locale/index.d.mts +43 -0
  124. package/lib/locale/it.mjs +2 -1
  125. package/lib/locale/it.mjs.map +1 -1
  126. package/lib/locale/ja.mjs +2 -1
  127. package/lib/locale/ja.mjs.map +1 -1
  128. package/lib/locale/km.mjs +2 -1
  129. package/lib/locale/km.mjs.map +1 -1
  130. package/lib/locale/ko.mjs +2 -1
  131. package/lib/locale/ko.mjs.map +1 -1
  132. package/lib/locale/lt.mjs +2 -1
  133. package/lib/locale/lt.mjs.map +1 -1
  134. package/lib/locale/lv.mjs +2 -1
  135. package/lib/locale/lv.mjs.map +1 -1
  136. package/lib/locale/nl.mjs +2 -1
  137. package/lib/locale/nl.mjs.map +1 -1
  138. package/lib/locale/no.mjs +2 -1
  139. package/lib/locale/no.mjs.map +1 -1
  140. package/lib/locale/pl.mjs +2 -1
  141. package/lib/locale/pl.mjs.map +1 -1
  142. package/lib/locale/pt.mjs +2 -1
  143. package/lib/locale/pt.mjs.map +1 -1
  144. package/lib/locale/ro.mjs +2 -1
  145. package/lib/locale/ro.mjs.map +1 -1
  146. package/lib/locale/ru.mjs +2 -1
  147. package/lib/locale/ru.mjs.map +1 -1
  148. package/lib/locale/sk.mjs +2 -1
  149. package/lib/locale/sk.mjs.map +1 -1
  150. package/lib/locale/sl.mjs +2 -1
  151. package/lib/locale/sl.mjs.map +1 -1
  152. package/lib/locale/sr-Cyrl.mjs +2 -1
  153. package/lib/locale/sr-Cyrl.mjs.map +1 -1
  154. package/lib/locale/sr-Latn.mjs +2 -1
  155. package/lib/locale/sr-Latn.mjs.map +1 -1
  156. package/lib/locale/sv.mjs +2 -1
  157. package/lib/locale/sv.mjs.map +1 -1
  158. package/lib/locale/th.mjs +2 -1
  159. package/lib/locale/th.mjs.map +1 -1
  160. package/lib/locale/tr.mjs +2 -1
  161. package/lib/locale/tr.mjs.map +1 -1
  162. package/lib/locale/uk.mjs +2 -1
  163. package/lib/locale/uk.mjs.map +1 -1
  164. package/lib/locale/vi.mjs +2 -1
  165. package/lib/locale/vi.mjs.map +1 -1
  166. package/lib/locale/zh-Hans.mjs +2 -1
  167. package/lib/locale/zh-Hans.mjs.map +1 -1
  168. package/lib/locale/zh-Hant.mjs +2 -1
  169. package/lib/locale/zh-Hant.mjs.map +1 -1
  170. package/package.json +4 -4
  171. package/lib/components/VTimePicker/SelectingTimes.mjs.map +0 -1
  172. package/lib/components/VTimePicker/VTimePicker.mjs +0 -288
  173. package/lib/components/VTimePicker/VTimePicker.mjs.map +0 -1
  174. package/lib/components/VTimePicker/VTimePickerClock.mjs +0 -251
  175. package/lib/components/VTimePicker/VTimePickerClock.mjs.map +0 -1
  176. package/lib/components/VTimePicker/VTimePickerTitle.mjs +0 -64
  177. package/lib/components/VTimePicker/VTimePickerTitle.mjs.map +0 -1
  178. package/lib/components/VTimePicker/VTimePickerTitle.sass +0 -61
  179. package/lib/components/VTimePicker/_variables.scss +0 -32
  180. package/lib/components/VTimePicker/index.mjs +0 -12
  181. package/lib/components/VTimePicker/index.mjs.map +0 -1
  182. /package/lib/{components → labs}/VTimePicker/SelectingTimes.mjs +0 -0
package/dist/vuetify.d.ts CHANGED
@@ -743,8 +743,8 @@ declare function useValidation(props: ValidationProps, name?: string, id?: Maybe
743
743
  isPristine: vue.ShallowRef<boolean>;
744
744
  isValid: vue.ComputedRef<boolean | null>;
745
745
  isValidating: vue.ShallowRef<boolean>;
746
- reset: () => void;
747
- resetValidation: () => void;
746
+ reset: () => Promise<void>;
747
+ resetValidation: () => Promise<void>;
748
748
  validate: (silent?: boolean) => Promise<string[]>;
749
749
  validationClasses: vue.ComputedRef<{
750
750
  [x: string]: boolean;
@@ -3783,8 +3783,8 @@ declare const VInput: {
3783
3783
  hint?: string | undefined;
3784
3784
  hideDetails?: boolean | "auto" | undefined;
3785
3785
  } & {}, {
3786
- reset: () => void;
3787
- resetValidation: () => void;
3786
+ reset: () => Promise<void>;
3787
+ resetValidation: () => Promise<void>;
3788
3788
  validate: (silent?: boolean) => Promise<string[]>;
3789
3789
  isValid: ComputedRef<boolean | null>;
3790
3790
  errorMessages: ComputedRef<string[]>;
@@ -3887,8 +3887,8 @@ declare const VInput: {
3887
3887
  hint?: string | undefined;
3888
3888
  hideDetails?: boolean | "auto" | undefined;
3889
3889
  } & {}, {
3890
- reset: () => void;
3891
- resetValidation: () => void;
3890
+ reset: () => Promise<void>;
3891
+ resetValidation: () => Promise<void>;
3892
3892
  validate: (silent?: boolean) => Promise<string[]>;
3893
3893
  isValid: ComputedRef<boolean | null>;
3894
3894
  errorMessages: ComputedRef<string[]>;
@@ -3941,8 +3941,8 @@ declare const VInput: {
3941
3941
  hint?: string | undefined;
3942
3942
  hideDetails?: boolean | "auto" | undefined;
3943
3943
  } & {}, {
3944
- reset: () => void;
3945
- resetValidation: () => void;
3944
+ reset: () => Promise<void>;
3945
+ resetValidation: () => Promise<void>;
3946
3946
  validate: (silent?: boolean) => Promise<string[]>;
3947
3947
  isValid: ComputedRef<boolean | null>;
3948
3948
  errorMessages: ComputedRef<string[]>;
@@ -15258,7 +15258,9 @@ declare const VSelectionControlGroup: {
15258
15258
  multiple: boolean | null;
15259
15259
  readonly: boolean | null;
15260
15260
  density: Density;
15261
- ripple: boolean;
15261
+ ripple: boolean | {
15262
+ class: string;
15263
+ } | undefined;
15262
15264
  defaultsTarget: string;
15263
15265
  valueComparator: typeof deepEqual;
15264
15266
  } & {
@@ -15280,7 +15282,9 @@ declare const VSelectionControlGroup: {
15280
15282
  multiple: boolean | null;
15281
15283
  readonly: boolean | null;
15282
15284
  density: Density;
15283
- ripple: boolean;
15285
+ ripple: boolean | {
15286
+ class: string;
15287
+ } | undefined;
15284
15288
  defaultsTarget: string;
15285
15289
  valueComparator: typeof deepEqual;
15286
15290
  } & {
@@ -15300,7 +15304,9 @@ declare const VSelectionControlGroup: {
15300
15304
  multiple: boolean | null;
15301
15305
  readonly: boolean | null;
15302
15306
  density: Density;
15303
- ripple: boolean;
15307
+ ripple: boolean | {
15308
+ class: string;
15309
+ } | undefined;
15304
15310
  defaultsTarget: string;
15305
15311
  valueComparator: typeof deepEqual;
15306
15312
  }, true, {}, vue.SlotsType<Partial<{
@@ -15322,7 +15328,9 @@ declare const VSelectionControlGroup: {
15322
15328
  multiple: boolean | null;
15323
15329
  readonly: boolean | null;
15324
15330
  density: Density;
15325
- ripple: boolean;
15331
+ ripple: boolean | {
15332
+ class: string;
15333
+ } | undefined;
15326
15334
  defaultsTarget: string;
15327
15335
  valueComparator: typeof deepEqual;
15328
15336
  } & {
@@ -15342,7 +15350,9 @@ declare const VSelectionControlGroup: {
15342
15350
  multiple: boolean | null;
15343
15351
  readonly: boolean | null;
15344
15352
  density: Density;
15345
- ripple: boolean;
15353
+ ripple: boolean | {
15354
+ class: string;
15355
+ } | undefined;
15346
15356
  defaultsTarget: string;
15347
15357
  valueComparator: typeof deepEqual;
15348
15358
  }>;
@@ -15357,7 +15367,9 @@ declare const VSelectionControlGroup: {
15357
15367
  multiple: boolean | null;
15358
15368
  readonly: boolean | null;
15359
15369
  density: Density;
15360
- ripple: boolean;
15370
+ ripple: boolean | {
15371
+ class: string;
15372
+ } | undefined;
15361
15373
  defaultsTarget: string;
15362
15374
  valueComparator: typeof deepEqual;
15363
15375
  } & {
@@ -15379,7 +15391,9 @@ declare const VSelectionControlGroup: {
15379
15391
  multiple: boolean | null;
15380
15392
  readonly: boolean | null;
15381
15393
  density: Density;
15382
- ripple: boolean;
15394
+ ripple: boolean | {
15395
+ class: string;
15396
+ } | undefined;
15383
15397
  defaultsTarget: string;
15384
15398
  valueComparator: typeof deepEqual;
15385
15399
  }, {}, string, vue.SlotsType<Partial<{
@@ -15423,7 +15437,9 @@ declare const VSelectionControlGroup: {
15423
15437
  falseIcon: PropType<IconValue>;
15424
15438
  trueIcon: PropType<IconValue>;
15425
15439
  ripple: {
15426
- type: BooleanConstructor;
15440
+ type: PropType<boolean | {
15441
+ class: string;
15442
+ } | undefined>;
15427
15443
  default: boolean;
15428
15444
  };
15429
15445
  multiple: {
@@ -15468,7 +15484,9 @@ declare const VSelectionControlGroup: {
15468
15484
  falseIcon: PropType<IconValue>;
15469
15485
  trueIcon: PropType<IconValue>;
15470
15486
  ripple: {
15471
- type: BooleanConstructor;
15487
+ type: PropType<boolean | {
15488
+ class: string;
15489
+ } | undefined>;
15472
15490
  default: boolean;
15473
15491
  };
15474
15492
  multiple: {
@@ -15523,7 +15541,9 @@ declare const VSelectionControl: {
15523
15541
  multiple: boolean | null;
15524
15542
  readonly: boolean | null;
15525
15543
  density: Density;
15526
- ripple: boolean;
15544
+ ripple: boolean | {
15545
+ class: string;
15546
+ } | undefined;
15527
15547
  valueComparator: typeof deepEqual;
15528
15548
  } & {
15529
15549
  type?: string | undefined;
@@ -15553,7 +15573,9 @@ declare const VSelectionControl: {
15553
15573
  multiple: boolean | null;
15554
15574
  readonly: boolean | null;
15555
15575
  density: Density;
15556
- ripple: boolean;
15576
+ ripple: boolean | {
15577
+ class: string;
15578
+ } | undefined;
15557
15579
  valueComparator: typeof deepEqual;
15558
15580
  } & {
15559
15581
  type?: string | undefined;
@@ -15578,7 +15600,9 @@ declare const VSelectionControl: {
15578
15600
  multiple: boolean | null;
15579
15601
  readonly: boolean | null;
15580
15602
  density: Density;
15581
- ripple: boolean;
15603
+ ripple: boolean | {
15604
+ class: string;
15605
+ } | undefined;
15582
15606
  valueComparator: typeof deepEqual;
15583
15607
  }, true, {}, vue.SlotsType<Partial<{
15584
15608
  default: (arg: {
@@ -15611,7 +15635,9 @@ declare const VSelectionControl: {
15611
15635
  multiple: boolean | null;
15612
15636
  readonly: boolean | null;
15613
15637
  density: Density;
15614
- ripple: boolean;
15638
+ ripple: boolean | {
15639
+ class: string;
15640
+ } | undefined;
15615
15641
  valueComparator: typeof deepEqual;
15616
15642
  } & {
15617
15643
  type?: string | undefined;
@@ -15639,7 +15665,9 @@ declare const VSelectionControl: {
15639
15665
  multiple: boolean | null;
15640
15666
  readonly: boolean | null;
15641
15667
  density: Density;
15642
- ripple: boolean;
15668
+ ripple: boolean | {
15669
+ class: string;
15670
+ } | undefined;
15643
15671
  valueComparator: typeof deepEqual;
15644
15672
  }>;
15645
15673
  __isFragment?: undefined;
@@ -15653,7 +15681,9 @@ declare const VSelectionControl: {
15653
15681
  multiple: boolean | null;
15654
15682
  readonly: boolean | null;
15655
15683
  density: Density;
15656
- ripple: boolean;
15684
+ ripple: boolean | {
15685
+ class: string;
15686
+ } | undefined;
15657
15687
  valueComparator: typeof deepEqual;
15658
15688
  } & {
15659
15689
  type?: string | undefined;
@@ -15683,7 +15713,9 @@ declare const VSelectionControl: {
15683
15713
  multiple: boolean | null;
15684
15714
  readonly: boolean | null;
15685
15715
  density: Density;
15686
- ripple: boolean;
15716
+ ripple: boolean | {
15717
+ class: string;
15718
+ } | undefined;
15687
15719
  valueComparator: typeof deepEqual;
15688
15720
  }, {}, string, vue.SlotsType<Partial<{
15689
15721
  default: (arg: {
@@ -15731,7 +15763,9 @@ declare const VSelectionControl: {
15731
15763
  falseIcon: vue.PropType<IconValue>;
15732
15764
  trueIcon: vue.PropType<IconValue>;
15733
15765
  ripple: {
15734
- type: BooleanConstructor;
15766
+ type: vue.PropType<boolean | {
15767
+ class: string;
15768
+ } | undefined>;
15735
15769
  default: boolean;
15736
15770
  };
15737
15771
  multiple: {
@@ -15778,7 +15812,9 @@ declare const VSelectionControl: {
15778
15812
  falseIcon: vue.PropType<IconValue>;
15779
15813
  trueIcon: vue.PropType<IconValue>;
15780
15814
  ripple: {
15781
- type: BooleanConstructor;
15815
+ type: vue.PropType<boolean | {
15816
+ class: string;
15817
+ } | undefined>;
15782
15818
  default: boolean;
15783
15819
  };
15784
15820
  multiple: {
@@ -15820,7 +15856,9 @@ declare const VCheckbox: {
15820
15856
  maxErrors: string | number;
15821
15857
  rules: readonly ValidationRule$1[];
15822
15858
  density: Density;
15823
- ripple: boolean;
15859
+ ripple: boolean | {
15860
+ class: string;
15861
+ } | undefined;
15824
15862
  falseIcon: NonNullable<IconValue>;
15825
15863
  trueIcon: NonNullable<IconValue>;
15826
15864
  valueComparator: typeof deepEqual;
@@ -15869,7 +15907,9 @@ declare const VCheckbox: {
15869
15907
  maxErrors: string | number;
15870
15908
  rules: readonly ValidationRule$1[];
15871
15909
  density: Density;
15872
- ripple: boolean;
15910
+ ripple: boolean | {
15911
+ class: string;
15912
+ } | undefined;
15873
15913
  falseIcon: NonNullable<IconValue>;
15874
15914
  trueIcon: NonNullable<IconValue>;
15875
15915
  valueComparator: typeof deepEqual;
@@ -15915,7 +15955,9 @@ declare const VCheckbox: {
15915
15955
  maxErrors: string | number;
15916
15956
  rules: readonly ValidationRule$1[];
15917
15957
  density: Density;
15918
- ripple: boolean;
15958
+ ripple: boolean | {
15959
+ class: string;
15960
+ } | undefined;
15919
15961
  falseIcon: NonNullable<IconValue>;
15920
15962
  trueIcon: NonNullable<IconValue>;
15921
15963
  valueComparator: typeof deepEqual;
@@ -15972,7 +16014,9 @@ declare const VCheckbox: {
15972
16014
  maxErrors: string | number;
15973
16015
  rules: readonly ValidationRule$1[];
15974
16016
  density: Density;
15975
- ripple: boolean;
16017
+ ripple: boolean | {
16018
+ class: string;
16019
+ } | undefined;
15976
16020
  falseIcon: NonNullable<IconValue>;
15977
16021
  trueIcon: NonNullable<IconValue>;
15978
16022
  valueComparator: typeof deepEqual;
@@ -16018,7 +16062,9 @@ declare const VCheckbox: {
16018
16062
  maxErrors: string | number;
16019
16063
  rules: readonly ValidationRule$1[];
16020
16064
  density: Density;
16021
- ripple: boolean;
16065
+ ripple: boolean | {
16066
+ class: string;
16067
+ } | undefined;
16022
16068
  falseIcon: NonNullable<IconValue>;
16023
16069
  trueIcon: NonNullable<IconValue>;
16024
16070
  valueComparator: typeof deepEqual;
@@ -16044,7 +16090,9 @@ declare const VCheckbox: {
16044
16090
  maxErrors: string | number;
16045
16091
  rules: readonly ValidationRule$1[];
16046
16092
  density: Density;
16047
- ripple: boolean;
16093
+ ripple: boolean | {
16094
+ class: string;
16095
+ } | undefined;
16048
16096
  falseIcon: NonNullable<IconValue>;
16049
16097
  trueIcon: NonNullable<IconValue>;
16050
16098
  valueComparator: typeof deepEqual;
@@ -16093,7 +16141,9 @@ declare const VCheckbox: {
16093
16141
  maxErrors: string | number;
16094
16142
  rules: readonly ValidationRule$1[];
16095
16143
  density: Density;
16096
- ripple: boolean;
16144
+ ripple: boolean | {
16145
+ class: string;
16146
+ } | undefined;
16097
16147
  falseIcon: NonNullable<IconValue>;
16098
16148
  trueIcon: NonNullable<IconValue>;
16099
16149
  valueComparator: typeof deepEqual;
@@ -16169,7 +16219,9 @@ declare const VCheckbox: {
16169
16219
  validator: (v: any) => boolean;
16170
16220
  };
16171
16221
  ripple: {
16172
- type: BooleanConstructor;
16222
+ type: vue.PropType<boolean | {
16223
+ class: string;
16224
+ } | undefined>;
16173
16225
  default: boolean;
16174
16226
  };
16175
16227
  defaultsTarget: StringConstructor;
@@ -16263,7 +16315,9 @@ declare const VCheckbox: {
16263
16315
  validator: (v: any) => boolean;
16264
16316
  };
16265
16317
  ripple: {
16266
- type: BooleanConstructor;
16318
+ type: vue.PropType<boolean | {
16319
+ class: string;
16320
+ } | undefined>;
16267
16321
  default: boolean;
16268
16322
  };
16269
16323
  defaultsTarget: StringConstructor;
@@ -16336,7 +16390,9 @@ declare const VCheckboxBtn: {
16336
16390
  readonly: boolean | null;
16337
16391
  indeterminate: boolean;
16338
16392
  density: Density;
16339
- ripple: boolean;
16393
+ ripple: boolean | {
16394
+ class: string;
16395
+ } | undefined;
16340
16396
  falseIcon: NonNullable<IconValue>;
16341
16397
  trueIcon: NonNullable<IconValue>;
16342
16398
  valueComparator: typeof deepEqual;
@@ -16368,7 +16424,9 @@ declare const VCheckboxBtn: {
16368
16424
  readonly: boolean | null;
16369
16425
  indeterminate: boolean;
16370
16426
  density: Density;
16371
- ripple: boolean;
16427
+ ripple: boolean | {
16428
+ class: string;
16429
+ } | undefined;
16372
16430
  falseIcon: NonNullable<IconValue>;
16373
16431
  trueIcon: NonNullable<IconValue>;
16374
16432
  valueComparator: typeof deepEqual;
@@ -16397,7 +16455,9 @@ declare const VCheckboxBtn: {
16397
16455
  readonly: boolean | null;
16398
16456
  indeterminate: boolean;
16399
16457
  density: Density;
16400
- ripple: boolean;
16458
+ ripple: boolean | {
16459
+ class: string;
16460
+ } | undefined;
16401
16461
  falseIcon: NonNullable<IconValue>;
16402
16462
  trueIcon: NonNullable<IconValue>;
16403
16463
  valueComparator: typeof deepEqual;
@@ -16434,7 +16494,9 @@ declare const VCheckboxBtn: {
16434
16494
  readonly: boolean | null;
16435
16495
  indeterminate: boolean;
16436
16496
  density: Density;
16437
- ripple: boolean;
16497
+ ripple: boolean | {
16498
+ class: string;
16499
+ } | undefined;
16438
16500
  falseIcon: NonNullable<IconValue>;
16439
16501
  trueIcon: NonNullable<IconValue>;
16440
16502
  valueComparator: typeof deepEqual;
@@ -16463,7 +16525,9 @@ declare const VCheckboxBtn: {
16463
16525
  readonly: boolean | null;
16464
16526
  indeterminate: boolean;
16465
16527
  density: Density;
16466
- ripple: boolean;
16528
+ ripple: boolean | {
16529
+ class: string;
16530
+ } | undefined;
16467
16531
  falseIcon: NonNullable<IconValue>;
16468
16532
  trueIcon: NonNullable<IconValue>;
16469
16533
  valueComparator: typeof deepEqual;
@@ -16481,7 +16545,9 @@ declare const VCheckboxBtn: {
16481
16545
  readonly: boolean | null;
16482
16546
  indeterminate: boolean;
16483
16547
  density: Density;
16484
- ripple: boolean;
16548
+ ripple: boolean | {
16549
+ class: string;
16550
+ } | undefined;
16485
16551
  falseIcon: NonNullable<IconValue>;
16486
16552
  trueIcon: NonNullable<IconValue>;
16487
16553
  valueComparator: typeof deepEqual;
@@ -16513,7 +16579,9 @@ declare const VCheckboxBtn: {
16513
16579
  readonly: boolean | null;
16514
16580
  indeterminate: boolean;
16515
16581
  density: Density;
16516
- ripple: boolean;
16582
+ ripple: boolean | {
16583
+ class: string;
16584
+ } | undefined;
16517
16585
  falseIcon: NonNullable<IconValue>;
16518
16586
  trueIcon: NonNullable<IconValue>;
16519
16587
  valueComparator: typeof deepEqual;
@@ -16570,7 +16638,9 @@ declare const VCheckboxBtn: {
16570
16638
  default: NonNullable<IconValue>;
16571
16639
  };
16572
16640
  ripple: {
16573
- type: BooleanConstructor;
16641
+ type: vue.PropType<boolean | {
16642
+ class: string;
16643
+ } | undefined>;
16574
16644
  default: boolean;
16575
16645
  };
16576
16646
  multiple: {
@@ -16628,7 +16698,9 @@ declare const VCheckboxBtn: {
16628
16698
  default: NonNullable<IconValue>;
16629
16699
  };
16630
16700
  ripple: {
16631
- type: BooleanConstructor;
16701
+ type: vue.PropType<boolean | {
16702
+ class: string;
16703
+ } | undefined>;
16632
16704
  default: boolean;
16633
16705
  };
16634
16706
  multiple: {
@@ -32601,8 +32673,8 @@ declare const VFileInput: {
32601
32673
  hint?: string | undefined;
32602
32674
  hideDetails?: boolean | "auto" | undefined;
32603
32675
  } & {}, {
32604
- reset: () => void;
32605
- resetValidation: () => void;
32676
+ reset: () => Promise<void>;
32677
+ resetValidation: () => Promise<void>;
32606
32678
  validate: (silent?: boolean) => Promise<string[]>;
32607
32679
  isValid: vue.ComputedRef<boolean | null>;
32608
32680
  errorMessages: vue.ComputedRef<string[]>;
@@ -32689,8 +32761,8 @@ declare const VFileInput: {
32689
32761
  hint?: string | undefined;
32690
32762
  hideDetails?: boolean | "auto" | undefined;
32691
32763
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
32692
- reset: () => void;
32693
- resetValidation: () => void;
32764
+ reset: () => Promise<void>;
32765
+ resetValidation: () => Promise<void>;
32694
32766
  validate: (silent?: boolean) => Promise<string[]>;
32695
32767
  isValid: vue.ComputedRef<boolean | null>;
32696
32768
  errorMessages: vue.ComputedRef<string[]>;
@@ -33170,8 +33242,8 @@ declare const VFileInput: {
33170
33242
  hint?: string | undefined;
33171
33243
  hideDetails?: boolean | "auto" | undefined;
33172
33244
  } & {}, {
33173
- reset: () => void;
33174
- resetValidation: () => void;
33245
+ reset: () => Promise<void>;
33246
+ resetValidation: () => Promise<void>;
33175
33247
  validate: (silent?: boolean) => Promise<string[]>;
33176
33248
  isValid: vue.ComputedRef<boolean | null>;
33177
33249
  errorMessages: vue.ComputedRef<string[]>;
@@ -33258,8 +33330,8 @@ declare const VFileInput: {
33258
33330
  hint?: string | undefined;
33259
33331
  hideDetails?: boolean | "auto" | undefined;
33260
33332
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
33261
- reset: () => void;
33262
- resetValidation: () => void;
33333
+ reset: () => Promise<void>;
33334
+ resetValidation: () => Promise<void>;
33263
33335
  validate: (silent?: boolean) => Promise<string[]>;
33264
33336
  isValid: vue.ComputedRef<boolean | null>;
33265
33337
  errorMessages: vue.ComputedRef<string[]>;
@@ -33562,8 +33634,8 @@ declare const VFileInput: {
33562
33634
  hint?: string | undefined;
33563
33635
  hideDetails?: boolean | "auto" | undefined;
33564
33636
  } & {}, {
33565
- reset: () => void;
33566
- resetValidation: () => void;
33637
+ reset: () => Promise<void>;
33638
+ resetValidation: () => Promise<void>;
33567
33639
  validate: (silent?: boolean) => Promise<string[]>;
33568
33640
  isValid: vue.ComputedRef<boolean | null>;
33569
33641
  errorMessages: vue.ComputedRef<string[]>;
@@ -33650,8 +33722,8 @@ declare const VFileInput: {
33650
33722
  hint?: string | undefined;
33651
33723
  hideDetails?: boolean | "auto" | undefined;
33652
33724
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
33653
- reset: () => void;
33654
- resetValidation: () => void;
33725
+ reset: () => Promise<void>;
33726
+ resetValidation: () => Promise<void>;
33655
33727
  validate: (silent?: boolean) => Promise<string[]>;
33656
33728
  isValid: vue.ComputedRef<boolean | null>;
33657
33729
  errorMessages: vue.ComputedRef<string[]>;
@@ -34232,8 +34304,8 @@ declare const VForm: {
34232
34304
  items: vue.Ref<{
34233
34305
  id: string | number;
34234
34306
  validate: () => Promise<string[]>;
34235
- reset: () => void;
34236
- resetValidation: () => void;
34307
+ reset: () => Promise<void>;
34308
+ resetValidation: () => Promise<void>;
34237
34309
  isValid: boolean | null;
34238
34310
  errorMessages: string[];
34239
34311
  }[]>;
@@ -34261,8 +34333,8 @@ declare const VForm: {
34261
34333
  items: vue.Ref<{
34262
34334
  id: string | number;
34263
34335
  validate: () => Promise<string[]>;
34264
- reset: () => void;
34265
- resetValidation: () => void;
34336
+ reset: () => Promise<void>;
34337
+ resetValidation: () => Promise<void>;
34266
34338
  isValid: boolean | null;
34267
34339
  errorMessages: string[];
34268
34340
  }[]>;
@@ -34291,8 +34363,8 @@ declare const VForm: {
34291
34363
  items: vue.Ref<{
34292
34364
  id: string | number;
34293
34365
  validate: () => Promise<string[]>;
34294
- reset: () => void;
34295
- resetValidation: () => void;
34366
+ reset: () => Promise<void>;
34367
+ resetValidation: () => Promise<void>;
34296
34368
  isValid: boolean | null;
34297
34369
  errorMessages: string[];
34298
34370
  }[]>;
@@ -34322,8 +34394,8 @@ declare const VForm: {
34322
34394
  items: vue.Ref<{
34323
34395
  id: string | number;
34324
34396
  validate: () => Promise<string[]>;
34325
- reset: () => void;
34326
- resetValidation: () => void;
34397
+ reset: () => Promise<void>;
34398
+ resetValidation: () => Promise<void>;
34327
34399
  isValid: boolean | null;
34328
34400
  errorMessages: string[];
34329
34401
  }[]>;
@@ -34354,8 +34426,8 @@ declare const VForm: {
34354
34426
  items: vue.Ref<{
34355
34427
  id: string | number;
34356
34428
  validate: () => Promise<string[]>;
34357
- reset: () => void;
34358
- resetValidation: () => void;
34429
+ reset: () => Promise<void>;
34430
+ resetValidation: () => Promise<void>;
34359
34431
  isValid: boolean | null;
34360
34432
  errorMessages: string[];
34361
34433
  }[]>;
@@ -34396,8 +34468,8 @@ declare const VForm: {
34396
34468
  items: vue.Ref<{
34397
34469
  id: string | number;
34398
34470
  validate: () => Promise<string[]>;
34399
- reset: () => void;
34400
- resetValidation: () => void;
34471
+ reset: () => Promise<void>;
34472
+ resetValidation: () => Promise<void>;
34401
34473
  isValid: boolean | null;
34402
34474
  errorMessages: string[];
34403
34475
  }[]>;
@@ -34425,8 +34497,8 @@ declare const VForm: {
34425
34497
  items: vue.Ref<{
34426
34498
  id: string | number;
34427
34499
  validate: () => Promise<string[]>;
34428
- reset: () => void;
34429
- resetValidation: () => void;
34500
+ reset: () => Promise<void>;
34501
+ resetValidation: () => Promise<void>;
34430
34502
  isValid: boolean | null;
34431
34503
  errorMessages: string[];
34432
34504
  }[]>;
@@ -34455,8 +34527,8 @@ declare const VForm: {
34455
34527
  items: vue.Ref<{
34456
34528
  id: string | number;
34457
34529
  validate: () => Promise<string[]>;
34458
- reset: () => void;
34459
- resetValidation: () => void;
34530
+ reset: () => Promise<void>;
34531
+ resetValidation: () => Promise<void>;
34460
34532
  isValid: boolean | null;
34461
34533
  errorMessages: string[];
34462
34534
  }[]>;
@@ -34486,8 +34558,8 @@ declare const VForm: {
34486
34558
  items: vue.Ref<{
34487
34559
  id: string | number;
34488
34560
  validate: () => Promise<string[]>;
34489
- reset: () => void;
34490
- resetValidation: () => void;
34561
+ reset: () => Promise<void>;
34562
+ resetValidation: () => Promise<void>;
34491
34563
  isValid: boolean | null;
34492
34564
  errorMessages: string[];
34493
34565
  }[]>;
@@ -34526,8 +34598,8 @@ declare const VForm: {
34526
34598
  items: vue.Ref<{
34527
34599
  id: string | number;
34528
34600
  validate: () => Promise<string[]>;
34529
- reset: () => void;
34530
- resetValidation: () => void;
34601
+ reset: () => Promise<void>;
34602
+ resetValidation: () => Promise<void>;
34531
34603
  isValid: boolean | null;
34532
34604
  errorMessages: string[];
34533
34605
  }[]>;
@@ -34575,8 +34647,8 @@ declare const VForm: {
34575
34647
  items: vue.Ref<{
34576
34648
  id: string | number;
34577
34649
  validate: () => Promise<string[]>;
34578
- reset: () => void;
34579
- resetValidation: () => void;
34650
+ reset: () => Promise<void>;
34651
+ resetValidation: () => Promise<void>;
34580
34652
  isValid: boolean | null;
34581
34653
  errorMessages: string[];
34582
34654
  }[]>;
@@ -34604,8 +34676,8 @@ declare const VForm: {
34604
34676
  items: vue.Ref<{
34605
34677
  id: string | number;
34606
34678
  validate: () => Promise<string[]>;
34607
- reset: () => void;
34608
- resetValidation: () => void;
34679
+ reset: () => Promise<void>;
34680
+ resetValidation: () => Promise<void>;
34609
34681
  isValid: boolean | null;
34610
34682
  errorMessages: string[];
34611
34683
  }[]>;
@@ -34634,8 +34706,8 @@ declare const VForm: {
34634
34706
  items: vue.Ref<{
34635
34707
  id: string | number;
34636
34708
  validate: () => Promise<string[]>;
34637
- reset: () => void;
34638
- resetValidation: () => void;
34709
+ reset: () => Promise<void>;
34710
+ resetValidation: () => Promise<void>;
34639
34711
  isValid: boolean | null;
34640
34712
  errorMessages: string[];
34641
34713
  }[]>;
@@ -34665,8 +34737,8 @@ declare const VForm: {
34665
34737
  items: vue.Ref<{
34666
34738
  id: string | number;
34667
34739
  validate: () => Promise<string[]>;
34668
- reset: () => void;
34669
- resetValidation: () => void;
34740
+ reset: () => Promise<void>;
34741
+ resetValidation: () => Promise<void>;
34670
34742
  isValid: boolean | null;
34671
34743
  errorMessages: string[];
34672
34744
  }[]>;
@@ -34697,8 +34769,8 @@ declare const VForm: {
34697
34769
  items: vue.Ref<{
34698
34770
  id: string | number;
34699
34771
  validate: () => Promise<string[]>;
34700
- reset: () => void;
34701
- resetValidation: () => void;
34772
+ reset: () => Promise<void>;
34773
+ resetValidation: () => Promise<void>;
34702
34774
  isValid: boolean | null;
34703
34775
  errorMessages: string[];
34704
34776
  }[]>;
@@ -34747,8 +34819,8 @@ declare const VForm: {
34747
34819
  items: vue.Ref<{
34748
34820
  id: string | number;
34749
34821
  validate: () => Promise<string[]>;
34750
- reset: () => void;
34751
- resetValidation: () => void;
34822
+ reset: () => Promise<void>;
34823
+ resetValidation: () => Promise<void>;
34752
34824
  isValid: boolean | null;
34753
34825
  errorMessages: string[];
34754
34826
  }[]>;
@@ -34776,8 +34848,8 @@ declare const VForm: {
34776
34848
  items: vue.Ref<{
34777
34849
  id: string | number;
34778
34850
  validate: () => Promise<string[]>;
34779
- reset: () => void;
34780
- resetValidation: () => void;
34851
+ reset: () => Promise<void>;
34852
+ resetValidation: () => Promise<void>;
34781
34853
  isValid: boolean | null;
34782
34854
  errorMessages: string[];
34783
34855
  }[]>;
@@ -34806,8 +34878,8 @@ declare const VForm: {
34806
34878
  items: vue.Ref<{
34807
34879
  id: string | number;
34808
34880
  validate: () => Promise<string[]>;
34809
- reset: () => void;
34810
- resetValidation: () => void;
34881
+ reset: () => Promise<void>;
34882
+ resetValidation: () => Promise<void>;
34811
34883
  isValid: boolean | null;
34812
34884
  errorMessages: string[];
34813
34885
  }[]>;
@@ -34837,8 +34909,8 @@ declare const VForm: {
34837
34909
  items: vue.Ref<{
34838
34910
  id: string | number;
34839
34911
  validate: () => Promise<string[]>;
34840
- reset: () => void;
34841
- resetValidation: () => void;
34912
+ reset: () => Promise<void>;
34913
+ resetValidation: () => Promise<void>;
34842
34914
  isValid: boolean | null;
34843
34915
  errorMessages: string[];
34844
34916
  }[]>;
@@ -34869,8 +34941,8 @@ declare const VForm: {
34869
34941
  items: vue.Ref<{
34870
34942
  id: string | number;
34871
34943
  validate: () => Promise<string[]>;
34872
- reset: () => void;
34873
- resetValidation: () => void;
34944
+ reset: () => Promise<void>;
34945
+ resetValidation: () => Promise<void>;
34874
34946
  isValid: boolean | null;
34875
34947
  errorMessages: string[];
34876
34948
  }[]>;
@@ -34908,8 +34980,8 @@ declare const VForm: {
34908
34980
  items: vue.Ref<{
34909
34981
  id: string | number;
34910
34982
  validate: () => Promise<string[]>;
34911
- reset: () => void;
34912
- resetValidation: () => void;
34983
+ reset: () => Promise<void>;
34984
+ resetValidation: () => Promise<void>;
34913
34985
  isValid: boolean | null;
34914
34986
  errorMessages: string[];
34915
34987
  }[]>;
@@ -44467,7 +44539,9 @@ declare const VRadio: {
44467
44539
  multiple: boolean | null;
44468
44540
  readonly: boolean | null;
44469
44541
  density: Density;
44470
- ripple: boolean;
44542
+ ripple: boolean | {
44543
+ class: string;
44544
+ } | undefined;
44471
44545
  falseIcon: NonNullable<IconValue>;
44472
44546
  trueIcon: NonNullable<IconValue>;
44473
44547
  valueComparator: typeof deepEqual;
@@ -44529,7 +44603,9 @@ declare const VRadio: {
44529
44603
  multiple: boolean | null;
44530
44604
  readonly: boolean | null;
44531
44605
  density: Density;
44532
- ripple: boolean;
44606
+ ripple: boolean | {
44607
+ class: string;
44608
+ } | undefined;
44533
44609
  falseIcon: NonNullable<IconValue>;
44534
44610
  trueIcon: NonNullable<IconValue>;
44535
44611
  valueComparator: typeof deepEqual;
@@ -44591,7 +44667,9 @@ declare const VRadio: {
44591
44667
  multiple: boolean | null;
44592
44668
  readonly: boolean | null;
44593
44669
  density: Density;
44594
- ripple: boolean;
44670
+ ripple: boolean | {
44671
+ class: string;
44672
+ } | undefined;
44595
44673
  falseIcon: NonNullable<IconValue>;
44596
44674
  trueIcon: NonNullable<IconValue>;
44597
44675
  valueComparator: typeof deepEqual;
@@ -44626,7 +44704,9 @@ declare const VRadio: {
44626
44704
  multiple: boolean | null;
44627
44705
  readonly: boolean | null;
44628
44706
  density: Density;
44629
- ripple: boolean;
44707
+ ripple: boolean | {
44708
+ class: string;
44709
+ } | undefined;
44630
44710
  falseIcon: NonNullable<IconValue>;
44631
44711
  trueIcon: NonNullable<IconValue>;
44632
44712
  valueComparator: typeof deepEqual;
@@ -44688,7 +44768,9 @@ declare const VRadio: {
44688
44768
  multiple: boolean | null;
44689
44769
  readonly: boolean | null;
44690
44770
  density: Density;
44691
- ripple: boolean;
44771
+ ripple: boolean | {
44772
+ class: string;
44773
+ } | undefined;
44692
44774
  falseIcon: NonNullable<IconValue>;
44693
44775
  trueIcon: NonNullable<IconValue>;
44694
44776
  valueComparator: typeof deepEqual;
@@ -44704,7 +44786,9 @@ declare const VRadio: {
44704
44786
  multiple: boolean | null;
44705
44787
  readonly: boolean | null;
44706
44788
  density: Density;
44707
- ripple: boolean;
44789
+ ripple: boolean | {
44790
+ class: string;
44791
+ } | undefined;
44708
44792
  falseIcon: NonNullable<IconValue>;
44709
44793
  trueIcon: NonNullable<IconValue>;
44710
44794
  valueComparator: typeof deepEqual;
@@ -44766,7 +44850,9 @@ declare const VRadio: {
44766
44850
  multiple: boolean | null;
44767
44851
  readonly: boolean | null;
44768
44852
  density: Density;
44769
- ripple: boolean;
44853
+ ripple: boolean | {
44854
+ class: string;
44855
+ } | undefined;
44770
44856
  falseIcon: NonNullable<IconValue>;
44771
44857
  trueIcon: NonNullable<IconValue>;
44772
44858
  valueComparator: typeof deepEqual;
@@ -44816,7 +44902,9 @@ declare const VRadio: {
44816
44902
  default: NonNullable<IconValue>;
44817
44903
  };
44818
44904
  ripple: {
44819
- type: BooleanConstructor;
44905
+ type: vue.PropType<boolean | {
44906
+ class: string;
44907
+ } | undefined>;
44820
44908
  default: boolean;
44821
44909
  };
44822
44910
  multiple: {
@@ -44869,7 +44957,9 @@ declare const VRadio: {
44869
44957
  default: NonNullable<IconValue>;
44870
44958
  };
44871
44959
  ripple: {
44872
- type: BooleanConstructor;
44960
+ type: vue.PropType<boolean | {
44961
+ class: string;
44962
+ } | undefined>;
44873
44963
  default: boolean;
44874
44964
  };
44875
44965
  multiple: {
@@ -44918,7 +45008,9 @@ declare const VRadioGroup: {
44918
45008
  maxErrors: string | number;
44919
45009
  rules: readonly ValidationRule$1[];
44920
45010
  density: Density;
44921
- ripple: boolean;
45011
+ ripple: boolean | {
45012
+ class: string;
45013
+ } | undefined;
44922
45014
  falseIcon: IconValue;
44923
45015
  trueIcon: IconValue;
44924
45016
  valueComparator: typeof deepEqual;
@@ -44959,7 +45051,9 @@ declare const VRadioGroup: {
44959
45051
  maxErrors: string | number;
44960
45052
  rules: readonly ValidationRule$1[];
44961
45053
  density: Density;
44962
- ripple: boolean;
45054
+ ripple: boolean | {
45055
+ class: string;
45056
+ } | undefined;
44963
45057
  falseIcon: IconValue;
44964
45058
  trueIcon: IconValue;
44965
45059
  valueComparator: typeof deepEqual;
@@ -44998,7 +45092,9 @@ declare const VRadioGroup: {
44998
45092
  maxErrors: string | number;
44999
45093
  rules: readonly ValidationRule$1[];
45000
45094
  density: Density;
45001
- ripple: boolean;
45095
+ ripple: boolean | {
45096
+ class: string;
45097
+ } | undefined;
45002
45098
  falseIcon: IconValue;
45003
45099
  trueIcon: IconValue;
45004
45100
  valueComparator: typeof deepEqual;
@@ -45049,7 +45145,9 @@ declare const VRadioGroup: {
45049
45145
  maxErrors: string | number;
45050
45146
  rules: readonly ValidationRule$1[];
45051
45147
  density: Density;
45052
- ripple: boolean;
45148
+ ripple: boolean | {
45149
+ class: string;
45150
+ } | undefined;
45053
45151
  falseIcon: IconValue;
45054
45152
  trueIcon: IconValue;
45055
45153
  valueComparator: typeof deepEqual;
@@ -45088,7 +45186,9 @@ declare const VRadioGroup: {
45088
45186
  maxErrors: string | number;
45089
45187
  rules: readonly ValidationRule$1[];
45090
45188
  density: Density;
45091
- ripple: boolean;
45189
+ ripple: boolean | {
45190
+ class: string;
45191
+ } | undefined;
45092
45192
  falseIcon: IconValue;
45093
45193
  trueIcon: IconValue;
45094
45194
  valueComparator: typeof deepEqual;
@@ -45114,7 +45214,9 @@ declare const VRadioGroup: {
45114
45214
  maxErrors: string | number;
45115
45215
  rules: readonly ValidationRule$1[];
45116
45216
  density: Density;
45117
- ripple: boolean;
45217
+ ripple: boolean | {
45218
+ class: string;
45219
+ } | undefined;
45118
45220
  falseIcon: IconValue;
45119
45221
  trueIcon: IconValue;
45120
45222
  valueComparator: typeof deepEqual;
@@ -45155,7 +45257,9 @@ declare const VRadioGroup: {
45155
45257
  maxErrors: string | number;
45156
45258
  rules: readonly ValidationRule$1[];
45157
45259
  density: Density;
45158
- ripple: boolean;
45260
+ ripple: boolean | {
45261
+ class: string;
45262
+ } | undefined;
45159
45263
  falseIcon: IconValue;
45160
45264
  trueIcon: IconValue;
45161
45265
  valueComparator: typeof deepEqual;
@@ -45229,7 +45333,9 @@ declare const VRadioGroup: {
45229
45333
  validator: (v: any) => boolean;
45230
45334
  };
45231
45335
  ripple: {
45232
- type: BooleanConstructor;
45336
+ type: vue.PropType<boolean | {
45337
+ class: string;
45338
+ } | undefined>;
45233
45339
  default: boolean;
45234
45340
  };
45235
45341
  defaultsTarget: StringConstructor;
@@ -45318,7 +45424,9 @@ declare const VRadioGroup: {
45318
45424
  validator: (v: any) => boolean;
45319
45425
  };
45320
45426
  ripple: {
45321
- type: BooleanConstructor;
45427
+ type: vue.PropType<boolean | {
45428
+ class: string;
45429
+ } | undefined>;
45322
45430
  default: boolean;
45323
45431
  };
45324
45432
  defaultsTarget: StringConstructor;
@@ -56006,7 +56114,9 @@ declare const VSwitch: {
56006
56114
  maxErrors: string | number;
56007
56115
  rules: readonly ValidationRule$1[];
56008
56116
  density: Density;
56009
- ripple: boolean;
56117
+ ripple: boolean | {
56118
+ class: string;
56119
+ } | undefined;
56010
56120
  valueComparator: typeof deepEqual;
56011
56121
  centerAffix: boolean;
56012
56122
  hideSpinButtons: boolean;
@@ -56060,7 +56170,9 @@ declare const VSwitch: {
56060
56170
  maxErrors: string | number;
56061
56171
  rules: readonly ValidationRule$1[];
56062
56172
  density: Density;
56063
- ripple: boolean;
56173
+ ripple: boolean | {
56174
+ class: string;
56175
+ } | undefined;
56064
56176
  valueComparator: typeof deepEqual;
56065
56177
  centerAffix: boolean;
56066
56178
  hideSpinButtons: boolean;
@@ -56110,7 +56222,9 @@ declare const VSwitch: {
56110
56222
  maxErrors: string | number;
56111
56223
  rules: readonly ValidationRule$1[];
56112
56224
  density: Density;
56113
- ripple: boolean;
56225
+ ripple: boolean | {
56226
+ class: string;
56227
+ } | undefined;
56114
56228
  valueComparator: typeof deepEqual;
56115
56229
  centerAffix: boolean;
56116
56230
  hideSpinButtons: boolean;
@@ -56182,7 +56296,9 @@ declare const VSwitch: {
56182
56296
  maxErrors: string | number;
56183
56297
  rules: readonly ValidationRule$1[];
56184
56298
  density: Density;
56185
- ripple: boolean;
56299
+ ripple: boolean | {
56300
+ class: string;
56301
+ } | undefined;
56186
56302
  valueComparator: typeof deepEqual;
56187
56303
  centerAffix: boolean;
56188
56304
  hideSpinButtons: boolean;
@@ -56232,7 +56348,9 @@ declare const VSwitch: {
56232
56348
  maxErrors: string | number;
56233
56349
  rules: readonly ValidationRule$1[];
56234
56350
  density: Density;
56235
- ripple: boolean;
56351
+ ripple: boolean | {
56352
+ class: string;
56353
+ } | undefined;
56236
56354
  valueComparator: typeof deepEqual;
56237
56355
  centerAffix: boolean;
56238
56356
  hideSpinButtons: boolean;
@@ -56259,7 +56377,9 @@ declare const VSwitch: {
56259
56377
  maxErrors: string | number;
56260
56378
  rules: readonly ValidationRule$1[];
56261
56379
  density: Density;
56262
- ripple: boolean;
56380
+ ripple: boolean | {
56381
+ class: string;
56382
+ } | undefined;
56263
56383
  valueComparator: typeof deepEqual;
56264
56384
  centerAffix: boolean;
56265
56385
  hideSpinButtons: boolean;
@@ -56313,7 +56433,9 @@ declare const VSwitch: {
56313
56433
  maxErrors: string | number;
56314
56434
  rules: readonly ValidationRule$1[];
56315
56435
  density: Density;
56316
- ripple: boolean;
56436
+ ripple: boolean | {
56437
+ class: string;
56438
+ } | undefined;
56317
56439
  valueComparator: typeof deepEqual;
56318
56440
  centerAffix: boolean;
56319
56441
  hideSpinButtons: boolean;
@@ -56390,7 +56512,9 @@ declare const VSwitch: {
56390
56512
  falseIcon: vue.PropType<IconValue>;
56391
56513
  trueIcon: vue.PropType<IconValue>;
56392
56514
  ripple: {
56393
- type: BooleanConstructor;
56515
+ type: vue.PropType<boolean | {
56516
+ class: string;
56517
+ } | undefined>;
56394
56518
  default: boolean;
56395
56519
  };
56396
56520
  multiple: {
@@ -56481,7 +56605,9 @@ declare const VSwitch: {
56481
56605
  falseIcon: vue.PropType<IconValue>;
56482
56606
  trueIcon: vue.PropType<IconValue>;
56483
56607
  ripple: {
56484
- type: BooleanConstructor;
56608
+ type: vue.PropType<boolean | {
56609
+ class: string;
56610
+ } | undefined>;
56485
56611
  default: boolean;
56486
56612
  };
56487
56613
  multiple: {
@@ -59215,8 +59341,8 @@ declare const VTextarea: {
59215
59341
  hint?: string | undefined;
59216
59342
  hideDetails?: boolean | "auto" | undefined;
59217
59343
  } & {}, {
59218
- reset: () => void;
59219
- resetValidation: () => void;
59344
+ reset: () => Promise<void>;
59345
+ resetValidation: () => Promise<void>;
59220
59346
  validate: (silent?: boolean) => Promise<string[]>;
59221
59347
  isValid: vue.ComputedRef<boolean | null>;
59222
59348
  errorMessages: vue.ComputedRef<string[]>;
@@ -59303,8 +59429,8 @@ declare const VTextarea: {
59303
59429
  hint?: string | undefined;
59304
59430
  hideDetails?: boolean | "auto" | undefined;
59305
59431
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
59306
- reset: () => void;
59307
- resetValidation: () => void;
59432
+ reset: () => Promise<void>;
59433
+ resetValidation: () => Promise<void>;
59308
59434
  validate: (silent?: boolean) => Promise<string[]>;
59309
59435
  isValid: vue.ComputedRef<boolean | null>;
59310
59436
  errorMessages: vue.ComputedRef<string[]>;
@@ -59750,8 +59876,8 @@ declare const VTextarea: {
59750
59876
  hint?: string | undefined;
59751
59877
  hideDetails?: boolean | "auto" | undefined;
59752
59878
  } & {}, {
59753
- reset: () => void;
59754
- resetValidation: () => void;
59879
+ reset: () => Promise<void>;
59880
+ resetValidation: () => Promise<void>;
59755
59881
  validate: (silent?: boolean) => Promise<string[]>;
59756
59882
  isValid: vue.ComputedRef<boolean | null>;
59757
59883
  errorMessages: vue.ComputedRef<string[]>;
@@ -59838,8 +59964,8 @@ declare const VTextarea: {
59838
59964
  hint?: string | undefined;
59839
59965
  hideDetails?: boolean | "auto" | undefined;
59840
59966
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
59841
- reset: () => void;
59842
- resetValidation: () => void;
59967
+ reset: () => Promise<void>;
59968
+ resetValidation: () => Promise<void>;
59843
59969
  validate: (silent?: boolean) => Promise<string[]>;
59844
59970
  isValid: vue.ComputedRef<boolean | null>;
59845
59971
  errorMessages: vue.ComputedRef<string[]>;
@@ -60129,8 +60255,8 @@ declare const VTextarea: {
60129
60255
  hint?: string | undefined;
60130
60256
  hideDetails?: boolean | "auto" | undefined;
60131
60257
  } & {}, {
60132
- reset: () => void;
60133
- resetValidation: () => void;
60258
+ reset: () => Promise<void>;
60259
+ resetValidation: () => Promise<void>;
60134
60260
  validate: (silent?: boolean) => Promise<string[]>;
60135
60261
  isValid: vue.ComputedRef<boolean | null>;
60136
60262
  errorMessages: vue.ComputedRef<string[]>;
@@ -60217,8 +60343,8 @@ declare const VTextarea: {
60217
60343
  hint?: string | undefined;
60218
60344
  hideDetails?: boolean | "auto" | undefined;
60219
60345
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
60220
- reset: () => void;
60221
- resetValidation: () => void;
60346
+ reset: () => Promise<void>;
60347
+ resetValidation: () => Promise<void>;
60222
60348
  validate: (silent?: boolean) => Promise<string[]>;
60223
60349
  isValid: vue.ComputedRef<boolean | null>;
60224
60350
  errorMessages: vue.ComputedRef<string[]>;
@@ -60772,8 +60898,8 @@ declare const VTextField: {
60772
60898
  hint?: string | undefined;
60773
60899
  hideDetails?: boolean | "auto" | undefined;
60774
60900
  } & {}, {
60775
- reset: () => void;
60776
- resetValidation: () => void;
60901
+ reset: () => Promise<void>;
60902
+ resetValidation: () => Promise<void>;
60777
60903
  validate: (silent?: boolean) => Promise<string[]>;
60778
60904
  isValid: vue.ComputedRef<boolean | null>;
60779
60905
  errorMessages: vue.ComputedRef<string[]>;
@@ -60860,8 +60986,8 @@ declare const VTextField: {
60860
60986
  hint?: string | undefined;
60861
60987
  hideDetails?: boolean | "auto" | undefined;
60862
60988
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
60863
- reset: () => void;
60864
- resetValidation: () => void;
60989
+ reset: () => Promise<void>;
60990
+ resetValidation: () => Promise<void>;
60865
60991
  validate: (silent?: boolean) => Promise<string[]>;
60866
60992
  isValid: vue.ComputedRef<boolean | null>;
60867
60993
  errorMessages: vue.ComputedRef<string[]>;
@@ -61566,8 +61692,8 @@ declare const VTextField: {
61566
61692
  hint?: string | undefined;
61567
61693
  hideDetails?: boolean | "auto" | undefined;
61568
61694
  } & {}, {
61569
- reset: () => void;
61570
- resetValidation: () => void;
61695
+ reset: () => Promise<void>;
61696
+ resetValidation: () => Promise<void>;
61571
61697
  validate: (silent?: boolean) => Promise<string[]>;
61572
61698
  isValid: vue.ComputedRef<boolean | null>;
61573
61699
  errorMessages: vue.ComputedRef<string[]>;
@@ -61654,8 +61780,8 @@ declare const VTextField: {
61654
61780
  hint?: string | undefined;
61655
61781
  hideDetails?: boolean | "auto" | undefined;
61656
61782
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
61657
- reset: () => void;
61658
- resetValidation: () => void;
61783
+ reset: () => Promise<void>;
61784
+ resetValidation: () => Promise<void>;
61659
61785
  validate: (silent?: boolean) => Promise<string[]>;
61660
61786
  isValid: vue.ComputedRef<boolean | null>;
61661
61787
  errorMessages: vue.ComputedRef<string[]>;
@@ -62200,8 +62326,8 @@ declare const VTextField: {
62200
62326
  hint?: string | undefined;
62201
62327
  hideDetails?: boolean | "auto" | undefined;
62202
62328
  } & {}, {
62203
- reset: () => void;
62204
- resetValidation: () => void;
62329
+ reset: () => Promise<void>;
62330
+ resetValidation: () => Promise<void>;
62205
62331
  validate: (silent?: boolean) => Promise<string[]>;
62206
62332
  isValid: vue.ComputedRef<boolean | null>;
62207
62333
  errorMessages: vue.ComputedRef<string[]>;
@@ -62288,8 +62414,8 @@ declare const VTextField: {
62288
62414
  hint?: string | undefined;
62289
62415
  hideDetails?: boolean | "auto" | undefined;
62290
62416
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
62291
- reset: () => void;
62292
- resetValidation: () => void;
62417
+ reset: () => Promise<void>;
62418
+ resetValidation: () => Promise<void>;
62293
62419
  validate: (silent?: boolean) => Promise<string[]>;
62294
62420
  isValid: vue.ComputedRef<boolean | null>;
62295
62421
  errorMessages: vue.ComputedRef<string[]>;
@@ -65783,8 +65909,8 @@ declare const VValidation: {
65783
65909
  isPristine: vue.ShallowRef<boolean>;
65784
65910
  isValid: vue.ComputedRef<boolean | null>;
65785
65911
  isValidating: vue.ShallowRef<boolean>;
65786
- reset: () => void;
65787
- resetValidation: () => void;
65912
+ reset: () => Promise<void>;
65913
+ resetValidation: () => Promise<void>;
65788
65914
  validate: (silent?: boolean) => Promise<string[]>;
65789
65915
  validationClasses: vue.ComputedRef<{
65790
65916
  [x: string]: boolean;
@@ -65862,8 +65988,8 @@ declare const VValidation: {
65862
65988
  isPristine: vue.ShallowRef<boolean>;
65863
65989
  isValid: vue.ComputedRef<boolean | null>;
65864
65990
  isValidating: vue.ShallowRef<boolean>;
65865
- reset: () => void;
65866
- resetValidation: () => void;
65991
+ reset: () => Promise<void>;
65992
+ resetValidation: () => Promise<void>;
65867
65993
  validate: (silent?: boolean) => Promise<string[]>;
65868
65994
  validationClasses: vue.ComputedRef<{
65869
65995
  [x: string]: boolean;
@@ -68741,28 +68867,26 @@ declare module '@vue/runtime-core' {
68741
68867
  }
68742
68868
 
68743
68869
  export interface GlobalComponents {
68744
- VApp: typeof import('vuetify/components')['VApp']
68745
68870
  VAppBar: typeof import('vuetify/components')['VAppBar']
68746
68871
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
68747
68872
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
68748
- VAvatar: typeof import('vuetify/components')['VAvatar']
68873
+ VApp: typeof import('vuetify/components')['VApp']
68874
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
68749
68875
  VAlert: typeof import('vuetify/components')['VAlert']
68750
68876
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
68751
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
68752
68877
  VBadge: typeof import('vuetify/components')['VBadge']
68878
+ VAvatar: typeof import('vuetify/components')['VAvatar']
68753
68879
  VBanner: typeof import('vuetify/components')['VBanner']
68754
68880
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
68755
68881
  VBannerText: typeof import('vuetify/components')['VBannerText']
68756
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
68757
- VBtn: typeof import('vuetify/components')['VBtn']
68882
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
68758
68883
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
68759
68884
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
68760
68885
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
68886
+ VBtn: typeof import('vuetify/components')['VBtn']
68887
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
68761
68888
  VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
68762
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
68763
68889
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
68764
- VCarousel: typeof import('vuetify/components')['VCarousel']
68765
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
68766
68890
  VCard: typeof import('vuetify/components')['VCard']
68767
68891
  VCardActions: typeof import('vuetify/components')['VCardActions']
68768
68892
  VCardItem: typeof import('vuetify/components')['VCardItem']
@@ -68771,11 +68895,12 @@ declare module '@vue/runtime-core' {
68771
68895
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
68772
68896
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
68773
68897
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
68774
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
68898
+ VCarousel: typeof import('vuetify/components')['VCarousel']
68899
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
68775
68900
  VChip: typeof import('vuetify/components')['VChip']
68776
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
68777
- VCounter: typeof import('vuetify/components')['VCounter']
68778
68901
  VCode: typeof import('vuetify/components')['VCode']
68902
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
68903
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
68779
68904
  VCombobox: typeof import('vuetify/components')['VCombobox']
68780
68905
  VDataTable: typeof import('vuetify/components')['VDataTable']
68781
68906
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
@@ -68784,34 +68909,35 @@ declare module '@vue/runtime-core' {
68784
68909
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
68785
68910
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
68786
68911
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
68912
+ VCounter: typeof import('vuetify/components')['VCounter']
68787
68913
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
68788
68914
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
68789
68915
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
68790
68916
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
68791
68917
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
68792
68918
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
68793
- VDialog: typeof import('vuetify/components')['VDialog']
68794
- VDivider: typeof import('vuetify/components')['VDivider']
68795
- VField: typeof import('vuetify/components')['VField']
68796
- VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
68797
- VFooter: typeof import('vuetify/components')['VFooter']
68798
68919
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
68799
68920
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
68800
68921
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
68801
68922
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
68923
+ VDialog: typeof import('vuetify/components')['VDialog']
68924
+ VDivider: typeof import('vuetify/components')['VDivider']
68925
+ VField: typeof import('vuetify/components')['VField']
68926
+ VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
68802
68927
  VFileInput: typeof import('vuetify/components')['VFileInput']
68803
- VImg: typeof import('vuetify/components')['VImg']
68804
68928
  VIcon: typeof import('vuetify/components')['VIcon']
68805
68929
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
68806
68930
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
68807
68931
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
68808
68932
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
68933
+ VFooter: typeof import('vuetify/components')['VFooter']
68809
68934
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
68810
68935
  VInput: typeof import('vuetify/components')['VInput']
68936
+ VImg: typeof import('vuetify/components')['VImg']
68811
68937
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
68812
68938
  VItem: typeof import('vuetify/components')['VItem']
68813
- VLabel: typeof import('vuetify/components')['VLabel']
68814
68939
  VKbd: typeof import('vuetify/components')['VKbd']
68940
+ VLabel: typeof import('vuetify/components')['VLabel']
68815
68941
  VList: typeof import('vuetify/components')['VList']
68816
68942
  VListGroup: typeof import('vuetify/components')['VListGroup']
68817
68943
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -68822,65 +68948,64 @@ declare module '@vue/runtime-core' {
68822
68948
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
68823
68949
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
68824
68950
  VMain: typeof import('vuetify/components')['VMain']
68951
+ VMenu: typeof import('vuetify/components')['VMenu']
68825
68952
  VMessages: typeof import('vuetify/components')['VMessages']
68826
68953
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
68827
- VMenu: typeof import('vuetify/components')['VMenu']
68828
68954
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
68955
+ VPagination: typeof import('vuetify/components')['VPagination']
68829
68956
  VOverlay: typeof import('vuetify/components')['VOverlay']
68830
68957
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
68831
- VPagination: typeof import('vuetify/components')['VPagination']
68832
68958
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
68833
68959
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
68834
68960
  VRating: typeof import('vuetify/components')['VRating']
68835
- VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
68836
68961
  VSelect: typeof import('vuetify/components')['VSelect']
68962
+ VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
68963
+ VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
68837
68964
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
68838
- VSheet: typeof import('vuetify/components')['VSheet']
68839
68965
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
68840
68966
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
68841
- VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
68967
+ VSheet: typeof import('vuetify/components')['VSheet']
68968
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
68842
68969
  VStepper: typeof import('vuetify/components')['VStepper']
68843
68970
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
68844
68971
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
68845
68972
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
68846
68973
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
68847
68974
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
68975
+ VTabs: typeof import('vuetify/components')['VTabs']
68976
+ VTab: typeof import('vuetify/components')['VTab']
68848
68977
  VSlider: typeof import('vuetify/components')['VSlider']
68849
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
68850
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
68851
- VTable: typeof import('vuetify/components')['VTable']
68852
68978
  VSwitch: typeof import('vuetify/components')['VSwitch']
68853
- VTextarea: typeof import('vuetify/components')['VTextarea']
68979
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
68854
68980
  VTextField: typeof import('vuetify/components')['VTextField']
68855
- VTooltip: typeof import('vuetify/components')['VTooltip']
68856
- VTabs: typeof import('vuetify/components')['VTabs']
68857
- VTab: typeof import('vuetify/components')['VTab']
68981
+ VTextarea: typeof import('vuetify/components')['VTextarea']
68982
+ VTable: typeof import('vuetify/components')['VTable']
68983
+ VWindow: typeof import('vuetify/components')['VWindow']
68984
+ VWindowItem: typeof import('vuetify/components')['VWindowItem']
68858
68985
  VTimeline: typeof import('vuetify/components')['VTimeline']
68859
68986
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
68860
68987
  VToolbar: typeof import('vuetify/components')['VToolbar']
68861
68988
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
68862
68989
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
68863
- VWindow: typeof import('vuetify/components')['VWindow']
68864
- VWindowItem: typeof import('vuetify/components')['VWindowItem']
68990
+ VTooltip: typeof import('vuetify/components')['VTooltip']
68865
68991
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
68866
68992
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
68867
68993
  VForm: typeof import('vuetify/components')['VForm']
68994
+ VHover: typeof import('vuetify/components')['VHover']
68868
68995
  VContainer: typeof import('vuetify/components')['VContainer']
68869
68996
  VCol: typeof import('vuetify/components')['VCol']
68870
68997
  VRow: typeof import('vuetify/components')['VRow']
68871
68998
  VSpacer: typeof import('vuetify/components')['VSpacer']
68872
- VHover: typeof import('vuetify/components')['VHover']
68873
- VLazy: typeof import('vuetify/components')['VLazy']
68874
- VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
68875
68999
  VLayout: typeof import('vuetify/components')['VLayout']
68876
69000
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
69001
+ VLazy: typeof import('vuetify/components')['VLazy']
69002
+ VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
68877
69003
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
68878
69004
  VParallax: typeof import('vuetify/components')['VParallax']
68879
69005
  VRadio: typeof import('vuetify/components')['VRadio']
68880
69006
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
68881
69007
  VResponsive: typeof import('vuetify/components')['VResponsive']
68882
69008
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
68883
- VValidation: typeof import('vuetify/components')['VValidation']
68884
69009
  VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
68885
69010
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
68886
69011
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
@@ -68898,6 +69023,7 @@ declare module '@vue/runtime-core' {
68898
69023
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
68899
69024
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
68900
69025
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
69026
+ VValidation: typeof import('vuetify/components')['VValidation']
68901
69027
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
68902
69028
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
68903
69029
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
@@ -68906,9 +69032,12 @@ declare module '@vue/runtime-core' {
68906
69032
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
68907
69033
  VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
68908
69034
  VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
69035
+ VFab: typeof import('vuetify/labs/components')['VFab']
68909
69036
  VPicker: typeof import('vuetify/labs/components')['VPicker']
68910
69037
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
68911
- VFab: typeof import('vuetify/labs/components')['VFab']
69038
+ VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
69039
+ VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
69040
+ VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
68912
69041
  VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
68913
69042
  VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
68914
69043
  VSparkline: typeof import('vuetify/labs/components')['VSparkline']