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
@@ -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;
@@ -3768,8 +3768,8 @@ declare const VInput: {
3768
3768
  hint?: string | undefined;
3769
3769
  hideDetails?: boolean | "auto" | undefined;
3770
3770
  } & {}, {
3771
- reset: () => void;
3772
- resetValidation: () => void;
3771
+ reset: () => Promise<void>;
3772
+ resetValidation: () => Promise<void>;
3773
3773
  validate: (silent?: boolean) => Promise<string[]>;
3774
3774
  isValid: ComputedRef<boolean | null>;
3775
3775
  errorMessages: ComputedRef<string[]>;
@@ -3872,8 +3872,8 @@ declare const VInput: {
3872
3872
  hint?: string | undefined;
3873
3873
  hideDetails?: boolean | "auto" | undefined;
3874
3874
  } & {}, {
3875
- reset: () => void;
3876
- resetValidation: () => void;
3875
+ reset: () => Promise<void>;
3876
+ resetValidation: () => Promise<void>;
3877
3877
  validate: (silent?: boolean) => Promise<string[]>;
3878
3878
  isValid: ComputedRef<boolean | null>;
3879
3879
  errorMessages: ComputedRef<string[]>;
@@ -3926,8 +3926,8 @@ declare const VInput: {
3926
3926
  hint?: string | undefined;
3927
3927
  hideDetails?: boolean | "auto" | undefined;
3928
3928
  } & {}, {
3929
- reset: () => void;
3930
- resetValidation: () => void;
3929
+ reset: () => Promise<void>;
3930
+ resetValidation: () => Promise<void>;
3931
3931
  validate: (silent?: boolean) => Promise<string[]>;
3932
3932
  isValid: ComputedRef<boolean | null>;
3933
3933
  errorMessages: ComputedRef<string[]>;
@@ -15243,7 +15243,9 @@ declare const VSelectionControlGroup: {
15243
15243
  multiple: boolean | null;
15244
15244
  readonly: boolean | null;
15245
15245
  density: Density;
15246
- ripple: boolean;
15246
+ ripple: boolean | {
15247
+ class: string;
15248
+ } | undefined;
15247
15249
  defaultsTarget: string;
15248
15250
  valueComparator: typeof deepEqual;
15249
15251
  } & {
@@ -15265,7 +15267,9 @@ declare const VSelectionControlGroup: {
15265
15267
  multiple: boolean | null;
15266
15268
  readonly: boolean | null;
15267
15269
  density: Density;
15268
- ripple: boolean;
15270
+ ripple: boolean | {
15271
+ class: string;
15272
+ } | undefined;
15269
15273
  defaultsTarget: string;
15270
15274
  valueComparator: typeof deepEqual;
15271
15275
  } & {
@@ -15285,7 +15289,9 @@ declare const VSelectionControlGroup: {
15285
15289
  multiple: boolean | null;
15286
15290
  readonly: boolean | null;
15287
15291
  density: Density;
15288
- ripple: boolean;
15292
+ ripple: boolean | {
15293
+ class: string;
15294
+ } | undefined;
15289
15295
  defaultsTarget: string;
15290
15296
  valueComparator: typeof deepEqual;
15291
15297
  }, true, {}, vue.SlotsType<Partial<{
@@ -15307,7 +15313,9 @@ declare const VSelectionControlGroup: {
15307
15313
  multiple: boolean | null;
15308
15314
  readonly: boolean | null;
15309
15315
  density: Density;
15310
- ripple: boolean;
15316
+ ripple: boolean | {
15317
+ class: string;
15318
+ } | undefined;
15311
15319
  defaultsTarget: string;
15312
15320
  valueComparator: typeof deepEqual;
15313
15321
  } & {
@@ -15327,7 +15335,9 @@ declare const VSelectionControlGroup: {
15327
15335
  multiple: boolean | null;
15328
15336
  readonly: boolean | null;
15329
15337
  density: Density;
15330
- ripple: boolean;
15338
+ ripple: boolean | {
15339
+ class: string;
15340
+ } | undefined;
15331
15341
  defaultsTarget: string;
15332
15342
  valueComparator: typeof deepEqual;
15333
15343
  }>;
@@ -15342,7 +15352,9 @@ declare const VSelectionControlGroup: {
15342
15352
  multiple: boolean | null;
15343
15353
  readonly: boolean | null;
15344
15354
  density: Density;
15345
- ripple: boolean;
15355
+ ripple: boolean | {
15356
+ class: string;
15357
+ } | undefined;
15346
15358
  defaultsTarget: string;
15347
15359
  valueComparator: typeof deepEqual;
15348
15360
  } & {
@@ -15364,7 +15376,9 @@ declare const VSelectionControlGroup: {
15364
15376
  multiple: boolean | null;
15365
15377
  readonly: boolean | null;
15366
15378
  density: Density;
15367
- ripple: boolean;
15379
+ ripple: boolean | {
15380
+ class: string;
15381
+ } | undefined;
15368
15382
  defaultsTarget: string;
15369
15383
  valueComparator: typeof deepEqual;
15370
15384
  }, {}, string, vue.SlotsType<Partial<{
@@ -15408,7 +15422,9 @@ declare const VSelectionControlGroup: {
15408
15422
  falseIcon: PropType<IconValue>;
15409
15423
  trueIcon: PropType<IconValue>;
15410
15424
  ripple: {
15411
- type: BooleanConstructor;
15425
+ type: PropType<boolean | {
15426
+ class: string;
15427
+ } | undefined>;
15412
15428
  default: boolean;
15413
15429
  };
15414
15430
  multiple: {
@@ -15453,7 +15469,9 @@ declare const VSelectionControlGroup: {
15453
15469
  falseIcon: PropType<IconValue>;
15454
15470
  trueIcon: PropType<IconValue>;
15455
15471
  ripple: {
15456
- type: BooleanConstructor;
15472
+ type: PropType<boolean | {
15473
+ class: string;
15474
+ } | undefined>;
15457
15475
  default: boolean;
15458
15476
  };
15459
15477
  multiple: {
@@ -15508,7 +15526,9 @@ declare const VSelectionControl: {
15508
15526
  multiple: boolean | null;
15509
15527
  readonly: boolean | null;
15510
15528
  density: Density;
15511
- ripple: boolean;
15529
+ ripple: boolean | {
15530
+ class: string;
15531
+ } | undefined;
15512
15532
  valueComparator: typeof deepEqual;
15513
15533
  } & {
15514
15534
  type?: string | undefined;
@@ -15538,7 +15558,9 @@ declare const VSelectionControl: {
15538
15558
  multiple: boolean | null;
15539
15559
  readonly: boolean | null;
15540
15560
  density: Density;
15541
- ripple: boolean;
15561
+ ripple: boolean | {
15562
+ class: string;
15563
+ } | undefined;
15542
15564
  valueComparator: typeof deepEqual;
15543
15565
  } & {
15544
15566
  type?: string | undefined;
@@ -15563,7 +15585,9 @@ declare const VSelectionControl: {
15563
15585
  multiple: boolean | null;
15564
15586
  readonly: boolean | null;
15565
15587
  density: Density;
15566
- ripple: boolean;
15588
+ ripple: boolean | {
15589
+ class: string;
15590
+ } | undefined;
15567
15591
  valueComparator: typeof deepEqual;
15568
15592
  }, true, {}, vue.SlotsType<Partial<{
15569
15593
  default: (arg: {
@@ -15596,7 +15620,9 @@ declare const VSelectionControl: {
15596
15620
  multiple: boolean | null;
15597
15621
  readonly: boolean | null;
15598
15622
  density: Density;
15599
- ripple: boolean;
15623
+ ripple: boolean | {
15624
+ class: string;
15625
+ } | undefined;
15600
15626
  valueComparator: typeof deepEqual;
15601
15627
  } & {
15602
15628
  type?: string | undefined;
@@ -15624,7 +15650,9 @@ declare const VSelectionControl: {
15624
15650
  multiple: boolean | null;
15625
15651
  readonly: boolean | null;
15626
15652
  density: Density;
15627
- ripple: boolean;
15653
+ ripple: boolean | {
15654
+ class: string;
15655
+ } | undefined;
15628
15656
  valueComparator: typeof deepEqual;
15629
15657
  }>;
15630
15658
  __isFragment?: undefined;
@@ -15638,7 +15666,9 @@ declare const VSelectionControl: {
15638
15666
  multiple: boolean | null;
15639
15667
  readonly: boolean | null;
15640
15668
  density: Density;
15641
- ripple: boolean;
15669
+ ripple: boolean | {
15670
+ class: string;
15671
+ } | undefined;
15642
15672
  valueComparator: typeof deepEqual;
15643
15673
  } & {
15644
15674
  type?: string | undefined;
@@ -15668,7 +15698,9 @@ declare const VSelectionControl: {
15668
15698
  multiple: boolean | null;
15669
15699
  readonly: boolean | null;
15670
15700
  density: Density;
15671
- ripple: boolean;
15701
+ ripple: boolean | {
15702
+ class: string;
15703
+ } | undefined;
15672
15704
  valueComparator: typeof deepEqual;
15673
15705
  }, {}, string, vue.SlotsType<Partial<{
15674
15706
  default: (arg: {
@@ -15716,7 +15748,9 @@ declare const VSelectionControl: {
15716
15748
  falseIcon: vue.PropType<IconValue>;
15717
15749
  trueIcon: vue.PropType<IconValue>;
15718
15750
  ripple: {
15719
- type: BooleanConstructor;
15751
+ type: vue.PropType<boolean | {
15752
+ class: string;
15753
+ } | undefined>;
15720
15754
  default: boolean;
15721
15755
  };
15722
15756
  multiple: {
@@ -15763,7 +15797,9 @@ declare const VSelectionControl: {
15763
15797
  falseIcon: vue.PropType<IconValue>;
15764
15798
  trueIcon: vue.PropType<IconValue>;
15765
15799
  ripple: {
15766
- type: BooleanConstructor;
15800
+ type: vue.PropType<boolean | {
15801
+ class: string;
15802
+ } | undefined>;
15767
15803
  default: boolean;
15768
15804
  };
15769
15805
  multiple: {
@@ -15805,7 +15841,9 @@ declare const VCheckbox: {
15805
15841
  maxErrors: string | number;
15806
15842
  rules: readonly ValidationRule$1[];
15807
15843
  density: Density;
15808
- ripple: boolean;
15844
+ ripple: boolean | {
15845
+ class: string;
15846
+ } | undefined;
15809
15847
  falseIcon: NonNullable<IconValue>;
15810
15848
  trueIcon: NonNullable<IconValue>;
15811
15849
  valueComparator: typeof deepEqual;
@@ -15854,7 +15892,9 @@ declare const VCheckbox: {
15854
15892
  maxErrors: string | number;
15855
15893
  rules: readonly ValidationRule$1[];
15856
15894
  density: Density;
15857
- ripple: boolean;
15895
+ ripple: boolean | {
15896
+ class: string;
15897
+ } | undefined;
15858
15898
  falseIcon: NonNullable<IconValue>;
15859
15899
  trueIcon: NonNullable<IconValue>;
15860
15900
  valueComparator: typeof deepEqual;
@@ -15900,7 +15940,9 @@ declare const VCheckbox: {
15900
15940
  maxErrors: string | number;
15901
15941
  rules: readonly ValidationRule$1[];
15902
15942
  density: Density;
15903
- ripple: boolean;
15943
+ ripple: boolean | {
15944
+ class: string;
15945
+ } | undefined;
15904
15946
  falseIcon: NonNullable<IconValue>;
15905
15947
  trueIcon: NonNullable<IconValue>;
15906
15948
  valueComparator: typeof deepEqual;
@@ -15957,7 +15999,9 @@ declare const VCheckbox: {
15957
15999
  maxErrors: string | number;
15958
16000
  rules: readonly ValidationRule$1[];
15959
16001
  density: Density;
15960
- ripple: boolean;
16002
+ ripple: boolean | {
16003
+ class: string;
16004
+ } | undefined;
15961
16005
  falseIcon: NonNullable<IconValue>;
15962
16006
  trueIcon: NonNullable<IconValue>;
15963
16007
  valueComparator: typeof deepEqual;
@@ -16003,7 +16047,9 @@ declare const VCheckbox: {
16003
16047
  maxErrors: string | number;
16004
16048
  rules: readonly ValidationRule$1[];
16005
16049
  density: Density;
16006
- ripple: boolean;
16050
+ ripple: boolean | {
16051
+ class: string;
16052
+ } | undefined;
16007
16053
  falseIcon: NonNullable<IconValue>;
16008
16054
  trueIcon: NonNullable<IconValue>;
16009
16055
  valueComparator: typeof deepEqual;
@@ -16029,7 +16075,9 @@ declare const VCheckbox: {
16029
16075
  maxErrors: string | number;
16030
16076
  rules: readonly ValidationRule$1[];
16031
16077
  density: Density;
16032
- ripple: boolean;
16078
+ ripple: boolean | {
16079
+ class: string;
16080
+ } | undefined;
16033
16081
  falseIcon: NonNullable<IconValue>;
16034
16082
  trueIcon: NonNullable<IconValue>;
16035
16083
  valueComparator: typeof deepEqual;
@@ -16078,7 +16126,9 @@ declare const VCheckbox: {
16078
16126
  maxErrors: string | number;
16079
16127
  rules: readonly ValidationRule$1[];
16080
16128
  density: Density;
16081
- ripple: boolean;
16129
+ ripple: boolean | {
16130
+ class: string;
16131
+ } | undefined;
16082
16132
  falseIcon: NonNullable<IconValue>;
16083
16133
  trueIcon: NonNullable<IconValue>;
16084
16134
  valueComparator: typeof deepEqual;
@@ -16154,7 +16204,9 @@ declare const VCheckbox: {
16154
16204
  validator: (v: any) => boolean;
16155
16205
  };
16156
16206
  ripple: {
16157
- type: BooleanConstructor;
16207
+ type: vue.PropType<boolean | {
16208
+ class: string;
16209
+ } | undefined>;
16158
16210
  default: boolean;
16159
16211
  };
16160
16212
  defaultsTarget: StringConstructor;
@@ -16248,7 +16300,9 @@ declare const VCheckbox: {
16248
16300
  validator: (v: any) => boolean;
16249
16301
  };
16250
16302
  ripple: {
16251
- type: BooleanConstructor;
16303
+ type: vue.PropType<boolean | {
16304
+ class: string;
16305
+ } | undefined>;
16252
16306
  default: boolean;
16253
16307
  };
16254
16308
  defaultsTarget: StringConstructor;
@@ -16321,7 +16375,9 @@ declare const VCheckboxBtn: {
16321
16375
  readonly: boolean | null;
16322
16376
  indeterminate: boolean;
16323
16377
  density: Density;
16324
- ripple: boolean;
16378
+ ripple: boolean | {
16379
+ class: string;
16380
+ } | undefined;
16325
16381
  falseIcon: NonNullable<IconValue>;
16326
16382
  trueIcon: NonNullable<IconValue>;
16327
16383
  valueComparator: typeof deepEqual;
@@ -16353,7 +16409,9 @@ declare const VCheckboxBtn: {
16353
16409
  readonly: boolean | null;
16354
16410
  indeterminate: boolean;
16355
16411
  density: Density;
16356
- ripple: boolean;
16412
+ ripple: boolean | {
16413
+ class: string;
16414
+ } | undefined;
16357
16415
  falseIcon: NonNullable<IconValue>;
16358
16416
  trueIcon: NonNullable<IconValue>;
16359
16417
  valueComparator: typeof deepEqual;
@@ -16382,7 +16440,9 @@ declare const VCheckboxBtn: {
16382
16440
  readonly: boolean | null;
16383
16441
  indeterminate: boolean;
16384
16442
  density: Density;
16385
- ripple: boolean;
16443
+ ripple: boolean | {
16444
+ class: string;
16445
+ } | undefined;
16386
16446
  falseIcon: NonNullable<IconValue>;
16387
16447
  trueIcon: NonNullable<IconValue>;
16388
16448
  valueComparator: typeof deepEqual;
@@ -16419,7 +16479,9 @@ declare const VCheckboxBtn: {
16419
16479
  readonly: boolean | null;
16420
16480
  indeterminate: boolean;
16421
16481
  density: Density;
16422
- ripple: boolean;
16482
+ ripple: boolean | {
16483
+ class: string;
16484
+ } | undefined;
16423
16485
  falseIcon: NonNullable<IconValue>;
16424
16486
  trueIcon: NonNullable<IconValue>;
16425
16487
  valueComparator: typeof deepEqual;
@@ -16448,7 +16510,9 @@ declare const VCheckboxBtn: {
16448
16510
  readonly: boolean | null;
16449
16511
  indeterminate: boolean;
16450
16512
  density: Density;
16451
- ripple: boolean;
16513
+ ripple: boolean | {
16514
+ class: string;
16515
+ } | undefined;
16452
16516
  falseIcon: NonNullable<IconValue>;
16453
16517
  trueIcon: NonNullable<IconValue>;
16454
16518
  valueComparator: typeof deepEqual;
@@ -16466,7 +16530,9 @@ declare const VCheckboxBtn: {
16466
16530
  readonly: boolean | null;
16467
16531
  indeterminate: boolean;
16468
16532
  density: Density;
16469
- ripple: boolean;
16533
+ ripple: boolean | {
16534
+ class: string;
16535
+ } | undefined;
16470
16536
  falseIcon: NonNullable<IconValue>;
16471
16537
  trueIcon: NonNullable<IconValue>;
16472
16538
  valueComparator: typeof deepEqual;
@@ -16498,7 +16564,9 @@ declare const VCheckboxBtn: {
16498
16564
  readonly: boolean | null;
16499
16565
  indeterminate: boolean;
16500
16566
  density: Density;
16501
- ripple: boolean;
16567
+ ripple: boolean | {
16568
+ class: string;
16569
+ } | undefined;
16502
16570
  falseIcon: NonNullable<IconValue>;
16503
16571
  trueIcon: NonNullable<IconValue>;
16504
16572
  valueComparator: typeof deepEqual;
@@ -16555,7 +16623,9 @@ declare const VCheckboxBtn: {
16555
16623
  default: NonNullable<IconValue>;
16556
16624
  };
16557
16625
  ripple: {
16558
- type: BooleanConstructor;
16626
+ type: vue.PropType<boolean | {
16627
+ class: string;
16628
+ } | undefined>;
16559
16629
  default: boolean;
16560
16630
  };
16561
16631
  multiple: {
@@ -16613,7 +16683,9 @@ declare const VCheckboxBtn: {
16613
16683
  default: NonNullable<IconValue>;
16614
16684
  };
16615
16685
  ripple: {
16616
- type: BooleanConstructor;
16686
+ type: vue.PropType<boolean | {
16687
+ class: string;
16688
+ } | undefined>;
16617
16689
  default: boolean;
16618
16690
  };
16619
16691
  multiple: {
@@ -32885,8 +32957,8 @@ declare const VFileInput: {
32885
32957
  hint?: string | undefined;
32886
32958
  hideDetails?: boolean | "auto" | undefined;
32887
32959
  } & {}, {
32888
- reset: () => void;
32889
- resetValidation: () => void;
32960
+ reset: () => Promise<void>;
32961
+ resetValidation: () => Promise<void>;
32890
32962
  validate: (silent?: boolean) => Promise<string[]>;
32891
32963
  isValid: vue.ComputedRef<boolean | null>;
32892
32964
  errorMessages: vue.ComputedRef<string[]>;
@@ -32973,8 +33045,8 @@ declare const VFileInput: {
32973
33045
  hint?: string | undefined;
32974
33046
  hideDetails?: boolean | "auto" | undefined;
32975
33047
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
32976
- reset: () => void;
32977
- resetValidation: () => void;
33048
+ reset: () => Promise<void>;
33049
+ resetValidation: () => Promise<void>;
32978
33050
  validate: (silent?: boolean) => Promise<string[]>;
32979
33051
  isValid: vue.ComputedRef<boolean | null>;
32980
33052
  errorMessages: vue.ComputedRef<string[]>;
@@ -33454,8 +33526,8 @@ declare const VFileInput: {
33454
33526
  hint?: string | undefined;
33455
33527
  hideDetails?: boolean | "auto" | undefined;
33456
33528
  } & {}, {
33457
- reset: () => void;
33458
- resetValidation: () => void;
33529
+ reset: () => Promise<void>;
33530
+ resetValidation: () => Promise<void>;
33459
33531
  validate: (silent?: boolean) => Promise<string[]>;
33460
33532
  isValid: vue.ComputedRef<boolean | null>;
33461
33533
  errorMessages: vue.ComputedRef<string[]>;
@@ -33542,8 +33614,8 @@ declare const VFileInput: {
33542
33614
  hint?: string | undefined;
33543
33615
  hideDetails?: boolean | "auto" | undefined;
33544
33616
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
33545
- reset: () => void;
33546
- resetValidation: () => void;
33617
+ reset: () => Promise<void>;
33618
+ resetValidation: () => Promise<void>;
33547
33619
  validate: (silent?: boolean) => Promise<string[]>;
33548
33620
  isValid: vue.ComputedRef<boolean | null>;
33549
33621
  errorMessages: vue.ComputedRef<string[]>;
@@ -33846,8 +33918,8 @@ declare const VFileInput: {
33846
33918
  hint?: string | undefined;
33847
33919
  hideDetails?: boolean | "auto" | undefined;
33848
33920
  } & {}, {
33849
- reset: () => void;
33850
- resetValidation: () => void;
33921
+ reset: () => Promise<void>;
33922
+ resetValidation: () => Promise<void>;
33851
33923
  validate: (silent?: boolean) => Promise<string[]>;
33852
33924
  isValid: vue.ComputedRef<boolean | null>;
33853
33925
  errorMessages: vue.ComputedRef<string[]>;
@@ -33934,8 +34006,8 @@ declare const VFileInput: {
33934
34006
  hint?: string | undefined;
33935
34007
  hideDetails?: boolean | "auto" | undefined;
33936
34008
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
33937
- reset: () => void;
33938
- resetValidation: () => void;
34009
+ reset: () => Promise<void>;
34010
+ resetValidation: () => Promise<void>;
33939
34011
  validate: (silent?: boolean) => Promise<string[]>;
33940
34012
  isValid: vue.ComputedRef<boolean | null>;
33941
34013
  errorMessages: vue.ComputedRef<string[]>;
@@ -34516,8 +34588,8 @@ declare const VForm: {
34516
34588
  items: vue.Ref<{
34517
34589
  id: string | number;
34518
34590
  validate: () => Promise<string[]>;
34519
- reset: () => void;
34520
- resetValidation: () => void;
34591
+ reset: () => Promise<void>;
34592
+ resetValidation: () => Promise<void>;
34521
34593
  isValid: boolean | null;
34522
34594
  errorMessages: string[];
34523
34595
  }[]>;
@@ -34545,8 +34617,8 @@ declare const VForm: {
34545
34617
  items: vue.Ref<{
34546
34618
  id: string | number;
34547
34619
  validate: () => Promise<string[]>;
34548
- reset: () => void;
34549
- resetValidation: () => void;
34620
+ reset: () => Promise<void>;
34621
+ resetValidation: () => Promise<void>;
34550
34622
  isValid: boolean | null;
34551
34623
  errorMessages: string[];
34552
34624
  }[]>;
@@ -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
  }[]>;
@@ -34606,8 +34678,8 @@ declare const VForm: {
34606
34678
  items: vue.Ref<{
34607
34679
  id: string | number;
34608
34680
  validate: () => Promise<string[]>;
34609
- reset: () => void;
34610
- resetValidation: () => void;
34681
+ reset: () => Promise<void>;
34682
+ resetValidation: () => Promise<void>;
34611
34683
  isValid: boolean | null;
34612
34684
  errorMessages: string[];
34613
34685
  }[]>;
@@ -34638,8 +34710,8 @@ declare const VForm: {
34638
34710
  items: vue.Ref<{
34639
34711
  id: string | number;
34640
34712
  validate: () => Promise<string[]>;
34641
- reset: () => void;
34642
- resetValidation: () => void;
34713
+ reset: () => Promise<void>;
34714
+ resetValidation: () => Promise<void>;
34643
34715
  isValid: boolean | null;
34644
34716
  errorMessages: string[];
34645
34717
  }[]>;
@@ -34680,8 +34752,8 @@ declare const VForm: {
34680
34752
  items: vue.Ref<{
34681
34753
  id: string | number;
34682
34754
  validate: () => Promise<string[]>;
34683
- reset: () => void;
34684
- resetValidation: () => void;
34755
+ reset: () => Promise<void>;
34756
+ resetValidation: () => Promise<void>;
34685
34757
  isValid: boolean | null;
34686
34758
  errorMessages: string[];
34687
34759
  }[]>;
@@ -34709,8 +34781,8 @@ declare const VForm: {
34709
34781
  items: vue.Ref<{
34710
34782
  id: string | number;
34711
34783
  validate: () => Promise<string[]>;
34712
- reset: () => void;
34713
- resetValidation: () => void;
34784
+ reset: () => Promise<void>;
34785
+ resetValidation: () => Promise<void>;
34714
34786
  isValid: boolean | null;
34715
34787
  errorMessages: string[];
34716
34788
  }[]>;
@@ -34739,8 +34811,8 @@ declare const VForm: {
34739
34811
  items: vue.Ref<{
34740
34812
  id: string | number;
34741
34813
  validate: () => Promise<string[]>;
34742
- reset: () => void;
34743
- resetValidation: () => void;
34814
+ reset: () => Promise<void>;
34815
+ resetValidation: () => Promise<void>;
34744
34816
  isValid: boolean | null;
34745
34817
  errorMessages: string[];
34746
34818
  }[]>;
@@ -34770,8 +34842,8 @@ declare const VForm: {
34770
34842
  items: vue.Ref<{
34771
34843
  id: string | number;
34772
34844
  validate: () => Promise<string[]>;
34773
- reset: () => void;
34774
- resetValidation: () => void;
34845
+ reset: () => Promise<void>;
34846
+ resetValidation: () => Promise<void>;
34775
34847
  isValid: boolean | null;
34776
34848
  errorMessages: string[];
34777
34849
  }[]>;
@@ -34810,8 +34882,8 @@ declare const VForm: {
34810
34882
  items: vue.Ref<{
34811
34883
  id: string | number;
34812
34884
  validate: () => Promise<string[]>;
34813
- reset: () => void;
34814
- resetValidation: () => void;
34885
+ reset: () => Promise<void>;
34886
+ resetValidation: () => Promise<void>;
34815
34887
  isValid: boolean | null;
34816
34888
  errorMessages: string[];
34817
34889
  }[]>;
@@ -34859,8 +34931,8 @@ declare const VForm: {
34859
34931
  items: vue.Ref<{
34860
34932
  id: string | number;
34861
34933
  validate: () => Promise<string[]>;
34862
- reset: () => void;
34863
- resetValidation: () => void;
34934
+ reset: () => Promise<void>;
34935
+ resetValidation: () => Promise<void>;
34864
34936
  isValid: boolean | null;
34865
34937
  errorMessages: string[];
34866
34938
  }[]>;
@@ -34888,8 +34960,8 @@ declare const VForm: {
34888
34960
  items: vue.Ref<{
34889
34961
  id: string | number;
34890
34962
  validate: () => Promise<string[]>;
34891
- reset: () => void;
34892
- resetValidation: () => void;
34963
+ reset: () => Promise<void>;
34964
+ resetValidation: () => Promise<void>;
34893
34965
  isValid: boolean | null;
34894
34966
  errorMessages: string[];
34895
34967
  }[]>;
@@ -34918,8 +34990,8 @@ declare const VForm: {
34918
34990
  items: vue.Ref<{
34919
34991
  id: string | number;
34920
34992
  validate: () => Promise<string[]>;
34921
- reset: () => void;
34922
- resetValidation: () => void;
34993
+ reset: () => Promise<void>;
34994
+ resetValidation: () => Promise<void>;
34923
34995
  isValid: boolean | null;
34924
34996
  errorMessages: string[];
34925
34997
  }[]>;
@@ -34949,8 +35021,8 @@ declare const VForm: {
34949
35021
  items: vue.Ref<{
34950
35022
  id: string | number;
34951
35023
  validate: () => Promise<string[]>;
34952
- reset: () => void;
34953
- resetValidation: () => void;
35024
+ reset: () => Promise<void>;
35025
+ resetValidation: () => Promise<void>;
34954
35026
  isValid: boolean | null;
34955
35027
  errorMessages: string[];
34956
35028
  }[]>;
@@ -34981,8 +35053,8 @@ declare const VForm: {
34981
35053
  items: vue.Ref<{
34982
35054
  id: string | number;
34983
35055
  validate: () => Promise<string[]>;
34984
- reset: () => void;
34985
- resetValidation: () => void;
35056
+ reset: () => Promise<void>;
35057
+ resetValidation: () => Promise<void>;
34986
35058
  isValid: boolean | null;
34987
35059
  errorMessages: string[];
34988
35060
  }[]>;
@@ -35031,8 +35103,8 @@ declare const VForm: {
35031
35103
  items: vue.Ref<{
35032
35104
  id: string | number;
35033
35105
  validate: () => Promise<string[]>;
35034
- reset: () => void;
35035
- resetValidation: () => void;
35106
+ reset: () => Promise<void>;
35107
+ resetValidation: () => Promise<void>;
35036
35108
  isValid: boolean | null;
35037
35109
  errorMessages: string[];
35038
35110
  }[]>;
@@ -35060,8 +35132,8 @@ declare const VForm: {
35060
35132
  items: vue.Ref<{
35061
35133
  id: string | number;
35062
35134
  validate: () => Promise<string[]>;
35063
- reset: () => void;
35064
- resetValidation: () => void;
35135
+ reset: () => Promise<void>;
35136
+ resetValidation: () => Promise<void>;
35065
35137
  isValid: boolean | null;
35066
35138
  errorMessages: string[];
35067
35139
  }[]>;
@@ -35090,8 +35162,8 @@ declare const VForm: {
35090
35162
  items: vue.Ref<{
35091
35163
  id: string | number;
35092
35164
  validate: () => Promise<string[]>;
35093
- reset: () => void;
35094
- resetValidation: () => void;
35165
+ reset: () => Promise<void>;
35166
+ resetValidation: () => Promise<void>;
35095
35167
  isValid: boolean | null;
35096
35168
  errorMessages: string[];
35097
35169
  }[]>;
@@ -35121,8 +35193,8 @@ declare const VForm: {
35121
35193
  items: vue.Ref<{
35122
35194
  id: string | number;
35123
35195
  validate: () => Promise<string[]>;
35124
- reset: () => void;
35125
- resetValidation: () => void;
35196
+ reset: () => Promise<void>;
35197
+ resetValidation: () => Promise<void>;
35126
35198
  isValid: boolean | null;
35127
35199
  errorMessages: string[];
35128
35200
  }[]>;
@@ -35153,8 +35225,8 @@ declare const VForm: {
35153
35225
  items: vue.Ref<{
35154
35226
  id: string | number;
35155
35227
  validate: () => Promise<string[]>;
35156
- reset: () => void;
35157
- resetValidation: () => void;
35228
+ reset: () => Promise<void>;
35229
+ resetValidation: () => Promise<void>;
35158
35230
  isValid: boolean | null;
35159
35231
  errorMessages: string[];
35160
35232
  }[]>;
@@ -35192,8 +35264,8 @@ declare const VForm: {
35192
35264
  items: vue.Ref<{
35193
35265
  id: string | number;
35194
35266
  validate: () => Promise<string[]>;
35195
- reset: () => void;
35196
- resetValidation: () => void;
35267
+ reset: () => Promise<void>;
35268
+ resetValidation: () => Promise<void>;
35197
35269
  isValid: boolean | null;
35198
35270
  errorMessages: string[];
35199
35271
  }[]>;
@@ -44751,7 +44823,9 @@ declare const VRadio: {
44751
44823
  multiple: boolean | null;
44752
44824
  readonly: boolean | null;
44753
44825
  density: Density;
44754
- ripple: boolean;
44826
+ ripple: boolean | {
44827
+ class: string;
44828
+ } | undefined;
44755
44829
  falseIcon: NonNullable<IconValue>;
44756
44830
  trueIcon: NonNullable<IconValue>;
44757
44831
  valueComparator: typeof deepEqual;
@@ -44813,7 +44887,9 @@ declare const VRadio: {
44813
44887
  multiple: boolean | null;
44814
44888
  readonly: boolean | null;
44815
44889
  density: Density;
44816
- ripple: boolean;
44890
+ ripple: boolean | {
44891
+ class: string;
44892
+ } | undefined;
44817
44893
  falseIcon: NonNullable<IconValue>;
44818
44894
  trueIcon: NonNullable<IconValue>;
44819
44895
  valueComparator: typeof deepEqual;
@@ -44875,7 +44951,9 @@ declare const VRadio: {
44875
44951
  multiple: boolean | null;
44876
44952
  readonly: boolean | null;
44877
44953
  density: Density;
44878
- ripple: boolean;
44954
+ ripple: boolean | {
44955
+ class: string;
44956
+ } | undefined;
44879
44957
  falseIcon: NonNullable<IconValue>;
44880
44958
  trueIcon: NonNullable<IconValue>;
44881
44959
  valueComparator: typeof deepEqual;
@@ -44910,7 +44988,9 @@ declare const VRadio: {
44910
44988
  multiple: boolean | null;
44911
44989
  readonly: boolean | null;
44912
44990
  density: Density;
44913
- ripple: boolean;
44991
+ ripple: boolean | {
44992
+ class: string;
44993
+ } | undefined;
44914
44994
  falseIcon: NonNullable<IconValue>;
44915
44995
  trueIcon: NonNullable<IconValue>;
44916
44996
  valueComparator: typeof deepEqual;
@@ -44972,7 +45052,9 @@ declare const VRadio: {
44972
45052
  multiple: boolean | null;
44973
45053
  readonly: boolean | null;
44974
45054
  density: Density;
44975
- ripple: boolean;
45055
+ ripple: boolean | {
45056
+ class: string;
45057
+ } | undefined;
44976
45058
  falseIcon: NonNullable<IconValue>;
44977
45059
  trueIcon: NonNullable<IconValue>;
44978
45060
  valueComparator: typeof deepEqual;
@@ -44988,7 +45070,9 @@ declare const VRadio: {
44988
45070
  multiple: boolean | null;
44989
45071
  readonly: boolean | null;
44990
45072
  density: Density;
44991
- ripple: boolean;
45073
+ ripple: boolean | {
45074
+ class: string;
45075
+ } | undefined;
44992
45076
  falseIcon: NonNullable<IconValue>;
44993
45077
  trueIcon: NonNullable<IconValue>;
44994
45078
  valueComparator: typeof deepEqual;
@@ -45050,7 +45134,9 @@ declare const VRadio: {
45050
45134
  multiple: boolean | null;
45051
45135
  readonly: boolean | null;
45052
45136
  density: Density;
45053
- ripple: boolean;
45137
+ ripple: boolean | {
45138
+ class: string;
45139
+ } | undefined;
45054
45140
  falseIcon: NonNullable<IconValue>;
45055
45141
  trueIcon: NonNullable<IconValue>;
45056
45142
  valueComparator: typeof deepEqual;
@@ -45100,7 +45186,9 @@ declare const VRadio: {
45100
45186
  default: NonNullable<IconValue>;
45101
45187
  };
45102
45188
  ripple: {
45103
- type: BooleanConstructor;
45189
+ type: vue.PropType<boolean | {
45190
+ class: string;
45191
+ } | undefined>;
45104
45192
  default: boolean;
45105
45193
  };
45106
45194
  multiple: {
@@ -45153,7 +45241,9 @@ declare const VRadio: {
45153
45241
  default: NonNullable<IconValue>;
45154
45242
  };
45155
45243
  ripple: {
45156
- type: BooleanConstructor;
45244
+ type: vue.PropType<boolean | {
45245
+ class: string;
45246
+ } | undefined>;
45157
45247
  default: boolean;
45158
45248
  };
45159
45249
  multiple: {
@@ -45202,7 +45292,9 @@ declare const VRadioGroup: {
45202
45292
  maxErrors: string | number;
45203
45293
  rules: readonly ValidationRule$1[];
45204
45294
  density: Density;
45205
- ripple: boolean;
45295
+ ripple: boolean | {
45296
+ class: string;
45297
+ } | undefined;
45206
45298
  falseIcon: IconValue;
45207
45299
  trueIcon: IconValue;
45208
45300
  valueComparator: typeof deepEqual;
@@ -45243,7 +45335,9 @@ declare const VRadioGroup: {
45243
45335
  maxErrors: string | number;
45244
45336
  rules: readonly ValidationRule$1[];
45245
45337
  density: Density;
45246
- ripple: boolean;
45338
+ ripple: boolean | {
45339
+ class: string;
45340
+ } | undefined;
45247
45341
  falseIcon: IconValue;
45248
45342
  trueIcon: IconValue;
45249
45343
  valueComparator: typeof deepEqual;
@@ -45282,7 +45376,9 @@ declare const VRadioGroup: {
45282
45376
  maxErrors: string | number;
45283
45377
  rules: readonly ValidationRule$1[];
45284
45378
  density: Density;
45285
- ripple: boolean;
45379
+ ripple: boolean | {
45380
+ class: string;
45381
+ } | undefined;
45286
45382
  falseIcon: IconValue;
45287
45383
  trueIcon: IconValue;
45288
45384
  valueComparator: typeof deepEqual;
@@ -45333,7 +45429,9 @@ declare const VRadioGroup: {
45333
45429
  maxErrors: string | number;
45334
45430
  rules: readonly ValidationRule$1[];
45335
45431
  density: Density;
45336
- ripple: boolean;
45432
+ ripple: boolean | {
45433
+ class: string;
45434
+ } | undefined;
45337
45435
  falseIcon: IconValue;
45338
45436
  trueIcon: IconValue;
45339
45437
  valueComparator: typeof deepEqual;
@@ -45372,7 +45470,9 @@ declare const VRadioGroup: {
45372
45470
  maxErrors: string | number;
45373
45471
  rules: readonly ValidationRule$1[];
45374
45472
  density: Density;
45375
- ripple: boolean;
45473
+ ripple: boolean | {
45474
+ class: string;
45475
+ } | undefined;
45376
45476
  falseIcon: IconValue;
45377
45477
  trueIcon: IconValue;
45378
45478
  valueComparator: typeof deepEqual;
@@ -45398,7 +45498,9 @@ declare const VRadioGroup: {
45398
45498
  maxErrors: string | number;
45399
45499
  rules: readonly ValidationRule$1[];
45400
45500
  density: Density;
45401
- ripple: boolean;
45501
+ ripple: boolean | {
45502
+ class: string;
45503
+ } | undefined;
45402
45504
  falseIcon: IconValue;
45403
45505
  trueIcon: IconValue;
45404
45506
  valueComparator: typeof deepEqual;
@@ -45439,7 +45541,9 @@ declare const VRadioGroup: {
45439
45541
  maxErrors: string | number;
45440
45542
  rules: readonly ValidationRule$1[];
45441
45543
  density: Density;
45442
- ripple: boolean;
45544
+ ripple: boolean | {
45545
+ class: string;
45546
+ } | undefined;
45443
45547
  falseIcon: IconValue;
45444
45548
  trueIcon: IconValue;
45445
45549
  valueComparator: typeof deepEqual;
@@ -45513,7 +45617,9 @@ declare const VRadioGroup: {
45513
45617
  validator: (v: any) => boolean;
45514
45618
  };
45515
45619
  ripple: {
45516
- type: BooleanConstructor;
45620
+ type: vue.PropType<boolean | {
45621
+ class: string;
45622
+ } | undefined>;
45517
45623
  default: boolean;
45518
45624
  };
45519
45625
  defaultsTarget: StringConstructor;
@@ -45602,7 +45708,9 @@ declare const VRadioGroup: {
45602
45708
  validator: (v: any) => boolean;
45603
45709
  };
45604
45710
  ripple: {
45605
- type: BooleanConstructor;
45711
+ type: vue.PropType<boolean | {
45712
+ class: string;
45713
+ } | undefined>;
45606
45714
  default: boolean;
45607
45715
  };
45608
45716
  defaultsTarget: StringConstructor;
@@ -56290,7 +56398,9 @@ declare const VSwitch: {
56290
56398
  maxErrors: string | number;
56291
56399
  rules: readonly ValidationRule$1[];
56292
56400
  density: Density;
56293
- ripple: boolean;
56401
+ ripple: boolean | {
56402
+ class: string;
56403
+ } | undefined;
56294
56404
  valueComparator: typeof deepEqual;
56295
56405
  centerAffix: boolean;
56296
56406
  hideSpinButtons: boolean;
@@ -56344,7 +56454,9 @@ declare const VSwitch: {
56344
56454
  maxErrors: string | number;
56345
56455
  rules: readonly ValidationRule$1[];
56346
56456
  density: Density;
56347
- ripple: boolean;
56457
+ ripple: boolean | {
56458
+ class: string;
56459
+ } | undefined;
56348
56460
  valueComparator: typeof deepEqual;
56349
56461
  centerAffix: boolean;
56350
56462
  hideSpinButtons: boolean;
@@ -56394,7 +56506,9 @@ declare const VSwitch: {
56394
56506
  maxErrors: string | number;
56395
56507
  rules: readonly ValidationRule$1[];
56396
56508
  density: Density;
56397
- ripple: boolean;
56509
+ ripple: boolean | {
56510
+ class: string;
56511
+ } | undefined;
56398
56512
  valueComparator: typeof deepEqual;
56399
56513
  centerAffix: boolean;
56400
56514
  hideSpinButtons: boolean;
@@ -56466,7 +56580,9 @@ declare const VSwitch: {
56466
56580
  maxErrors: string | number;
56467
56581
  rules: readonly ValidationRule$1[];
56468
56582
  density: Density;
56469
- ripple: boolean;
56583
+ ripple: boolean | {
56584
+ class: string;
56585
+ } | undefined;
56470
56586
  valueComparator: typeof deepEqual;
56471
56587
  centerAffix: boolean;
56472
56588
  hideSpinButtons: boolean;
@@ -56516,7 +56632,9 @@ declare const VSwitch: {
56516
56632
  maxErrors: string | number;
56517
56633
  rules: readonly ValidationRule$1[];
56518
56634
  density: Density;
56519
- ripple: boolean;
56635
+ ripple: boolean | {
56636
+ class: string;
56637
+ } | undefined;
56520
56638
  valueComparator: typeof deepEqual;
56521
56639
  centerAffix: boolean;
56522
56640
  hideSpinButtons: boolean;
@@ -56543,7 +56661,9 @@ declare const VSwitch: {
56543
56661
  maxErrors: string | number;
56544
56662
  rules: readonly ValidationRule$1[];
56545
56663
  density: Density;
56546
- ripple: boolean;
56664
+ ripple: boolean | {
56665
+ class: string;
56666
+ } | undefined;
56547
56667
  valueComparator: typeof deepEqual;
56548
56668
  centerAffix: boolean;
56549
56669
  hideSpinButtons: boolean;
@@ -56597,7 +56717,9 @@ declare const VSwitch: {
56597
56717
  maxErrors: string | number;
56598
56718
  rules: readonly ValidationRule$1[];
56599
56719
  density: Density;
56600
- ripple: boolean;
56720
+ ripple: boolean | {
56721
+ class: string;
56722
+ } | undefined;
56601
56723
  valueComparator: typeof deepEqual;
56602
56724
  centerAffix: boolean;
56603
56725
  hideSpinButtons: boolean;
@@ -56674,7 +56796,9 @@ declare const VSwitch: {
56674
56796
  falseIcon: vue.PropType<IconValue>;
56675
56797
  trueIcon: vue.PropType<IconValue>;
56676
56798
  ripple: {
56677
- type: BooleanConstructor;
56799
+ type: vue.PropType<boolean | {
56800
+ class: string;
56801
+ } | undefined>;
56678
56802
  default: boolean;
56679
56803
  };
56680
56804
  multiple: {
@@ -56765,7 +56889,9 @@ declare const VSwitch: {
56765
56889
  falseIcon: vue.PropType<IconValue>;
56766
56890
  trueIcon: vue.PropType<IconValue>;
56767
56891
  ripple: {
56768
- type: BooleanConstructor;
56892
+ type: vue.PropType<boolean | {
56893
+ class: string;
56894
+ } | undefined>;
56769
56895
  default: boolean;
56770
56896
  };
56771
56897
  multiple: {
@@ -59499,8 +59625,8 @@ declare const VTextarea: {
59499
59625
  hint?: string | undefined;
59500
59626
  hideDetails?: boolean | "auto" | undefined;
59501
59627
  } & {}, {
59502
- reset: () => void;
59503
- resetValidation: () => void;
59628
+ reset: () => Promise<void>;
59629
+ resetValidation: () => Promise<void>;
59504
59630
  validate: (silent?: boolean) => Promise<string[]>;
59505
59631
  isValid: vue.ComputedRef<boolean | null>;
59506
59632
  errorMessages: vue.ComputedRef<string[]>;
@@ -59587,8 +59713,8 @@ declare const VTextarea: {
59587
59713
  hint?: string | undefined;
59588
59714
  hideDetails?: boolean | "auto" | undefined;
59589
59715
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
59590
- reset: () => void;
59591
- resetValidation: () => void;
59716
+ reset: () => Promise<void>;
59717
+ resetValidation: () => Promise<void>;
59592
59718
  validate: (silent?: boolean) => Promise<string[]>;
59593
59719
  isValid: vue.ComputedRef<boolean | null>;
59594
59720
  errorMessages: vue.ComputedRef<string[]>;
@@ -60034,8 +60160,8 @@ declare const VTextarea: {
60034
60160
  hint?: string | undefined;
60035
60161
  hideDetails?: boolean | "auto" | undefined;
60036
60162
  } & {}, {
60037
- reset: () => void;
60038
- resetValidation: () => void;
60163
+ reset: () => Promise<void>;
60164
+ resetValidation: () => Promise<void>;
60039
60165
  validate: (silent?: boolean) => Promise<string[]>;
60040
60166
  isValid: vue.ComputedRef<boolean | null>;
60041
60167
  errorMessages: vue.ComputedRef<string[]>;
@@ -60122,8 +60248,8 @@ declare const VTextarea: {
60122
60248
  hint?: string | undefined;
60123
60249
  hideDetails?: boolean | "auto" | undefined;
60124
60250
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
60125
- reset: () => void;
60126
- resetValidation: () => void;
60251
+ reset: () => Promise<void>;
60252
+ resetValidation: () => Promise<void>;
60127
60253
  validate: (silent?: boolean) => Promise<string[]>;
60128
60254
  isValid: vue.ComputedRef<boolean | null>;
60129
60255
  errorMessages: vue.ComputedRef<string[]>;
@@ -60413,8 +60539,8 @@ declare const VTextarea: {
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 VTextarea: {
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[]>;
@@ -61056,8 +61182,8 @@ declare const VTextField: {
61056
61182
  hint?: string | undefined;
61057
61183
  hideDetails?: boolean | "auto" | undefined;
61058
61184
  } & {}, {
61059
- reset: () => void;
61060
- resetValidation: () => void;
61185
+ reset: () => Promise<void>;
61186
+ resetValidation: () => Promise<void>;
61061
61187
  validate: (silent?: boolean) => Promise<string[]>;
61062
61188
  isValid: vue.ComputedRef<boolean | null>;
61063
61189
  errorMessages: vue.ComputedRef<string[]>;
@@ -61144,8 +61270,8 @@ declare const VTextField: {
61144
61270
  hint?: string | undefined;
61145
61271
  hideDetails?: boolean | "auto" | undefined;
61146
61272
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
61147
- reset: () => void;
61148
- resetValidation: () => void;
61273
+ reset: () => Promise<void>;
61274
+ resetValidation: () => Promise<void>;
61149
61275
  validate: (silent?: boolean) => Promise<string[]>;
61150
61276
  isValid: vue.ComputedRef<boolean | null>;
61151
61277
  errorMessages: vue.ComputedRef<string[]>;
@@ -61850,8 +61976,8 @@ declare const VTextField: {
61850
61976
  hint?: string | undefined;
61851
61977
  hideDetails?: boolean | "auto" | undefined;
61852
61978
  } & {}, {
61853
- reset: () => void;
61854
- resetValidation: () => void;
61979
+ reset: () => Promise<void>;
61980
+ resetValidation: () => Promise<void>;
61855
61981
  validate: (silent?: boolean) => Promise<string[]>;
61856
61982
  isValid: vue.ComputedRef<boolean | null>;
61857
61983
  errorMessages: vue.ComputedRef<string[]>;
@@ -61938,8 +62064,8 @@ declare const VTextField: {
61938
62064
  hint?: string | undefined;
61939
62065
  hideDetails?: boolean | "auto" | undefined;
61940
62066
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
61941
- reset: () => void;
61942
- resetValidation: () => void;
62067
+ reset: () => Promise<void>;
62068
+ resetValidation: () => Promise<void>;
61943
62069
  validate: (silent?: boolean) => Promise<string[]>;
61944
62070
  isValid: vue.ComputedRef<boolean | null>;
61945
62071
  errorMessages: vue.ComputedRef<string[]>;
@@ -62484,8 +62610,8 @@ declare const VTextField: {
62484
62610
  hint?: string | undefined;
62485
62611
  hideDetails?: boolean | "auto" | undefined;
62486
62612
  } & {}, {
62487
- reset: () => void;
62488
- resetValidation: () => void;
62613
+ reset: () => Promise<void>;
62614
+ resetValidation: () => Promise<void>;
62489
62615
  validate: (silent?: boolean) => Promise<string[]>;
62490
62616
  isValid: vue.ComputedRef<boolean | null>;
62491
62617
  errorMessages: vue.ComputedRef<string[]>;
@@ -62572,8 +62698,8 @@ declare const VTextField: {
62572
62698
  hint?: string | undefined;
62573
62699
  hideDetails?: boolean | "auto" | undefined;
62574
62700
  } & {}, "reset" | "isValid" | "errorMessages" | "validate" | "resetValidation"> & vue.ShallowUnwrapRef<{
62575
- reset: () => void;
62576
- resetValidation: () => void;
62701
+ reset: () => Promise<void>;
62702
+ resetValidation: () => Promise<void>;
62577
62703
  validate: (silent?: boolean) => Promise<string[]>;
62578
62704
  isValid: vue.ComputedRef<boolean | null>;
62579
62705
  errorMessages: vue.ComputedRef<string[]>;
@@ -66067,8 +66193,8 @@ declare const VValidation: {
66067
66193
  isPristine: vue.ShallowRef<boolean>;
66068
66194
  isValid: vue.ComputedRef<boolean | null>;
66069
66195
  isValidating: vue.ShallowRef<boolean>;
66070
- reset: () => void;
66071
- resetValidation: () => void;
66196
+ reset: () => Promise<void>;
66197
+ resetValidation: () => Promise<void>;
66072
66198
  validate: (silent?: boolean) => Promise<string[]>;
66073
66199
  validationClasses: vue.ComputedRef<{
66074
66200
  [x: string]: boolean;
@@ -66146,8 +66272,8 @@ declare const VValidation: {
66146
66272
  isPristine: vue.ShallowRef<boolean>;
66147
66273
  isValid: vue.ComputedRef<boolean | null>;
66148
66274
  isValidating: vue.ShallowRef<boolean>;
66149
- reset: () => void;
66150
- resetValidation: () => void;
66275
+ reset: () => Promise<void>;
66276
+ resetValidation: () => Promise<void>;
66151
66277
  validate: (silent?: boolean) => Promise<string[]>;
66152
66278
  validationClasses: vue.ComputedRef<{
66153
66279
  [x: string]: boolean;
@@ -73075,6 +73201,840 @@ declare const VSpeedDial: {
73075
73201
  }>>;
73076
73202
  type VSpeedDial = InstanceType<typeof VSpeedDial>;
73077
73203
 
73204
+ type Period$1 = 'am' | 'pm';
73205
+ type AllowFunction = (val: number) => boolean;
73206
+
73207
+ declare const VTimePicker: {
73208
+ new (...args: any[]): vue.CreateComponentPublicInstance<{
73209
+ style: vue.StyleValue;
73210
+ title: string;
73211
+ disabled: boolean;
73212
+ readonly: boolean;
73213
+ tag: string;
73214
+ format: "ampm" | "24hr";
73215
+ tile: boolean;
73216
+ scrollable: boolean;
73217
+ hideHeader: boolean;
73218
+ useSeconds: boolean;
73219
+ ampmInTitle: boolean;
73220
+ } & {
73221
+ max?: string | undefined;
73222
+ location?: Anchor | undefined;
73223
+ height?: string | number | undefined;
73224
+ width?: string | number | undefined;
73225
+ min?: string | undefined;
73226
+ border?: string | number | boolean | undefined;
73227
+ color?: string | undefined;
73228
+ maxHeight?: string | number | undefined;
73229
+ maxWidth?: string | number | undefined;
73230
+ minHeight?: string | number | undefined;
73231
+ minWidth?: string | number | undefined;
73232
+ position?: "fixed" | "absolute" | "static" | "sticky" | "relative" | undefined;
73233
+ class?: any;
73234
+ elevation?: string | number | undefined;
73235
+ theme?: string | undefined;
73236
+ modelValue?: any;
73237
+ rounded?: string | number | boolean | undefined;
73238
+ bgColor?: string | undefined;
73239
+ allowedHours?: number[] | AllowFunction | undefined;
73240
+ allowedMinutes?: number[] | AllowFunction | undefined;
73241
+ allowedSeconds?: number[] | AllowFunction | undefined;
73242
+ } & {
73243
+ $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
73244
+ default?: (() => vue.VNodeChild) | undefined;
73245
+ title?: (() => vue.VNodeChild) | undefined;
73246
+ actions?: (() => vue.VNodeChild) | undefined;
73247
+ };
73248
+ 'v-slots'?: {
73249
+ default?: false | (() => vue.VNodeChild) | undefined;
73250
+ title?: false | (() => vue.VNodeChild) | undefined;
73251
+ actions?: false | (() => vue.VNodeChild) | undefined;
73252
+ } | undefined;
73253
+ } & {
73254
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
73255
+ "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
73256
+ "v-slot:actions"?: false | (() => vue.VNodeChild) | undefined;
73257
+ } & {
73258
+ "onUpdate:modelValue"?: ((val: string) => any) | undefined;
73259
+ "onUpdate:period"?: ((val: Period$1) => any) | undefined;
73260
+ "onUpdate:hour"?: ((val: number) => any) | undefined;
73261
+ "onUpdate:minute"?: ((val: number) => any) | undefined;
73262
+ "onUpdate:second"?: ((val: number) => any) | undefined;
73263
+ }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
73264
+ 'update:hour': (val: number) => number;
73265
+ 'update:minute': (val: number) => number;
73266
+ 'update:period': (val: Period$1) => Period$1;
73267
+ 'update:second': (val: number) => number;
73268
+ 'update:modelValue': (val: string) => string;
73269
+ }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
73270
+ style: vue.StyleValue;
73271
+ title: string;
73272
+ disabled: boolean;
73273
+ readonly: boolean;
73274
+ tag: string;
73275
+ format: "ampm" | "24hr";
73276
+ tile: boolean;
73277
+ scrollable: boolean;
73278
+ hideHeader: boolean;
73279
+ useSeconds: boolean;
73280
+ ampmInTitle: boolean;
73281
+ } & {
73282
+ max?: string | undefined;
73283
+ location?: Anchor | undefined;
73284
+ height?: string | number | undefined;
73285
+ width?: string | number | undefined;
73286
+ min?: string | undefined;
73287
+ border?: string | number | boolean | undefined;
73288
+ color?: string | undefined;
73289
+ maxHeight?: string | number | undefined;
73290
+ maxWidth?: string | number | undefined;
73291
+ minHeight?: string | number | undefined;
73292
+ minWidth?: string | number | undefined;
73293
+ position?: "fixed" | "absolute" | "static" | "sticky" | "relative" | undefined;
73294
+ class?: any;
73295
+ elevation?: string | number | undefined;
73296
+ theme?: string | undefined;
73297
+ modelValue?: any;
73298
+ rounded?: string | number | boolean | undefined;
73299
+ bgColor?: string | undefined;
73300
+ allowedHours?: number[] | AllowFunction | undefined;
73301
+ allowedMinutes?: number[] | AllowFunction | undefined;
73302
+ allowedSeconds?: number[] | AllowFunction | undefined;
73303
+ } & {
73304
+ $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
73305
+ default?: (() => vue.VNodeChild) | undefined;
73306
+ title?: (() => vue.VNodeChild) | undefined;
73307
+ actions?: (() => vue.VNodeChild) | undefined;
73308
+ };
73309
+ 'v-slots'?: {
73310
+ default?: false | (() => vue.VNodeChild) | undefined;
73311
+ title?: false | (() => vue.VNodeChild) | undefined;
73312
+ actions?: false | (() => vue.VNodeChild) | undefined;
73313
+ } | undefined;
73314
+ } & {
73315
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
73316
+ "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
73317
+ "v-slot:actions"?: false | (() => vue.VNodeChild) | undefined;
73318
+ } & {
73319
+ "onUpdate:modelValue"?: ((val: string) => any) | undefined;
73320
+ "onUpdate:period"?: ((val: Period$1) => any) | undefined;
73321
+ "onUpdate:hour"?: ((val: number) => any) | undefined;
73322
+ "onUpdate:minute"?: ((val: number) => any) | undefined;
73323
+ "onUpdate:second"?: ((val: number) => any) | undefined;
73324
+ }, {
73325
+ style: vue.StyleValue;
73326
+ title: string;
73327
+ disabled: boolean;
73328
+ readonly: boolean;
73329
+ tag: string;
73330
+ format: "ampm" | "24hr";
73331
+ rounded: string | number | boolean;
73332
+ tile: boolean;
73333
+ scrollable: boolean;
73334
+ hideHeader: boolean;
73335
+ useSeconds: boolean;
73336
+ ampmInTitle: boolean;
73337
+ }, true, {}, vue.SlotsType<Partial<{
73338
+ default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
73339
+ [key: string]: any;
73340
+ }>[];
73341
+ title: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
73342
+ [key: string]: any;
73343
+ }>[];
73344
+ actions: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
73345
+ [key: string]: any;
73346
+ }>[];
73347
+ }>>, {
73348
+ P: {};
73349
+ B: {};
73350
+ D: {};
73351
+ C: {};
73352
+ M: {};
73353
+ Defaults: {};
73354
+ }, {
73355
+ style: vue.StyleValue;
73356
+ title: string;
73357
+ disabled: boolean;
73358
+ readonly: boolean;
73359
+ tag: string;
73360
+ format: "ampm" | "24hr";
73361
+ tile: boolean;
73362
+ scrollable: boolean;
73363
+ hideHeader: boolean;
73364
+ useSeconds: boolean;
73365
+ ampmInTitle: boolean;
73366
+ } & {
73367
+ max?: string | undefined;
73368
+ location?: Anchor | undefined;
73369
+ height?: string | number | undefined;
73370
+ width?: string | number | undefined;
73371
+ min?: string | undefined;
73372
+ border?: string | number | boolean | undefined;
73373
+ color?: string | undefined;
73374
+ maxHeight?: string | number | undefined;
73375
+ maxWidth?: string | number | undefined;
73376
+ minHeight?: string | number | undefined;
73377
+ minWidth?: string | number | undefined;
73378
+ position?: "fixed" | "absolute" | "static" | "sticky" | "relative" | undefined;
73379
+ class?: any;
73380
+ elevation?: string | number | undefined;
73381
+ theme?: string | undefined;
73382
+ modelValue?: any;
73383
+ rounded?: string | number | boolean | undefined;
73384
+ bgColor?: string | undefined;
73385
+ allowedHours?: number[] | AllowFunction | undefined;
73386
+ allowedMinutes?: number[] | AllowFunction | undefined;
73387
+ allowedSeconds?: number[] | AllowFunction | undefined;
73388
+ } & {
73389
+ $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
73390
+ default?: (() => vue.VNodeChild) | undefined;
73391
+ title?: (() => vue.VNodeChild) | undefined;
73392
+ actions?: (() => vue.VNodeChild) | undefined;
73393
+ };
73394
+ 'v-slots'?: {
73395
+ default?: false | (() => vue.VNodeChild) | undefined;
73396
+ title?: false | (() => vue.VNodeChild) | undefined;
73397
+ actions?: false | (() => vue.VNodeChild) | undefined;
73398
+ } | undefined;
73399
+ } & {
73400
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
73401
+ "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
73402
+ "v-slot:actions"?: false | (() => vue.VNodeChild) | undefined;
73403
+ } & {
73404
+ "onUpdate:modelValue"?: ((val: string) => any) | undefined;
73405
+ "onUpdate:period"?: ((val: Period$1) => any) | undefined;
73406
+ "onUpdate:hour"?: ((val: number) => any) | undefined;
73407
+ "onUpdate:minute"?: ((val: number) => any) | undefined;
73408
+ "onUpdate:second"?: ((val: number) => any) | undefined;
73409
+ }, {}, {}, {}, {}, {
73410
+ style: vue.StyleValue;
73411
+ title: string;
73412
+ disabled: boolean;
73413
+ readonly: boolean;
73414
+ tag: string;
73415
+ format: "ampm" | "24hr";
73416
+ rounded: string | number | boolean;
73417
+ tile: boolean;
73418
+ scrollable: boolean;
73419
+ hideHeader: boolean;
73420
+ useSeconds: boolean;
73421
+ ampmInTitle: boolean;
73422
+ }>;
73423
+ __isFragment?: undefined;
73424
+ __isTeleport?: undefined;
73425
+ __isSuspense?: undefined;
73426
+ } & vue.ComponentOptionsBase<{
73427
+ style: vue.StyleValue;
73428
+ title: string;
73429
+ disabled: boolean;
73430
+ readonly: boolean;
73431
+ tag: string;
73432
+ format: "ampm" | "24hr";
73433
+ tile: boolean;
73434
+ scrollable: boolean;
73435
+ hideHeader: boolean;
73436
+ useSeconds: boolean;
73437
+ ampmInTitle: boolean;
73438
+ } & {
73439
+ max?: string | undefined;
73440
+ location?: Anchor | undefined;
73441
+ height?: string | number | undefined;
73442
+ width?: string | number | undefined;
73443
+ min?: string | undefined;
73444
+ border?: string | number | boolean | undefined;
73445
+ color?: string | undefined;
73446
+ maxHeight?: string | number | undefined;
73447
+ maxWidth?: string | number | undefined;
73448
+ minHeight?: string | number | undefined;
73449
+ minWidth?: string | number | undefined;
73450
+ position?: "fixed" | "absolute" | "static" | "sticky" | "relative" | undefined;
73451
+ class?: any;
73452
+ elevation?: string | number | undefined;
73453
+ theme?: string | undefined;
73454
+ modelValue?: any;
73455
+ rounded?: string | number | boolean | undefined;
73456
+ bgColor?: string | undefined;
73457
+ allowedHours?: number[] | AllowFunction | undefined;
73458
+ allowedMinutes?: number[] | AllowFunction | undefined;
73459
+ allowedSeconds?: number[] | AllowFunction | undefined;
73460
+ } & {
73461
+ $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
73462
+ default?: (() => vue.VNodeChild) | undefined;
73463
+ title?: (() => vue.VNodeChild) | undefined;
73464
+ actions?: (() => vue.VNodeChild) | undefined;
73465
+ };
73466
+ 'v-slots'?: {
73467
+ default?: false | (() => vue.VNodeChild) | undefined;
73468
+ title?: false | (() => vue.VNodeChild) | undefined;
73469
+ actions?: false | (() => vue.VNodeChild) | undefined;
73470
+ } | undefined;
73471
+ } & {
73472
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
73473
+ "v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
73474
+ "v-slot:actions"?: false | (() => vue.VNodeChild) | undefined;
73475
+ } & {
73476
+ "onUpdate:modelValue"?: ((val: string) => any) | undefined;
73477
+ "onUpdate:period"?: ((val: Period$1) => any) | undefined;
73478
+ "onUpdate:hour"?: ((val: number) => any) | undefined;
73479
+ "onUpdate:minute"?: ((val: number) => any) | undefined;
73480
+ "onUpdate:second"?: ((val: number) => any) | undefined;
73481
+ }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
73482
+ 'update:hour': (val: number) => number;
73483
+ 'update:minute': (val: number) => number;
73484
+ 'update:period': (val: Period$1) => Period$1;
73485
+ 'update:second': (val: number) => number;
73486
+ 'update:modelValue': (val: string) => string;
73487
+ }, string, {
73488
+ style: vue.StyleValue;
73489
+ title: string;
73490
+ disabled: boolean;
73491
+ readonly: boolean;
73492
+ tag: string;
73493
+ format: "ampm" | "24hr";
73494
+ rounded: string | number | boolean;
73495
+ tile: boolean;
73496
+ scrollable: boolean;
73497
+ hideHeader: boolean;
73498
+ useSeconds: boolean;
73499
+ ampmInTitle: boolean;
73500
+ }, {}, string, vue.SlotsType<Partial<{
73501
+ default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
73502
+ [key: string]: any;
73503
+ }>[];
73504
+ title: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
73505
+ [key: string]: any;
73506
+ }>[];
73507
+ actions: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
73508
+ [key: string]: any;
73509
+ }>[];
73510
+ }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
73511
+ location: PropType<Anchor>;
73512
+ height: (StringConstructor | NumberConstructor)[];
73513
+ width: (StringConstructor | NumberConstructor)[];
73514
+ border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
73515
+ color: StringConstructor;
73516
+ maxHeight: (StringConstructor | NumberConstructor)[];
73517
+ maxWidth: (StringConstructor | NumberConstructor)[];
73518
+ minHeight: (StringConstructor | NumberConstructor)[];
73519
+ minWidth: (StringConstructor | NumberConstructor)[];
73520
+ position: {
73521
+ type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
73522
+ validator: (v: any) => boolean;
73523
+ };
73524
+ style: {
73525
+ type: PropType<vue.StyleValue>;
73526
+ default: null;
73527
+ };
73528
+ title: {
73529
+ type: PropType<string>;
73530
+ default: string;
73531
+ };
73532
+ class: PropType<any>;
73533
+ tag: {
73534
+ type: StringConstructor;
73535
+ default: string;
73536
+ };
73537
+ elevation: {
73538
+ type: (StringConstructor | NumberConstructor)[];
73539
+ validator(v: any): boolean;
73540
+ };
73541
+ theme: StringConstructor;
73542
+ rounded: {
73543
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
73544
+ default: undefined;
73545
+ };
73546
+ tile: BooleanConstructor;
73547
+ bgColor: StringConstructor;
73548
+ hideHeader: BooleanConstructor;
73549
+ allowedHours: PropType<number[] | AllowFunction>;
73550
+ allowedMinutes: PropType<number[] | AllowFunction>;
73551
+ allowedSeconds: PropType<number[] | AllowFunction>;
73552
+ ampmInTitle: BooleanConstructor;
73553
+ disabled: BooleanConstructor;
73554
+ format: {
73555
+ type: PropType<"ampm" | "24hr">;
73556
+ default: string;
73557
+ };
73558
+ max: StringConstructor;
73559
+ min: StringConstructor;
73560
+ modelValue: PropType<any>;
73561
+ readonly: BooleanConstructor;
73562
+ scrollable: BooleanConstructor;
73563
+ useSeconds: BooleanConstructor;
73564
+ }, vue.ExtractPropTypes<{
73565
+ location: PropType<Anchor>;
73566
+ height: (StringConstructor | NumberConstructor)[];
73567
+ width: (StringConstructor | NumberConstructor)[];
73568
+ border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
73569
+ color: StringConstructor;
73570
+ maxHeight: (StringConstructor | NumberConstructor)[];
73571
+ maxWidth: (StringConstructor | NumberConstructor)[];
73572
+ minHeight: (StringConstructor | NumberConstructor)[];
73573
+ minWidth: (StringConstructor | NumberConstructor)[];
73574
+ position: {
73575
+ type: PropType<"fixed" | "absolute" | "static" | "sticky" | "relative">;
73576
+ validator: (v: any) => boolean;
73577
+ };
73578
+ style: {
73579
+ type: PropType<vue.StyleValue>;
73580
+ default: null;
73581
+ };
73582
+ title: {
73583
+ type: PropType<string>;
73584
+ default: string;
73585
+ };
73586
+ class: PropType<any>;
73587
+ tag: {
73588
+ type: StringConstructor;
73589
+ default: string;
73590
+ };
73591
+ elevation: {
73592
+ type: (StringConstructor | NumberConstructor)[];
73593
+ validator(v: any): boolean;
73594
+ };
73595
+ theme: StringConstructor;
73596
+ rounded: {
73597
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
73598
+ default: undefined;
73599
+ };
73600
+ tile: BooleanConstructor;
73601
+ bgColor: StringConstructor;
73602
+ hideHeader: BooleanConstructor;
73603
+ allowedHours: PropType<number[] | AllowFunction>;
73604
+ allowedMinutes: PropType<number[] | AllowFunction>;
73605
+ allowedSeconds: PropType<number[] | AllowFunction>;
73606
+ ampmInTitle: BooleanConstructor;
73607
+ disabled: BooleanConstructor;
73608
+ format: {
73609
+ type: PropType<"ampm" | "24hr">;
73610
+ default: string;
73611
+ };
73612
+ max: StringConstructor;
73613
+ min: StringConstructor;
73614
+ modelValue: PropType<any>;
73615
+ readonly: BooleanConstructor;
73616
+ scrollable: BooleanConstructor;
73617
+ useSeconds: BooleanConstructor;
73618
+ }>>;
73619
+ type VTimePicker = InstanceType<typeof VTimePicker>;
73620
+
73621
+ declare const VTimePickerClock: {
73622
+ new (...args: any[]): vue.CreateComponentPublicInstance<{
73623
+ max: number;
73624
+ min: number;
73625
+ rotate: number;
73626
+ disabled: boolean;
73627
+ readonly: boolean;
73628
+ double: boolean;
73629
+ step: number;
73630
+ format: Function;
73631
+ scrollable: boolean;
73632
+ ampm: boolean;
73633
+ displayedValue: null;
73634
+ } & {
73635
+ color?: string | undefined;
73636
+ modelValue?: number | undefined;
73637
+ allowedValues?: ((value: number) => boolean) | undefined;
73638
+ } & {
73639
+ $children?: vue.VNodeChild | {
73640
+ default?: (() => vue.VNodeChild) | undefined;
73641
+ } | (() => vue.VNodeChild);
73642
+ 'v-slots'?: {
73643
+ default?: false | (() => vue.VNodeChild) | undefined;
73644
+ } | undefined;
73645
+ } & {
73646
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
73647
+ } & {
73648
+ onChange?: ((val: number) => any) | undefined;
73649
+ onInput?: ((val: number) => any) | undefined;
73650
+ }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
73651
+ change: (val: number) => number;
73652
+ input: (val: number) => number;
73653
+ }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
73654
+ max: number;
73655
+ min: number;
73656
+ rotate: number;
73657
+ disabled: boolean;
73658
+ readonly: boolean;
73659
+ double: boolean;
73660
+ step: number;
73661
+ format: Function;
73662
+ scrollable: boolean;
73663
+ ampm: boolean;
73664
+ displayedValue: null;
73665
+ } & {
73666
+ color?: string | undefined;
73667
+ modelValue?: number | undefined;
73668
+ allowedValues?: ((value: number) => boolean) | undefined;
73669
+ } & {
73670
+ $children?: vue.VNodeChild | {
73671
+ default?: (() => vue.VNodeChild) | undefined;
73672
+ } | (() => vue.VNodeChild);
73673
+ 'v-slots'?: {
73674
+ default?: false | (() => vue.VNodeChild) | undefined;
73675
+ } | undefined;
73676
+ } & {
73677
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
73678
+ } & {
73679
+ onChange?: ((val: number) => any) | undefined;
73680
+ onInput?: ((val: number) => any) | undefined;
73681
+ }, {
73682
+ rotate: number;
73683
+ disabled: boolean;
73684
+ readonly: boolean;
73685
+ double: boolean;
73686
+ step: number;
73687
+ format: Function;
73688
+ scrollable: boolean;
73689
+ ampm: boolean;
73690
+ displayedValue: null;
73691
+ }, true, {}, vue.SlotsType<Partial<{
73692
+ default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
73693
+ [key: string]: any;
73694
+ }>[];
73695
+ }>>, {
73696
+ P: {};
73697
+ B: {};
73698
+ D: {};
73699
+ C: {};
73700
+ M: {};
73701
+ Defaults: {};
73702
+ }, {
73703
+ max: number;
73704
+ min: number;
73705
+ rotate: number;
73706
+ disabled: boolean;
73707
+ readonly: boolean;
73708
+ double: boolean;
73709
+ step: number;
73710
+ format: Function;
73711
+ scrollable: boolean;
73712
+ ampm: boolean;
73713
+ displayedValue: null;
73714
+ } & {
73715
+ color?: string | undefined;
73716
+ modelValue?: number | undefined;
73717
+ allowedValues?: ((value: number) => boolean) | undefined;
73718
+ } & {
73719
+ $children?: vue.VNodeChild | {
73720
+ default?: (() => vue.VNodeChild) | undefined;
73721
+ } | (() => vue.VNodeChild);
73722
+ 'v-slots'?: {
73723
+ default?: false | (() => vue.VNodeChild) | undefined;
73724
+ } | undefined;
73725
+ } & {
73726
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
73727
+ } & {
73728
+ onChange?: ((val: number) => any) | undefined;
73729
+ onInput?: ((val: number) => any) | undefined;
73730
+ }, {}, {}, {}, {}, {
73731
+ rotate: number;
73732
+ disabled: boolean;
73733
+ readonly: boolean;
73734
+ double: boolean;
73735
+ step: number;
73736
+ format: Function;
73737
+ scrollable: boolean;
73738
+ ampm: boolean;
73739
+ displayedValue: null;
73740
+ }>;
73741
+ __isFragment?: undefined;
73742
+ __isTeleport?: undefined;
73743
+ __isSuspense?: undefined;
73744
+ } & vue.ComponentOptionsBase<{
73745
+ max: number;
73746
+ min: number;
73747
+ rotate: number;
73748
+ disabled: boolean;
73749
+ readonly: boolean;
73750
+ double: boolean;
73751
+ step: number;
73752
+ format: Function;
73753
+ scrollable: boolean;
73754
+ ampm: boolean;
73755
+ displayedValue: null;
73756
+ } & {
73757
+ color?: string | undefined;
73758
+ modelValue?: number | undefined;
73759
+ allowedValues?: ((value: number) => boolean) | undefined;
73760
+ } & {
73761
+ $children?: vue.VNodeChild | {
73762
+ default?: (() => vue.VNodeChild) | undefined;
73763
+ } | (() => vue.VNodeChild);
73764
+ 'v-slots'?: {
73765
+ default?: false | (() => vue.VNodeChild) | undefined;
73766
+ } | undefined;
73767
+ } & {
73768
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
73769
+ } & {
73770
+ onChange?: ((val: number) => any) | undefined;
73771
+ onInput?: ((val: number) => any) | undefined;
73772
+ }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
73773
+ change: (val: number) => number;
73774
+ input: (val: number) => number;
73775
+ }, string, {
73776
+ rotate: number;
73777
+ disabled: boolean;
73778
+ readonly: boolean;
73779
+ double: boolean;
73780
+ step: number;
73781
+ format: Function;
73782
+ scrollable: boolean;
73783
+ ampm: boolean;
73784
+ displayedValue: null;
73785
+ }, {}, string, vue.SlotsType<Partial<{
73786
+ default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
73787
+ [key: string]: any;
73788
+ }>[];
73789
+ }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
73790
+ allowedValues: PropType<(value: number) => boolean>;
73791
+ ampm: BooleanConstructor;
73792
+ color: StringConstructor;
73793
+ disabled: BooleanConstructor;
73794
+ displayedValue: {
73795
+ default: null;
73796
+ };
73797
+ double: BooleanConstructor;
73798
+ format: {
73799
+ type: FunctionConstructor;
73800
+ default: (val: string | number) => string | number;
73801
+ };
73802
+ max: {
73803
+ type: NumberConstructor;
73804
+ required: true;
73805
+ };
73806
+ min: {
73807
+ type: NumberConstructor;
73808
+ required: true;
73809
+ };
73810
+ scrollable: BooleanConstructor;
73811
+ readonly: BooleanConstructor;
73812
+ rotate: {
73813
+ type: NumberConstructor;
73814
+ default: number;
73815
+ };
73816
+ step: {
73817
+ type: NumberConstructor;
73818
+ default: number;
73819
+ };
73820
+ modelValue: {
73821
+ type: NumberConstructor;
73822
+ };
73823
+ }, vue.ExtractPropTypes<{
73824
+ allowedValues: PropType<(value: number) => boolean>;
73825
+ ampm: BooleanConstructor;
73826
+ color: StringConstructor;
73827
+ disabled: BooleanConstructor;
73828
+ displayedValue: {
73829
+ default: null;
73830
+ };
73831
+ double: BooleanConstructor;
73832
+ format: {
73833
+ type: FunctionConstructor;
73834
+ default: (val: string | number) => string | number;
73835
+ };
73836
+ max: {
73837
+ type: NumberConstructor;
73838
+ required: true;
73839
+ };
73840
+ min: {
73841
+ type: NumberConstructor;
73842
+ required: true;
73843
+ };
73844
+ scrollable: BooleanConstructor;
73845
+ readonly: BooleanConstructor;
73846
+ rotate: {
73847
+ type: NumberConstructor;
73848
+ default: number;
73849
+ };
73850
+ step: {
73851
+ type: NumberConstructor;
73852
+ default: number;
73853
+ };
73854
+ modelValue: {
73855
+ type: NumberConstructor;
73856
+ };
73857
+ }>>;
73858
+ type VTimePickerClock = InstanceType<typeof VTimePickerClock>;
73859
+
73860
+ type Period = 'am' | 'pm';
73861
+ declare const VTimePickerControls: {
73862
+ new (...args: any[]): vue.CreateComponentPublicInstance<{
73863
+ disabled: boolean;
73864
+ readonly: boolean;
73865
+ ampm: boolean;
73866
+ ampmReadonly: boolean;
73867
+ useSeconds: boolean;
73868
+ } & {
73869
+ color?: string | undefined;
73870
+ value?: number | undefined;
73871
+ hour?: number | undefined;
73872
+ minute?: number | undefined;
73873
+ second?: number | undefined;
73874
+ period?: string | undefined;
73875
+ selecting?: number | undefined;
73876
+ } & {
73877
+ $children?: vue.VNodeChild | {
73878
+ default?: (() => vue.VNodeChild) | undefined;
73879
+ } | (() => vue.VNodeChild);
73880
+ 'v-slots'?: {
73881
+ default?: false | (() => vue.VNodeChild) | undefined;
73882
+ } | undefined;
73883
+ } & {
73884
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
73885
+ } & {
73886
+ "onUpdate:period"?: ((data: Period) => any) | undefined;
73887
+ "onUpdate:selecting"?: ((data: 2 | 1 | 3) => any) | undefined;
73888
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
73889
+ 'update:period': (data: Period) => Period;
73890
+ 'update:selecting': (data: 1 | 2 | 3) => 2 | 1 | 3;
73891
+ }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
73892
+ disabled: boolean;
73893
+ readonly: boolean;
73894
+ ampm: boolean;
73895
+ ampmReadonly: boolean;
73896
+ useSeconds: boolean;
73897
+ } & {
73898
+ color?: string | undefined;
73899
+ value?: number | undefined;
73900
+ hour?: number | undefined;
73901
+ minute?: number | undefined;
73902
+ second?: number | undefined;
73903
+ period?: string | undefined;
73904
+ selecting?: number | undefined;
73905
+ } & {
73906
+ $children?: vue.VNodeChild | {
73907
+ default?: (() => vue.VNodeChild) | undefined;
73908
+ } | (() => vue.VNodeChild);
73909
+ 'v-slots'?: {
73910
+ default?: false | (() => vue.VNodeChild) | undefined;
73911
+ } | undefined;
73912
+ } & {
73913
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
73914
+ } & {
73915
+ "onUpdate:period"?: ((data: Period) => any) | undefined;
73916
+ "onUpdate:selecting"?: ((data: 2 | 1 | 3) => any) | undefined;
73917
+ }, {
73918
+ disabled: boolean;
73919
+ readonly: boolean;
73920
+ ampm: boolean;
73921
+ ampmReadonly: boolean;
73922
+ useSeconds: boolean;
73923
+ }, true, {}, vue.SlotsType<Partial<{
73924
+ default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
73925
+ [key: string]: any;
73926
+ }>[];
73927
+ }>>, {
73928
+ P: {};
73929
+ B: {};
73930
+ D: {};
73931
+ C: {};
73932
+ M: {};
73933
+ Defaults: {};
73934
+ }, {
73935
+ disabled: boolean;
73936
+ readonly: boolean;
73937
+ ampm: boolean;
73938
+ ampmReadonly: boolean;
73939
+ useSeconds: boolean;
73940
+ } & {
73941
+ color?: string | undefined;
73942
+ value?: number | undefined;
73943
+ hour?: number | undefined;
73944
+ minute?: number | undefined;
73945
+ second?: number | undefined;
73946
+ period?: string | undefined;
73947
+ selecting?: number | undefined;
73948
+ } & {
73949
+ $children?: vue.VNodeChild | {
73950
+ default?: (() => vue.VNodeChild) | undefined;
73951
+ } | (() => vue.VNodeChild);
73952
+ 'v-slots'?: {
73953
+ default?: false | (() => vue.VNodeChild) | undefined;
73954
+ } | undefined;
73955
+ } & {
73956
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
73957
+ } & {
73958
+ "onUpdate:period"?: ((data: Period) => any) | undefined;
73959
+ "onUpdate:selecting"?: ((data: 2 | 1 | 3) => any) | undefined;
73960
+ }, {}, {}, {}, {}, {
73961
+ disabled: boolean;
73962
+ readonly: boolean;
73963
+ ampm: boolean;
73964
+ ampmReadonly: boolean;
73965
+ useSeconds: boolean;
73966
+ }>;
73967
+ __isFragment?: undefined;
73968
+ __isTeleport?: undefined;
73969
+ __isSuspense?: undefined;
73970
+ } & vue.ComponentOptionsBase<{
73971
+ disabled: boolean;
73972
+ readonly: boolean;
73973
+ ampm: boolean;
73974
+ ampmReadonly: boolean;
73975
+ useSeconds: boolean;
73976
+ } & {
73977
+ color?: string | undefined;
73978
+ value?: number | undefined;
73979
+ hour?: number | undefined;
73980
+ minute?: number | undefined;
73981
+ second?: number | undefined;
73982
+ period?: string | undefined;
73983
+ selecting?: number | undefined;
73984
+ } & {
73985
+ $children?: vue.VNodeChild | {
73986
+ default?: (() => vue.VNodeChild) | undefined;
73987
+ } | (() => vue.VNodeChild);
73988
+ 'v-slots'?: {
73989
+ default?: false | (() => vue.VNodeChild) | undefined;
73990
+ } | undefined;
73991
+ } & {
73992
+ "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
73993
+ } & {
73994
+ "onUpdate:period"?: ((data: Period) => any) | undefined;
73995
+ "onUpdate:selecting"?: ((data: 2 | 1 | 3) => any) | undefined;
73996
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
73997
+ 'update:period': (data: Period) => Period;
73998
+ 'update:selecting': (data: 1 | 2 | 3) => 2 | 1 | 3;
73999
+ }, string, {
74000
+ disabled: boolean;
74001
+ readonly: boolean;
74002
+ ampm: boolean;
74003
+ ampmReadonly: boolean;
74004
+ useSeconds: boolean;
74005
+ }, {}, string, vue.SlotsType<Partial<{
74006
+ default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
74007
+ [key: string]: any;
74008
+ }>[];
74009
+ }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
74010
+ ampm: BooleanConstructor;
74011
+ ampmReadonly: BooleanConstructor;
74012
+ color: StringConstructor;
74013
+ disabled: BooleanConstructor;
74014
+ hour: NumberConstructor;
74015
+ minute: NumberConstructor;
74016
+ second: NumberConstructor;
74017
+ period: StringConstructor;
74018
+ readonly: BooleanConstructor;
74019
+ useSeconds: BooleanConstructor;
74020
+ selecting: NumberConstructor;
74021
+ value: NumberConstructor;
74022
+ }, vue.ExtractPropTypes<{
74023
+ ampm: BooleanConstructor;
74024
+ ampmReadonly: BooleanConstructor;
74025
+ color: StringConstructor;
74026
+ disabled: BooleanConstructor;
74027
+ hour: NumberConstructor;
74028
+ minute: NumberConstructor;
74029
+ second: NumberConstructor;
74030
+ period: StringConstructor;
74031
+ readonly: BooleanConstructor;
74032
+ useSeconds: BooleanConstructor;
74033
+ selecting: NumberConstructor;
74034
+ value: NumberConstructor;
74035
+ }>>;
74036
+ type VTimePickerControls = InstanceType<typeof VTimePickerControls>;
74037
+
73078
74038
  declare const VTreeview: {
73079
74039
  new (...args: any[]): vue.CreateComponentPublicInstance<{
73080
74040
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
@@ -75066,6 +76026,9 @@ declare const allComponents_d_VTabs: typeof VTabs;
75066
76026
  declare const allComponents_d_VTextField: typeof VTextField;
75067
76027
  declare const allComponents_d_VTextarea: typeof VTextarea;
75068
76028
  declare const allComponents_d_VThemeProvider: typeof VThemeProvider;
76029
+ declare const allComponents_d_VTimePicker: typeof VTimePicker;
76030
+ declare const allComponents_d_VTimePickerClock: typeof VTimePickerClock;
76031
+ declare const allComponents_d_VTimePickerControls: typeof VTimePickerControls;
75069
76032
  declare const allComponents_d_VTimeline: typeof VTimeline;
75070
76033
  declare const allComponents_d_VTimelineItem: typeof VTimelineItem;
75071
76034
  declare const allComponents_d_VToolbar: typeof VToolbar;
@@ -75080,7 +76043,7 @@ declare const allComponents_d_VVirtualScroll: typeof VVirtualScroll;
75080
76043
  declare const allComponents_d_VWindow: typeof VWindow;
75081
76044
  declare const allComponents_d_VWindowItem: typeof VWindowItem;
75082
76045
  declare namespace allComponents_d {
75083
- export { type allComponents_d_VAlert as VAlert, type allComponents_d_VAlertTitle as VAlertTitle, type allComponents_d_VApp as VApp, type allComponents_d_VAppBar as VAppBar, type allComponents_d_VAppBarNavIcon as VAppBarNavIcon, type allComponents_d_VAppBarTitle as VAppBarTitle, type allComponents_d_VAutocomplete as VAutocomplete, type allComponents_d_VAvatar as VAvatar, type allComponents_d_VBadge as VBadge, type allComponents_d_VBanner as VBanner, type allComponents_d_VBannerActions as VBannerActions, type allComponents_d_VBannerText as VBannerText, type allComponents_d_VBottomNavigation as VBottomNavigation, type allComponents_d_VBottomSheet as VBottomSheet, type allComponents_d_VBreadcrumbs as VBreadcrumbs, type allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, type allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, type allComponents_d_VBtn as VBtn, type allComponents_d_VBtnGroup as VBtnGroup, type allComponents_d_VBtnToggle as VBtnToggle, type allComponents_d_VCalendar as VCalendar, type allComponents_d_VCalendarDay as VCalendarDay, type allComponents_d_VCalendarHeader as VCalendarHeader, type allComponents_d_VCalendarInterval as VCalendarInterval, type allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, type allComponents_d_VCalendarMonthDay as VCalendarMonthDay, type allComponents_d_VCard as VCard, type allComponents_d_VCardActions as VCardActions, type allComponents_d_VCardItem as VCardItem, type allComponents_d_VCardSubtitle as VCardSubtitle, type allComponents_d_VCardText as VCardText, type allComponents_d_VCardTitle as VCardTitle, type allComponents_d_VCarousel as VCarousel, type allComponents_d_VCarouselItem as VCarouselItem, type allComponents_d_VCheckbox as VCheckbox, type allComponents_d_VCheckboxBtn as VCheckboxBtn, type allComponents_d_VChip as VChip, type allComponents_d_VChipGroup as VChipGroup, type allComponents_d_VClassIcon as VClassIcon, type allComponents_d_VCode as VCode, type allComponents_d_VCol as VCol, type allComponents_d_VColorPicker as VColorPicker, type allComponents_d_VCombobox as VCombobox, type allComponents_d_VComponentIcon as VComponentIcon, type allComponents_d_VConfirmEdit as VConfirmEdit, type allComponents_d_VContainer as VContainer, type allComponents_d_VCounter as VCounter, type allComponents_d_VDataIterator as VDataIterator, type allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, type allComponents_d_VDataTableHeaders as VDataTableHeaders, type allComponents_d_VDataTableRow as VDataTableRow, type allComponents_d_VDataTableRows as VDataTableRows, type allComponents_d_VDataTableServer as VDataTableServer, type allComponents_d_VDataTableVirtual as VDataTableVirtual, type allComponents_d_VDatePicker as VDatePicker, type allComponents_d_VDatePickerControls as VDatePickerControls, type allComponents_d_VDatePickerHeader as VDatePickerHeader, type allComponents_d_VDatePickerMonth as VDatePickerMonth, type allComponents_d_VDatePickerMonths as VDatePickerMonths, type allComponents_d_VDatePickerYears as VDatePickerYears, type allComponents_d_VDefaultsProvider as VDefaultsProvider, type allComponents_d_VDialog as VDialog, type allComponents_d_VDialogBottomTransition as VDialogBottomTransition, type allComponents_d_VDialogTopTransition as VDialogTopTransition, type allComponents_d_VDialogTransition as VDialogTransition, type allComponents_d_VDivider as VDivider, type allComponents_d_VEmptyState as VEmptyState, type allComponents_d_VExpandTransition as VExpandTransition, type allComponents_d_VExpandXTransition as VExpandXTransition, type allComponents_d_VExpansionPanel as VExpansionPanel, type allComponents_d_VExpansionPanelText as VExpansionPanelText, type allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, type allComponents_d_VExpansionPanels as VExpansionPanels, type allComponents_d_VFab as VFab, type allComponents_d_VFabTransition as VFabTransition, type allComponents_d_VFadeTransition as VFadeTransition, type allComponents_d_VField as VField, type allComponents_d_VFieldLabel as VFieldLabel, type allComponents_d_VFileInput as VFileInput, type allComponents_d_VFooter as VFooter, type allComponents_d_VForm as VForm, type allComponents_d_VHover as VHover, type allComponents_d_VIcon as VIcon, type allComponents_d_VImg as VImg, type allComponents_d_VInfiniteScroll as VInfiniteScroll, type allComponents_d_VInput as VInput, type allComponents_d_VItem as VItem, type allComponents_d_VItemGroup as VItemGroup, type allComponents_d_VKbd as VKbd, type allComponents_d_VLabel as VLabel, type allComponents_d_VLayout as VLayout, type allComponents_d_VLayoutItem as VLayoutItem, type allComponents_d_VLazy as VLazy, type allComponents_d_VLigatureIcon as VLigatureIcon, type allComponents_d_VList as VList, type allComponents_d_VListGroup as VListGroup, type allComponents_d_VListImg as VListImg, type allComponents_d_VListItem as VListItem, type allComponents_d_VListItemAction as VListItemAction, type allComponents_d_VListItemMedia as VListItemMedia, type allComponents_d_VListItemSubtitle as VListItemSubtitle, type allComponents_d_VListItemTitle as VListItemTitle, type allComponents_d_VListSubheader as VListSubheader, type allComponents_d_VLocaleProvider as VLocaleProvider, type allComponents_d_VMain as VMain, type allComponents_d_VMenu as VMenu, type allComponents_d_VMessages as VMessages, type allComponents_d_VNavigationDrawer as VNavigationDrawer, type allComponents_d_VNoSsr as VNoSsr, type allComponents_d_VNumberInput as VNumberInput, type allComponents_d_VOtpInput as VOtpInput, type allComponents_d_VOverlay as VOverlay, type allComponents_d_VPagination as VPagination, type allComponents_d_VParallax as VParallax, type allComponents_d_VPicker as VPicker, type allComponents_d_VPickerTitle as VPickerTitle, type allComponents_d_VProgressCircular as VProgressCircular, type allComponents_d_VProgressLinear as VProgressLinear, type allComponents_d_VRadio as VRadio, type allComponents_d_VRadioGroup as VRadioGroup, type allComponents_d_VRangeSlider as VRangeSlider, type allComponents_d_VRating as VRating, type allComponents_d_VResponsive as VResponsive, type allComponents_d_VRow as VRow, type allComponents_d_VScaleTransition as VScaleTransition, type allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, type allComponents_d_VScrollXTransition as VScrollXTransition, type allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, type allComponents_d_VScrollYTransition as VScrollYTransition, type allComponents_d_VSelect as VSelect, type allComponents_d_VSelectionControl as VSelectionControl, type allComponents_d_VSelectionControlGroup as VSelectionControlGroup, type allComponents_d_VSheet as VSheet, type allComponents_d_VSkeletonLoader as VSkeletonLoader, type allComponents_d_VSlideGroup as VSlideGroup, type allComponents_d_VSlideGroupItem as VSlideGroupItem, type allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, type allComponents_d_VSlideXTransition as VSlideXTransition, type allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, type allComponents_d_VSlideYTransition as VSlideYTransition, type allComponents_d_VSlider as VSlider, type allComponents_d_VSnackbar as VSnackbar, type allComponents_d_VSpacer as VSpacer, type allComponents_d_VSparkline as VSparkline, type allComponents_d_VSpeedDial as VSpeedDial, type allComponents_d_VStepper as VStepper, type allComponents_d_VStepperActions as VStepperActions, type allComponents_d_VStepperHeader as VStepperHeader, type allComponents_d_VStepperItem as VStepperItem, type allComponents_d_VStepperWindow as VStepperWindow, type allComponents_d_VStepperWindowItem as VStepperWindowItem, type allComponents_d_VSvgIcon as VSvgIcon, type allComponents_d_VSwitch as VSwitch, type allComponents_d_VSystemBar as VSystemBar, type allComponents_d_VTab as VTab, type allComponents_d_VTable as VTable, type allComponents_d_VTabs as VTabs, type allComponents_d_VTextField as VTextField, type allComponents_d_VTextarea as VTextarea, type allComponents_d_VThemeProvider as VThemeProvider, type allComponents_d_VTimeline as VTimeline, type allComponents_d_VTimelineItem as VTimelineItem, type allComponents_d_VToolbar as VToolbar, type allComponents_d_VToolbarItems as VToolbarItems, type allComponents_d_VToolbarTitle as VToolbarTitle, type allComponents_d_VTooltip as VTooltip, type allComponents_d_VTreeview as VTreeview, type allComponents_d_VTreeviewGroup as VTreeviewGroup, type allComponents_d_VTreeviewItem as VTreeviewItem, type allComponents_d_VValidation as VValidation, type allComponents_d_VVirtualScroll as VVirtualScroll, type allComponents_d_VWindow as VWindow, type allComponents_d_VWindowItem as VWindowItem };
76046
+ export { type allComponents_d_VAlert as VAlert, type allComponents_d_VAlertTitle as VAlertTitle, type allComponents_d_VApp as VApp, type allComponents_d_VAppBar as VAppBar, type allComponents_d_VAppBarNavIcon as VAppBarNavIcon, type allComponents_d_VAppBarTitle as VAppBarTitle, type allComponents_d_VAutocomplete as VAutocomplete, type allComponents_d_VAvatar as VAvatar, type allComponents_d_VBadge as VBadge, type allComponents_d_VBanner as VBanner, type allComponents_d_VBannerActions as VBannerActions, type allComponents_d_VBannerText as VBannerText, type allComponents_d_VBottomNavigation as VBottomNavigation, type allComponents_d_VBottomSheet as VBottomSheet, type allComponents_d_VBreadcrumbs as VBreadcrumbs, type allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, type allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, type allComponents_d_VBtn as VBtn, type allComponents_d_VBtnGroup as VBtnGroup, type allComponents_d_VBtnToggle as VBtnToggle, type allComponents_d_VCalendar as VCalendar, type allComponents_d_VCalendarDay as VCalendarDay, type allComponents_d_VCalendarHeader as VCalendarHeader, type allComponents_d_VCalendarInterval as VCalendarInterval, type allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, type allComponents_d_VCalendarMonthDay as VCalendarMonthDay, type allComponents_d_VCard as VCard, type allComponents_d_VCardActions as VCardActions, type allComponents_d_VCardItem as VCardItem, type allComponents_d_VCardSubtitle as VCardSubtitle, type allComponents_d_VCardText as VCardText, type allComponents_d_VCardTitle as VCardTitle, type allComponents_d_VCarousel as VCarousel, type allComponents_d_VCarouselItem as VCarouselItem, type allComponents_d_VCheckbox as VCheckbox, type allComponents_d_VCheckboxBtn as VCheckboxBtn, type allComponents_d_VChip as VChip, type allComponents_d_VChipGroup as VChipGroup, type allComponents_d_VClassIcon as VClassIcon, type allComponents_d_VCode as VCode, type allComponents_d_VCol as VCol, type allComponents_d_VColorPicker as VColorPicker, type allComponents_d_VCombobox as VCombobox, type allComponents_d_VComponentIcon as VComponentIcon, type allComponents_d_VConfirmEdit as VConfirmEdit, type allComponents_d_VContainer as VContainer, type allComponents_d_VCounter as VCounter, type allComponents_d_VDataIterator as VDataIterator, type allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, type allComponents_d_VDataTableHeaders as VDataTableHeaders, type allComponents_d_VDataTableRow as VDataTableRow, type allComponents_d_VDataTableRows as VDataTableRows, type allComponents_d_VDataTableServer as VDataTableServer, type allComponents_d_VDataTableVirtual as VDataTableVirtual, type allComponents_d_VDatePicker as VDatePicker, type allComponents_d_VDatePickerControls as VDatePickerControls, type allComponents_d_VDatePickerHeader as VDatePickerHeader, type allComponents_d_VDatePickerMonth as VDatePickerMonth, type allComponents_d_VDatePickerMonths as VDatePickerMonths, type allComponents_d_VDatePickerYears as VDatePickerYears, type allComponents_d_VDefaultsProvider as VDefaultsProvider, type allComponents_d_VDialog as VDialog, type allComponents_d_VDialogBottomTransition as VDialogBottomTransition, type allComponents_d_VDialogTopTransition as VDialogTopTransition, type allComponents_d_VDialogTransition as VDialogTransition, type allComponents_d_VDivider as VDivider, type allComponents_d_VEmptyState as VEmptyState, type allComponents_d_VExpandTransition as VExpandTransition, type allComponents_d_VExpandXTransition as VExpandXTransition, type allComponents_d_VExpansionPanel as VExpansionPanel, type allComponents_d_VExpansionPanelText as VExpansionPanelText, type allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, type allComponents_d_VExpansionPanels as VExpansionPanels, type allComponents_d_VFab as VFab, type allComponents_d_VFabTransition as VFabTransition, type allComponents_d_VFadeTransition as VFadeTransition, type allComponents_d_VField as VField, type allComponents_d_VFieldLabel as VFieldLabel, type allComponents_d_VFileInput as VFileInput, type allComponents_d_VFooter as VFooter, type allComponents_d_VForm as VForm, type allComponents_d_VHover as VHover, type allComponents_d_VIcon as VIcon, type allComponents_d_VImg as VImg, type allComponents_d_VInfiniteScroll as VInfiniteScroll, type allComponents_d_VInput as VInput, type allComponents_d_VItem as VItem, type allComponents_d_VItemGroup as VItemGroup, type allComponents_d_VKbd as VKbd, type allComponents_d_VLabel as VLabel, type allComponents_d_VLayout as VLayout, type allComponents_d_VLayoutItem as VLayoutItem, type allComponents_d_VLazy as VLazy, type allComponents_d_VLigatureIcon as VLigatureIcon, type allComponents_d_VList as VList, type allComponents_d_VListGroup as VListGroup, type allComponents_d_VListImg as VListImg, type allComponents_d_VListItem as VListItem, type allComponents_d_VListItemAction as VListItemAction, type allComponents_d_VListItemMedia as VListItemMedia, type allComponents_d_VListItemSubtitle as VListItemSubtitle, type allComponents_d_VListItemTitle as VListItemTitle, type allComponents_d_VListSubheader as VListSubheader, type allComponents_d_VLocaleProvider as VLocaleProvider, type allComponents_d_VMain as VMain, type allComponents_d_VMenu as VMenu, type allComponents_d_VMessages as VMessages, type allComponents_d_VNavigationDrawer as VNavigationDrawer, type allComponents_d_VNoSsr as VNoSsr, type allComponents_d_VNumberInput as VNumberInput, type allComponents_d_VOtpInput as VOtpInput, type allComponents_d_VOverlay as VOverlay, type allComponents_d_VPagination as VPagination, type allComponents_d_VParallax as VParallax, type allComponents_d_VPicker as VPicker, type allComponents_d_VPickerTitle as VPickerTitle, type allComponents_d_VProgressCircular as VProgressCircular, type allComponents_d_VProgressLinear as VProgressLinear, type allComponents_d_VRadio as VRadio, type allComponents_d_VRadioGroup as VRadioGroup, type allComponents_d_VRangeSlider as VRangeSlider, type allComponents_d_VRating as VRating, type allComponents_d_VResponsive as VResponsive, type allComponents_d_VRow as VRow, type allComponents_d_VScaleTransition as VScaleTransition, type allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, type allComponents_d_VScrollXTransition as VScrollXTransition, type allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, type allComponents_d_VScrollYTransition as VScrollYTransition, type allComponents_d_VSelect as VSelect, type allComponents_d_VSelectionControl as VSelectionControl, type allComponents_d_VSelectionControlGroup as VSelectionControlGroup, type allComponents_d_VSheet as VSheet, type allComponents_d_VSkeletonLoader as VSkeletonLoader, type allComponents_d_VSlideGroup as VSlideGroup, type allComponents_d_VSlideGroupItem as VSlideGroupItem, type allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, type allComponents_d_VSlideXTransition as VSlideXTransition, type allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, type allComponents_d_VSlideYTransition as VSlideYTransition, type allComponents_d_VSlider as VSlider, type allComponents_d_VSnackbar as VSnackbar, type allComponents_d_VSpacer as VSpacer, type allComponents_d_VSparkline as VSparkline, type allComponents_d_VSpeedDial as VSpeedDial, type allComponents_d_VStepper as VStepper, type allComponents_d_VStepperActions as VStepperActions, type allComponents_d_VStepperHeader as VStepperHeader, type allComponents_d_VStepperItem as VStepperItem, type allComponents_d_VStepperWindow as VStepperWindow, type allComponents_d_VStepperWindowItem as VStepperWindowItem, type allComponents_d_VSvgIcon as VSvgIcon, type allComponents_d_VSwitch as VSwitch, type allComponents_d_VSystemBar as VSystemBar, type allComponents_d_VTab as VTab, type allComponents_d_VTable as VTable, type allComponents_d_VTabs as VTabs, type allComponents_d_VTextField as VTextField, type allComponents_d_VTextarea as VTextarea, type allComponents_d_VThemeProvider as VThemeProvider, type allComponents_d_VTimePicker as VTimePicker, type allComponents_d_VTimePickerClock as VTimePickerClock, type allComponents_d_VTimePickerControls as VTimePickerControls, type allComponents_d_VTimeline as VTimeline, type allComponents_d_VTimelineItem as VTimelineItem, type allComponents_d_VToolbar as VToolbar, type allComponents_d_VToolbarItems as VToolbarItems, type allComponents_d_VToolbarTitle as VToolbarTitle, type allComponents_d_VTooltip as VTooltip, type allComponents_d_VTreeview as VTreeview, type allComponents_d_VTreeviewGroup as VTreeviewGroup, type allComponents_d_VTreeviewItem as VTreeviewItem, type allComponents_d_VValidation as VValidation, type allComponents_d_VVirtualScroll as VVirtualScroll, type allComponents_d_VWindow as VWindow, type allComponents_d_VWindowItem as VWindowItem };
75084
76047
  }
75085
76048
 
75086
76049
  declare const md1: Blueprint;