@vuetify/nightly 3.6.10-master.2024-06-21 → 3.6.11-dev.2024-07-03

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 (92) hide show
  1. package/CHANGELOG.md +13 -2
  2. package/dist/json/attributes.json +291 -119
  3. package/dist/json/importMap-labs.json +28 -28
  4. package/dist/json/importMap.json +106 -106
  5. package/dist/json/tags.json +49 -6
  6. package/dist/json/web-types.json +601 -211
  7. package/dist/vuetify-labs.css +2575 -2559
  8. package/dist/vuetify-labs.d.ts +802 -519
  9. package/dist/vuetify-labs.esm.js +86 -71
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +86 -71
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +627 -611
  14. package/dist/vuetify.d.ts +716 -505
  15. package/dist/vuetify.esm.js +36 -16
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +36 -16
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +24 -24
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAppBar/index.d.mts +6 -0
  23. package/lib/components/VAutocomplete/index.d.mts +49 -49
  24. package/lib/components/VAvatar/VAvatar.css +7 -0
  25. package/lib/components/VAvatar/VAvatar.mjs +6 -1
  26. package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
  27. package/lib/components/VAvatar/VAvatar.sass +1 -0
  28. package/lib/components/VAvatar/_variables.scss +13 -0
  29. package/lib/components/VAvatar/index.d.mts +6 -0
  30. package/lib/components/VBottomSheet/index.d.mts +7 -7
  31. package/lib/components/VBreadcrumbs/index.d.mts +8 -8
  32. package/lib/components/VBtn/VBtn.mjs +3 -1
  33. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  34. package/lib/components/VBtn/index.d.mts +6 -0
  35. package/lib/components/VCarousel/index.d.mts +16 -7
  36. package/lib/components/VCheckbox/index.d.mts +6 -6
  37. package/lib/components/VCombobox/index.d.mts +49 -49
  38. package/lib/components/VDialog/index.d.mts +31 -31
  39. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +7 -2
  40. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
  41. package/lib/components/VExpansionPanel/index.d.mts +122 -14
  42. package/lib/components/VFab/index.d.mts +6 -0
  43. package/lib/components/VFileInput/index.d.mts +18 -18
  44. package/lib/components/VForm/index.d.mts +9 -9
  45. package/lib/components/VGrid/VContainer.mjs +6 -1
  46. package/lib/components/VGrid/VContainer.mjs.map +1 -1
  47. package/lib/components/VGrid/index.d.mts +36 -0
  48. package/lib/components/VImg/VImg.css +9 -0
  49. package/lib/components/VImg/VImg.mjs +2 -0
  50. package/lib/components/VImg/VImg.mjs.map +1 -1
  51. package/lib/components/VImg/VImg.sass +9 -0
  52. package/lib/components/VImg/index.d.mts +16 -7
  53. package/lib/components/VInput/index.d.mts +6 -6
  54. package/lib/components/VList/index.d.mts +12 -12
  55. package/lib/components/VMenu/index.d.mts +33 -33
  56. package/lib/components/VOverlay/VOverlay.mjs +1 -1
  57. package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
  58. package/lib/components/VOverlay/index.d.mts +7 -7
  59. package/lib/components/VRadioGroup/index.d.mts +6 -6
  60. package/lib/components/VRangeSlider/index.d.mts +6 -6
  61. package/lib/components/VSelect/index.d.mts +49 -49
  62. package/lib/components/VSlideGroup/VSlideGroup.mjs +3 -1
  63. package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
  64. package/lib/components/VSlideGroup/index.d.mts +6 -0
  65. package/lib/components/VSlider/index.d.mts +6 -6
  66. package/lib/components/VSnackbar/index.d.mts +33 -33
  67. package/lib/components/VSpeedDial/index.d.mts +9 -9
  68. package/lib/components/VSwitch/index.d.mts +6 -6
  69. package/lib/components/VTabs/index.d.mts +21 -3
  70. package/lib/components/VTextField/index.d.mts +18 -18
  71. package/lib/components/VTextarea/index.d.mts +18 -18
  72. package/lib/components/VTooltip/index.d.mts +39 -39
  73. package/lib/components/VValidation/index.d.mts +9 -8
  74. package/lib/components/index.d.mts +675 -464
  75. package/lib/composables/validation.mjs +8 -6
  76. package/lib/composables/validation.mjs.map +1 -1
  77. package/lib/entry-bundler.mjs +1 -1
  78. package/lib/entry-bundler.mjs.map +1 -1
  79. package/lib/framework.mjs +1 -1
  80. package/lib/framework.mjs.map +1 -1
  81. package/lib/index.d.mts +41 -41
  82. package/lib/labs/VDateInput/index.d.mts +6 -6
  83. package/lib/labs/VNumberInput/VNumberInput.mjs +48 -55
  84. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  85. package/lib/labs/VNumberInput/index.d.mts +6 -6
  86. package/lib/labs/VSnackbarQueue/index.d.mts +42 -42
  87. package/lib/labs/VStepperVertical/VStepperVertical.mjs +2 -0
  88. package/lib/labs/VStepperVertical/VStepperVertical.mjs.map +1 -1
  89. package/lib/labs/VStepperVertical/index.d.mts +90 -18
  90. package/lib/labs/VTreeview/index.d.mts +16 -16
  91. package/lib/labs/components.d.mts +160 -88
  92. package/package.json +1 -1
@@ -101,10 +101,10 @@ declare const VSpeedDial: {
101
101
  component: vue.Component;
102
102
  }>;
103
103
  zIndex: string | number;
104
+ eager: boolean;
104
105
  modelValue: boolean;
105
106
  origin: Anchor | "auto" | "overlap";
106
107
  minWidth: NonNullable<string | number>;
107
- eager: boolean;
108
108
  location: NonNullable<Anchor>;
109
109
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
110
110
  updateLocation: (e: Event) => void;
@@ -183,10 +183,10 @@ declare const VSpeedDial: {
183
183
  component: vue.Component;
184
184
  }>;
185
185
  zIndex: string | number;
186
+ eager: boolean;
186
187
  modelValue: boolean;
187
188
  origin: Anchor | "auto" | "overlap";
188
189
  minWidth: NonNullable<string | number>;
189
- eager: boolean;
190
190
  location: NonNullable<Anchor>;
191
191
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
192
192
  updateLocation: (e: Event) => void;
@@ -263,10 +263,10 @@ declare const VSpeedDial: {
263
263
  component: vue.Component;
264
264
  }>;
265
265
  zIndex: string | number;
266
+ eager: boolean;
266
267
  modelValue: boolean;
267
268
  origin: Anchor | "auto" | "overlap";
268
269
  minWidth: NonNullable<string | number>;
269
- eager: boolean;
270
270
  location: NonNullable<Anchor>;
271
271
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
272
272
  updateLocation: (e: Event) => void;
@@ -314,10 +314,10 @@ declare const VSpeedDial: {
314
314
  component: vue.Component;
315
315
  }>;
316
316
  zIndex: string | number;
317
+ eager: boolean;
317
318
  modelValue: boolean;
318
319
  origin: Anchor | "auto" | "overlap";
319
320
  minWidth: NonNullable<string | number>;
320
- eager: boolean;
321
321
  location: NonNullable<Anchor>;
322
322
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
323
323
  updateLocation: (e: Event) => void;
@@ -394,10 +394,10 @@ declare const VSpeedDial: {
394
394
  component: vue.Component;
395
395
  }>;
396
396
  zIndex: string | number;
397
+ eager: boolean;
397
398
  modelValue: boolean;
398
399
  origin: Anchor | "auto" | "overlap";
399
400
  minWidth: NonNullable<string | number>;
400
- eager: boolean;
401
401
  location: NonNullable<Anchor>;
402
402
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
403
403
  updateLocation: (e: Event) => void;
@@ -429,10 +429,10 @@ declare const VSpeedDial: {
429
429
  component: vue.Component;
430
430
  }>;
431
431
  zIndex: string | number;
432
+ eager: boolean;
432
433
  modelValue: boolean;
433
434
  origin: Anchor | "auto" | "overlap";
434
435
  minWidth: NonNullable<string | number>;
435
- eager: boolean;
436
436
  location: NonNullable<Anchor>;
437
437
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
438
438
  updateLocation: (e: Event) => void;
@@ -511,10 +511,10 @@ declare const VSpeedDial: {
511
511
  component: vue.Component;
512
512
  }>;
513
513
  zIndex: string | number;
514
+ eager: boolean;
514
515
  modelValue: boolean;
515
516
  origin: Anchor | "auto" | "overlap";
516
517
  minWidth: NonNullable<string | number>;
517
- eager: boolean;
518
518
  location: NonNullable<Anchor>;
519
519
  locationStrategy: NonNullable<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
520
520
  updateLocation: (e: Event) => void;
@@ -593,6 +593,7 @@ declare const VSpeedDial: {
593
593
  type: (StringConstructor | NumberConstructor)[];
594
594
  default: number;
595
595
  };
596
+ eager: BooleanConstructor;
596
597
  modelValue: BooleanConstructor;
597
598
  contentClass: null;
598
599
  origin: {
@@ -607,7 +608,6 @@ declare const VSpeedDial: {
607
608
  type: vue.PropType<NonNullable<string | number>>;
608
609
  default: NonNullable<string | number>;
609
610
  };
610
- eager: BooleanConstructor;
611
611
  location: Omit<{
612
612
  type: vue.PropType<Anchor>;
613
613
  default: string;
@@ -734,6 +734,7 @@ declare const VSpeedDial: {
734
734
  type: (StringConstructor | NumberConstructor)[];
735
735
  default: number;
736
736
  };
737
+ eager: BooleanConstructor;
737
738
  modelValue: BooleanConstructor;
738
739
  contentClass: null;
739
740
  origin: {
@@ -748,7 +749,6 @@ declare const VSpeedDial: {
748
749
  type: vue.PropType<NonNullable<string | number>>;
749
750
  default: NonNullable<string | number>;
750
751
  };
751
- eager: BooleanConstructor;
752
752
  location: Omit<{
753
753
  type: vue.PropType<Anchor>;
754
754
  default: string;
@@ -145,7 +145,7 @@ declare const VSwitch: {
145
145
  color?: string | undefined;
146
146
  name?: string | undefined;
147
147
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
148
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
148
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
149
149
  validationValue?: any;
150
150
  maxWidth?: string | number | undefined;
151
151
  minWidth?: string | number | undefined;
@@ -204,7 +204,7 @@ declare const VSwitch: {
204
204
  color?: string | undefined;
205
205
  name?: string | undefined;
206
206
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
207
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
207
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
208
208
  validationValue?: any;
209
209
  maxWidth?: string | number | undefined;
210
210
  minWidth?: string | number | undefined;
@@ -333,7 +333,7 @@ declare const VSwitch: {
333
333
  color?: string | undefined;
334
334
  name?: string | undefined;
335
335
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
336
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
336
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
337
337
  validationValue?: any;
338
338
  maxWidth?: string | number | undefined;
339
339
  minWidth?: string | number | undefined;
@@ -417,7 +417,7 @@ declare const VSwitch: {
417
417
  color?: string | undefined;
418
418
  name?: string | undefined;
419
419
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
420
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
420
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
421
421
  validationValue?: any;
422
422
  maxWidth?: string | number | undefined;
423
423
  minWidth?: string | number | undefined;
@@ -576,7 +576,7 @@ declare const VSwitch: {
576
576
  type: vue.PropType<readonly ValidationRule[]>;
577
577
  default: () => never[];
578
578
  };
579
- validateOn: vue.PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
579
+ validateOn: vue.PropType<(("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined>;
580
580
  validationValue: null;
581
581
  width: (StringConstructor | NumberConstructor)[];
582
582
  maxWidth: (StringConstructor | NumberConstructor)[];
@@ -672,7 +672,7 @@ declare const VSwitch: {
672
672
  type: vue.PropType<readonly ValidationRule[]>;
673
673
  default: () => never[];
674
674
  };
675
- validateOn: vue.PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
675
+ validateOn: vue.PropType<(("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined>;
676
676
  validationValue: null;
677
677
  width: (StringConstructor | NumberConstructor)[];
678
678
  maxWidth: (StringConstructor | NumberConstructor)[];
@@ -95,6 +95,7 @@ declare const VTab: {
95
95
  minWidth?: string | number | undefined;
96
96
  elevation?: string | number | undefined;
97
97
  baseColor?: string | undefined;
98
+ activeColor?: string | undefined;
98
99
  prependIcon?: IconValue | undefined;
99
100
  appendIcon?: IconValue | undefined;
100
101
  sliderColor?: string | undefined;
@@ -182,6 +183,7 @@ declare const VTab: {
182
183
  location?: Anchor | undefined;
183
184
  baseColor?: string | undefined;
184
185
  selectedClass?: string | undefined;
186
+ activeColor?: string | undefined;
185
187
  prependIcon?: IconValue | undefined;
186
188
  appendIcon?: IconValue | undefined;
187
189
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
@@ -246,6 +248,7 @@ declare const VTab: {
246
248
  location?: Anchor | undefined;
247
249
  baseColor?: string | undefined;
248
250
  selectedClass?: string | undefined;
251
+ activeColor?: string | undefined;
249
252
  prependIcon?: IconValue | undefined;
250
253
  appendIcon?: IconValue | undefined;
251
254
  } & {
@@ -340,6 +343,7 @@ declare const VTab: {
340
343
  location?: Anchor | undefined;
341
344
  baseColor?: string | undefined;
342
345
  selectedClass?: string | undefined;
346
+ activeColor?: string | undefined;
343
347
  prependIcon?: IconValue | undefined;
344
348
  appendIcon?: IconValue | undefined;
345
349
  } & {
@@ -467,6 +471,7 @@ declare const VTab: {
467
471
  location?: Anchor | undefined;
468
472
  baseColor?: string | undefined;
469
473
  selectedClass?: string | undefined;
474
+ activeColor?: string | undefined;
470
475
  prependIcon?: IconValue | undefined;
471
476
  appendIcon?: IconValue | undefined;
472
477
  } & {
@@ -493,7 +498,7 @@ declare const VTab: {
493
498
  }) => any) | undefined;
494
499
  }, "group"> & vue.ShallowUnwrapRef<{
495
500
  group: GroupItemProvide | null;
496
- }> & {} & vue.ComponentCustomProperties & {}, "class" | "text" | "value" | "width" | "height" | "theme" | "key" | "href" | "color" | "v-slot:default" | "$children" | "v-slots" | "loading" | "icon" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "to" | "border" | "position" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "elevation" | "v-slot:prepend" | "v-slot:append" | "location" | "baseColor" | "selectedClass" | "onGroup:selected" | "prependIcon" | "appendIcon" | ("symbol" | "flat" | "replace" | "style" | "size" | "active" | "disabled" | "tag" | "readonly" | "rounded" | "variant" | "block" | "exact" | "tile" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
501
+ }> & {} & vue.ComponentCustomProperties & {}, "class" | "text" | "value" | "width" | "height" | "theme" | "key" | "href" | "color" | "v-slot:default" | "$children" | "v-slots" | "loading" | "icon" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "to" | "border" | "position" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "elevation" | "v-slot:prepend" | "v-slot:append" | "location" | "baseColor" | "selectedClass" | "onGroup:selected" | "activeColor" | "prependIcon" | "appendIcon" | ("symbol" | "flat" | "replace" | "style" | "size" | "active" | "disabled" | "tag" | "readonly" | "rounded" | "variant" | "block" | "exact" | "tile" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
497
502
  replace: boolean;
498
503
  fixed: boolean;
499
504
  style: vue.StyleValue;
@@ -533,6 +538,7 @@ declare const VTab: {
533
538
  minWidth?: string | number | undefined;
534
539
  elevation?: string | number | undefined;
535
540
  baseColor?: string | undefined;
541
+ activeColor?: string | undefined;
536
542
  prependIcon?: IconValue | undefined;
537
543
  appendIcon?: IconValue | undefined;
538
544
  sliderColor?: string | undefined;
@@ -635,6 +641,7 @@ declare const VTab: {
635
641
  minWidth?: string | number | undefined;
636
642
  elevation?: string | number | undefined;
637
643
  baseColor?: string | undefined;
644
+ activeColor?: string | undefined;
638
645
  prependIcon?: IconValue | undefined;
639
646
  appendIcon?: IconValue | undefined;
640
647
  sliderColor?: string | undefined;
@@ -722,6 +729,7 @@ declare const VTab: {
722
729
  location?: Anchor | undefined;
723
730
  baseColor?: string | undefined;
724
731
  selectedClass?: string | undefined;
732
+ activeColor?: string | undefined;
725
733
  prependIcon?: IconValue | undefined;
726
734
  appendIcon?: IconValue | undefined;
727
735
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
@@ -786,6 +794,7 @@ declare const VTab: {
786
794
  location?: Anchor | undefined;
787
795
  baseColor?: string | undefined;
788
796
  selectedClass?: string | undefined;
797
+ activeColor?: string | undefined;
789
798
  prependIcon?: IconValue | undefined;
790
799
  appendIcon?: IconValue | undefined;
791
800
  } & {
@@ -880,6 +889,7 @@ declare const VTab: {
880
889
  location?: Anchor | undefined;
881
890
  baseColor?: string | undefined;
882
891
  selectedClass?: string | undefined;
892
+ activeColor?: string | undefined;
883
893
  prependIcon?: IconValue | undefined;
884
894
  appendIcon?: IconValue | undefined;
885
895
  } & {
@@ -1007,6 +1017,7 @@ declare const VTab: {
1007
1017
  location?: Anchor | undefined;
1008
1018
  baseColor?: string | undefined;
1009
1019
  selectedClass?: string | undefined;
1020
+ activeColor?: string | undefined;
1010
1021
  prependIcon?: IconValue | undefined;
1011
1022
  appendIcon?: IconValue | undefined;
1012
1023
  } & {
@@ -1033,7 +1044,7 @@ declare const VTab: {
1033
1044
  }) => any) | undefined;
1034
1045
  }, "group"> & vue.ShallowUnwrapRef<{
1035
1046
  group: GroupItemProvide | null;
1036
- }> & {} & vue.ComponentCustomProperties & {}, "class" | "text" | "value" | "width" | "height" | "theme" | "key" | "href" | "color" | "v-slot:default" | "$children" | "v-slots" | "loading" | "icon" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "to" | "border" | "position" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "elevation" | "v-slot:prepend" | "v-slot:append" | "location" | "baseColor" | "selectedClass" | "onGroup:selected" | "prependIcon" | "appendIcon" | ("symbol" | "flat" | "replace" | "style" | "size" | "active" | "disabled" | "tag" | "readonly" | "rounded" | "variant" | "block" | "exact" | "tile" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, {}, {}, {}, {
1047
+ }> & {} & vue.ComponentCustomProperties & {}, "class" | "text" | "value" | "width" | "height" | "theme" | "key" | "href" | "color" | "v-slot:default" | "$children" | "v-slots" | "loading" | "icon" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "to" | "border" | "position" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "elevation" | "v-slot:prepend" | "v-slot:append" | "location" | "baseColor" | "selectedClass" | "onGroup:selected" | "activeColor" | "prependIcon" | "appendIcon" | ("symbol" | "flat" | "replace" | "style" | "size" | "active" | "disabled" | "tag" | "readonly" | "rounded" | "variant" | "block" | "exact" | "tile" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, {}, {}, {}, {
1037
1048
  replace: boolean;
1038
1049
  fixed: boolean;
1039
1050
  style: vue.StyleValue;
@@ -1098,6 +1109,7 @@ declare const VTab: {
1098
1109
  minWidth?: string | number | undefined;
1099
1110
  elevation?: string | number | undefined;
1100
1111
  baseColor?: string | undefined;
1112
+ activeColor?: string | undefined;
1101
1113
  prependIcon?: IconValue | undefined;
1102
1114
  appendIcon?: IconValue | undefined;
1103
1115
  sliderColor?: string | undefined;
@@ -1185,6 +1197,7 @@ declare const VTab: {
1185
1197
  location?: Anchor | undefined;
1186
1198
  baseColor?: string | undefined;
1187
1199
  selectedClass?: string | undefined;
1200
+ activeColor?: string | undefined;
1188
1201
  prependIcon?: IconValue | undefined;
1189
1202
  appendIcon?: IconValue | undefined;
1190
1203
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
@@ -1249,6 +1262,7 @@ declare const VTab: {
1249
1262
  location?: Anchor | undefined;
1250
1263
  baseColor?: string | undefined;
1251
1264
  selectedClass?: string | undefined;
1265
+ activeColor?: string | undefined;
1252
1266
  prependIcon?: IconValue | undefined;
1253
1267
  appendIcon?: IconValue | undefined;
1254
1268
  } & {
@@ -1343,6 +1357,7 @@ declare const VTab: {
1343
1357
  location?: Anchor | undefined;
1344
1358
  baseColor?: string | undefined;
1345
1359
  selectedClass?: string | undefined;
1360
+ activeColor?: string | undefined;
1346
1361
  prependIcon?: IconValue | undefined;
1347
1362
  appendIcon?: IconValue | undefined;
1348
1363
  } & {
@@ -1470,6 +1485,7 @@ declare const VTab: {
1470
1485
  location?: Anchor | undefined;
1471
1486
  baseColor?: string | undefined;
1472
1487
  selectedClass?: string | undefined;
1488
+ activeColor?: string | undefined;
1473
1489
  prependIcon?: IconValue | undefined;
1474
1490
  appendIcon?: IconValue | undefined;
1475
1491
  } & {
@@ -1496,7 +1512,7 @@ declare const VTab: {
1496
1512
  }) => any) | undefined;
1497
1513
  }, "group"> & vue.ShallowUnwrapRef<{
1498
1514
  group: GroupItemProvide | null;
1499
- }> & {} & vue.ComponentCustomProperties & {}, "class" | "text" | "value" | "width" | "height" | "theme" | "key" | "href" | "color" | "v-slot:default" | "$children" | "v-slots" | "loading" | "icon" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "to" | "border" | "position" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "elevation" | "v-slot:prepend" | "v-slot:append" | "location" | "baseColor" | "selectedClass" | "onGroup:selected" | "prependIcon" | "appendIcon" | ("symbol" | "flat" | "replace" | "style" | "size" | "active" | "disabled" | "tag" | "readonly" | "rounded" | "variant" | "block" | "exact" | "tile" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
1515
+ }> & {} & vue.ComponentCustomProperties & {}, "class" | "text" | "value" | "width" | "height" | "theme" | "key" | "href" | "color" | "v-slot:default" | "$children" | "v-slots" | "loading" | "icon" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "to" | "border" | "position" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "elevation" | "v-slot:prepend" | "v-slot:append" | "location" | "baseColor" | "selectedClass" | "onGroup:selected" | "activeColor" | "prependIcon" | "appendIcon" | ("symbol" | "flat" | "replace" | "style" | "size" | "active" | "disabled" | "tag" | "readonly" | "rounded" | "variant" | "block" | "exact" | "tile" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
1500
1516
  replace: boolean;
1501
1517
  fixed: boolean;
1502
1518
  style: vue.StyleValue;
@@ -1596,6 +1612,7 @@ declare const VTab: {
1596
1612
  type: PropType<string>;
1597
1613
  default: string;
1598
1614
  };
1615
+ activeColor: StringConstructor;
1599
1616
  prependIcon: PropType<IconValue>;
1600
1617
  appendIcon: PropType<IconValue>;
1601
1618
  slim: BooleanConstructor;
@@ -1679,6 +1696,7 @@ declare const VTab: {
1679
1696
  type: PropType<string>;
1680
1697
  default: string;
1681
1698
  };
1699
+ activeColor: StringConstructor;
1682
1700
  prependIcon: PropType<IconValue>;
1683
1701
  appendIcon: PropType<IconValue>;
1684
1702
  slim: BooleanConstructor;
@@ -141,7 +141,7 @@ declare const VTextField: {
141
141
  counter?: string | number | boolean | undefined;
142
142
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
143
143
  modelValue?: any;
144
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
144
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
145
145
  validationValue?: any;
146
146
  rounded?: string | number | boolean | undefined;
147
147
  maxWidth?: string | number | undefined;
@@ -263,7 +263,7 @@ declare const VTextField: {
263
263
  theme?: string | undefined;
264
264
  name?: string | undefined;
265
265
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
266
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
266
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
267
267
  validationValue?: any;
268
268
  maxWidth?: string | number | undefined;
269
269
  minWidth?: string | number | undefined;
@@ -296,7 +296,7 @@ declare const VTextField: {
296
296
  theme?: string | undefined;
297
297
  name?: string | undefined;
298
298
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
299
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
299
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
300
300
  validationValue?: any;
301
301
  maxWidth?: string | number | undefined;
302
302
  minWidth?: string | number | undefined;
@@ -357,7 +357,7 @@ declare const VTextField: {
357
357
  theme?: string | undefined;
358
358
  name?: string | undefined;
359
359
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
360
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
360
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
361
361
  validationValue?: any;
362
362
  maxWidth?: string | number | undefined;
363
363
  minWidth?: string | number | undefined;
@@ -449,7 +449,7 @@ declare const VTextField: {
449
449
  theme?: string | undefined;
450
450
  name?: string | undefined;
451
451
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
452
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
452
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
453
453
  validationValue?: any;
454
454
  maxWidth?: string | number | undefined;
455
455
  minWidth?: string | number | undefined;
@@ -775,7 +775,7 @@ declare const VTextField: {
775
775
  counter?: string | number | boolean | undefined;
776
776
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
777
777
  modelValue?: any;
778
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
778
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
779
779
  validationValue?: any;
780
780
  rounded?: string | number | boolean | undefined;
781
781
  maxWidth?: string | number | undefined;
@@ -975,7 +975,7 @@ declare const VTextField: {
975
975
  counter?: string | number | boolean | undefined;
976
976
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
977
977
  modelValue?: any;
978
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
978
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
979
979
  validationValue?: any;
980
980
  rounded?: string | number | boolean | undefined;
981
981
  maxWidth?: string | number | undefined;
@@ -1097,7 +1097,7 @@ declare const VTextField: {
1097
1097
  theme?: string | undefined;
1098
1098
  name?: string | undefined;
1099
1099
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1100
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
1100
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
1101
1101
  validationValue?: any;
1102
1102
  maxWidth?: string | number | undefined;
1103
1103
  minWidth?: string | number | undefined;
@@ -1130,7 +1130,7 @@ declare const VTextField: {
1130
1130
  theme?: string | undefined;
1131
1131
  name?: string | undefined;
1132
1132
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1133
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
1133
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
1134
1134
  validationValue?: any;
1135
1135
  maxWidth?: string | number | undefined;
1136
1136
  minWidth?: string | number | undefined;
@@ -1191,7 +1191,7 @@ declare const VTextField: {
1191
1191
  theme?: string | undefined;
1192
1192
  name?: string | undefined;
1193
1193
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1194
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
1194
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
1195
1195
  validationValue?: any;
1196
1196
  maxWidth?: string | number | undefined;
1197
1197
  minWidth?: string | number | undefined;
@@ -1283,7 +1283,7 @@ declare const VTextField: {
1283
1283
  theme?: string | undefined;
1284
1284
  name?: string | undefined;
1285
1285
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1286
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
1286
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
1287
1287
  validationValue?: any;
1288
1288
  maxWidth?: string | number | undefined;
1289
1289
  minWidth?: string | number | undefined;
@@ -1638,7 +1638,7 @@ declare const VTextField: {
1638
1638
  counter?: string | number | boolean | undefined;
1639
1639
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1640
1640
  modelValue?: any;
1641
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
1641
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
1642
1642
  validationValue?: any;
1643
1643
  rounded?: string | number | boolean | undefined;
1644
1644
  maxWidth?: string | number | undefined;
@@ -1760,7 +1760,7 @@ declare const VTextField: {
1760
1760
  theme?: string | undefined;
1761
1761
  name?: string | undefined;
1762
1762
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1763
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
1763
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
1764
1764
  validationValue?: any;
1765
1765
  maxWidth?: string | number | undefined;
1766
1766
  minWidth?: string | number | undefined;
@@ -1793,7 +1793,7 @@ declare const VTextField: {
1793
1793
  theme?: string | undefined;
1794
1794
  name?: string | undefined;
1795
1795
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1796
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
1796
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
1797
1797
  validationValue?: any;
1798
1798
  maxWidth?: string | number | undefined;
1799
1799
  minWidth?: string | number | undefined;
@@ -1854,7 +1854,7 @@ declare const VTextField: {
1854
1854
  theme?: string | undefined;
1855
1855
  name?: string | undefined;
1856
1856
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1857
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
1857
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
1858
1858
  validationValue?: any;
1859
1859
  maxWidth?: string | number | undefined;
1860
1860
  minWidth?: string | number | undefined;
@@ -1946,7 +1946,7 @@ declare const VTextField: {
1946
1946
  theme?: string | undefined;
1947
1947
  name?: string | undefined;
1948
1948
  'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
1949
- validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
1949
+ validateOn?: (("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined;
1950
1950
  validationValue?: any;
1951
1951
  maxWidth?: string | number | undefined;
1952
1952
  minWidth?: string | number | undefined;
@@ -2366,7 +2366,7 @@ declare const VTextField: {
2366
2366
  default: () => never[];
2367
2367
  };
2368
2368
  modelValue: null;
2369
- validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
2369
+ validateOn: PropType<(("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined>;
2370
2370
  validationValue: null;
2371
2371
  width: (StringConstructor | NumberConstructor)[];
2372
2372
  maxWidth: (StringConstructor | NumberConstructor)[];
@@ -2475,7 +2475,7 @@ declare const VTextField: {
2475
2475
  default: () => never[];
2476
2476
  };
2477
2477
  modelValue: null;
2478
- validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
2478
+ validateOn: PropType<(("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input" | "lazy" | "eager") | undefined>;
2479
2479
  validationValue: null;
2480
2480
  width: (StringConstructor | NumberConstructor)[];
2481
2481
  maxWidth: (StringConstructor | NumberConstructor)[];