vuetify 3.5.11 → 3.5.12

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 +22 -10
  4. package/dist/json/importMap.json +124 -124
  5. package/dist/json/tags.json +71 -0
  6. package/dist/json/web-types.json +747 -38
  7. package/dist/vuetify-labs.css +2339 -2089
  8. package/dist/vuetify-labs.d.ts +1117 -154
  9. package/dist/vuetify-labs.esm.js +675 -25
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +675 -25
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +1661 -1652
  14. package/dist/vuetify.d.ts +321 -192
  15. package/dist/vuetify.esm.js +33 -19
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +33 -19
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +93 -92
  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 +16 -8
  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 +42 -39
  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
@@ -3138,8 +3138,8 @@ declare function useValidation(props: ValidationProps, name?: string, id?: Maybe
3138
3138
  isPristine: vue.ShallowRef<boolean>;
3139
3139
  isValid: vue.ComputedRef<boolean | null>;
3140
3140
  isValidating: vue.ShallowRef<boolean>;
3141
- reset: () => void;
3142
- resetValidation: () => void;
3141
+ reset: () => Promise<void>;
3142
+ resetValidation: () => Promise<void>;
3143
3143
  validate: (silent?: boolean) => Promise<string[]>;
3144
3144
  validationClasses: vue.ComputedRef<{
3145
3145
  [x: string]: boolean;
@@ -3416,8 +3416,8 @@ declare const VInput: {
3416
3416
  hint?: string | undefined;
3417
3417
  hideDetails?: boolean | "auto" | undefined;
3418
3418
  } & {}, {
3419
- reset: () => void;
3420
- resetValidation: () => void;
3419
+ reset: () => Promise<void>;
3420
+ resetValidation: () => Promise<void>;
3421
3421
  validate: (silent?: boolean) => Promise<string[]>;
3422
3422
  isValid: ComputedRef<boolean | null>;
3423
3423
  errorMessages: ComputedRef<string[]>;
@@ -3520,8 +3520,8 @@ declare const VInput: {
3520
3520
  hint?: string | undefined;
3521
3521
  hideDetails?: boolean | "auto" | undefined;
3522
3522
  } & {}, {
3523
- reset: () => void;
3524
- resetValidation: () => void;
3523
+ reset: () => Promise<void>;
3524
+ resetValidation: () => Promise<void>;
3525
3525
  validate: (silent?: boolean) => Promise<string[]>;
3526
3526
  isValid: ComputedRef<boolean | null>;
3527
3527
  errorMessages: ComputedRef<string[]>;
@@ -3574,8 +3574,8 @@ declare const VInput: {
3574
3574
  hint?: string | undefined;
3575
3575
  hideDetails?: boolean | "auto" | undefined;
3576
3576
  } & {}, {
3577
- reset: () => void;
3578
- resetValidation: () => void;
3577
+ reset: () => Promise<void>;
3578
+ resetValidation: () => Promise<void>;
3579
3579
  validate: (silent?: boolean) => Promise<string[]>;
3580
3580
  isValid: ComputedRef<boolean | null>;
3581
3581
  errorMessages: ComputedRef<string[]>;
@@ -14882,7 +14882,9 @@ declare const VSelectionControlGroup: {
14882
14882
  multiple: boolean | null;
14883
14883
  readonly: boolean | null;
14884
14884
  density: Density;
14885
- ripple: boolean;
14885
+ ripple: boolean | {
14886
+ class: string;
14887
+ } | undefined;
14886
14888
  defaultsTarget: string;
14887
14889
  valueComparator: typeof deepEqual;
14888
14890
  } & {
@@ -14904,7 +14906,9 @@ declare const VSelectionControlGroup: {
14904
14906
  multiple: boolean | null;
14905
14907
  readonly: boolean | null;
14906
14908
  density: Density;
14907
- ripple: boolean;
14909
+ ripple: boolean | {
14910
+ class: string;
14911
+ } | undefined;
14908
14912
  defaultsTarget: string;
14909
14913
  valueComparator: typeof deepEqual;
14910
14914
  } & {
@@ -14924,7 +14928,9 @@ declare const VSelectionControlGroup: {
14924
14928
  multiple: boolean | null;
14925
14929
  readonly: boolean | null;
14926
14930
  density: Density;
14927
- ripple: boolean;
14931
+ ripple: boolean | {
14932
+ class: string;
14933
+ } | undefined;
14928
14934
  defaultsTarget: string;
14929
14935
  valueComparator: typeof deepEqual;
14930
14936
  }, true, {}, vue.SlotsType<Partial<{
@@ -14946,7 +14952,9 @@ declare const VSelectionControlGroup: {
14946
14952
  multiple: boolean | null;
14947
14953
  readonly: boolean | null;
14948
14954
  density: Density;
14949
- ripple: boolean;
14955
+ ripple: boolean | {
14956
+ class: string;
14957
+ } | undefined;
14950
14958
  defaultsTarget: string;
14951
14959
  valueComparator: typeof deepEqual;
14952
14960
  } & {
@@ -14966,7 +14974,9 @@ declare const VSelectionControlGroup: {
14966
14974
  multiple: boolean | null;
14967
14975
  readonly: boolean | null;
14968
14976
  density: Density;
14969
- ripple: boolean;
14977
+ ripple: boolean | {
14978
+ class: string;
14979
+ } | undefined;
14970
14980
  defaultsTarget: string;
14971
14981
  valueComparator: typeof deepEqual;
14972
14982
  }>;
@@ -14981,7 +14991,9 @@ declare const VSelectionControlGroup: {
14981
14991
  multiple: boolean | null;
14982
14992
  readonly: boolean | null;
14983
14993
  density: Density;
14984
- ripple: boolean;
14994
+ ripple: boolean | {
14995
+ class: string;
14996
+ } | undefined;
14985
14997
  defaultsTarget: string;
14986
14998
  valueComparator: typeof deepEqual;
14987
14999
  } & {
@@ -15003,7 +15015,9 @@ declare const VSelectionControlGroup: {
15003
15015
  multiple: boolean | null;
15004
15016
  readonly: boolean | null;
15005
15017
  density: Density;
15006
- ripple: boolean;
15018
+ ripple: boolean | {
15019
+ class: string;
15020
+ } | undefined;
15007
15021
  defaultsTarget: string;
15008
15022
  valueComparator: typeof deepEqual;
15009
15023
  }, {}, string, vue.SlotsType<Partial<{
@@ -15047,7 +15061,9 @@ declare const VSelectionControlGroup: {
15047
15061
  falseIcon: PropType<IconValue>;
15048
15062
  trueIcon: PropType<IconValue>;
15049
15063
  ripple: {
15050
- type: BooleanConstructor;
15064
+ type: PropType<boolean | {
15065
+ class: string;
15066
+ } | undefined>;
15051
15067
  default: boolean;
15052
15068
  };
15053
15069
  multiple: {
@@ -15092,7 +15108,9 @@ declare const VSelectionControlGroup: {
15092
15108
  falseIcon: PropType<IconValue>;
15093
15109
  trueIcon: PropType<IconValue>;
15094
15110
  ripple: {
15095
- type: BooleanConstructor;
15111
+ type: PropType<boolean | {
15112
+ class: string;
15113
+ } | undefined>;
15096
15114
  default: boolean;
15097
15115
  };
15098
15116
  multiple: {
@@ -15147,7 +15165,9 @@ declare const VSelectionControl: {
15147
15165
  multiple: boolean | null;
15148
15166
  readonly: boolean | null;
15149
15167
  density: Density;
15150
- ripple: boolean;
15168
+ ripple: boolean | {
15169
+ class: string;
15170
+ } | undefined;
15151
15171
  valueComparator: typeof deepEqual;
15152
15172
  } & {
15153
15173
  type?: string | undefined;
@@ -15177,7 +15197,9 @@ declare const VSelectionControl: {
15177
15197
  multiple: boolean | null;
15178
15198
  readonly: boolean | null;
15179
15199
  density: Density;
15180
- ripple: boolean;
15200
+ ripple: boolean | {
15201
+ class: string;
15202
+ } | undefined;
15181
15203
  valueComparator: typeof deepEqual;
15182
15204
  } & {
15183
15205
  type?: string | undefined;
@@ -15202,7 +15224,9 @@ declare const VSelectionControl: {
15202
15224
  multiple: boolean | null;
15203
15225
  readonly: boolean | null;
15204
15226
  density: Density;
15205
- ripple: boolean;
15227
+ ripple: boolean | {
15228
+ class: string;
15229
+ } | undefined;
15206
15230
  valueComparator: typeof deepEqual;
15207
15231
  }, true, {}, vue.SlotsType<Partial<{
15208
15232
  default: (arg: {
@@ -15235,7 +15259,9 @@ declare const VSelectionControl: {
15235
15259
  multiple: boolean | null;
15236
15260
  readonly: boolean | null;
15237
15261
  density: Density;
15238
- ripple: boolean;
15262
+ ripple: boolean | {
15263
+ class: string;
15264
+ } | undefined;
15239
15265
  valueComparator: typeof deepEqual;
15240
15266
  } & {
15241
15267
  type?: string | undefined;
@@ -15263,7 +15289,9 @@ declare const VSelectionControl: {
15263
15289
  multiple: boolean | null;
15264
15290
  readonly: boolean | null;
15265
15291
  density: Density;
15266
- ripple: boolean;
15292
+ ripple: boolean | {
15293
+ class: string;
15294
+ } | undefined;
15267
15295
  valueComparator: typeof deepEqual;
15268
15296
  }>;
15269
15297
  __isFragment?: undefined;
@@ -15277,7 +15305,9 @@ declare const VSelectionControl: {
15277
15305
  multiple: boolean | null;
15278
15306
  readonly: boolean | null;
15279
15307
  density: Density;
15280
- ripple: boolean;
15308
+ ripple: boolean | {
15309
+ class: string;
15310
+ } | undefined;
15281
15311
  valueComparator: typeof deepEqual;
15282
15312
  } & {
15283
15313
  type?: string | undefined;
@@ -15307,7 +15337,9 @@ declare const VSelectionControl: {
15307
15337
  multiple: boolean | null;
15308
15338
  readonly: boolean | null;
15309
15339
  density: Density;
15310
- ripple: boolean;
15340
+ ripple: boolean | {
15341
+ class: string;
15342
+ } | undefined;
15311
15343
  valueComparator: typeof deepEqual;
15312
15344
  }, {}, string, vue.SlotsType<Partial<{
15313
15345
  default: (arg: {
@@ -15355,7 +15387,9 @@ declare const VSelectionControl: {
15355
15387
  falseIcon: vue.PropType<IconValue>;
15356
15388
  trueIcon: vue.PropType<IconValue>;
15357
15389
  ripple: {
15358
- type: BooleanConstructor;
15390
+ type: vue.PropType<boolean | {
15391
+ class: string;
15392
+ } | undefined>;
15359
15393
  default: boolean;
15360
15394
  };
15361
15395
  multiple: {
@@ -15402,7 +15436,9 @@ declare const VSelectionControl: {
15402
15436
  falseIcon: vue.PropType<IconValue>;
15403
15437
  trueIcon: vue.PropType<IconValue>;
15404
15438
  ripple: {
15405
- type: BooleanConstructor;
15439
+ type: vue.PropType<boolean | {
15440
+ class: string;
15441
+ } | undefined>;
15406
15442
  default: boolean;
15407
15443
  };
15408
15444
  multiple: {
@@ -15444,7 +15480,9 @@ declare const VCheckbox: {
15444
15480
  maxErrors: string | number;
15445
15481
  rules: readonly ValidationRule$1[];
15446
15482
  density: Density;
15447
- ripple: boolean;
15483
+ ripple: boolean | {
15484
+ class: string;
15485
+ } | undefined;
15448
15486
  falseIcon: NonNullable<IconValue>;
15449
15487
  trueIcon: NonNullable<IconValue>;
15450
15488
  valueComparator: typeof deepEqual;
@@ -15493,7 +15531,9 @@ declare const VCheckbox: {
15493
15531
  maxErrors: string | number;
15494
15532
  rules: readonly ValidationRule$1[];
15495
15533
  density: Density;
15496
- ripple: boolean;
15534
+ ripple: boolean | {
15535
+ class: string;
15536
+ } | undefined;
15497
15537
  falseIcon: NonNullable<IconValue>;
15498
15538
  trueIcon: NonNullable<IconValue>;
15499
15539
  valueComparator: typeof deepEqual;
@@ -15539,7 +15579,9 @@ declare const VCheckbox: {
15539
15579
  maxErrors: string | number;
15540
15580
  rules: readonly ValidationRule$1[];
15541
15581
  density: Density;
15542
- ripple: boolean;
15582
+ ripple: boolean | {
15583
+ class: string;
15584
+ } | undefined;
15543
15585
  falseIcon: NonNullable<IconValue>;
15544
15586
  trueIcon: NonNullable<IconValue>;
15545
15587
  valueComparator: typeof deepEqual;
@@ -15596,7 +15638,9 @@ declare const VCheckbox: {
15596
15638
  maxErrors: string | number;
15597
15639
  rules: readonly ValidationRule$1[];
15598
15640
  density: Density;
15599
- ripple: boolean;
15641
+ ripple: boolean | {
15642
+ class: string;
15643
+ } | undefined;
15600
15644
  falseIcon: NonNullable<IconValue>;
15601
15645
  trueIcon: NonNullable<IconValue>;
15602
15646
  valueComparator: typeof deepEqual;
@@ -15642,7 +15686,9 @@ declare const VCheckbox: {
15642
15686
  maxErrors: string | number;
15643
15687
  rules: readonly ValidationRule$1[];
15644
15688
  density: Density;
15645
- ripple: boolean;
15689
+ ripple: boolean | {
15690
+ class: string;
15691
+ } | undefined;
15646
15692
  falseIcon: NonNullable<IconValue>;
15647
15693
  trueIcon: NonNullable<IconValue>;
15648
15694
  valueComparator: typeof deepEqual;
@@ -15668,7 +15714,9 @@ declare const VCheckbox: {
15668
15714
  maxErrors: string | number;
15669
15715
  rules: readonly ValidationRule$1[];
15670
15716
  density: Density;
15671
- ripple: boolean;
15717
+ ripple: boolean | {
15718
+ class: string;
15719
+ } | undefined;
15672
15720
  falseIcon: NonNullable<IconValue>;
15673
15721
  trueIcon: NonNullable<IconValue>;
15674
15722
  valueComparator: typeof deepEqual;
@@ -15717,7 +15765,9 @@ declare const VCheckbox: {
15717
15765
  maxErrors: string | number;
15718
15766
  rules: readonly ValidationRule$1[];
15719
15767
  density: Density;
15720
- ripple: boolean;
15768
+ ripple: boolean | {
15769
+ class: string;
15770
+ } | undefined;
15721
15771
  falseIcon: NonNullable<IconValue>;
15722
15772
  trueIcon: NonNullable<IconValue>;
15723
15773
  valueComparator: typeof deepEqual;
@@ -15793,7 +15843,9 @@ declare const VCheckbox: {
15793
15843
  validator: (v: any) => boolean;
15794
15844
  };
15795
15845
  ripple: {
15796
- type: BooleanConstructor;
15846
+ type: vue.PropType<boolean | {
15847
+ class: string;
15848
+ } | undefined>;
15797
15849
  default: boolean;
15798
15850
  };
15799
15851
  defaultsTarget: StringConstructor;
@@ -15887,7 +15939,9 @@ declare const VCheckbox: {
15887
15939
  validator: (v: any) => boolean;
15888
15940
  };
15889
15941
  ripple: {
15890
- type: BooleanConstructor;
15942
+ type: vue.PropType<boolean | {
15943
+ class: string;
15944
+ } | undefined>;
15891
15945
  default: boolean;
15892
15946
  };
15893
15947
  defaultsTarget: StringConstructor;
@@ -15960,7 +16014,9 @@ declare const VCheckboxBtn: {
15960
16014
  readonly: boolean | null;
15961
16015
  indeterminate: boolean;
15962
16016
  density: Density;
15963
- ripple: boolean;
16017
+ ripple: boolean | {
16018
+ class: string;
16019
+ } | undefined;
15964
16020
  falseIcon: NonNullable<IconValue>;
15965
16021
  trueIcon: NonNullable<IconValue>;
15966
16022
  valueComparator: typeof deepEqual;
@@ -15992,7 +16048,9 @@ declare const VCheckboxBtn: {
15992
16048
  readonly: boolean | null;
15993
16049
  indeterminate: boolean;
15994
16050
  density: Density;
15995
- ripple: boolean;
16051
+ ripple: boolean | {
16052
+ class: string;
16053
+ } | undefined;
15996
16054
  falseIcon: NonNullable<IconValue>;
15997
16055
  trueIcon: NonNullable<IconValue>;
15998
16056
  valueComparator: typeof deepEqual;
@@ -16021,7 +16079,9 @@ declare const VCheckboxBtn: {
16021
16079
  readonly: boolean | null;
16022
16080
  indeterminate: boolean;
16023
16081
  density: Density;
16024
- ripple: boolean;
16082
+ ripple: boolean | {
16083
+ class: string;
16084
+ } | undefined;
16025
16085
  falseIcon: NonNullable<IconValue>;
16026
16086
  trueIcon: NonNullable<IconValue>;
16027
16087
  valueComparator: typeof deepEqual;
@@ -16058,7 +16118,9 @@ declare const VCheckboxBtn: {
16058
16118
  readonly: boolean | null;
16059
16119
  indeterminate: boolean;
16060
16120
  density: Density;
16061
- ripple: boolean;
16121
+ ripple: boolean | {
16122
+ class: string;
16123
+ } | undefined;
16062
16124
  falseIcon: NonNullable<IconValue>;
16063
16125
  trueIcon: NonNullable<IconValue>;
16064
16126
  valueComparator: typeof deepEqual;
@@ -16087,7 +16149,9 @@ declare const VCheckboxBtn: {
16087
16149
  readonly: boolean | null;
16088
16150
  indeterminate: boolean;
16089
16151
  density: Density;
16090
- ripple: boolean;
16152
+ ripple: boolean | {
16153
+ class: string;
16154
+ } | undefined;
16091
16155
  falseIcon: NonNullable<IconValue>;
16092
16156
  trueIcon: NonNullable<IconValue>;
16093
16157
  valueComparator: typeof deepEqual;
@@ -16105,7 +16169,9 @@ declare const VCheckboxBtn: {
16105
16169
  readonly: boolean | null;
16106
16170
  indeterminate: boolean;
16107
16171
  density: Density;
16108
- ripple: boolean;
16172
+ ripple: boolean | {
16173
+ class: string;
16174
+ } | undefined;
16109
16175
  falseIcon: NonNullable<IconValue>;
16110
16176
  trueIcon: NonNullable<IconValue>;
16111
16177
  valueComparator: typeof deepEqual;
@@ -16137,7 +16203,9 @@ declare const VCheckboxBtn: {
16137
16203
  readonly: boolean | null;
16138
16204
  indeterminate: boolean;
16139
16205
  density: Density;
16140
- ripple: boolean;
16206
+ ripple: boolean | {
16207
+ class: string;
16208
+ } | undefined;
16141
16209
  falseIcon: NonNullable<IconValue>;
16142
16210
  trueIcon: NonNullable<IconValue>;
16143
16211
  valueComparator: typeof deepEqual;
@@ -16194,7 +16262,9 @@ declare const VCheckboxBtn: {
16194
16262
  default: NonNullable<IconValue>;
16195
16263
  };
16196
16264
  ripple: {
16197
- type: BooleanConstructor;
16265
+ type: vue.PropType<boolean | {
16266
+ class: string;
16267
+ } | undefined>;
16198
16268
  default: boolean;
16199
16269
  };
16200
16270
  multiple: {
@@ -16252,7 +16322,9 @@ declare const VCheckboxBtn: {
16252
16322
  default: NonNullable<IconValue>;
16253
16323
  };
16254
16324
  ripple: {
16255
- type: BooleanConstructor;
16325
+ type: vue.PropType<boolean | {
16326
+ class: string;
16327
+ } | undefined>;
16256
16328
  default: boolean;
16257
16329
  };
16258
16330
  multiple: {
@@ -32242,8 +32314,8 @@ declare const VFileInput: {
32242
32314
  hint?: string | undefined;
32243
32315
  hideDetails?: boolean | "auto" | undefined;
32244
32316
  } & {}, {
32245
- reset: () => void;
32246
- resetValidation: () => void;
32317
+ reset: () => Promise<void>;
32318
+ resetValidation: () => Promise<void>;
32247
32319
  validate: (silent?: boolean) => Promise<string[]>;
32248
32320
  isValid: vue.ComputedRef<boolean | null>;
32249
32321
  errorMessages: vue.ComputedRef<string[]>;
@@ -32330,8 +32402,8 @@ declare const VFileInput: {
32330
32402
  hint?: string | undefined;
32331
32403
  hideDetails?: boolean | "auto" | undefined;
32332
32404
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
32333
- reset: () => void;
32334
- resetValidation: () => void;
32405
+ reset: () => Promise<void>;
32406
+ resetValidation: () => Promise<void>;
32335
32407
  validate: (silent?: boolean) => Promise<string[]>;
32336
32408
  isValid: vue.ComputedRef<boolean | null>;
32337
32409
  errorMessages: vue.ComputedRef<string[]>;
@@ -32811,8 +32883,8 @@ declare const VFileInput: {
32811
32883
  hint?: string | undefined;
32812
32884
  hideDetails?: boolean | "auto" | undefined;
32813
32885
  } & {}, {
32814
- reset: () => void;
32815
- resetValidation: () => void;
32886
+ reset: () => Promise<void>;
32887
+ resetValidation: () => Promise<void>;
32816
32888
  validate: (silent?: boolean) => Promise<string[]>;
32817
32889
  isValid: vue.ComputedRef<boolean | null>;
32818
32890
  errorMessages: vue.ComputedRef<string[]>;
@@ -32899,8 +32971,8 @@ declare const VFileInput: {
32899
32971
  hint?: string | undefined;
32900
32972
  hideDetails?: boolean | "auto" | undefined;
32901
32973
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
32902
- reset: () => void;
32903
- resetValidation: () => void;
32974
+ reset: () => Promise<void>;
32975
+ resetValidation: () => Promise<void>;
32904
32976
  validate: (silent?: boolean) => Promise<string[]>;
32905
32977
  isValid: vue.ComputedRef<boolean | null>;
32906
32978
  errorMessages: vue.ComputedRef<string[]>;
@@ -33203,8 +33275,8 @@ declare const VFileInput: {
33203
33275
  hint?: string | undefined;
33204
33276
  hideDetails?: boolean | "auto" | undefined;
33205
33277
  } & {}, {
33206
- reset: () => void;
33207
- resetValidation: () => void;
33278
+ reset: () => Promise<void>;
33279
+ resetValidation: () => Promise<void>;
33208
33280
  validate: (silent?: boolean) => Promise<string[]>;
33209
33281
  isValid: vue.ComputedRef<boolean | null>;
33210
33282
  errorMessages: vue.ComputedRef<string[]>;
@@ -33291,8 +33363,8 @@ declare const VFileInput: {
33291
33363
  hint?: string | undefined;
33292
33364
  hideDetails?: boolean | "auto" | undefined;
33293
33365
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
33294
- reset: () => void;
33295
- resetValidation: () => void;
33366
+ reset: () => Promise<void>;
33367
+ resetValidation: () => Promise<void>;
33296
33368
  validate: (silent?: boolean) => Promise<string[]>;
33297
33369
  isValid: vue.ComputedRef<boolean | null>;
33298
33370
  errorMessages: vue.ComputedRef<string[]>;
@@ -33873,8 +33945,8 @@ declare const VForm: {
33873
33945
  items: vue.Ref<{
33874
33946
  id: string | number;
33875
33947
  validate: () => Promise<string[]>;
33876
- reset: () => void;
33877
- resetValidation: () => void;
33948
+ reset: () => Promise<void>;
33949
+ resetValidation: () => Promise<void>;
33878
33950
  isValid: boolean | null;
33879
33951
  errorMessages: string[];
33880
33952
  }[]>;
@@ -33902,8 +33974,8 @@ declare const VForm: {
33902
33974
  items: vue.Ref<{
33903
33975
  id: string | number;
33904
33976
  validate: () => Promise<string[]>;
33905
- reset: () => void;
33906
- resetValidation: () => void;
33977
+ reset: () => Promise<void>;
33978
+ resetValidation: () => Promise<void>;
33907
33979
  isValid: boolean | null;
33908
33980
  errorMessages: string[];
33909
33981
  }[]>;
@@ -33932,8 +34004,8 @@ declare const VForm: {
33932
34004
  items: vue.Ref<{
33933
34005
  id: string | number;
33934
34006
  validate: () => Promise<string[]>;
33935
- reset: () => void;
33936
- resetValidation: () => void;
34007
+ reset: () => Promise<void>;
34008
+ resetValidation: () => Promise<void>;
33937
34009
  isValid: boolean | null;
33938
34010
  errorMessages: string[];
33939
34011
  }[]>;
@@ -33963,8 +34035,8 @@ declare const VForm: {
33963
34035
  items: vue.Ref<{
33964
34036
  id: string | number;
33965
34037
  validate: () => Promise<string[]>;
33966
- reset: () => void;
33967
- resetValidation: () => void;
34038
+ reset: () => Promise<void>;
34039
+ resetValidation: () => Promise<void>;
33968
34040
  isValid: boolean | null;
33969
34041
  errorMessages: string[];
33970
34042
  }[]>;
@@ -33995,8 +34067,8 @@ declare const VForm: {
33995
34067
  items: vue.Ref<{
33996
34068
  id: string | number;
33997
34069
  validate: () => Promise<string[]>;
33998
- reset: () => void;
33999
- resetValidation: () => void;
34070
+ reset: () => Promise<void>;
34071
+ resetValidation: () => Promise<void>;
34000
34072
  isValid: boolean | null;
34001
34073
  errorMessages: string[];
34002
34074
  }[]>;
@@ -34037,8 +34109,8 @@ declare const VForm: {
34037
34109
  items: vue.Ref<{
34038
34110
  id: string | number;
34039
34111
  validate: () => Promise<string[]>;
34040
- reset: () => void;
34041
- resetValidation: () => void;
34112
+ reset: () => Promise<void>;
34113
+ resetValidation: () => Promise<void>;
34042
34114
  isValid: boolean | null;
34043
34115
  errorMessages: string[];
34044
34116
  }[]>;
@@ -34066,8 +34138,8 @@ declare const VForm: {
34066
34138
  items: vue.Ref<{
34067
34139
  id: string | number;
34068
34140
  validate: () => Promise<string[]>;
34069
- reset: () => void;
34070
- resetValidation: () => void;
34141
+ reset: () => Promise<void>;
34142
+ resetValidation: () => Promise<void>;
34071
34143
  isValid: boolean | null;
34072
34144
  errorMessages: string[];
34073
34145
  }[]>;
@@ -34096,8 +34168,8 @@ declare const VForm: {
34096
34168
  items: vue.Ref<{
34097
34169
  id: string | number;
34098
34170
  validate: () => Promise<string[]>;
34099
- reset: () => void;
34100
- resetValidation: () => void;
34171
+ reset: () => Promise<void>;
34172
+ resetValidation: () => Promise<void>;
34101
34173
  isValid: boolean | null;
34102
34174
  errorMessages: string[];
34103
34175
  }[]>;
@@ -34127,8 +34199,8 @@ declare const VForm: {
34127
34199
  items: vue.Ref<{
34128
34200
  id: string | number;
34129
34201
  validate: () => Promise<string[]>;
34130
- reset: () => void;
34131
- resetValidation: () => void;
34202
+ reset: () => Promise<void>;
34203
+ resetValidation: () => Promise<void>;
34132
34204
  isValid: boolean | null;
34133
34205
  errorMessages: string[];
34134
34206
  }[]>;
@@ -34167,8 +34239,8 @@ declare const VForm: {
34167
34239
  items: vue.Ref<{
34168
34240
  id: string | number;
34169
34241
  validate: () => Promise<string[]>;
34170
- reset: () => void;
34171
- resetValidation: () => void;
34242
+ reset: () => Promise<void>;
34243
+ resetValidation: () => Promise<void>;
34172
34244
  isValid: boolean | null;
34173
34245
  errorMessages: string[];
34174
34246
  }[]>;
@@ -34216,8 +34288,8 @@ declare const VForm: {
34216
34288
  items: vue.Ref<{
34217
34289
  id: string | number;
34218
34290
  validate: () => Promise<string[]>;
34219
- reset: () => void;
34220
- resetValidation: () => void;
34291
+ reset: () => Promise<void>;
34292
+ resetValidation: () => Promise<void>;
34221
34293
  isValid: boolean | null;
34222
34294
  errorMessages: string[];
34223
34295
  }[]>;
@@ -34245,8 +34317,8 @@ declare const VForm: {
34245
34317
  items: vue.Ref<{
34246
34318
  id: string | number;
34247
34319
  validate: () => Promise<string[]>;
34248
- reset: () => void;
34249
- resetValidation: () => void;
34320
+ reset: () => Promise<void>;
34321
+ resetValidation: () => Promise<void>;
34250
34322
  isValid: boolean | null;
34251
34323
  errorMessages: string[];
34252
34324
  }[]>;
@@ -34275,8 +34347,8 @@ declare const VForm: {
34275
34347
  items: vue.Ref<{
34276
34348
  id: string | number;
34277
34349
  validate: () => Promise<string[]>;
34278
- reset: () => void;
34279
- resetValidation: () => void;
34350
+ reset: () => Promise<void>;
34351
+ resetValidation: () => Promise<void>;
34280
34352
  isValid: boolean | null;
34281
34353
  errorMessages: string[];
34282
34354
  }[]>;
@@ -34306,8 +34378,8 @@ declare const VForm: {
34306
34378
  items: vue.Ref<{
34307
34379
  id: string | number;
34308
34380
  validate: () => Promise<string[]>;
34309
- reset: () => void;
34310
- resetValidation: () => void;
34381
+ reset: () => Promise<void>;
34382
+ resetValidation: () => Promise<void>;
34311
34383
  isValid: boolean | null;
34312
34384
  errorMessages: string[];
34313
34385
  }[]>;
@@ -34338,8 +34410,8 @@ declare const VForm: {
34338
34410
  items: vue.Ref<{
34339
34411
  id: string | number;
34340
34412
  validate: () => Promise<string[]>;
34341
- reset: () => void;
34342
- resetValidation: () => void;
34413
+ reset: () => Promise<void>;
34414
+ resetValidation: () => Promise<void>;
34343
34415
  isValid: boolean | null;
34344
34416
  errorMessages: string[];
34345
34417
  }[]>;
@@ -34388,8 +34460,8 @@ declare const VForm: {
34388
34460
  items: vue.Ref<{
34389
34461
  id: string | number;
34390
34462
  validate: () => Promise<string[]>;
34391
- reset: () => void;
34392
- resetValidation: () => void;
34463
+ reset: () => Promise<void>;
34464
+ resetValidation: () => Promise<void>;
34393
34465
  isValid: boolean | null;
34394
34466
  errorMessages: string[];
34395
34467
  }[]>;
@@ -34417,8 +34489,8 @@ declare const VForm: {
34417
34489
  items: vue.Ref<{
34418
34490
  id: string | number;
34419
34491
  validate: () => Promise<string[]>;
34420
- reset: () => void;
34421
- resetValidation: () => void;
34492
+ reset: () => Promise<void>;
34493
+ resetValidation: () => Promise<void>;
34422
34494
  isValid: boolean | null;
34423
34495
  errorMessages: string[];
34424
34496
  }[]>;
@@ -34447,8 +34519,8 @@ declare const VForm: {
34447
34519
  items: vue.Ref<{
34448
34520
  id: string | number;
34449
34521
  validate: () => Promise<string[]>;
34450
- reset: () => void;
34451
- resetValidation: () => void;
34522
+ reset: () => Promise<void>;
34523
+ resetValidation: () => Promise<void>;
34452
34524
  isValid: boolean | null;
34453
34525
  errorMessages: string[];
34454
34526
  }[]>;
@@ -34478,8 +34550,8 @@ declare const VForm: {
34478
34550
  items: vue.Ref<{
34479
34551
  id: string | number;
34480
34552
  validate: () => Promise<string[]>;
34481
- reset: () => void;
34482
- resetValidation: () => void;
34553
+ reset: () => Promise<void>;
34554
+ resetValidation: () => Promise<void>;
34483
34555
  isValid: boolean | null;
34484
34556
  errorMessages: string[];
34485
34557
  }[]>;
@@ -34510,8 +34582,8 @@ declare const VForm: {
34510
34582
  items: vue.Ref<{
34511
34583
  id: string | number;
34512
34584
  validate: () => Promise<string[]>;
34513
- reset: () => void;
34514
- resetValidation: () => void;
34585
+ reset: () => Promise<void>;
34586
+ resetValidation: () => Promise<void>;
34515
34587
  isValid: boolean | null;
34516
34588
  errorMessages: string[];
34517
34589
  }[]>;
@@ -34549,8 +34621,8 @@ declare const VForm: {
34549
34621
  items: vue.Ref<{
34550
34622
  id: string | number;
34551
34623
  validate: () => Promise<string[]>;
34552
- reset: () => void;
34553
- resetValidation: () => void;
34624
+ reset: () => Promise<void>;
34625
+ resetValidation: () => Promise<void>;
34554
34626
  isValid: boolean | null;
34555
34627
  errorMessages: string[];
34556
34628
  }[]>;
@@ -44108,7 +44180,9 @@ declare const VRadio: {
44108
44180
  multiple: boolean | null;
44109
44181
  readonly: boolean | null;
44110
44182
  density: Density;
44111
- ripple: boolean;
44183
+ ripple: boolean | {
44184
+ class: string;
44185
+ } | undefined;
44112
44186
  falseIcon: NonNullable<IconValue>;
44113
44187
  trueIcon: NonNullable<IconValue>;
44114
44188
  valueComparator: typeof deepEqual;
@@ -44170,7 +44244,9 @@ declare const VRadio: {
44170
44244
  multiple: boolean | null;
44171
44245
  readonly: boolean | null;
44172
44246
  density: Density;
44173
- ripple: boolean;
44247
+ ripple: boolean | {
44248
+ class: string;
44249
+ } | undefined;
44174
44250
  falseIcon: NonNullable<IconValue>;
44175
44251
  trueIcon: NonNullable<IconValue>;
44176
44252
  valueComparator: typeof deepEqual;
@@ -44232,7 +44308,9 @@ declare const VRadio: {
44232
44308
  multiple: boolean | null;
44233
44309
  readonly: boolean | null;
44234
44310
  density: Density;
44235
- ripple: boolean;
44311
+ ripple: boolean | {
44312
+ class: string;
44313
+ } | undefined;
44236
44314
  falseIcon: NonNullable<IconValue>;
44237
44315
  trueIcon: NonNullable<IconValue>;
44238
44316
  valueComparator: typeof deepEqual;
@@ -44267,7 +44345,9 @@ declare const VRadio: {
44267
44345
  multiple: boolean | null;
44268
44346
  readonly: boolean | null;
44269
44347
  density: Density;
44270
- ripple: boolean;
44348
+ ripple: boolean | {
44349
+ class: string;
44350
+ } | undefined;
44271
44351
  falseIcon: NonNullable<IconValue>;
44272
44352
  trueIcon: NonNullable<IconValue>;
44273
44353
  valueComparator: typeof deepEqual;
@@ -44329,7 +44409,9 @@ declare const VRadio: {
44329
44409
  multiple: boolean | null;
44330
44410
  readonly: boolean | null;
44331
44411
  density: Density;
44332
- ripple: boolean;
44412
+ ripple: boolean | {
44413
+ class: string;
44414
+ } | undefined;
44333
44415
  falseIcon: NonNullable<IconValue>;
44334
44416
  trueIcon: NonNullable<IconValue>;
44335
44417
  valueComparator: typeof deepEqual;
@@ -44345,7 +44427,9 @@ declare const VRadio: {
44345
44427
  multiple: boolean | null;
44346
44428
  readonly: boolean | null;
44347
44429
  density: Density;
44348
- ripple: boolean;
44430
+ ripple: boolean | {
44431
+ class: string;
44432
+ } | undefined;
44349
44433
  falseIcon: NonNullable<IconValue>;
44350
44434
  trueIcon: NonNullable<IconValue>;
44351
44435
  valueComparator: typeof deepEqual;
@@ -44407,7 +44491,9 @@ declare const VRadio: {
44407
44491
  multiple: boolean | null;
44408
44492
  readonly: boolean | null;
44409
44493
  density: Density;
44410
- ripple: boolean;
44494
+ ripple: boolean | {
44495
+ class: string;
44496
+ } | undefined;
44411
44497
  falseIcon: NonNullable<IconValue>;
44412
44498
  trueIcon: NonNullable<IconValue>;
44413
44499
  valueComparator: typeof deepEqual;
@@ -44457,7 +44543,9 @@ declare const VRadio: {
44457
44543
  default: NonNullable<IconValue>;
44458
44544
  };
44459
44545
  ripple: {
44460
- type: BooleanConstructor;
44546
+ type: vue.PropType<boolean | {
44547
+ class: string;
44548
+ } | undefined>;
44461
44549
  default: boolean;
44462
44550
  };
44463
44551
  multiple: {
@@ -44510,7 +44598,9 @@ declare const VRadio: {
44510
44598
  default: NonNullable<IconValue>;
44511
44599
  };
44512
44600
  ripple: {
44513
- type: BooleanConstructor;
44601
+ type: vue.PropType<boolean | {
44602
+ class: string;
44603
+ } | undefined>;
44514
44604
  default: boolean;
44515
44605
  };
44516
44606
  multiple: {
@@ -44559,7 +44649,9 @@ declare const VRadioGroup: {
44559
44649
  maxErrors: string | number;
44560
44650
  rules: readonly ValidationRule$1[];
44561
44651
  density: Density;
44562
- ripple: boolean;
44652
+ ripple: boolean | {
44653
+ class: string;
44654
+ } | undefined;
44563
44655
  falseIcon: IconValue;
44564
44656
  trueIcon: IconValue;
44565
44657
  valueComparator: typeof deepEqual;
@@ -44600,7 +44692,9 @@ declare const VRadioGroup: {
44600
44692
  maxErrors: string | number;
44601
44693
  rules: readonly ValidationRule$1[];
44602
44694
  density: Density;
44603
- ripple: boolean;
44695
+ ripple: boolean | {
44696
+ class: string;
44697
+ } | undefined;
44604
44698
  falseIcon: IconValue;
44605
44699
  trueIcon: IconValue;
44606
44700
  valueComparator: typeof deepEqual;
@@ -44639,7 +44733,9 @@ declare const VRadioGroup: {
44639
44733
  maxErrors: string | number;
44640
44734
  rules: readonly ValidationRule$1[];
44641
44735
  density: Density;
44642
- ripple: boolean;
44736
+ ripple: boolean | {
44737
+ class: string;
44738
+ } | undefined;
44643
44739
  falseIcon: IconValue;
44644
44740
  trueIcon: IconValue;
44645
44741
  valueComparator: typeof deepEqual;
@@ -44690,7 +44786,9 @@ declare const VRadioGroup: {
44690
44786
  maxErrors: string | number;
44691
44787
  rules: readonly ValidationRule$1[];
44692
44788
  density: Density;
44693
- ripple: boolean;
44789
+ ripple: boolean | {
44790
+ class: string;
44791
+ } | undefined;
44694
44792
  falseIcon: IconValue;
44695
44793
  trueIcon: IconValue;
44696
44794
  valueComparator: typeof deepEqual;
@@ -44729,7 +44827,9 @@ declare const VRadioGroup: {
44729
44827
  maxErrors: string | number;
44730
44828
  rules: readonly ValidationRule$1[];
44731
44829
  density: Density;
44732
- ripple: boolean;
44830
+ ripple: boolean | {
44831
+ class: string;
44832
+ } | undefined;
44733
44833
  falseIcon: IconValue;
44734
44834
  trueIcon: IconValue;
44735
44835
  valueComparator: typeof deepEqual;
@@ -44755,7 +44855,9 @@ declare const VRadioGroup: {
44755
44855
  maxErrors: string | number;
44756
44856
  rules: readonly ValidationRule$1[];
44757
44857
  density: Density;
44758
- ripple: boolean;
44858
+ ripple: boolean | {
44859
+ class: string;
44860
+ } | undefined;
44759
44861
  falseIcon: IconValue;
44760
44862
  trueIcon: IconValue;
44761
44863
  valueComparator: typeof deepEqual;
@@ -44796,7 +44898,9 @@ declare const VRadioGroup: {
44796
44898
  maxErrors: string | number;
44797
44899
  rules: readonly ValidationRule$1[];
44798
44900
  density: Density;
44799
- ripple: boolean;
44901
+ ripple: boolean | {
44902
+ class: string;
44903
+ } | undefined;
44800
44904
  falseIcon: IconValue;
44801
44905
  trueIcon: IconValue;
44802
44906
  valueComparator: typeof deepEqual;
@@ -44870,7 +44974,9 @@ declare const VRadioGroup: {
44870
44974
  validator: (v: any) => boolean;
44871
44975
  };
44872
44976
  ripple: {
44873
- type: BooleanConstructor;
44977
+ type: vue.PropType<boolean | {
44978
+ class: string;
44979
+ } | undefined>;
44874
44980
  default: boolean;
44875
44981
  };
44876
44982
  defaultsTarget: StringConstructor;
@@ -44959,7 +45065,9 @@ declare const VRadioGroup: {
44959
45065
  validator: (v: any) => boolean;
44960
45066
  };
44961
45067
  ripple: {
44962
- type: BooleanConstructor;
45068
+ type: vue.PropType<boolean | {
45069
+ class: string;
45070
+ } | undefined>;
44963
45071
  default: boolean;
44964
45072
  };
44965
45073
  defaultsTarget: StringConstructor;
@@ -55647,7 +55755,9 @@ declare const VSwitch: {
55647
55755
  maxErrors: string | number;
55648
55756
  rules: readonly ValidationRule$1[];
55649
55757
  density: Density;
55650
- ripple: boolean;
55758
+ ripple: boolean | {
55759
+ class: string;
55760
+ } | undefined;
55651
55761
  valueComparator: typeof deepEqual;
55652
55762
  centerAffix: boolean;
55653
55763
  hideSpinButtons: boolean;
@@ -55701,7 +55811,9 @@ declare const VSwitch: {
55701
55811
  maxErrors: string | number;
55702
55812
  rules: readonly ValidationRule$1[];
55703
55813
  density: Density;
55704
- ripple: boolean;
55814
+ ripple: boolean | {
55815
+ class: string;
55816
+ } | undefined;
55705
55817
  valueComparator: typeof deepEqual;
55706
55818
  centerAffix: boolean;
55707
55819
  hideSpinButtons: boolean;
@@ -55751,7 +55863,9 @@ declare const VSwitch: {
55751
55863
  maxErrors: string | number;
55752
55864
  rules: readonly ValidationRule$1[];
55753
55865
  density: Density;
55754
- ripple: boolean;
55866
+ ripple: boolean | {
55867
+ class: string;
55868
+ } | undefined;
55755
55869
  valueComparator: typeof deepEqual;
55756
55870
  centerAffix: boolean;
55757
55871
  hideSpinButtons: boolean;
@@ -55823,7 +55937,9 @@ declare const VSwitch: {
55823
55937
  maxErrors: string | number;
55824
55938
  rules: readonly ValidationRule$1[];
55825
55939
  density: Density;
55826
- ripple: boolean;
55940
+ ripple: boolean | {
55941
+ class: string;
55942
+ } | undefined;
55827
55943
  valueComparator: typeof deepEqual;
55828
55944
  centerAffix: boolean;
55829
55945
  hideSpinButtons: boolean;
@@ -55873,7 +55989,9 @@ declare const VSwitch: {
55873
55989
  maxErrors: string | number;
55874
55990
  rules: readonly ValidationRule$1[];
55875
55991
  density: Density;
55876
- ripple: boolean;
55992
+ ripple: boolean | {
55993
+ class: string;
55994
+ } | undefined;
55877
55995
  valueComparator: typeof deepEqual;
55878
55996
  centerAffix: boolean;
55879
55997
  hideSpinButtons: boolean;
@@ -55900,7 +56018,9 @@ declare const VSwitch: {
55900
56018
  maxErrors: string | number;
55901
56019
  rules: readonly ValidationRule$1[];
55902
56020
  density: Density;
55903
- ripple: boolean;
56021
+ ripple: boolean | {
56022
+ class: string;
56023
+ } | undefined;
55904
56024
  valueComparator: typeof deepEqual;
55905
56025
  centerAffix: boolean;
55906
56026
  hideSpinButtons: boolean;
@@ -55954,7 +56074,9 @@ declare const VSwitch: {
55954
56074
  maxErrors: string | number;
55955
56075
  rules: readonly ValidationRule$1[];
55956
56076
  density: Density;
55957
- ripple: boolean;
56077
+ ripple: boolean | {
56078
+ class: string;
56079
+ } | undefined;
55958
56080
  valueComparator: typeof deepEqual;
55959
56081
  centerAffix: boolean;
55960
56082
  hideSpinButtons: boolean;
@@ -56031,7 +56153,9 @@ declare const VSwitch: {
56031
56153
  falseIcon: vue.PropType<IconValue>;
56032
56154
  trueIcon: vue.PropType<IconValue>;
56033
56155
  ripple: {
56034
- type: BooleanConstructor;
56156
+ type: vue.PropType<boolean | {
56157
+ class: string;
56158
+ } | undefined>;
56035
56159
  default: boolean;
56036
56160
  };
56037
56161
  multiple: {
@@ -56122,7 +56246,9 @@ declare const VSwitch: {
56122
56246
  falseIcon: vue.PropType<IconValue>;
56123
56247
  trueIcon: vue.PropType<IconValue>;
56124
56248
  ripple: {
56125
- type: BooleanConstructor;
56249
+ type: vue.PropType<boolean | {
56250
+ class: string;
56251
+ } | undefined>;
56126
56252
  default: boolean;
56127
56253
  };
56128
56254
  multiple: {
@@ -58856,8 +58982,8 @@ declare const VTextarea: {
58856
58982
  hint?: string | undefined;
58857
58983
  hideDetails?: boolean | "auto" | undefined;
58858
58984
  } & {}, {
58859
- reset: () => void;
58860
- resetValidation: () => void;
58985
+ reset: () => Promise<void>;
58986
+ resetValidation: () => Promise<void>;
58861
58987
  validate: (silent?: boolean) => Promise<string[]>;
58862
58988
  isValid: vue.ComputedRef<boolean | null>;
58863
58989
  errorMessages: vue.ComputedRef<string[]>;
@@ -58944,8 +59070,8 @@ declare const VTextarea: {
58944
59070
  hint?: string | undefined;
58945
59071
  hideDetails?: boolean | "auto" | undefined;
58946
59072
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
58947
- reset: () => void;
58948
- resetValidation: () => void;
59073
+ reset: () => Promise<void>;
59074
+ resetValidation: () => Promise<void>;
58949
59075
  validate: (silent?: boolean) => Promise<string[]>;
58950
59076
  isValid: vue.ComputedRef<boolean | null>;
58951
59077
  errorMessages: vue.ComputedRef<string[]>;
@@ -59391,8 +59517,8 @@ declare const VTextarea: {
59391
59517
  hint?: string | undefined;
59392
59518
  hideDetails?: boolean | "auto" | undefined;
59393
59519
  } & {}, {
59394
- reset: () => void;
59395
- resetValidation: () => void;
59520
+ reset: () => Promise<void>;
59521
+ resetValidation: () => Promise<void>;
59396
59522
  validate: (silent?: boolean) => Promise<string[]>;
59397
59523
  isValid: vue.ComputedRef<boolean | null>;
59398
59524
  errorMessages: vue.ComputedRef<string[]>;
@@ -59479,8 +59605,8 @@ declare const VTextarea: {
59479
59605
  hint?: string | undefined;
59480
59606
  hideDetails?: boolean | "auto" | undefined;
59481
59607
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
59482
- reset: () => void;
59483
- resetValidation: () => void;
59608
+ reset: () => Promise<void>;
59609
+ resetValidation: () => Promise<void>;
59484
59610
  validate: (silent?: boolean) => Promise<string[]>;
59485
59611
  isValid: vue.ComputedRef<boolean | null>;
59486
59612
  errorMessages: vue.ComputedRef<string[]>;
@@ -59770,8 +59896,8 @@ declare const VTextarea: {
59770
59896
  hint?: string | undefined;
59771
59897
  hideDetails?: boolean | "auto" | undefined;
59772
59898
  } & {}, {
59773
- reset: () => void;
59774
- resetValidation: () => void;
59899
+ reset: () => Promise<void>;
59900
+ resetValidation: () => Promise<void>;
59775
59901
  validate: (silent?: boolean) => Promise<string[]>;
59776
59902
  isValid: vue.ComputedRef<boolean | null>;
59777
59903
  errorMessages: vue.ComputedRef<string[]>;
@@ -59858,8 +59984,8 @@ declare const VTextarea: {
59858
59984
  hint?: string | undefined;
59859
59985
  hideDetails?: boolean | "auto" | undefined;
59860
59986
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
59861
- reset: () => void;
59862
- resetValidation: () => void;
59987
+ reset: () => Promise<void>;
59988
+ resetValidation: () => Promise<void>;
59863
59989
  validate: (silent?: boolean) => Promise<string[]>;
59864
59990
  isValid: vue.ComputedRef<boolean | null>;
59865
59991
  errorMessages: vue.ComputedRef<string[]>;
@@ -60413,8 +60539,8 @@ declare const VTextField: {
60413
60539
  hint?: string | undefined;
60414
60540
  hideDetails?: boolean | "auto" | undefined;
60415
60541
  } & {}, {
60416
- reset: () => void;
60417
- resetValidation: () => void;
60542
+ reset: () => Promise<void>;
60543
+ resetValidation: () => Promise<void>;
60418
60544
  validate: (silent?: boolean) => Promise<string[]>;
60419
60545
  isValid: vue.ComputedRef<boolean | null>;
60420
60546
  errorMessages: vue.ComputedRef<string[]>;
@@ -60501,8 +60627,8 @@ declare const VTextField: {
60501
60627
  hint?: string | undefined;
60502
60628
  hideDetails?: boolean | "auto" | undefined;
60503
60629
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
60504
- reset: () => void;
60505
- resetValidation: () => void;
60630
+ reset: () => Promise<void>;
60631
+ resetValidation: () => Promise<void>;
60506
60632
  validate: (silent?: boolean) => Promise<string[]>;
60507
60633
  isValid: vue.ComputedRef<boolean | null>;
60508
60634
  errorMessages: vue.ComputedRef<string[]>;
@@ -61207,8 +61333,8 @@ declare const VTextField: {
61207
61333
  hint?: string | undefined;
61208
61334
  hideDetails?: boolean | "auto" | undefined;
61209
61335
  } & {}, {
61210
- reset: () => void;
61211
- resetValidation: () => void;
61336
+ reset: () => Promise<void>;
61337
+ resetValidation: () => Promise<void>;
61212
61338
  validate: (silent?: boolean) => Promise<string[]>;
61213
61339
  isValid: vue.ComputedRef<boolean | null>;
61214
61340
  errorMessages: vue.ComputedRef<string[]>;
@@ -61295,8 +61421,8 @@ declare const VTextField: {
61295
61421
  hint?: string | undefined;
61296
61422
  hideDetails?: boolean | "auto" | undefined;
61297
61423
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
61298
- reset: () => void;
61299
- resetValidation: () => void;
61424
+ reset: () => Promise<void>;
61425
+ resetValidation: () => Promise<void>;
61300
61426
  validate: (silent?: boolean) => Promise<string[]>;
61301
61427
  isValid: vue.ComputedRef<boolean | null>;
61302
61428
  errorMessages: vue.ComputedRef<string[]>;
@@ -61841,8 +61967,8 @@ declare const VTextField: {
61841
61967
  hint?: string | undefined;
61842
61968
  hideDetails?: boolean | "auto" | undefined;
61843
61969
  } & {}, {
61844
- reset: () => void;
61845
- resetValidation: () => void;
61970
+ reset: () => Promise<void>;
61971
+ resetValidation: () => Promise<void>;
61846
61972
  validate: (silent?: boolean) => Promise<string[]>;
61847
61973
  isValid: vue.ComputedRef<boolean | null>;
61848
61974
  errorMessages: vue.ComputedRef<string[]>;
@@ -61929,8 +62055,8 @@ declare const VTextField: {
61929
62055
  hint?: string | undefined;
61930
62056
  hideDetails?: boolean | "auto" | undefined;
61931
62057
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
61932
- reset: () => void;
61933
- resetValidation: () => void;
62058
+ reset: () => Promise<void>;
62059
+ resetValidation: () => Promise<void>;
61934
62060
  validate: (silent?: boolean) => Promise<string[]>;
61935
62061
  isValid: vue.ComputedRef<boolean | null>;
61936
62062
  errorMessages: vue.ComputedRef<string[]>;
@@ -65424,8 +65550,8 @@ declare const VValidation: {
65424
65550
  isPristine: vue.ShallowRef<boolean>;
65425
65551
  isValid: vue.ComputedRef<boolean | null>;
65426
65552
  isValidating: vue.ShallowRef<boolean>;
65427
- reset: () => void;
65428
- resetValidation: () => void;
65553
+ reset: () => Promise<void>;
65554
+ resetValidation: () => Promise<void>;
65429
65555
  validate: (silent?: boolean) => Promise<string[]>;
65430
65556
  validationClasses: vue.ComputedRef<{
65431
65557
  [x: string]: boolean;
@@ -65503,8 +65629,8 @@ declare const VValidation: {
65503
65629
  isPristine: vue.ShallowRef<boolean>;
65504
65630
  isValid: vue.ComputedRef<boolean | null>;
65505
65631
  isValidating: vue.ShallowRef<boolean>;
65506
- reset: () => void;
65507
- resetValidation: () => void;
65632
+ reset: () => Promise<void>;
65633
+ resetValidation: () => Promise<void>;
65508
65634
  validate: (silent?: boolean) => Promise<string[]>;
65509
65635
  validationClasses: vue.ComputedRef<{
65510
65636
  [x: string]: boolean;