vuetify 3.3.19 → 3.3.20

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 (71) hide show
  1. package/dist/json/attributes.json +25 -25
  2. package/dist/json/importMap.json +20 -20
  3. package/dist/json/web-types.json +63 -63
  4. package/dist/vuetify-labs.css +5122 -5112
  5. package/dist/vuetify-labs.d.ts +172 -172
  6. package/dist/vuetify-labs.esm.js +45 -51
  7. package/dist/vuetify-labs.esm.js.map +1 -1
  8. package/dist/vuetify-labs.js +45 -51
  9. package/dist/vuetify-labs.min.css +2 -2
  10. package/dist/vuetify.css +5088 -5082
  11. package/dist/vuetify.d.ts +169 -169
  12. package/dist/vuetify.esm.js +33 -40
  13. package/dist/vuetify.esm.js.map +1 -1
  14. package/dist/vuetify.js +33 -40
  15. package/dist/vuetify.js.map +1 -1
  16. package/dist/vuetify.min.css +2 -2
  17. package/dist/vuetify.min.js +201 -202
  18. package/dist/vuetify.min.js.map +1 -1
  19. package/lib/components/VAutocomplete/index.d.mts +14 -14
  20. package/lib/components/VCheckbox/index.d.mts +8 -8
  21. package/lib/components/VCombobox/index.d.mts +14 -14
  22. package/lib/components/VFileInput/index.d.mts +20 -20
  23. package/lib/components/VInput/index.d.mts +8 -8
  24. package/lib/components/VList/VList.css +0 -3
  25. package/lib/components/VList/VList.sass +0 -4
  26. package/lib/components/VList/VListItem.css +9 -1
  27. package/lib/components/VList/VListItem.sass +12 -1
  28. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +8 -7
  29. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
  30. package/lib/components/VRadioGroup/index.d.mts +8 -8
  31. package/lib/components/VRangeSlider/index.d.mts +8 -8
  32. package/lib/components/VSelect/index.d.mts +14 -14
  33. package/lib/components/VSlider/VSliderThumb.css +2 -0
  34. package/lib/components/VSlider/VSliderThumb.mjs +7 -6
  35. package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
  36. package/lib/components/VSlider/VSliderThumb.sass +2 -0
  37. package/lib/components/VSlider/VSliderTrack.mjs +5 -7
  38. package/lib/components/VSlider/VSliderTrack.mjs.map +1 -1
  39. package/lib/components/VSlider/index.d.mts +8 -8
  40. package/lib/components/VSlider/slider.mjs +4 -10
  41. package/lib/components/VSlider/slider.mjs.map +1 -1
  42. package/lib/components/VSwitch/index.d.mts +8 -8
  43. package/lib/components/VTextField/VTextField.mjs +1 -1
  44. package/lib/components/VTextField/VTextField.mjs.map +1 -1
  45. package/lib/components/VTextField/index.d.mts +26 -26
  46. package/lib/components/VTextarea/index.d.mts +20 -20
  47. package/lib/components/VTimeline/VTimeline.css +0 -1
  48. package/lib/components/VTimeline/VTimeline.sass +0 -1
  49. package/lib/components/VValidation/index.d.mts +8 -8
  50. package/lib/components/index.d.mts +164 -164
  51. package/lib/composables/forwardRefs.mjs +4 -4
  52. package/lib/composables/forwardRefs.mjs.map +1 -1
  53. package/lib/composables/validation.mjs +2 -2
  54. package/lib/composables/validation.mjs.map +1 -1
  55. package/lib/entry-bundler.mjs +1 -1
  56. package/lib/framework.mjs +1 -1
  57. package/lib/index.d.mts +5 -5
  58. package/lib/labs/VDataTable/VDataTableVirtual.mjs +5 -5
  59. package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
  60. package/lib/labs/VDataTable/composables/select.mjs +6 -6
  61. package/lib/labs/VDataTable/composables/select.mjs.map +1 -1
  62. package/lib/labs/VDateInput/index.d.mts +14 -14
  63. package/lib/labs/VSkeletonLoader/VSkeletonLoader.css +4 -0
  64. package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs +2 -1
  65. package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs.map +1 -1
  66. package/lib/labs/VSkeletonLoader/VSkeletonLoader.sass +4 -0
  67. package/lib/labs/VSkeletonLoader/index.d.mts +8 -8
  68. package/lib/labs/components.d.mts +8 -8
  69. package/lib/labs/date/date.mjs +1 -1
  70. package/lib/labs/date/date.mjs.map +1 -1
  71. package/package.json +2 -2
@@ -4460,7 +4460,7 @@ declare const VInput: {
4460
4460
  messages?: string | readonly string[] | undefined;
4461
4461
  density?: Density | undefined;
4462
4462
  focused?: boolean | undefined;
4463
- errorMessages?: string | readonly string[] | undefined;
4463
+ errorMessages?: string | readonly string[] | null | undefined;
4464
4464
  maxErrors?: string | number | undefined;
4465
4465
  rules?: readonly ValidationRule$1[] | undefined;
4466
4466
  centerAffix?: boolean | undefined;
@@ -4578,7 +4578,7 @@ declare const VInput: {
4578
4578
  messages: string | readonly string[];
4579
4579
  density: Density;
4580
4580
  focused: boolean;
4581
- errorMessages: string | readonly string[];
4581
+ errorMessages: string | readonly string[] | null;
4582
4582
  maxErrors: string | number;
4583
4583
  rules: readonly ValidationRule$1[];
4584
4584
  centerAffix: boolean;
@@ -4636,7 +4636,7 @@ declare const VInput: {
4636
4636
  messages: string | readonly string[];
4637
4637
  density: Density;
4638
4638
  focused: boolean;
4639
- errorMessages: string | readonly string[];
4639
+ errorMessages: string | readonly string[] | null;
4640
4640
  maxErrors: string | number;
4641
4641
  rules: readonly ValidationRule$1[];
4642
4642
  centerAffix: boolean;
@@ -4686,7 +4686,7 @@ declare const VInput: {
4686
4686
  messages: string | readonly string[];
4687
4687
  density: Density;
4688
4688
  focused: boolean;
4689
- errorMessages: string | readonly string[];
4689
+ errorMessages: string | readonly string[] | null;
4690
4690
  maxErrors: string | number;
4691
4691
  rules: readonly ValidationRule$1[];
4692
4692
  centerAffix: boolean;
@@ -4746,7 +4746,7 @@ declare const VInput: {
4746
4746
  messages: string | readonly string[];
4747
4747
  density: Density;
4748
4748
  focused: boolean;
4749
- errorMessages: string | readonly string[];
4749
+ errorMessages: string | readonly string[] | null;
4750
4750
  maxErrors: string | number;
4751
4751
  rules: readonly ValidationRule$1[];
4752
4752
  centerAffix: boolean;
@@ -4804,7 +4804,7 @@ declare const VInput: {
4804
4804
  messages: string | readonly string[];
4805
4805
  density: Density;
4806
4806
  focused: boolean;
4807
- errorMessages: string | readonly string[];
4807
+ errorMessages: string | readonly string[] | null;
4808
4808
  maxErrors: string | number;
4809
4809
  rules: readonly ValidationRule$1[];
4810
4810
  centerAffix: boolean;
@@ -4834,7 +4834,7 @@ declare const VInput: {
4834
4834
  };
4835
4835
  error: BooleanConstructor;
4836
4836
  errorMessages: {
4837
- type: PropType<string | readonly string[]>;
4837
+ type: PropType<string | readonly string[] | null>;
4838
4838
  default: () => never[];
4839
4839
  };
4840
4840
  maxErrors: {
@@ -4894,7 +4894,7 @@ declare const VInput: {
4894
4894
  };
4895
4895
  error: BooleanConstructor;
4896
4896
  errorMessages: {
4897
- type: PropType<string | readonly string[]>;
4897
+ type: PropType<string | readonly string[] | null>;
4898
4898
  default: () => never[];
4899
4899
  };
4900
4900
  maxErrors: {
@@ -5062,7 +5062,7 @@ declare const VAutocomplete: {
5062
5062
  valueComparator?: typeof deepEqual | undefined;
5063
5063
  clearIcon?: IconValue | undefined;
5064
5064
  focused?: boolean | undefined;
5065
- errorMessages?: string | readonly string[] | undefined;
5065
+ errorMessages?: string | readonly string[] | null | undefined;
5066
5066
  maxErrors?: string | number | undefined;
5067
5067
  rules?: readonly ValidationRule$1[] | undefined;
5068
5068
  centerAffix?: boolean | undefined;
@@ -5101,7 +5101,7 @@ declare const VAutocomplete: {
5101
5101
  ref_for?: boolean | undefined;
5102
5102
  ref_key?: string | undefined;
5103
5103
  theme?: string | undefined;
5104
- counter?: string | number | true | undefined;
5104
+ counter?: string | number | boolean | undefined;
5105
5105
  onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
5106
5106
  [key: string]: any;
5107
5107
  }>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -5374,7 +5374,7 @@ declare const VAutocomplete: {
5374
5374
  valueComparator: typeof deepEqual;
5375
5375
  clearIcon: IconValue;
5376
5376
  focused: boolean;
5377
- errorMessages: string | readonly string[];
5377
+ errorMessages: string | readonly string[] | null;
5378
5378
  maxErrors: string | number;
5379
5379
  rules: readonly ValidationRule$1[];
5380
5380
  persistentHint: boolean;
@@ -5409,7 +5409,7 @@ declare const VAutocomplete: {
5409
5409
  class?: any;
5410
5410
  placeholder?: string | undefined;
5411
5411
  theme?: string | undefined;
5412
- counter?: string | number | true | undefined;
5412
+ counter?: string | number | boolean | undefined;
5413
5413
  rounded?: string | number | boolean | undefined;
5414
5414
  bgColor?: string | undefined;
5415
5415
  prependIcon?: IconValue | undefined;
@@ -5582,7 +5582,7 @@ declare const VAutocomplete: {
5582
5582
  valueComparator: typeof deepEqual;
5583
5583
  clearIcon: IconValue;
5584
5584
  focused: boolean;
5585
- errorMessages: string | readonly string[];
5585
+ errorMessages: string | readonly string[] | null;
5586
5586
  maxErrors: string | number;
5587
5587
  rules: readonly ValidationRule$1[];
5588
5588
  centerAffix: boolean;
@@ -5711,7 +5711,7 @@ declare const VAutocomplete: {
5711
5711
  valueComparator: typeof deepEqual;
5712
5712
  clearIcon: IconValue;
5713
5713
  focused: boolean;
5714
- errorMessages: string | readonly string[];
5714
+ errorMessages: string | readonly string[] | null;
5715
5715
  maxErrors: string | number;
5716
5716
  rules: readonly ValidationRule$1[];
5717
5717
  persistentHint: boolean;
@@ -5746,7 +5746,7 @@ declare const VAutocomplete: {
5746
5746
  class?: any;
5747
5747
  placeholder?: string | undefined;
5748
5748
  theme?: string | undefined;
5749
- counter?: string | number | true | undefined;
5749
+ counter?: string | number | boolean | undefined;
5750
5750
  rounded?: string | number | boolean | undefined;
5751
5751
  bgColor?: string | undefined;
5752
5752
  prependIcon?: IconValue | undefined;
@@ -5917,7 +5917,7 @@ declare const VAutocomplete: {
5917
5917
  valueComparator: typeof deepEqual;
5918
5918
  clearIcon: IconValue;
5919
5919
  focused: boolean;
5920
- errorMessages: string | readonly string[];
5920
+ errorMessages: string | readonly string[] | null;
5921
5921
  maxErrors: string | number;
5922
5922
  rules: readonly ValidationRule$1[];
5923
5923
  persistentHint: boolean;
@@ -5952,7 +5952,7 @@ declare const VAutocomplete: {
5952
5952
  class?: any;
5953
5953
  placeholder?: string | undefined;
5954
5954
  theme?: string | undefined;
5955
- counter?: string | number | true | undefined;
5955
+ counter?: string | number | boolean | undefined;
5956
5956
  rounded?: string | number | boolean | undefined;
5957
5957
  bgColor?: string | undefined;
5958
5958
  prependIcon?: IconValue | undefined;
@@ -6125,7 +6125,7 @@ declare const VAutocomplete: {
6125
6125
  valueComparator: typeof deepEqual;
6126
6126
  clearIcon: IconValue;
6127
6127
  focused: boolean;
6128
- errorMessages: string | readonly string[];
6128
+ errorMessages: string | readonly string[] | null;
6129
6129
  maxErrors: string | number;
6130
6130
  rules: readonly ValidationRule$1[];
6131
6131
  centerAffix: boolean;
@@ -6312,7 +6312,7 @@ declare const VAutocomplete: {
6312
6312
  class: PropType<any>;
6313
6313
  placeholder: StringConstructor;
6314
6314
  theme: StringConstructor;
6315
- counter: PropType<string | number | true>;
6315
+ counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
6316
6316
  messages: {
6317
6317
  type: PropType<string | readonly string[]>;
6318
6318
  default: () => never[];
@@ -6352,7 +6352,7 @@ declare const VAutocomplete: {
6352
6352
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
6353
6353
  validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
6354
6354
  errorMessages: {
6355
- type: PropType<string | readonly string[]>;
6355
+ type: PropType<string | readonly string[] | null>;
6356
6356
  default: () => never[];
6357
6357
  };
6358
6358
  maxErrors: {
@@ -6617,7 +6617,7 @@ declare const VAutocomplete: {
6617
6617
  class: PropType<any>;
6618
6618
  placeholder: StringConstructor;
6619
6619
  theme: StringConstructor;
6620
- counter: PropType<string | number | true>;
6620
+ counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
6621
6621
  messages: {
6622
6622
  type: PropType<string | readonly string[]>;
6623
6623
  default: () => never[];
@@ -6657,7 +6657,7 @@ declare const VAutocomplete: {
6657
6657
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
6658
6658
  validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
6659
6659
  errorMessages: {
6660
- type: PropType<string | readonly string[]>;
6660
+ type: PropType<string | readonly string[] | null>;
6661
6661
  default: () => never[];
6662
6662
  };
6663
6663
  maxErrors: {
@@ -14779,7 +14779,7 @@ declare const VCheckbox: {
14779
14779
  valueComparator?: typeof deepEqual | undefined;
14780
14780
  indeterminateIcon?: IconValue | undefined;
14781
14781
  focused?: boolean | undefined;
14782
- errorMessages?: string | readonly string[] | undefined;
14782
+ errorMessages?: string | readonly string[] | null | undefined;
14783
14783
  maxErrors?: string | number | undefined;
14784
14784
  rules?: readonly ValidationRule$1[] | undefined;
14785
14785
  centerAffix?: boolean | undefined;
@@ -14950,7 +14950,7 @@ declare const VCheckbox: {
14950
14950
  valueComparator: typeof deepEqual;
14951
14951
  indeterminateIcon: IconValue;
14952
14952
  focused: boolean;
14953
- errorMessages: string | readonly string[];
14953
+ errorMessages: string | readonly string[] | null;
14954
14954
  maxErrors: string | number;
14955
14955
  rules: readonly ValidationRule$1[];
14956
14956
  centerAffix: boolean;
@@ -15047,7 +15047,7 @@ declare const VCheckbox: {
15047
15047
  valueComparator: typeof deepEqual;
15048
15048
  indeterminateIcon: IconValue;
15049
15049
  focused: boolean;
15050
- errorMessages: string | readonly string[];
15050
+ errorMessages: string | readonly string[] | null;
15051
15051
  maxErrors: string | number;
15052
15052
  rules: readonly ValidationRule$1[];
15053
15053
  centerAffix: boolean;
@@ -15116,7 +15116,7 @@ declare const VCheckbox: {
15116
15116
  valueComparator: typeof deepEqual;
15117
15117
  indeterminateIcon: IconValue;
15118
15118
  focused: boolean;
15119
- errorMessages: string | readonly string[];
15119
+ errorMessages: string | readonly string[] | null;
15120
15120
  maxErrors: string | number;
15121
15121
  rules: readonly ValidationRule$1[];
15122
15122
  centerAffix: boolean;
@@ -15214,7 +15214,7 @@ declare const VCheckbox: {
15214
15214
  valueComparator: typeof deepEqual;
15215
15215
  indeterminateIcon: IconValue;
15216
15216
  focused: boolean;
15217
- errorMessages: string | readonly string[];
15217
+ errorMessages: string | readonly string[] | null;
15218
15218
  maxErrors: string | number;
15219
15219
  rules: readonly ValidationRule$1[];
15220
15220
  centerAffix: boolean;
@@ -15311,7 +15311,7 @@ declare const VCheckbox: {
15311
15311
  valueComparator: typeof deepEqual;
15312
15312
  indeterminateIcon: IconValue;
15313
15313
  focused: boolean;
15314
- errorMessages: string | readonly string[];
15314
+ errorMessages: string | readonly string[] | null;
15315
15315
  maxErrors: string | number;
15316
15316
  rules: readonly ValidationRule$1[];
15317
15317
  centerAffix: boolean;
@@ -15400,7 +15400,7 @@ declare const VCheckbox: {
15400
15400
  focused: BooleanConstructor;
15401
15401
  'onUpdate:focused': vue.PropType<EventProp<[boolean], (args_0: boolean) => any>>;
15402
15402
  errorMessages: {
15403
- type: vue.PropType<string | readonly string[]>;
15403
+ type: vue.PropType<string | readonly string[] | null>;
15404
15404
  default: () => never[];
15405
15405
  };
15406
15406
  maxErrors: {
@@ -15489,7 +15489,7 @@ declare const VCheckbox: {
15489
15489
  focused: BooleanConstructor;
15490
15490
  'onUpdate:focused': vue.PropType<EventProp<[boolean], (args_0: boolean) => any>>;
15491
15491
  errorMessages: {
15492
- type: vue.PropType<string | readonly string[]>;
15492
+ type: vue.PropType<string | readonly string[] | null>;
15493
15493
  default: () => never[];
15494
15494
  };
15495
15495
  maxErrors: {
@@ -18082,7 +18082,7 @@ declare const VCombobox: {
18082
18082
  valueComparator?: typeof deepEqual | undefined;
18083
18083
  clearIcon?: IconValue | undefined;
18084
18084
  focused?: boolean | undefined;
18085
- errorMessages?: string | readonly string[] | undefined;
18085
+ errorMessages?: string | readonly string[] | null | undefined;
18086
18086
  maxErrors?: string | number | undefined;
18087
18087
  rules?: readonly ValidationRule$1[] | undefined;
18088
18088
  centerAffix?: boolean | undefined;
@@ -18121,7 +18121,7 @@ declare const VCombobox: {
18121
18121
  ref_for?: boolean | undefined;
18122
18122
  ref_key?: string | undefined;
18123
18123
  theme?: string | undefined;
18124
- counter?: string | number | true | undefined;
18124
+ counter?: string | number | boolean | undefined;
18125
18125
  onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
18126
18126
  [key: string]: any;
18127
18127
  }>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -18394,7 +18394,7 @@ declare const VCombobox: {
18394
18394
  valueComparator: typeof deepEqual;
18395
18395
  clearIcon: IconValue;
18396
18396
  focused: boolean;
18397
- errorMessages: string | readonly string[];
18397
+ errorMessages: string | readonly string[] | null;
18398
18398
  maxErrors: string | number;
18399
18399
  rules: readonly ValidationRule$1[];
18400
18400
  persistentHint: boolean;
@@ -18429,7 +18429,7 @@ declare const VCombobox: {
18429
18429
  delimiters?: readonly string[] | undefined;
18430
18430
  placeholder?: string | undefined;
18431
18431
  theme?: string | undefined;
18432
- counter?: string | number | true | undefined;
18432
+ counter?: string | number | boolean | undefined;
18433
18433
  rounded?: string | number | boolean | undefined;
18434
18434
  bgColor?: string | undefined;
18435
18435
  prependIcon?: IconValue | undefined;
@@ -18602,7 +18602,7 @@ declare const VCombobox: {
18602
18602
  valueComparator: typeof deepEqual;
18603
18603
  clearIcon: IconValue;
18604
18604
  focused: boolean;
18605
- errorMessages: string | readonly string[];
18605
+ errorMessages: string | readonly string[] | null;
18606
18606
  maxErrors: string | number;
18607
18607
  rules: readonly ValidationRule$1[];
18608
18608
  centerAffix: boolean;
@@ -18731,7 +18731,7 @@ declare const VCombobox: {
18731
18731
  valueComparator: typeof deepEqual;
18732
18732
  clearIcon: IconValue;
18733
18733
  focused: boolean;
18734
- errorMessages: string | readonly string[];
18734
+ errorMessages: string | readonly string[] | null;
18735
18735
  maxErrors: string | number;
18736
18736
  rules: readonly ValidationRule$1[];
18737
18737
  persistentHint: boolean;
@@ -18766,7 +18766,7 @@ declare const VCombobox: {
18766
18766
  delimiters?: readonly string[] | undefined;
18767
18767
  placeholder?: string | undefined;
18768
18768
  theme?: string | undefined;
18769
- counter?: string | number | true | undefined;
18769
+ counter?: string | number | boolean | undefined;
18770
18770
  rounded?: string | number | boolean | undefined;
18771
18771
  bgColor?: string | undefined;
18772
18772
  prependIcon?: IconValue | undefined;
@@ -18937,7 +18937,7 @@ declare const VCombobox: {
18937
18937
  valueComparator: typeof deepEqual;
18938
18938
  clearIcon: IconValue;
18939
18939
  focused: boolean;
18940
- errorMessages: string | readonly string[];
18940
+ errorMessages: string | readonly string[] | null;
18941
18941
  maxErrors: string | number;
18942
18942
  rules: readonly ValidationRule$1[];
18943
18943
  persistentHint: boolean;
@@ -18972,7 +18972,7 @@ declare const VCombobox: {
18972
18972
  delimiters?: readonly string[] | undefined;
18973
18973
  placeholder?: string | undefined;
18974
18974
  theme?: string | undefined;
18975
- counter?: string | number | true | undefined;
18975
+ counter?: string | number | boolean | undefined;
18976
18976
  rounded?: string | number | boolean | undefined;
18977
18977
  bgColor?: string | undefined;
18978
18978
  prependIcon?: IconValue | undefined;
@@ -19145,7 +19145,7 @@ declare const VCombobox: {
19145
19145
  valueComparator: typeof deepEqual;
19146
19146
  clearIcon: IconValue;
19147
19147
  focused: boolean;
19148
- errorMessages: string | readonly string[];
19148
+ errorMessages: string | readonly string[] | null;
19149
19149
  maxErrors: string | number;
19150
19150
  rules: readonly ValidationRule$1[];
19151
19151
  centerAffix: boolean;
@@ -19332,7 +19332,7 @@ declare const VCombobox: {
19332
19332
  class: PropType<any>;
19333
19333
  placeholder: StringConstructor;
19334
19334
  theme: StringConstructor;
19335
- counter: PropType<string | number | true>;
19335
+ counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
19336
19336
  messages: {
19337
19337
  type: PropType<string | readonly string[]>;
19338
19338
  default: () => never[];
@@ -19372,7 +19372,7 @@ declare const VCombobox: {
19372
19372
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
19373
19373
  validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
19374
19374
  errorMessages: {
19375
- type: PropType<string | readonly string[]>;
19375
+ type: PropType<string | readonly string[] | null>;
19376
19376
  default: () => never[];
19377
19377
  };
19378
19378
  maxErrors: {
@@ -19643,7 +19643,7 @@ declare const VCombobox: {
19643
19643
  class: PropType<any>;
19644
19644
  placeholder: StringConstructor;
19645
19645
  theme: StringConstructor;
19646
- counter: PropType<string | number | true>;
19646
+ counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
19647
19647
  messages: {
19648
19648
  type: PropType<string | readonly string[]>;
19649
19649
  default: () => never[];
@@ -19683,7 +19683,7 @@ declare const VCombobox: {
19683
19683
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
19684
19684
  validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
19685
19685
  errorMessages: {
19686
- type: PropType<string | readonly string[]>;
19686
+ type: PropType<string | readonly string[] | null>;
19687
19687
  default: () => never[];
19688
19688
  };
19689
19689
  maxErrors: {
@@ -23666,7 +23666,7 @@ declare const VFileInput: {
23666
23666
  prependIcon?: NonNullable<IconValue> | undefined;
23667
23667
  clearIcon?: IconValue | undefined;
23668
23668
  focused?: boolean | undefined;
23669
- errorMessages?: string | readonly string[] | undefined;
23669
+ errorMessages?: string | readonly string[] | null | undefined;
23670
23670
  maxErrors?: string | number | undefined;
23671
23671
  rules?: readonly ValidationRule$1[] | undefined;
23672
23672
  centerAffix?: boolean | undefined;
@@ -23881,7 +23881,7 @@ declare const VFileInput: {
23881
23881
  prependIcon: NonNullable<IconValue>;
23882
23882
  clearIcon: IconValue;
23883
23883
  focused: boolean;
23884
- errorMessages: string | readonly string[];
23884
+ errorMessages: string | readonly string[] | null;
23885
23885
  maxErrors: string | number;
23886
23886
  rules: readonly ValidationRule$1[];
23887
23887
  persistentHint: boolean;
@@ -23998,7 +23998,7 @@ declare const VFileInput: {
23998
23998
  messages?: string | readonly string[] | undefined;
23999
23999
  density?: Density | undefined;
24000
24000
  focused?: boolean | undefined;
24001
- errorMessages?: string | readonly string[] | undefined;
24001
+ errorMessages?: string | readonly string[] | null | undefined;
24002
24002
  maxErrors?: string | number | undefined;
24003
24003
  rules?: readonly ValidationRule$1[] | undefined;
24004
24004
  centerAffix?: boolean | undefined;
@@ -24116,7 +24116,7 @@ declare const VFileInput: {
24116
24116
  messages: string | readonly string[];
24117
24117
  density: Density;
24118
24118
  focused: boolean;
24119
- errorMessages: string | readonly string[];
24119
+ errorMessages: string | readonly string[] | null;
24120
24120
  maxErrors: string | number;
24121
24121
  rules: readonly ValidationRule$1[];
24122
24122
  centerAffix: boolean;
@@ -24174,7 +24174,7 @@ declare const VFileInput: {
24174
24174
  messages: string | readonly string[];
24175
24175
  density: Density;
24176
24176
  focused: boolean;
24177
- errorMessages: string | readonly string[];
24177
+ errorMessages: string | readonly string[] | null;
24178
24178
  maxErrors: string | number;
24179
24179
  rules: readonly ValidationRule$1[];
24180
24180
  centerAffix: boolean;
@@ -24224,7 +24224,7 @@ declare const VFileInput: {
24224
24224
  messages: string | readonly string[];
24225
24225
  density: Density;
24226
24226
  focused: boolean;
24227
- errorMessages: string | readonly string[];
24227
+ errorMessages: string | readonly string[] | null;
24228
24228
  maxErrors: string | number;
24229
24229
  rules: readonly ValidationRule$1[];
24230
24230
  centerAffix: boolean;
@@ -24295,7 +24295,7 @@ declare const VFileInput: {
24295
24295
  prependIcon: NonNullable<IconValue>;
24296
24296
  clearIcon: IconValue;
24297
24297
  focused: boolean;
24298
- errorMessages: string | readonly string[];
24298
+ errorMessages: string | readonly string[] | null;
24299
24299
  maxErrors: string | number;
24300
24300
  rules: readonly ValidationRule$1[];
24301
24301
  centerAffix: boolean;
@@ -24390,7 +24390,7 @@ declare const VFileInput: {
24390
24390
  prependIcon: NonNullable<IconValue>;
24391
24391
  clearIcon: IconValue;
24392
24392
  focused: boolean;
24393
- errorMessages: string | readonly string[];
24393
+ errorMessages: string | readonly string[] | null;
24394
24394
  maxErrors: string | number;
24395
24395
  rules: readonly ValidationRule$1[];
24396
24396
  persistentHint: boolean;
@@ -24507,7 +24507,7 @@ declare const VFileInput: {
24507
24507
  messages?: string | readonly string[] | undefined;
24508
24508
  density?: Density | undefined;
24509
24509
  focused?: boolean | undefined;
24510
- errorMessages?: string | readonly string[] | undefined;
24510
+ errorMessages?: string | readonly string[] | null | undefined;
24511
24511
  maxErrors?: string | number | undefined;
24512
24512
  rules?: readonly ValidationRule$1[] | undefined;
24513
24513
  centerAffix?: boolean | undefined;
@@ -24625,7 +24625,7 @@ declare const VFileInput: {
24625
24625
  messages: string | readonly string[];
24626
24626
  density: Density;
24627
24627
  focused: boolean;
24628
- errorMessages: string | readonly string[];
24628
+ errorMessages: string | readonly string[] | null;
24629
24629
  maxErrors: string | number;
24630
24630
  rules: readonly ValidationRule$1[];
24631
24631
  centerAffix: boolean;
@@ -24683,7 +24683,7 @@ declare const VFileInput: {
24683
24683
  messages: string | readonly string[];
24684
24684
  density: Density;
24685
24685
  focused: boolean;
24686
- errorMessages: string | readonly string[];
24686
+ errorMessages: string | readonly string[] | null;
24687
24687
  maxErrors: string | number;
24688
24688
  rules: readonly ValidationRule$1[];
24689
24689
  centerAffix: boolean;
@@ -24733,7 +24733,7 @@ declare const VFileInput: {
24733
24733
  messages: string | readonly string[];
24734
24734
  density: Density;
24735
24735
  focused: boolean;
24736
- errorMessages: string | readonly string[];
24736
+ errorMessages: string | readonly string[] | null;
24737
24737
  maxErrors: string | number;
24738
24738
  rules: readonly ValidationRule$1[];
24739
24739
  centerAffix: boolean;
@@ -24802,7 +24802,7 @@ declare const VFileInput: {
24802
24802
  prependIcon: NonNullable<IconValue>;
24803
24803
  clearIcon: IconValue;
24804
24804
  focused: boolean;
24805
- errorMessages: string | readonly string[];
24805
+ errorMessages: string | readonly string[] | null;
24806
24806
  maxErrors: string | number;
24807
24807
  rules: readonly ValidationRule$1[];
24808
24808
  persistentHint: boolean;
@@ -24919,7 +24919,7 @@ declare const VFileInput: {
24919
24919
  messages?: string | readonly string[] | undefined;
24920
24920
  density?: Density | undefined;
24921
24921
  focused?: boolean | undefined;
24922
- errorMessages?: string | readonly string[] | undefined;
24922
+ errorMessages?: string | readonly string[] | null | undefined;
24923
24923
  maxErrors?: string | number | undefined;
24924
24924
  rules?: readonly ValidationRule$1[] | undefined;
24925
24925
  centerAffix?: boolean | undefined;
@@ -25037,7 +25037,7 @@ declare const VFileInput: {
25037
25037
  messages: string | readonly string[];
25038
25038
  density: Density;
25039
25039
  focused: boolean;
25040
- errorMessages: string | readonly string[];
25040
+ errorMessages: string | readonly string[] | null;
25041
25041
  maxErrors: string | number;
25042
25042
  rules: readonly ValidationRule$1[];
25043
25043
  centerAffix: boolean;
@@ -25095,7 +25095,7 @@ declare const VFileInput: {
25095
25095
  messages: string | readonly string[];
25096
25096
  density: Density;
25097
25097
  focused: boolean;
25098
- errorMessages: string | readonly string[];
25098
+ errorMessages: string | readonly string[] | null;
25099
25099
  maxErrors: string | number;
25100
25100
  rules: readonly ValidationRule$1[];
25101
25101
  centerAffix: boolean;
@@ -25145,7 +25145,7 @@ declare const VFileInput: {
25145
25145
  messages: string | readonly string[];
25146
25146
  density: Density;
25147
25147
  focused: boolean;
25148
- errorMessages: string | readonly string[];
25148
+ errorMessages: string | readonly string[] | null;
25149
25149
  maxErrors: string | number;
25150
25150
  rules: readonly ValidationRule$1[];
25151
25151
  centerAffix: boolean;
@@ -25216,7 +25216,7 @@ declare const VFileInput: {
25216
25216
  prependIcon: NonNullable<IconValue>;
25217
25217
  clearIcon: IconValue;
25218
25218
  focused: boolean;
25219
- errorMessages: string | readonly string[];
25219
+ errorMessages: string | readonly string[] | null;
25220
25220
  maxErrors: string | number;
25221
25221
  rules: readonly ValidationRule$1[];
25222
25222
  centerAffix: boolean;
@@ -25330,7 +25330,7 @@ declare const VFileInput: {
25330
25330
  focused: BooleanConstructor;
25331
25331
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
25332
25332
  errorMessages: {
25333
- type: PropType<string | readonly string[]>;
25333
+ type: PropType<string | readonly string[] | null>;
25334
25334
  default: () => never[];
25335
25335
  };
25336
25336
  maxErrors: {
@@ -25446,7 +25446,7 @@ declare const VFileInput: {
25446
25446
  focused: BooleanConstructor;
25447
25447
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
25448
25448
  errorMessages: {
25449
- type: PropType<string | readonly string[]>;
25449
+ type: PropType<string | readonly string[] | null>;
25450
25450
  default: () => never[];
25451
25451
  };
25452
25452
  maxErrors: {
@@ -38346,7 +38346,7 @@ declare const VRadioGroup: {
38346
38346
  trueIcon?: IconValue | undefined;
38347
38347
  valueComparator?: typeof deepEqual | undefined;
38348
38348
  focused?: boolean | undefined;
38349
- errorMessages?: string | readonly string[] | undefined;
38349
+ errorMessages?: string | readonly string[] | null | undefined;
38350
38350
  maxErrors?: string | number | undefined;
38351
38351
  rules?: readonly ValidationRule$1[] | undefined;
38352
38352
  centerAffix?: boolean | undefined;
@@ -38492,7 +38492,7 @@ declare const VRadioGroup: {
38492
38492
  trueIcon: IconValue;
38493
38493
  valueComparator: typeof deepEqual;
38494
38494
  focused: boolean;
38495
- errorMessages: string | readonly string[];
38495
+ errorMessages: string | readonly string[] | null;
38496
38496
  maxErrors: string | number;
38497
38497
  rules: readonly ValidationRule$1[];
38498
38498
  centerAffix: boolean;
@@ -38568,7 +38568,7 @@ declare const VRadioGroup: {
38568
38568
  trueIcon: IconValue;
38569
38569
  valueComparator: typeof deepEqual;
38570
38570
  focused: boolean;
38571
- errorMessages: string | readonly string[];
38571
+ errorMessages: string | readonly string[] | null;
38572
38572
  maxErrors: string | number;
38573
38573
  rules: readonly ValidationRule$1[];
38574
38574
  centerAffix: boolean;
@@ -38631,7 +38631,7 @@ declare const VRadioGroup: {
38631
38631
  trueIcon: IconValue;
38632
38632
  valueComparator: typeof deepEqual;
38633
38633
  focused: boolean;
38634
- errorMessages: string | readonly string[];
38634
+ errorMessages: string | readonly string[] | null;
38635
38635
  maxErrors: string | number;
38636
38636
  rules: readonly ValidationRule$1[];
38637
38637
  centerAffix: boolean;
@@ -38709,7 +38709,7 @@ declare const VRadioGroup: {
38709
38709
  trueIcon: IconValue;
38710
38710
  valueComparator: typeof deepEqual;
38711
38711
  focused: boolean;
38712
- errorMessages: string | readonly string[];
38712
+ errorMessages: string | readonly string[] | null;
38713
38713
  maxErrors: string | number;
38714
38714
  rules: readonly ValidationRule$1[];
38715
38715
  centerAffix: boolean;
@@ -38785,7 +38785,7 @@ declare const VRadioGroup: {
38785
38785
  trueIcon: IconValue;
38786
38786
  valueComparator: typeof deepEqual;
38787
38787
  focused: boolean;
38788
- errorMessages: string | readonly string[];
38788
+ errorMessages: string | readonly string[] | null;
38789
38789
  maxErrors: string | number;
38790
38790
  rules: readonly ValidationRule$1[];
38791
38791
  centerAffix: boolean;
@@ -38859,7 +38859,7 @@ declare const VRadioGroup: {
38859
38859
  focused: BooleanConstructor;
38860
38860
  'onUpdate:focused': vue.PropType<EventProp<[boolean], (args_0: boolean) => any>>;
38861
38861
  errorMessages: {
38862
- type: vue.PropType<string | readonly string[]>;
38862
+ type: vue.PropType<string | readonly string[] | null>;
38863
38863
  default: () => never[];
38864
38864
  };
38865
38865
  maxErrors: {
@@ -38944,7 +38944,7 @@ declare const VRadioGroup: {
38944
38944
  focused: BooleanConstructor;
38945
38945
  'onUpdate:focused': vue.PropType<EventProp<[boolean], (args_0: boolean) => any>>;
38946
38946
  errorMessages: {
38947
- type: vue.PropType<string | readonly string[]>;
38947
+ type: vue.PropType<string | readonly string[] | null>;
38948
38948
  default: () => never[];
38949
38949
  };
38950
38950
  maxErrors: {
@@ -39012,7 +39012,7 @@ declare const VRangeSlider: {
39012
39012
  density?: Density | undefined;
39013
39013
  modelValue?: readonly (string | number)[] | undefined;
39014
39014
  focused?: boolean | undefined;
39015
- errorMessages?: string | readonly string[] | undefined;
39015
+ errorMessages?: string | readonly string[] | null | undefined;
39016
39016
  maxErrors?: string | number | undefined;
39017
39017
  rules?: readonly ValidationRule$1[] | undefined;
39018
39018
  centerAffix?: boolean | undefined;
@@ -39186,7 +39186,7 @@ declare const VRangeSlider: {
39186
39186
  density: Density;
39187
39187
  modelValue: readonly (string | number)[];
39188
39188
  focused: boolean;
39189
- errorMessages: string | readonly string[];
39189
+ errorMessages: string | readonly string[] | null;
39190
39190
  maxErrors: string | number;
39191
39191
  rules: readonly ValidationRule$1[];
39192
39192
  centerAffix: boolean;
@@ -39288,7 +39288,7 @@ declare const VRangeSlider: {
39288
39288
  density: Density;
39289
39289
  modelValue: readonly (string | number)[];
39290
39290
  focused: boolean;
39291
- errorMessages: string | readonly string[];
39291
+ errorMessages: string | readonly string[] | null;
39292
39292
  maxErrors: string | number;
39293
39293
  rules: readonly ValidationRule$1[];
39294
39294
  centerAffix: boolean;
@@ -39364,7 +39364,7 @@ declare const VRangeSlider: {
39364
39364
  density: Density;
39365
39365
  modelValue: readonly (string | number)[];
39366
39366
  focused: boolean;
39367
- errorMessages: string | readonly string[];
39367
+ errorMessages: string | readonly string[] | null;
39368
39368
  maxErrors: string | number;
39369
39369
  rules: readonly ValidationRule$1[];
39370
39370
  centerAffix: boolean;
@@ -39464,7 +39464,7 @@ declare const VRangeSlider: {
39464
39464
  density: Density;
39465
39465
  modelValue: readonly (string | number)[];
39466
39466
  focused: boolean;
39467
- errorMessages: string | readonly string[];
39467
+ errorMessages: string | readonly string[] | null;
39468
39468
  maxErrors: string | number;
39469
39469
  rules: readonly ValidationRule$1[];
39470
39470
  centerAffix: boolean;
@@ -39566,7 +39566,7 @@ declare const VRangeSlider: {
39566
39566
  density: Density;
39567
39567
  modelValue: readonly (string | number)[];
39568
39568
  focused: boolean;
39569
- errorMessages: string | readonly string[];
39569
+ errorMessages: string | readonly string[] | null;
39570
39570
  maxErrors: string | number;
39571
39571
  rules: readonly ValidationRule$1[];
39572
39572
  centerAffix: boolean;
@@ -39682,7 +39682,7 @@ declare const VRangeSlider: {
39682
39682
  focused: BooleanConstructor;
39683
39683
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
39684
39684
  errorMessages: {
39685
- type: PropType<string | readonly string[]>;
39685
+ type: PropType<string | readonly string[] | null>;
39686
39686
  default: () => never[];
39687
39687
  };
39688
39688
  maxErrors: {
@@ -39799,7 +39799,7 @@ declare const VRangeSlider: {
39799
39799
  focused: BooleanConstructor;
39800
39800
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
39801
39801
  errorMessages: {
39802
- type: PropType<string | readonly string[]>;
39802
+ type: PropType<string | readonly string[] | null>;
39803
39803
  default: () => never[];
39804
39804
  };
39805
39805
  maxErrors: {
@@ -40533,7 +40533,7 @@ declare const VSelect: {
40533
40533
  valueComparator?: typeof deepEqual | undefined;
40534
40534
  clearIcon?: IconValue | undefined;
40535
40535
  focused?: boolean | undefined;
40536
- errorMessages?: string | readonly string[] | undefined;
40536
+ errorMessages?: string | readonly string[] | null | undefined;
40537
40537
  maxErrors?: string | number | undefined;
40538
40538
  rules?: readonly ValidationRule$1[] | undefined;
40539
40539
  centerAffix?: boolean | undefined;
@@ -40568,7 +40568,7 @@ declare const VSelect: {
40568
40568
  ref_for?: boolean | undefined;
40569
40569
  ref_key?: string | undefined;
40570
40570
  theme?: string | undefined;
40571
- counter?: string | number | true | undefined;
40571
+ counter?: string | number | boolean | undefined;
40572
40572
  onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
40573
40573
  [key: string]: any;
40574
40574
  }>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -40839,7 +40839,7 @@ declare const VSelect: {
40839
40839
  valueComparator: typeof deepEqual;
40840
40840
  clearIcon: IconValue;
40841
40841
  focused: boolean;
40842
- errorMessages: string | readonly string[];
40842
+ errorMessages: string | readonly string[] | null;
40843
40843
  maxErrors: string | number;
40844
40844
  rules: readonly ValidationRule$1[];
40845
40845
  persistentHint: boolean;
@@ -40870,7 +40870,7 @@ declare const VSelect: {
40870
40870
  class?: any;
40871
40871
  placeholder?: string | undefined;
40872
40872
  theme?: string | undefined;
40873
- counter?: string | number | true | undefined;
40873
+ counter?: string | number | boolean | undefined;
40874
40874
  rounded?: string | number | boolean | undefined;
40875
40875
  bgColor?: string | undefined;
40876
40876
  prependIcon?: IconValue | undefined;
@@ -41040,7 +41040,7 @@ declare const VSelect: {
41040
41040
  valueComparator: typeof deepEqual;
41041
41041
  clearIcon: IconValue;
41042
41042
  focused: boolean;
41043
- errorMessages: string | readonly string[];
41043
+ errorMessages: string | readonly string[] | null;
41044
41044
  maxErrors: string | number;
41045
41045
  rules: readonly ValidationRule$1[];
41046
41046
  centerAffix: boolean;
@@ -41168,7 +41168,7 @@ declare const VSelect: {
41168
41168
  valueComparator: typeof deepEqual;
41169
41169
  clearIcon: IconValue;
41170
41170
  focused: boolean;
41171
- errorMessages: string | readonly string[];
41171
+ errorMessages: string | readonly string[] | null;
41172
41172
  maxErrors: string | number;
41173
41173
  rules: readonly ValidationRule$1[];
41174
41174
  persistentHint: boolean;
@@ -41199,7 +41199,7 @@ declare const VSelect: {
41199
41199
  class?: any;
41200
41200
  placeholder?: string | undefined;
41201
41201
  theme?: string | undefined;
41202
- counter?: string | number | true | undefined;
41202
+ counter?: string | number | boolean | undefined;
41203
41203
  rounded?: string | number | boolean | undefined;
41204
41204
  bgColor?: string | undefined;
41205
41205
  prependIcon?: IconValue | undefined;
@@ -41368,7 +41368,7 @@ declare const VSelect: {
41368
41368
  valueComparator: typeof deepEqual;
41369
41369
  clearIcon: IconValue;
41370
41370
  focused: boolean;
41371
- errorMessages: string | readonly string[];
41371
+ errorMessages: string | readonly string[] | null;
41372
41372
  maxErrors: string | number;
41373
41373
  rules: readonly ValidationRule$1[];
41374
41374
  persistentHint: boolean;
@@ -41399,7 +41399,7 @@ declare const VSelect: {
41399
41399
  class?: any;
41400
41400
  placeholder?: string | undefined;
41401
41401
  theme?: string | undefined;
41402
- counter?: string | number | true | undefined;
41402
+ counter?: string | number | boolean | undefined;
41403
41403
  rounded?: string | number | boolean | undefined;
41404
41404
  bgColor?: string | undefined;
41405
41405
  prependIcon?: IconValue | undefined;
@@ -41569,7 +41569,7 @@ declare const VSelect: {
41569
41569
  valueComparator: typeof deepEqual;
41570
41570
  clearIcon: IconValue;
41571
41571
  focused: boolean;
41572
- errorMessages: string | readonly string[];
41572
+ errorMessages: string | readonly string[] | null;
41573
41573
  maxErrors: string | number;
41574
41574
  rules: readonly ValidationRule$1[];
41575
41575
  centerAffix: boolean;
@@ -41757,7 +41757,7 @@ declare const VSelect: {
41757
41757
  class: PropType<any>;
41758
41758
  placeholder: StringConstructor;
41759
41759
  theme: StringConstructor;
41760
- counter: PropType<string | number | true>;
41760
+ counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
41761
41761
  messages: {
41762
41762
  type: PropType<string | readonly string[]>;
41763
41763
  default: () => never[];
@@ -41797,7 +41797,7 @@ declare const VSelect: {
41797
41797
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
41798
41798
  validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
41799
41799
  errorMessages: {
41800
- type: PropType<string | readonly string[]>;
41800
+ type: PropType<string | readonly string[] | null>;
41801
41801
  default: () => never[];
41802
41802
  };
41803
41803
  maxErrors: {
@@ -42051,7 +42051,7 @@ declare const VSelect: {
42051
42051
  class: PropType<any>;
42052
42052
  placeholder: StringConstructor;
42053
42053
  theme: StringConstructor;
42054
- counter: PropType<string | number | true>;
42054
+ counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
42055
42055
  messages: {
42056
42056
  type: PropType<string | readonly string[]>;
42057
42057
  default: () => never[];
@@ -42091,7 +42091,7 @@ declare const VSelect: {
42091
42091
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
42092
42092
  validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
42093
42093
  errorMessages: {
42094
- type: PropType<string | readonly string[]>;
42094
+ type: PropType<string | readonly string[] | null>;
42095
42095
  default: () => never[];
42096
42096
  };
42097
42097
  maxErrors: {
@@ -43256,7 +43256,7 @@ declare const VSlider: {
43256
43256
  density?: Density | undefined;
43257
43257
  modelValue?: string | number | undefined;
43258
43258
  focused?: boolean | undefined;
43259
- errorMessages?: string | readonly string[] | undefined;
43259
+ errorMessages?: string | readonly string[] | null | undefined;
43260
43260
  maxErrors?: string | number | undefined;
43261
43261
  rules?: readonly ValidationRule$1[] | undefined;
43262
43262
  centerAffix?: boolean | undefined;
@@ -43429,7 +43429,7 @@ declare const VSlider: {
43429
43429
  density: Density;
43430
43430
  modelValue: string | number;
43431
43431
  focused: boolean;
43432
- errorMessages: string | readonly string[];
43432
+ errorMessages: string | readonly string[] | null;
43433
43433
  maxErrors: string | number;
43434
43434
  rules: readonly ValidationRule$1[];
43435
43435
  centerAffix: boolean;
@@ -43530,7 +43530,7 @@ declare const VSlider: {
43530
43530
  density: Density;
43531
43531
  modelValue: string | number;
43532
43532
  focused: boolean;
43533
- errorMessages: string | readonly string[];
43533
+ errorMessages: string | readonly string[] | null;
43534
43534
  maxErrors: string | number;
43535
43535
  rules: readonly ValidationRule$1[];
43536
43536
  centerAffix: boolean;
@@ -43605,7 +43605,7 @@ declare const VSlider: {
43605
43605
  density: Density;
43606
43606
  modelValue: string | number;
43607
43607
  focused: boolean;
43608
- errorMessages: string | readonly string[];
43608
+ errorMessages: string | readonly string[] | null;
43609
43609
  maxErrors: string | number;
43610
43610
  rules: readonly ValidationRule$1[];
43611
43611
  centerAffix: boolean;
@@ -43704,7 +43704,7 @@ declare const VSlider: {
43704
43704
  density: Density;
43705
43705
  modelValue: string | number;
43706
43706
  focused: boolean;
43707
- errorMessages: string | readonly string[];
43707
+ errorMessages: string | readonly string[] | null;
43708
43708
  maxErrors: string | number;
43709
43709
  rules: readonly ValidationRule$1[];
43710
43710
  centerAffix: boolean;
@@ -43805,7 +43805,7 @@ declare const VSlider: {
43805
43805
  density: Density;
43806
43806
  modelValue: string | number;
43807
43807
  focused: boolean;
43808
- errorMessages: string | readonly string[];
43808
+ errorMessages: string | readonly string[] | null;
43809
43809
  maxErrors: string | number;
43810
43810
  rules: readonly ValidationRule$1[];
43811
43811
  centerAffix: boolean;
@@ -43858,7 +43858,7 @@ declare const VSlider: {
43858
43858
  };
43859
43859
  error: BooleanConstructor;
43860
43860
  errorMessages: {
43861
- type: vue.PropType<string | readonly string[]>;
43861
+ type: vue.PropType<string | readonly string[] | null>;
43862
43862
  default: () => never[];
43863
43863
  };
43864
43864
  maxErrors: {
@@ -43974,7 +43974,7 @@ declare const VSlider: {
43974
43974
  };
43975
43975
  error: BooleanConstructor;
43976
43976
  errorMessages: {
43977
- type: vue.PropType<string | readonly string[]>;
43977
+ type: vue.PropType<string | readonly string[] | null>;
43978
43978
  default: () => never[];
43979
43979
  };
43980
43980
  maxErrors: {
@@ -45865,7 +45865,7 @@ declare const VSwitch: {
45865
45865
  ripple?: boolean | undefined;
45866
45866
  valueComparator?: typeof deepEqual | undefined;
45867
45867
  focused?: boolean | undefined;
45868
- errorMessages?: string | readonly string[] | undefined;
45868
+ errorMessages?: string | readonly string[] | null | undefined;
45869
45869
  maxErrors?: string | number | undefined;
45870
45870
  rules?: readonly ValidationRule$1[] | undefined;
45871
45871
  centerAffix?: boolean | undefined;
@@ -46046,7 +46046,7 @@ declare const VSwitch: {
46046
46046
  ripple: boolean;
46047
46047
  valueComparator: typeof deepEqual;
46048
46048
  focused: boolean;
46049
- errorMessages: string | readonly string[];
46049
+ errorMessages: string | readonly string[] | null;
46050
46050
  maxErrors: string | number;
46051
46051
  rules: readonly ValidationRule$1[];
46052
46052
  centerAffix: boolean;
@@ -46151,7 +46151,7 @@ declare const VSwitch: {
46151
46151
  ripple: boolean;
46152
46152
  valueComparator: typeof deepEqual;
46153
46153
  focused: boolean;
46154
- errorMessages: string | readonly string[];
46154
+ errorMessages: string | readonly string[] | null;
46155
46155
  maxErrors: string | number;
46156
46156
  rules: readonly ValidationRule$1[];
46157
46157
  centerAffix: boolean;
@@ -46224,7 +46224,7 @@ declare const VSwitch: {
46224
46224
  ripple: boolean;
46225
46225
  valueComparator: typeof deepEqual;
46226
46226
  focused: boolean;
46227
- errorMessages: string | readonly string[];
46227
+ errorMessages: string | readonly string[] | null;
46228
46228
  maxErrors: string | number;
46229
46229
  rules: readonly ValidationRule$1[];
46230
46230
  centerAffix: boolean;
@@ -46329,7 +46329,7 @@ declare const VSwitch: {
46329
46329
  ripple: boolean;
46330
46330
  valueComparator: typeof deepEqual;
46331
46331
  focused: boolean;
46332
- errorMessages: string | readonly string[];
46332
+ errorMessages: string | readonly string[] | null;
46333
46333
  maxErrors: string | number;
46334
46334
  rules: readonly ValidationRule$1[];
46335
46335
  centerAffix: boolean;
@@ -46434,7 +46434,7 @@ declare const VSwitch: {
46434
46434
  ripple: boolean;
46435
46435
  valueComparator: typeof deepEqual;
46436
46436
  focused: boolean;
46437
- errorMessages: string | readonly string[];
46437
+ errorMessages: string | readonly string[] | null;
46438
46438
  maxErrors: string | number;
46439
46439
  rules: readonly ValidationRule$1[];
46440
46440
  centerAffix: boolean;
@@ -46516,7 +46516,7 @@ declare const VSwitch: {
46516
46516
  focused: BooleanConstructor;
46517
46517
  'onUpdate:focused': vue.PropType<EventProp<[boolean], (args_0: boolean) => any>>;
46518
46518
  errorMessages: {
46519
- type: vue.PropType<string | readonly string[]>;
46519
+ type: vue.PropType<string | readonly string[] | null>;
46520
46520
  default: () => never[];
46521
46521
  };
46522
46522
  maxErrors: {
@@ -46602,7 +46602,7 @@ declare const VSwitch: {
46602
46602
  focused: BooleanConstructor;
46603
46603
  'onUpdate:focused': vue.PropType<EventProp<[boolean], (args_0: boolean) => any>>;
46604
46604
  errorMessages: {
46605
- type: vue.PropType<string | readonly string[]>;
46605
+ type: vue.PropType<string | readonly string[] | null>;
46606
46606
  default: () => never[];
46607
46607
  };
46608
46608
  maxErrors: {
@@ -48132,7 +48132,7 @@ declare const VTextarea: {
48132
48132
  variant?: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled" | undefined;
48133
48133
  clearIcon?: IconValue | undefined;
48134
48134
  focused?: boolean | undefined;
48135
- errorMessages?: string | readonly string[] | undefined;
48135
+ errorMessages?: string | readonly string[] | null | undefined;
48136
48136
  maxErrors?: string | number | undefined;
48137
48137
  rules?: readonly ValidationRule$1[] | undefined;
48138
48138
  centerAffix?: boolean | undefined;
@@ -48326,7 +48326,7 @@ declare const VTextarea: {
48326
48326
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
48327
48327
  clearIcon: IconValue;
48328
48328
  focused: boolean;
48329
- errorMessages: string | readonly string[];
48329
+ errorMessages: string | readonly string[] | null;
48330
48330
  maxErrors: string | number;
48331
48331
  rules: readonly ValidationRule$1[];
48332
48332
  persistentHint: boolean;
@@ -48435,7 +48435,7 @@ declare const VTextarea: {
48435
48435
  messages?: string | readonly string[] | undefined;
48436
48436
  density?: Density | undefined;
48437
48437
  focused?: boolean | undefined;
48438
- errorMessages?: string | readonly string[] | undefined;
48438
+ errorMessages?: string | readonly string[] | null | undefined;
48439
48439
  maxErrors?: string | number | undefined;
48440
48440
  rules?: readonly ValidationRule$1[] | undefined;
48441
48441
  centerAffix?: boolean | undefined;
@@ -48553,7 +48553,7 @@ declare const VTextarea: {
48553
48553
  messages: string | readonly string[];
48554
48554
  density: Density;
48555
48555
  focused: boolean;
48556
- errorMessages: string | readonly string[];
48556
+ errorMessages: string | readonly string[] | null;
48557
48557
  maxErrors: string | number;
48558
48558
  rules: readonly ValidationRule$1[];
48559
48559
  centerAffix: boolean;
@@ -48611,7 +48611,7 @@ declare const VTextarea: {
48611
48611
  messages: string | readonly string[];
48612
48612
  density: Density;
48613
48613
  focused: boolean;
48614
- errorMessages: string | readonly string[];
48614
+ errorMessages: string | readonly string[] | null;
48615
48615
  maxErrors: string | number;
48616
48616
  rules: readonly ValidationRule$1[];
48617
48617
  centerAffix: boolean;
@@ -48661,7 +48661,7 @@ declare const VTextarea: {
48661
48661
  messages: string | readonly string[];
48662
48662
  density: Density;
48663
48663
  focused: boolean;
48664
- errorMessages: string | readonly string[];
48664
+ errorMessages: string | readonly string[] | null;
48665
48665
  maxErrors: string | number;
48666
48666
  rules: readonly ValidationRule$1[];
48667
48667
  centerAffix: boolean;
@@ -48729,7 +48729,7 @@ declare const VTextarea: {
48729
48729
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
48730
48730
  clearIcon: IconValue;
48731
48731
  focused: boolean;
48732
- errorMessages: string | readonly string[];
48732
+ errorMessages: string | readonly string[] | null;
48733
48733
  maxErrors: string | number;
48734
48734
  rules: readonly ValidationRule$1[];
48735
48735
  centerAffix: boolean;
@@ -48812,7 +48812,7 @@ declare const VTextarea: {
48812
48812
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
48813
48813
  clearIcon: IconValue;
48814
48814
  focused: boolean;
48815
- errorMessages: string | readonly string[];
48815
+ errorMessages: string | readonly string[] | null;
48816
48816
  maxErrors: string | number;
48817
48817
  rules: readonly ValidationRule$1[];
48818
48818
  persistentHint: boolean;
@@ -48921,7 +48921,7 @@ declare const VTextarea: {
48921
48921
  messages?: string | readonly string[] | undefined;
48922
48922
  density?: Density | undefined;
48923
48923
  focused?: boolean | undefined;
48924
- errorMessages?: string | readonly string[] | undefined;
48924
+ errorMessages?: string | readonly string[] | null | undefined;
48925
48925
  maxErrors?: string | number | undefined;
48926
48926
  rules?: readonly ValidationRule$1[] | undefined;
48927
48927
  centerAffix?: boolean | undefined;
@@ -49039,7 +49039,7 @@ declare const VTextarea: {
49039
49039
  messages: string | readonly string[];
49040
49040
  density: Density;
49041
49041
  focused: boolean;
49042
- errorMessages: string | readonly string[];
49042
+ errorMessages: string | readonly string[] | null;
49043
49043
  maxErrors: string | number;
49044
49044
  rules: readonly ValidationRule$1[];
49045
49045
  centerAffix: boolean;
@@ -49097,7 +49097,7 @@ declare const VTextarea: {
49097
49097
  messages: string | readonly string[];
49098
49098
  density: Density;
49099
49099
  focused: boolean;
49100
- errorMessages: string | readonly string[];
49100
+ errorMessages: string | readonly string[] | null;
49101
49101
  maxErrors: string | number;
49102
49102
  rules: readonly ValidationRule$1[];
49103
49103
  centerAffix: boolean;
@@ -49147,7 +49147,7 @@ declare const VTextarea: {
49147
49147
  messages: string | readonly string[];
49148
49148
  density: Density;
49149
49149
  focused: boolean;
49150
- errorMessages: string | readonly string[];
49150
+ errorMessages: string | readonly string[] | null;
49151
49151
  maxErrors: string | number;
49152
49152
  rules: readonly ValidationRule$1[];
49153
49153
  centerAffix: boolean;
@@ -49213,7 +49213,7 @@ declare const VTextarea: {
49213
49213
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
49214
49214
  clearIcon: IconValue;
49215
49215
  focused: boolean;
49216
- errorMessages: string | readonly string[];
49216
+ errorMessages: string | readonly string[] | null;
49217
49217
  maxErrors: string | number;
49218
49218
  rules: readonly ValidationRule$1[];
49219
49219
  persistentHint: boolean;
@@ -49322,7 +49322,7 @@ declare const VTextarea: {
49322
49322
  messages?: string | readonly string[] | undefined;
49323
49323
  density?: Density | undefined;
49324
49324
  focused?: boolean | undefined;
49325
- errorMessages?: string | readonly string[] | undefined;
49325
+ errorMessages?: string | readonly string[] | null | undefined;
49326
49326
  maxErrors?: string | number | undefined;
49327
49327
  rules?: readonly ValidationRule$1[] | undefined;
49328
49328
  centerAffix?: boolean | undefined;
@@ -49440,7 +49440,7 @@ declare const VTextarea: {
49440
49440
  messages: string | readonly string[];
49441
49441
  density: Density;
49442
49442
  focused: boolean;
49443
- errorMessages: string | readonly string[];
49443
+ errorMessages: string | readonly string[] | null;
49444
49444
  maxErrors: string | number;
49445
49445
  rules: readonly ValidationRule$1[];
49446
49446
  centerAffix: boolean;
@@ -49498,7 +49498,7 @@ declare const VTextarea: {
49498
49498
  messages: string | readonly string[];
49499
49499
  density: Density;
49500
49500
  focused: boolean;
49501
- errorMessages: string | readonly string[];
49501
+ errorMessages: string | readonly string[] | null;
49502
49502
  maxErrors: string | number;
49503
49503
  rules: readonly ValidationRule$1[];
49504
49504
  centerAffix: boolean;
@@ -49548,7 +49548,7 @@ declare const VTextarea: {
49548
49548
  messages: string | readonly string[];
49549
49549
  density: Density;
49550
49550
  focused: boolean;
49551
- errorMessages: string | readonly string[];
49551
+ errorMessages: string | readonly string[] | null;
49552
49552
  maxErrors: string | number;
49553
49553
  rules: readonly ValidationRule$1[];
49554
49554
  centerAffix: boolean;
@@ -49616,7 +49616,7 @@ declare const VTextarea: {
49616
49616
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
49617
49617
  clearIcon: IconValue;
49618
49618
  focused: boolean;
49619
- errorMessages: string | readonly string[];
49619
+ errorMessages: string | readonly string[] | null;
49620
49620
  maxErrors: string | number;
49621
49621
  rules: readonly ValidationRule$1[];
49622
49622
  centerAffix: boolean;
@@ -49713,7 +49713,7 @@ declare const VTextarea: {
49713
49713
  focused: BooleanConstructor;
49714
49714
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
49715
49715
  errorMessages: {
49716
- type: PropType<string | readonly string[]>;
49716
+ type: PropType<string | readonly string[] | null>;
49717
49717
  default: () => never[];
49718
49718
  };
49719
49719
  maxErrors: {
@@ -49823,7 +49823,7 @@ declare const VTextarea: {
49823
49823
  focused: BooleanConstructor;
49824
49824
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
49825
49825
  errorMessages: {
49826
- type: PropType<string | readonly string[]>;
49826
+ type: PropType<string | readonly string[] | null>;
49827
49827
  default: () => never[];
49828
49828
  };
49829
49829
  maxErrors: {
@@ -49908,7 +49908,7 @@ declare const VTextField: {
49908
49908
  variant?: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled" | undefined;
49909
49909
  clearIcon?: IconValue | undefined;
49910
49910
  focused?: boolean | undefined;
49911
- errorMessages?: string | readonly string[] | undefined;
49911
+ errorMessages?: string | readonly string[] | null | undefined;
49912
49912
  maxErrors?: string | number | undefined;
49913
49913
  rules?: readonly ValidationRule$1[] | undefined;
49914
49914
  centerAffix?: boolean | undefined;
@@ -49950,7 +49950,7 @@ declare const VTextField: {
49950
49950
  ref_key?: string | undefined;
49951
49951
  theme?: string | undefined;
49952
49952
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
49953
- counter?: string | number | true | undefined;
49953
+ counter?: string | number | boolean | undefined;
49954
49954
  'v-slots'?: {
49955
49955
  message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
49956
49956
  clear?: false | (() => vue.VNodeChild) | undefined;
@@ -50106,7 +50106,7 @@ declare const VTextField: {
50106
50106
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
50107
50107
  clearIcon: IconValue;
50108
50108
  focused: boolean;
50109
- errorMessages: string | readonly string[];
50109
+ errorMessages: string | readonly string[] | null;
50110
50110
  maxErrors: string | number;
50111
50111
  rules: readonly ValidationRule$1[];
50112
50112
  persistentHint: boolean;
@@ -50127,7 +50127,7 @@ declare const VTextField: {
50127
50127
  class?: any;
50128
50128
  placeholder?: string | undefined;
50129
50129
  theme?: string | undefined;
50130
- counter?: string | number | true | undefined;
50130
+ counter?: string | number | boolean | undefined;
50131
50131
  rounded?: string | number | boolean | undefined;
50132
50132
  modelValue?: any;
50133
50133
  bgColor?: string | undefined;
@@ -50215,7 +50215,7 @@ declare const VTextField: {
50215
50215
  messages?: string | readonly string[] | undefined;
50216
50216
  density?: Density | undefined;
50217
50217
  focused?: boolean | undefined;
50218
- errorMessages?: string | readonly string[] | undefined;
50218
+ errorMessages?: string | readonly string[] | null | undefined;
50219
50219
  maxErrors?: string | number | undefined;
50220
50220
  rules?: readonly ValidationRule$1[] | undefined;
50221
50221
  centerAffix?: boolean | undefined;
@@ -50333,7 +50333,7 @@ declare const VTextField: {
50333
50333
  messages: string | readonly string[];
50334
50334
  density: Density;
50335
50335
  focused: boolean;
50336
- errorMessages: string | readonly string[];
50336
+ errorMessages: string | readonly string[] | null;
50337
50337
  maxErrors: string | number;
50338
50338
  rules: readonly ValidationRule$1[];
50339
50339
  centerAffix: boolean;
@@ -50391,7 +50391,7 @@ declare const VTextField: {
50391
50391
  messages: string | readonly string[];
50392
50392
  density: Density;
50393
50393
  focused: boolean;
50394
- errorMessages: string | readonly string[];
50394
+ errorMessages: string | readonly string[] | null;
50395
50395
  maxErrors: string | number;
50396
50396
  rules: readonly ValidationRule$1[];
50397
50397
  centerAffix: boolean;
@@ -50441,7 +50441,7 @@ declare const VTextField: {
50441
50441
  messages: string | readonly string[];
50442
50442
  density: Density;
50443
50443
  focused: boolean;
50444
- errorMessages: string | readonly string[];
50444
+ errorMessages: string | readonly string[] | null;
50445
50445
  maxErrors: string | number;
50446
50446
  rules: readonly ValidationRule$1[];
50447
50447
  centerAffix: boolean;
@@ -50756,7 +50756,7 @@ declare const VTextField: {
50756
50756
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
50757
50757
  clearIcon: IconValue;
50758
50758
  focused: boolean;
50759
- errorMessages: string | readonly string[];
50759
+ errorMessages: string | readonly string[] | null;
50760
50760
  maxErrors: string | number;
50761
50761
  rules: readonly ValidationRule$1[];
50762
50762
  centerAffix: boolean;
@@ -50840,7 +50840,7 @@ declare const VTextField: {
50840
50840
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
50841
50841
  clearIcon: IconValue;
50842
50842
  focused: boolean;
50843
- errorMessages: string | readonly string[];
50843
+ errorMessages: string | readonly string[] | null;
50844
50844
  maxErrors: string | number;
50845
50845
  rules: readonly ValidationRule$1[];
50846
50846
  persistentHint: boolean;
@@ -50861,7 +50861,7 @@ declare const VTextField: {
50861
50861
  class?: any;
50862
50862
  placeholder?: string | undefined;
50863
50863
  theme?: string | undefined;
50864
- counter?: string | number | true | undefined;
50864
+ counter?: string | number | boolean | undefined;
50865
50865
  rounded?: string | number | boolean | undefined;
50866
50866
  modelValue?: any;
50867
50867
  bgColor?: string | undefined;
@@ -50949,7 +50949,7 @@ declare const VTextField: {
50949
50949
  messages?: string | readonly string[] | undefined;
50950
50950
  density?: Density | undefined;
50951
50951
  focused?: boolean | undefined;
50952
- errorMessages?: string | readonly string[] | undefined;
50952
+ errorMessages?: string | readonly string[] | null | undefined;
50953
50953
  maxErrors?: string | number | undefined;
50954
50954
  rules?: readonly ValidationRule$1[] | undefined;
50955
50955
  centerAffix?: boolean | undefined;
@@ -51067,7 +51067,7 @@ declare const VTextField: {
51067
51067
  messages: string | readonly string[];
51068
51068
  density: Density;
51069
51069
  focused: boolean;
51070
- errorMessages: string | readonly string[];
51070
+ errorMessages: string | readonly string[] | null;
51071
51071
  maxErrors: string | number;
51072
51072
  rules: readonly ValidationRule$1[];
51073
51073
  centerAffix: boolean;
@@ -51125,7 +51125,7 @@ declare const VTextField: {
51125
51125
  messages: string | readonly string[];
51126
51126
  density: Density;
51127
51127
  focused: boolean;
51128
- errorMessages: string | readonly string[];
51128
+ errorMessages: string | readonly string[] | null;
51129
51129
  maxErrors: string | number;
51130
51130
  rules: readonly ValidationRule$1[];
51131
51131
  centerAffix: boolean;
@@ -51175,7 +51175,7 @@ declare const VTextField: {
51175
51175
  messages: string | readonly string[];
51176
51176
  density: Density;
51177
51177
  focused: boolean;
51178
- errorMessages: string | readonly string[];
51178
+ errorMessages: string | readonly string[] | null;
51179
51179
  maxErrors: string | number;
51180
51180
  rules: readonly ValidationRule$1[];
51181
51181
  centerAffix: boolean;
@@ -51488,7 +51488,7 @@ declare const VTextField: {
51488
51488
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
51489
51489
  clearIcon: IconValue;
51490
51490
  focused: boolean;
51491
- errorMessages: string | readonly string[];
51491
+ errorMessages: string | readonly string[] | null;
51492
51492
  maxErrors: string | number;
51493
51493
  rules: readonly ValidationRule$1[];
51494
51494
  persistentHint: boolean;
@@ -51509,7 +51509,7 @@ declare const VTextField: {
51509
51509
  class?: any;
51510
51510
  placeholder?: string | undefined;
51511
51511
  theme?: string | undefined;
51512
- counter?: string | number | true | undefined;
51512
+ counter?: string | number | boolean | undefined;
51513
51513
  rounded?: string | number | boolean | undefined;
51514
51514
  modelValue?: any;
51515
51515
  bgColor?: string | undefined;
@@ -51597,7 +51597,7 @@ declare const VTextField: {
51597
51597
  messages?: string | readonly string[] | undefined;
51598
51598
  density?: Density | undefined;
51599
51599
  focused?: boolean | undefined;
51600
- errorMessages?: string | readonly string[] | undefined;
51600
+ errorMessages?: string | readonly string[] | null | undefined;
51601
51601
  maxErrors?: string | number | undefined;
51602
51602
  rules?: readonly ValidationRule$1[] | undefined;
51603
51603
  centerAffix?: boolean | undefined;
@@ -51715,7 +51715,7 @@ declare const VTextField: {
51715
51715
  messages: string | readonly string[];
51716
51716
  density: Density;
51717
51717
  focused: boolean;
51718
- errorMessages: string | readonly string[];
51718
+ errorMessages: string | readonly string[] | null;
51719
51719
  maxErrors: string | number;
51720
51720
  rules: readonly ValidationRule$1[];
51721
51721
  centerAffix: boolean;
@@ -51773,7 +51773,7 @@ declare const VTextField: {
51773
51773
  messages: string | readonly string[];
51774
51774
  density: Density;
51775
51775
  focused: boolean;
51776
- errorMessages: string | readonly string[];
51776
+ errorMessages: string | readonly string[] | null;
51777
51777
  maxErrors: string | number;
51778
51778
  rules: readonly ValidationRule$1[];
51779
51779
  centerAffix: boolean;
@@ -51823,7 +51823,7 @@ declare const VTextField: {
51823
51823
  messages: string | readonly string[];
51824
51824
  density: Density;
51825
51825
  focused: boolean;
51826
- errorMessages: string | readonly string[];
51826
+ errorMessages: string | readonly string[] | null;
51827
51827
  maxErrors: string | number;
51828
51828
  rules: readonly ValidationRule$1[];
51829
51829
  centerAffix: boolean;
@@ -52138,7 +52138,7 @@ declare const VTextField: {
52138
52138
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
52139
52139
  clearIcon: IconValue;
52140
52140
  focused: boolean;
52141
- errorMessages: string | readonly string[];
52141
+ errorMessages: string | readonly string[] | null;
52142
52142
  maxErrors: string | number;
52143
52143
  rules: readonly ValidationRule$1[];
52144
52144
  centerAffix: boolean;
@@ -52235,7 +52235,7 @@ declare const VTextField: {
52235
52235
  focused: BooleanConstructor;
52236
52236
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
52237
52237
  errorMessages: {
52238
- type: PropType<string | readonly string[]>;
52238
+ type: PropType<string | readonly string[] | null>;
52239
52239
  default: () => never[];
52240
52240
  };
52241
52241
  maxErrors: {
@@ -52277,7 +52277,7 @@ declare const VTextField: {
52277
52277
  'onClick:prepend': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52278
52278
  'onClick:append': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52279
52279
  autofocus: BooleanConstructor;
52280
- counter: PropType<string | number | true>;
52280
+ counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
52281
52281
  counterValue: PropType<number | ((value: any) => number)>;
52282
52282
  prefix: StringConstructor;
52283
52283
  placeholder: StringConstructor;
@@ -52339,7 +52339,7 @@ declare const VTextField: {
52339
52339
  focused: BooleanConstructor;
52340
52340
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
52341
52341
  errorMessages: {
52342
- type: PropType<string | readonly string[]>;
52342
+ type: PropType<string | readonly string[] | null>;
52343
52343
  default: () => never[];
52344
52344
  };
52345
52345
  maxErrors: {
@@ -52381,7 +52381,7 @@ declare const VTextField: {
52381
52381
  'onClick:prepend': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52382
52382
  'onClick:append': PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
52383
52383
  autofocus: BooleanConstructor;
52384
- counter: PropType<string | number | true>;
52384
+ counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
52385
52385
  counterValue: PropType<number | ((value: any) => number)>;
52386
52386
  prefix: StringConstructor;
52387
52387
  placeholder: StringConstructor;
@@ -55448,7 +55448,7 @@ declare const VValidation: {
55448
55448
  disabled?: boolean | null | undefined;
55449
55449
  readonly?: boolean | null | undefined;
55450
55450
  focused?: boolean | undefined;
55451
- errorMessages?: string | readonly string[] | undefined;
55451
+ errorMessages?: string | readonly string[] | null | undefined;
55452
55452
  maxErrors?: string | number | undefined;
55453
55453
  rules?: readonly ValidationRule$1[] | undefined;
55454
55454
  key?: string | number | symbol | undefined;
@@ -55600,7 +55600,7 @@ declare const VValidation: {
55600
55600
  disabled: boolean | null;
55601
55601
  readonly: boolean | null;
55602
55602
  focused: boolean;
55603
- errorMessages: string | readonly string[];
55603
+ errorMessages: string | readonly string[] | null;
55604
55604
  maxErrors: string | number;
55605
55605
  rules: readonly ValidationRule$1[];
55606
55606
  } & {
@@ -55686,7 +55686,7 @@ declare const VValidation: {
55686
55686
  disabled: boolean | null;
55687
55687
  readonly: boolean | null;
55688
55688
  focused: boolean;
55689
- errorMessages: string | readonly string[];
55689
+ errorMessages: string | readonly string[] | null;
55690
55690
  maxErrors: string | number;
55691
55691
  rules: readonly ValidationRule$1[];
55692
55692
  }, {}, string, vue.SlotsType<Partial<{
@@ -55732,7 +55732,7 @@ declare const VValidation: {
55732
55732
  disabled: boolean | null;
55733
55733
  readonly: boolean | null;
55734
55734
  focused: boolean;
55735
- errorMessages: string | readonly string[];
55735
+ errorMessages: string | readonly string[] | null;
55736
55736
  maxErrors: string | number;
55737
55737
  rules: readonly ValidationRule$1[];
55738
55738
  } & {
@@ -55820,7 +55820,7 @@ declare const VValidation: {
55820
55820
  disabled: boolean | null;
55821
55821
  readonly: boolean | null;
55822
55822
  focused: boolean;
55823
- errorMessages: string | readonly string[];
55823
+ errorMessages: string | readonly string[] | null;
55824
55824
  maxErrors: string | number;
55825
55825
  rules: readonly ValidationRule$1[];
55826
55826
  } & {
@@ -55906,7 +55906,7 @@ declare const VValidation: {
55906
55906
  disabled: boolean | null;
55907
55907
  readonly: boolean | null;
55908
55908
  focused: boolean;
55909
- errorMessages: string | readonly string[];
55909
+ errorMessages: string | readonly string[] | null;
55910
55910
  maxErrors: string | number;
55911
55911
  rules: readonly ValidationRule$1[];
55912
55912
  }, {}, string, vue.SlotsType<Partial<{
@@ -55936,7 +55936,7 @@ declare const VValidation: {
55936
55936
  };
55937
55937
  error: BooleanConstructor;
55938
55938
  errorMessages: {
55939
- type: vue.PropType<string | readonly string[]>;
55939
+ type: vue.PropType<string | readonly string[] | null>;
55940
55940
  default: () => never[];
55941
55941
  };
55942
55942
  maxErrors: {
@@ -55965,7 +55965,7 @@ declare const VValidation: {
55965
55965
  };
55966
55966
  error: BooleanConstructor;
55967
55967
  errorMessages: {
55968
- type: vue.PropType<string | readonly string[]>;
55968
+ type: vue.PropType<string | readonly string[] | null>;
55969
55969
  default: () => never[];
55970
55970
  };
55971
55971
  maxErrors: {
@@ -74305,7 +74305,7 @@ declare const VSkeletonLoader: {
74305
74305
  $: vue.ComponentInternalInstance;
74306
74306
  $data: {};
74307
74307
  $props: {
74308
- type?: "button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[] | undefined;
74308
+ type?: "button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[] | undefined;
74309
74309
  loading?: boolean | undefined;
74310
74310
  loadingText?: string | undefined;
74311
74311
  boilerplate?: boolean | undefined;
@@ -74386,7 +74386,7 @@ declare const VSkeletonLoader: {
74386
74386
  $emit: (event: string, ...args: any[]) => void;
74387
74387
  $el: any;
74388
74388
  $options: vue.ComponentOptionsBase<{
74389
- type: "button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
74389
+ type: "button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
74390
74390
  loading: boolean;
74391
74391
  loadingText: string;
74392
74392
  boilerplate: boolean;
@@ -74410,7 +74410,7 @@ declare const VSkeletonLoader: {
74410
74410
  } & {
74411
74411
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
74412
74412
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
74413
- type: "button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
74413
+ type: "button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
74414
74414
  loading: boolean;
74415
74415
  loadingText: string;
74416
74416
  boilerplate: boolean;
@@ -74439,7 +74439,7 @@ declare const VSkeletonLoader: {
74439
74439
  $nextTick: typeof vue.nextTick;
74440
74440
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
74441
74441
  } & {
74442
- type: "button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
74442
+ type: "button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
74443
74443
  loading: boolean;
74444
74444
  loadingText: string;
74445
74445
  boilerplate: boolean;
@@ -74467,7 +74467,7 @@ declare const VSkeletonLoader: {
74467
74467
  __isTeleport?: undefined;
74468
74468
  __isSuspense?: undefined;
74469
74469
  } & vue.ComponentOptionsBase<{
74470
- type: "button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
74470
+ type: "button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
74471
74471
  loading: boolean;
74472
74472
  loadingText: string;
74473
74473
  boilerplate: boolean;
@@ -74491,7 +74491,7 @@ declare const VSkeletonLoader: {
74491
74491
  } & {
74492
74492
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
74493
74493
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
74494
- type: "button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
74494
+ type: "button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[];
74495
74495
  loading: boolean;
74496
74496
  loadingText: string;
74497
74497
  boilerplate: boolean;
@@ -74519,7 +74519,7 @@ declare const VSkeletonLoader: {
74519
74519
  default: string;
74520
74520
  };
74521
74521
  type: {
74522
- type: PropType<"button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[]>;
74522
+ type: PropType<"button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[]>;
74523
74523
  default: string;
74524
74524
  };
74525
74525
  }, vue.ExtractPropTypes<{
@@ -74542,7 +74542,7 @@ declare const VSkeletonLoader: {
74542
74542
  default: string;
74543
74543
  };
74544
74544
  type: {
74545
- type: PropType<"button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[]>;
74545
+ type: PropType<"button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot" | readonly ("button" | "article" | "table" | "image" | "text" | (string & {}) | "table-row" | "list-item" | "sentences" | "heading" | "divider" | "subtitle" | "chip" | "avatar" | "actions" | "paragraph" | "ossein" | "card" | "card-avatar" | "date-picker" | "date-picker-options" | "date-picker-days" | "list-item-avatar" | "list-item-two-line" | "list-item-avatar-two-line" | "list-item-three-line" | "list-item-avatar-three-line" | "table-heading" | "table-thead" | "table-tbody" | "table-row-divider" | "table-tfoot")[]>;
74546
74546
  default: string;
74547
74547
  };
74548
74548
  }>>;