vuetify 3.3.18 → 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 (75) hide show
  1. package/dist/json/attributes.json +25 -25
  2. package/dist/json/importMap.json +24 -24
  3. package/dist/json/web-types.json +63 -63
  4. package/dist/vuetify-labs.css +5689 -5679
  5. package/dist/vuetify-labs.d.ts +172 -172
  6. package/dist/vuetify-labs.esm.js +56 -64
  7. package/dist/vuetify-labs.esm.js.map +1 -1
  8. package/dist/vuetify-labs.js +56 -64
  9. package/dist/vuetify-labs.min.css +2 -2
  10. package/dist/vuetify.css +5721 -5715
  11. package/dist/vuetify.d.ts +170 -170
  12. package/dist/vuetify.esm.js +42 -51
  13. package/dist/vuetify.esm.js.map +1 -1
  14. package/dist/vuetify.js +42 -51
  15. package/dist/vuetify.js.map +1 -1
  16. package/dist/vuetify.min.css +2 -2
  17. package/dist/vuetify.min.js +203 -203
  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/VListChildren.mjs +9 -11
  27. package/lib/components/VList/VListChildren.mjs.map +1 -1
  28. package/lib/components/VList/VListItem.css +9 -1
  29. package/lib/components/VList/VListItem.sass +12 -1
  30. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +8 -7
  31. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
  32. package/lib/components/VRadioGroup/index.d.mts +8 -8
  33. package/lib/components/VRangeSlider/index.d.mts +8 -8
  34. package/lib/components/VSelect/index.d.mts +14 -14
  35. package/lib/components/VSlider/VSliderThumb.css +2 -0
  36. package/lib/components/VSlider/VSliderThumb.mjs +7 -6
  37. package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
  38. package/lib/components/VSlider/VSliderThumb.sass +2 -0
  39. package/lib/components/VSlider/VSliderTrack.mjs +5 -7
  40. package/lib/components/VSlider/VSliderTrack.mjs.map +1 -1
  41. package/lib/components/VSlider/index.d.mts +8 -8
  42. package/lib/components/VSlider/slider.mjs +4 -10
  43. package/lib/components/VSlider/slider.mjs.map +1 -1
  44. package/lib/components/VSwitch/index.d.mts +8 -8
  45. package/lib/components/VTextField/VTextField.mjs +1 -1
  46. package/lib/components/VTextField/VTextField.mjs.map +1 -1
  47. package/lib/components/VTextField/index.d.mts +26 -26
  48. package/lib/components/VTextarea/index.d.mts +20 -20
  49. package/lib/components/VTimeline/VTimeline.css +0 -1
  50. package/lib/components/VTimeline/VTimeline.sass +0 -1
  51. package/lib/components/VValidation/index.d.mts +8 -8
  52. package/lib/components/index.d.mts +164 -164
  53. package/lib/composables/forwardRefs.mjs +4 -4
  54. package/lib/composables/forwardRefs.mjs.map +1 -1
  55. package/lib/composables/validation.mjs +2 -2
  56. package/lib/composables/validation.mjs.map +1 -1
  57. package/lib/entry-bundler.mjs +1 -1
  58. package/lib/framework.mjs +1 -1
  59. package/lib/index.d.mts +6 -6
  60. package/lib/labs/VDataTable/VDataTableRows.mjs +2 -2
  61. package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
  62. package/lib/labs/VDataTable/VDataTableVirtual.mjs +5 -5
  63. package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
  64. package/lib/labs/VDataTable/composables/select.mjs +6 -6
  65. package/lib/labs/VDataTable/composables/select.mjs.map +1 -1
  66. package/lib/labs/VDateInput/index.d.mts +14 -14
  67. package/lib/labs/VSkeletonLoader/VSkeletonLoader.css +4 -0
  68. package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs +2 -1
  69. package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs.map +1 -1
  70. package/lib/labs/VSkeletonLoader/VSkeletonLoader.sass +4 -0
  71. package/lib/labs/VSkeletonLoader/index.d.mts +8 -8
  72. package/lib/labs/components.d.mts +8 -8
  73. package/lib/labs/date/date.mjs +1 -1
  74. package/lib/labs/date/date.mjs.map +1 -1
  75. package/package.json +2 -2
@@ -232,7 +232,7 @@ declare const VAutocomplete: {
232
232
  valueComparator?: typeof deepEqual | undefined;
233
233
  clearIcon?: IconValue | undefined;
234
234
  focused?: boolean | undefined;
235
- errorMessages?: string | readonly string[] | undefined;
235
+ errorMessages?: string | readonly string[] | null | undefined;
236
236
  maxErrors?: string | number | undefined;
237
237
  rules?: readonly ValidationRule[] | undefined;
238
238
  centerAffix?: boolean | undefined;
@@ -271,7 +271,7 @@ declare const VAutocomplete: {
271
271
  ref_for?: boolean | undefined;
272
272
  ref_key?: string | undefined;
273
273
  theme?: string | undefined;
274
- counter?: string | number | true | undefined;
274
+ counter?: string | number | boolean | undefined;
275
275
  onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
276
276
  [key: string]: any;
277
277
  }>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -544,7 +544,7 @@ declare const VAutocomplete: {
544
544
  valueComparator: typeof deepEqual;
545
545
  clearIcon: IconValue;
546
546
  focused: boolean;
547
- errorMessages: string | readonly string[];
547
+ errorMessages: string | readonly string[] | null;
548
548
  maxErrors: string | number;
549
549
  rules: readonly ValidationRule[];
550
550
  persistentHint: boolean;
@@ -579,7 +579,7 @@ declare const VAutocomplete: {
579
579
  class?: any;
580
580
  placeholder?: string | undefined;
581
581
  theme?: string | undefined;
582
- counter?: string | number | true | undefined;
582
+ counter?: string | number | boolean | undefined;
583
583
  rounded?: string | number | boolean | undefined;
584
584
  bgColor?: string | undefined;
585
585
  prependIcon?: IconValue | undefined;
@@ -752,7 +752,7 @@ declare const VAutocomplete: {
752
752
  valueComparator: typeof deepEqual;
753
753
  clearIcon: IconValue;
754
754
  focused: boolean;
755
- errorMessages: string | readonly string[];
755
+ errorMessages: string | readonly string[] | null;
756
756
  maxErrors: string | number;
757
757
  rules: readonly ValidationRule[];
758
758
  centerAffix: boolean;
@@ -881,7 +881,7 @@ declare const VAutocomplete: {
881
881
  valueComparator: typeof deepEqual;
882
882
  clearIcon: IconValue;
883
883
  focused: boolean;
884
- errorMessages: string | readonly string[];
884
+ errorMessages: string | readonly string[] | null;
885
885
  maxErrors: string | number;
886
886
  rules: readonly ValidationRule[];
887
887
  persistentHint: boolean;
@@ -916,7 +916,7 @@ declare const VAutocomplete: {
916
916
  class?: any;
917
917
  placeholder?: string | undefined;
918
918
  theme?: string | undefined;
919
- counter?: string | number | true | undefined;
919
+ counter?: string | number | boolean | undefined;
920
920
  rounded?: string | number | boolean | undefined;
921
921
  bgColor?: string | undefined;
922
922
  prependIcon?: IconValue | undefined;
@@ -1087,7 +1087,7 @@ declare const VAutocomplete: {
1087
1087
  valueComparator: typeof deepEqual;
1088
1088
  clearIcon: IconValue;
1089
1089
  focused: boolean;
1090
- errorMessages: string | readonly string[];
1090
+ errorMessages: string | readonly string[] | null;
1091
1091
  maxErrors: string | number;
1092
1092
  rules: readonly ValidationRule[];
1093
1093
  persistentHint: boolean;
@@ -1122,7 +1122,7 @@ declare const VAutocomplete: {
1122
1122
  class?: any;
1123
1123
  placeholder?: string | undefined;
1124
1124
  theme?: string | undefined;
1125
- counter?: string | number | true | undefined;
1125
+ counter?: string | number | boolean | undefined;
1126
1126
  rounded?: string | number | boolean | undefined;
1127
1127
  bgColor?: string | undefined;
1128
1128
  prependIcon?: IconValue | undefined;
@@ -1295,7 +1295,7 @@ declare const VAutocomplete: {
1295
1295
  valueComparator: typeof deepEqual;
1296
1296
  clearIcon: IconValue;
1297
1297
  focused: boolean;
1298
- errorMessages: string | readonly string[];
1298
+ errorMessages: string | readonly string[] | null;
1299
1299
  maxErrors: string | number;
1300
1300
  rules: readonly ValidationRule[];
1301
1301
  centerAffix: boolean;
@@ -1482,7 +1482,7 @@ declare const VAutocomplete: {
1482
1482
  class: PropType<any>;
1483
1483
  placeholder: StringConstructor;
1484
1484
  theme: StringConstructor;
1485
- counter: PropType<string | number | true>;
1485
+ counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
1486
1486
  messages: {
1487
1487
  type: PropType<string | readonly string[]>;
1488
1488
  default: () => never[];
@@ -1522,7 +1522,7 @@ declare const VAutocomplete: {
1522
1522
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
1523
1523
  validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
1524
1524
  errorMessages: {
1525
- type: PropType<string | readonly string[]>;
1525
+ type: PropType<string | readonly string[] | null>;
1526
1526
  default: () => never[];
1527
1527
  };
1528
1528
  maxErrors: {
@@ -1787,7 +1787,7 @@ declare const VAutocomplete: {
1787
1787
  class: PropType<any>;
1788
1788
  placeholder: StringConstructor;
1789
1789
  theme: StringConstructor;
1790
- counter: PropType<string | number | true>;
1790
+ counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
1791
1791
  messages: {
1792
1792
  type: PropType<string | readonly string[]>;
1793
1793
  default: () => never[];
@@ -1827,7 +1827,7 @@ declare const VAutocomplete: {
1827
1827
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
1828
1828
  validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
1829
1829
  errorMessages: {
1830
- type: PropType<string | readonly string[]>;
1830
+ type: PropType<string | readonly string[] | null>;
1831
1831
  default: () => never[];
1832
1832
  };
1833
1833
  maxErrors: {
@@ -70,7 +70,7 @@ declare const VCheckbox: {
70
70
  valueComparator?: typeof deepEqual | undefined;
71
71
  indeterminateIcon?: IconValue | undefined;
72
72
  focused?: boolean | undefined;
73
- errorMessages?: string | readonly string[] | undefined;
73
+ errorMessages?: string | readonly string[] | null | undefined;
74
74
  maxErrors?: string | number | undefined;
75
75
  rules?: readonly ValidationRule[] | undefined;
76
76
  centerAffix?: boolean | undefined;
@@ -241,7 +241,7 @@ declare const VCheckbox: {
241
241
  valueComparator: typeof deepEqual;
242
242
  indeterminateIcon: IconValue;
243
243
  focused: boolean;
244
- errorMessages: string | readonly string[];
244
+ errorMessages: string | readonly string[] | null;
245
245
  maxErrors: string | number;
246
246
  rules: readonly ValidationRule[];
247
247
  centerAffix: boolean;
@@ -338,7 +338,7 @@ declare const VCheckbox: {
338
338
  valueComparator: typeof deepEqual;
339
339
  indeterminateIcon: IconValue;
340
340
  focused: boolean;
341
- errorMessages: string | readonly string[];
341
+ errorMessages: string | readonly string[] | null;
342
342
  maxErrors: string | number;
343
343
  rules: readonly ValidationRule[];
344
344
  centerAffix: boolean;
@@ -407,7 +407,7 @@ declare const VCheckbox: {
407
407
  valueComparator: typeof deepEqual;
408
408
  indeterminateIcon: IconValue;
409
409
  focused: boolean;
410
- errorMessages: string | readonly string[];
410
+ errorMessages: string | readonly string[] | null;
411
411
  maxErrors: string | number;
412
412
  rules: readonly ValidationRule[];
413
413
  centerAffix: boolean;
@@ -505,7 +505,7 @@ declare const VCheckbox: {
505
505
  valueComparator: typeof deepEqual;
506
506
  indeterminateIcon: IconValue;
507
507
  focused: boolean;
508
- errorMessages: string | readonly string[];
508
+ errorMessages: string | readonly string[] | null;
509
509
  maxErrors: string | number;
510
510
  rules: readonly ValidationRule[];
511
511
  centerAffix: boolean;
@@ -602,7 +602,7 @@ declare const VCheckbox: {
602
602
  valueComparator: typeof deepEqual;
603
603
  indeterminateIcon: IconValue;
604
604
  focused: boolean;
605
- errorMessages: string | readonly string[];
605
+ errorMessages: string | readonly string[] | null;
606
606
  maxErrors: string | number;
607
607
  rules: readonly ValidationRule[];
608
608
  centerAffix: boolean;
@@ -691,7 +691,7 @@ declare const VCheckbox: {
691
691
  focused: BooleanConstructor;
692
692
  'onUpdate:focused': vue.PropType<EventProp<[boolean], (args_0: boolean) => any>>;
693
693
  errorMessages: {
694
- type: vue.PropType<string | readonly string[]>;
694
+ type: vue.PropType<string | readonly string[] | null>;
695
695
  default: () => never[];
696
696
  };
697
697
  maxErrors: {
@@ -780,7 +780,7 @@ declare const VCheckbox: {
780
780
  focused: BooleanConstructor;
781
781
  'onUpdate:focused': vue.PropType<EventProp<[boolean], (args_0: boolean) => any>>;
782
782
  errorMessages: {
783
- type: vue.PropType<string | readonly string[]>;
783
+ type: vue.PropType<string | readonly string[] | null>;
784
784
  default: () => never[];
785
785
  };
786
786
  maxErrors: {
@@ -232,7 +232,7 @@ declare const VCombobox: {
232
232
  valueComparator?: typeof deepEqual | undefined;
233
233
  clearIcon?: IconValue | undefined;
234
234
  focused?: boolean | undefined;
235
- errorMessages?: string | readonly string[] | undefined;
235
+ errorMessages?: string | readonly string[] | null | undefined;
236
236
  maxErrors?: string | number | undefined;
237
237
  rules?: readonly ValidationRule[] | undefined;
238
238
  centerAffix?: boolean | undefined;
@@ -271,7 +271,7 @@ declare const VCombobox: {
271
271
  ref_for?: boolean | undefined;
272
272
  ref_key?: string | undefined;
273
273
  theme?: string | undefined;
274
- counter?: string | number | true | undefined;
274
+ counter?: string | number | boolean | undefined;
275
275
  onVnodeBeforeMount?: ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
276
276
  [key: string]: any;
277
277
  }>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -544,7 +544,7 @@ declare const VCombobox: {
544
544
  valueComparator: typeof deepEqual;
545
545
  clearIcon: IconValue;
546
546
  focused: boolean;
547
- errorMessages: string | readonly string[];
547
+ errorMessages: string | readonly string[] | null;
548
548
  maxErrors: string | number;
549
549
  rules: readonly ValidationRule[];
550
550
  persistentHint: boolean;
@@ -579,7 +579,7 @@ declare const VCombobox: {
579
579
  delimiters?: readonly string[] | undefined;
580
580
  placeholder?: string | undefined;
581
581
  theme?: string | undefined;
582
- counter?: string | number | true | undefined;
582
+ counter?: string | number | boolean | undefined;
583
583
  rounded?: string | number | boolean | undefined;
584
584
  bgColor?: string | undefined;
585
585
  prependIcon?: IconValue | undefined;
@@ -752,7 +752,7 @@ declare const VCombobox: {
752
752
  valueComparator: typeof deepEqual;
753
753
  clearIcon: IconValue;
754
754
  focused: boolean;
755
- errorMessages: string | readonly string[];
755
+ errorMessages: string | readonly string[] | null;
756
756
  maxErrors: string | number;
757
757
  rules: readonly ValidationRule[];
758
758
  centerAffix: boolean;
@@ -881,7 +881,7 @@ declare const VCombobox: {
881
881
  valueComparator: typeof deepEqual;
882
882
  clearIcon: IconValue;
883
883
  focused: boolean;
884
- errorMessages: string | readonly string[];
884
+ errorMessages: string | readonly string[] | null;
885
885
  maxErrors: string | number;
886
886
  rules: readonly ValidationRule[];
887
887
  persistentHint: boolean;
@@ -916,7 +916,7 @@ declare const VCombobox: {
916
916
  delimiters?: readonly string[] | undefined;
917
917
  placeholder?: string | undefined;
918
918
  theme?: string | undefined;
919
- counter?: string | number | true | undefined;
919
+ counter?: string | number | boolean | undefined;
920
920
  rounded?: string | number | boolean | undefined;
921
921
  bgColor?: string | undefined;
922
922
  prependIcon?: IconValue | undefined;
@@ -1087,7 +1087,7 @@ declare const VCombobox: {
1087
1087
  valueComparator: typeof deepEqual;
1088
1088
  clearIcon: IconValue;
1089
1089
  focused: boolean;
1090
- errorMessages: string | readonly string[];
1090
+ errorMessages: string | readonly string[] | null;
1091
1091
  maxErrors: string | number;
1092
1092
  rules: readonly ValidationRule[];
1093
1093
  persistentHint: boolean;
@@ -1122,7 +1122,7 @@ declare const VCombobox: {
1122
1122
  delimiters?: readonly string[] | undefined;
1123
1123
  placeholder?: string | undefined;
1124
1124
  theme?: string | undefined;
1125
- counter?: string | number | true | undefined;
1125
+ counter?: string | number | boolean | undefined;
1126
1126
  rounded?: string | number | boolean | undefined;
1127
1127
  bgColor?: string | undefined;
1128
1128
  prependIcon?: IconValue | undefined;
@@ -1295,7 +1295,7 @@ declare const VCombobox: {
1295
1295
  valueComparator: typeof deepEqual;
1296
1296
  clearIcon: IconValue;
1297
1297
  focused: boolean;
1298
- errorMessages: string | readonly string[];
1298
+ errorMessages: string | readonly string[] | null;
1299
1299
  maxErrors: string | number;
1300
1300
  rules: readonly ValidationRule[];
1301
1301
  centerAffix: boolean;
@@ -1482,7 +1482,7 @@ declare const VCombobox: {
1482
1482
  class: PropType<any>;
1483
1483
  placeholder: StringConstructor;
1484
1484
  theme: StringConstructor;
1485
- counter: PropType<string | number | true>;
1485
+ counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
1486
1486
  messages: {
1487
1487
  type: PropType<string | readonly string[]>;
1488
1488
  default: () => never[];
@@ -1522,7 +1522,7 @@ declare const VCombobox: {
1522
1522
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
1523
1523
  validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
1524
1524
  errorMessages: {
1525
- type: PropType<string | readonly string[]>;
1525
+ type: PropType<string | readonly string[] | null>;
1526
1526
  default: () => never[];
1527
1527
  };
1528
1528
  maxErrors: {
@@ -1793,7 +1793,7 @@ declare const VCombobox: {
1793
1793
  class: PropType<any>;
1794
1794
  placeholder: StringConstructor;
1795
1795
  theme: StringConstructor;
1796
- counter: PropType<string | number | true>;
1796
+ counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
1797
1797
  messages: {
1798
1798
  type: PropType<string | readonly string[]>;
1799
1799
  default: () => never[];
@@ -1833,7 +1833,7 @@ declare const VCombobox: {
1833
1833
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
1834
1834
  validateOn: PropType<"lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined>;
1835
1835
  errorMessages: {
1836
- type: PropType<string | readonly string[]>;
1836
+ type: PropType<string | readonly string[] | null>;
1837
1837
  default: () => never[];
1838
1838
  };
1839
1839
  maxErrors: {
@@ -73,7 +73,7 @@ declare const VFileInput: {
73
73
  prependIcon?: NonNullable<IconValue> | undefined;
74
74
  clearIcon?: IconValue | undefined;
75
75
  focused?: boolean | undefined;
76
- errorMessages?: string | readonly string[] | undefined;
76
+ errorMessages?: string | readonly string[] | null | undefined;
77
77
  maxErrors?: string | number | undefined;
78
78
  rules?: readonly ValidationRule[] | undefined;
79
79
  centerAffix?: boolean | undefined;
@@ -288,7 +288,7 @@ declare const VFileInput: {
288
288
  prependIcon: NonNullable<IconValue>;
289
289
  clearIcon: IconValue;
290
290
  focused: boolean;
291
- errorMessages: string | readonly string[];
291
+ errorMessages: string | readonly string[] | null;
292
292
  maxErrors: string | number;
293
293
  rules: readonly ValidationRule[];
294
294
  persistentHint: boolean;
@@ -405,7 +405,7 @@ declare const VFileInput: {
405
405
  messages?: string | readonly string[] | undefined;
406
406
  density?: Density | undefined;
407
407
  focused?: boolean | undefined;
408
- errorMessages?: string | readonly string[] | undefined;
408
+ errorMessages?: string | readonly string[] | null | undefined;
409
409
  maxErrors?: string | number | undefined;
410
410
  rules?: readonly ValidationRule[] | undefined;
411
411
  centerAffix?: boolean | undefined;
@@ -523,7 +523,7 @@ declare const VFileInput: {
523
523
  messages: string | readonly string[];
524
524
  density: Density;
525
525
  focused: boolean;
526
- errorMessages: string | readonly string[];
526
+ errorMessages: string | readonly string[] | null;
527
527
  maxErrors: string | number;
528
528
  rules: readonly ValidationRule[];
529
529
  centerAffix: boolean;
@@ -581,7 +581,7 @@ declare const VFileInput: {
581
581
  messages: string | readonly string[];
582
582
  density: Density;
583
583
  focused: boolean;
584
- errorMessages: string | readonly string[];
584
+ errorMessages: string | readonly string[] | null;
585
585
  maxErrors: string | number;
586
586
  rules: readonly ValidationRule[];
587
587
  centerAffix: boolean;
@@ -631,7 +631,7 @@ declare const VFileInput: {
631
631
  messages: string | readonly string[];
632
632
  density: Density;
633
633
  focused: boolean;
634
- errorMessages: string | readonly string[];
634
+ errorMessages: string | readonly string[] | null;
635
635
  maxErrors: string | number;
636
636
  rules: readonly ValidationRule[];
637
637
  centerAffix: boolean;
@@ -702,7 +702,7 @@ declare const VFileInput: {
702
702
  prependIcon: NonNullable<IconValue>;
703
703
  clearIcon: IconValue;
704
704
  focused: boolean;
705
- errorMessages: string | readonly string[];
705
+ errorMessages: string | readonly string[] | null;
706
706
  maxErrors: string | number;
707
707
  rules: readonly ValidationRule[];
708
708
  centerAffix: boolean;
@@ -797,7 +797,7 @@ declare const VFileInput: {
797
797
  prependIcon: NonNullable<IconValue>;
798
798
  clearIcon: IconValue;
799
799
  focused: boolean;
800
- errorMessages: string | readonly string[];
800
+ errorMessages: string | readonly string[] | null;
801
801
  maxErrors: string | number;
802
802
  rules: readonly ValidationRule[];
803
803
  persistentHint: boolean;
@@ -914,7 +914,7 @@ declare const VFileInput: {
914
914
  messages?: string | readonly string[] | undefined;
915
915
  density?: Density | undefined;
916
916
  focused?: boolean | undefined;
917
- errorMessages?: string | readonly string[] | undefined;
917
+ errorMessages?: string | readonly string[] | null | undefined;
918
918
  maxErrors?: string | number | undefined;
919
919
  rules?: readonly ValidationRule[] | undefined;
920
920
  centerAffix?: boolean | undefined;
@@ -1032,7 +1032,7 @@ declare const VFileInput: {
1032
1032
  messages: string | readonly string[];
1033
1033
  density: Density;
1034
1034
  focused: boolean;
1035
- errorMessages: string | readonly string[];
1035
+ errorMessages: string | readonly string[] | null;
1036
1036
  maxErrors: string | number;
1037
1037
  rules: readonly ValidationRule[];
1038
1038
  centerAffix: boolean;
@@ -1090,7 +1090,7 @@ declare const VFileInput: {
1090
1090
  messages: string | readonly string[];
1091
1091
  density: Density;
1092
1092
  focused: boolean;
1093
- errorMessages: string | readonly string[];
1093
+ errorMessages: string | readonly string[] | null;
1094
1094
  maxErrors: string | number;
1095
1095
  rules: readonly ValidationRule[];
1096
1096
  centerAffix: boolean;
@@ -1140,7 +1140,7 @@ declare const VFileInput: {
1140
1140
  messages: string | readonly string[];
1141
1141
  density: Density;
1142
1142
  focused: boolean;
1143
- errorMessages: string | readonly string[];
1143
+ errorMessages: string | readonly string[] | null;
1144
1144
  maxErrors: string | number;
1145
1145
  rules: readonly ValidationRule[];
1146
1146
  centerAffix: boolean;
@@ -1209,7 +1209,7 @@ declare const VFileInput: {
1209
1209
  prependIcon: NonNullable<IconValue>;
1210
1210
  clearIcon: IconValue;
1211
1211
  focused: boolean;
1212
- errorMessages: string | readonly string[];
1212
+ errorMessages: string | readonly string[] | null;
1213
1213
  maxErrors: string | number;
1214
1214
  rules: readonly ValidationRule[];
1215
1215
  persistentHint: boolean;
@@ -1326,7 +1326,7 @@ declare const VFileInput: {
1326
1326
  messages?: string | readonly string[] | undefined;
1327
1327
  density?: Density | undefined;
1328
1328
  focused?: boolean | undefined;
1329
- errorMessages?: string | readonly string[] | undefined;
1329
+ errorMessages?: string | readonly string[] | null | undefined;
1330
1330
  maxErrors?: string | number | undefined;
1331
1331
  rules?: readonly ValidationRule[] | undefined;
1332
1332
  centerAffix?: boolean | undefined;
@@ -1444,7 +1444,7 @@ declare const VFileInput: {
1444
1444
  messages: string | readonly string[];
1445
1445
  density: Density;
1446
1446
  focused: boolean;
1447
- errorMessages: string | readonly string[];
1447
+ errorMessages: string | readonly string[] | null;
1448
1448
  maxErrors: string | number;
1449
1449
  rules: readonly ValidationRule[];
1450
1450
  centerAffix: boolean;
@@ -1502,7 +1502,7 @@ declare const VFileInput: {
1502
1502
  messages: string | readonly string[];
1503
1503
  density: Density;
1504
1504
  focused: boolean;
1505
- errorMessages: string | readonly string[];
1505
+ errorMessages: string | readonly string[] | null;
1506
1506
  maxErrors: string | number;
1507
1507
  rules: readonly ValidationRule[];
1508
1508
  centerAffix: boolean;
@@ -1552,7 +1552,7 @@ declare const VFileInput: {
1552
1552
  messages: string | readonly string[];
1553
1553
  density: Density;
1554
1554
  focused: boolean;
1555
- errorMessages: string | readonly string[];
1555
+ errorMessages: string | readonly string[] | null;
1556
1556
  maxErrors: string | number;
1557
1557
  rules: readonly ValidationRule[];
1558
1558
  centerAffix: boolean;
@@ -1623,7 +1623,7 @@ declare const VFileInput: {
1623
1623
  prependIcon: NonNullable<IconValue>;
1624
1624
  clearIcon: IconValue;
1625
1625
  focused: boolean;
1626
- errorMessages: string | readonly string[];
1626
+ errorMessages: string | readonly string[] | null;
1627
1627
  maxErrors: string | number;
1628
1628
  rules: readonly ValidationRule[];
1629
1629
  centerAffix: boolean;
@@ -1737,7 +1737,7 @@ declare const VFileInput: {
1737
1737
  focused: BooleanConstructor;
1738
1738
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
1739
1739
  errorMessages: {
1740
- type: PropType<string | readonly string[]>;
1740
+ type: PropType<string | readonly string[] | null>;
1741
1741
  default: () => never[];
1742
1742
  };
1743
1743
  maxErrors: {
@@ -1853,7 +1853,7 @@ declare const VFileInput: {
1853
1853
  focused: BooleanConstructor;
1854
1854
  'onUpdate:focused': PropType<EventProp<[boolean], (args_0: boolean) => any>>;
1855
1855
  errorMessages: {
1856
- type: PropType<string | readonly string[]>;
1856
+ type: PropType<string | readonly string[] | null>;
1857
1857
  default: () => never[];
1858
1858
  };
1859
1859
  maxErrors: {
@@ -46,7 +46,7 @@ declare const VInput: {
46
46
  messages?: string | readonly string[] | undefined;
47
47
  density?: Density | undefined;
48
48
  focused?: boolean | undefined;
49
- errorMessages?: string | readonly string[] | undefined;
49
+ errorMessages?: string | readonly string[] | null | undefined;
50
50
  maxErrors?: string | number | undefined;
51
51
  rules?: readonly ValidationRule[] | undefined;
52
52
  centerAffix?: boolean | undefined;
@@ -164,7 +164,7 @@ declare const VInput: {
164
164
  messages: string | readonly string[];
165
165
  density: Density;
166
166
  focused: boolean;
167
- errorMessages: string | readonly string[];
167
+ errorMessages: string | readonly string[] | null;
168
168
  maxErrors: string | number;
169
169
  rules: readonly ValidationRule[];
170
170
  centerAffix: boolean;
@@ -222,7 +222,7 @@ declare const VInput: {
222
222
  messages: string | readonly string[];
223
223
  density: Density;
224
224
  focused: boolean;
225
- errorMessages: string | readonly string[];
225
+ errorMessages: string | readonly string[] | null;
226
226
  maxErrors: string | number;
227
227
  rules: readonly ValidationRule[];
228
228
  centerAffix: boolean;
@@ -272,7 +272,7 @@ declare const VInput: {
272
272
  messages: string | readonly string[];
273
273
  density: Density;
274
274
  focused: boolean;
275
- errorMessages: string | readonly string[];
275
+ errorMessages: string | readonly string[] | null;
276
276
  maxErrors: string | number;
277
277
  rules: readonly ValidationRule[];
278
278
  centerAffix: boolean;
@@ -332,7 +332,7 @@ declare const VInput: {
332
332
  messages: string | readonly string[];
333
333
  density: Density;
334
334
  focused: boolean;
335
- errorMessages: string | readonly string[];
335
+ errorMessages: string | readonly string[] | null;
336
336
  maxErrors: string | number;
337
337
  rules: readonly ValidationRule[];
338
338
  centerAffix: boolean;
@@ -390,7 +390,7 @@ declare const VInput: {
390
390
  messages: string | readonly string[];
391
391
  density: Density;
392
392
  focused: boolean;
393
- errorMessages: string | readonly string[];
393
+ errorMessages: string | readonly string[] | null;
394
394
  maxErrors: string | number;
395
395
  rules: readonly ValidationRule[];
396
396
  centerAffix: boolean;
@@ -420,7 +420,7 @@ declare const VInput: {
420
420
  };
421
421
  error: BooleanConstructor;
422
422
  errorMessages: {
423
- type: PropType<string | readonly string[]>;
423
+ type: PropType<string | readonly string[] | null>;
424
424
  default: () => never[];
425
425
  };
426
426
  maxErrors: {
@@ -480,7 +480,7 @@ declare const VInput: {
480
480
  };
481
481
  error: BooleanConstructor;
482
482
  errorMessages: {
483
- type: PropType<string | readonly string[]>;
483
+ type: PropType<string | readonly string[] | null>;
484
484
  default: () => never[];
485
485
  };
486
486
  maxErrors: {
@@ -23,9 +23,6 @@
23
23
  padding-inline-start: 8px;
24
24
  padding-inline-end: 8px;
25
25
  }
26
- .v-navigation-drawer--rail:not(.v-navigation-drawer--is-hovering.v-navigation-drawer--expand-on-hover) .v-list .v-avatar {
27
- --v-avatar-height: 24px;
28
- }
29
26
  .v-list--rounded {
30
27
  border-radius: 4px;
31
28
  }
@@ -21,10 +21,6 @@
21
21
  padding-inline-start: $list-nav-padding
22
22
  padding-inline-end: $list-nav-padding
23
23
 
24
- .v-navigation-drawer--rail:not(.v-navigation-drawer--is-hovering.v-navigation-drawer--expand-on-hover) &
25
- .v-avatar
26
- --v-avatar-height: 24px
27
-
28
24
  &--rounded
29
25
  @include tools.rounded($list-rounded-border-radius)
30
26
 
@@ -61,25 +61,23 @@ export const VListChildren = genericComponent()({
61
61
  let {
62
62
  props: activatorProps
63
63
  } = _ref3;
64
+ const listItemProps = {
65
+ ...itemProps,
66
+ ...activatorProps,
67
+ value: props.returnObject ? item : itemProps.value
68
+ };
64
69
  return slots.header ? slots.header({
65
- props: {
66
- ...itemProps,
67
- ...activatorProps
68
- }
69
- }) : _createVNode(VListItem, _mergeProps({
70
- "title": itemProps.title,
71
- "value": props.returnObject ? item : itemProps.value
72
- }, activatorProps), slotsWithItem);
70
+ props: listItemProps
71
+ }) : _createVNode(VListItem, listItemProps, slotsWithItem);
73
72
  },
74
73
  default: () => _createVNode(VListChildren, {
75
74
  "items": children
76
75
  }, slots)
77
76
  }) : slots.item ? slots.item({
78
77
  props: itemProps
79
- }) : _createVNode(VListItem, {
80
- "title": itemProps.title,
78
+ }) : _createVNode(VListItem, _mergeProps(itemProps, {
81
79
  "value": props.returnObject ? item : itemProps.value
82
- }, slotsWithItem);
80
+ }), slotsWithItem);
83
81
  });
84
82
  }
85
83
  });
@@ -1 +1 @@
1
- {"version":3,"file":"VListChildren.mjs","names":["VListGroup","VListItem","VListSubheader","VDivider","createList","genericComponent","propsFactory","makeVListChildrenProps","items","Array","returnObject","Boolean","VListChildren","name","props","setup","_ref","slots","default","map","_ref2","children","itemProps","type","raw","item","divider","_createVNode","subheader","slotsWithItem","subtitle","slotProps","undefined","prepend","append","title","listGroupProps","_1","filterProps","_mergeProps","value","activator","_ref3","activatorProps","header"],"sources":["../../../src/components/VList/VListChildren.tsx"],"sourcesContent":["// Components\nimport { VListGroup } from './VListGroup'\nimport { VListItem } from './VListItem'\nimport { VListSubheader } from './VListSubheader'\nimport { VDivider } from '../VDivider'\n\n// Utilities\nimport { createList } from './list'\nimport { genericComponent, propsFactory } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\nimport type { InternalListItem } from './VList'\nimport type { VListItemSlots } from './VListItem'\nimport type { GenericProps } from '@/util'\n\nexport type VListChildrenSlots<T> = {\n [K in keyof Omit<VListItemSlots, 'default'>]: VListItemSlots[K] & { item: T }\n} & {\n default: never\n item: { props: InternalListItem['props'] }\n divider: { props: InternalListItem['props'] }\n subheader: { props: InternalListItem['props'] }\n header: { props: InternalListItem['props'] }\n}\n\nexport const makeVListChildrenProps = propsFactory({\n items: Array as PropType<readonly InternalListItem[]>,\n returnObject: Boolean,\n}, 'VListChildren')\n\nexport const VListChildren = genericComponent<new <T extends InternalListItem>(\n props: {\n items?: readonly T[]\n returnObject?: boolean\n },\n slots: VListChildrenSlots<T>\n) => GenericProps<typeof props, typeof slots>>()({\n name: 'VListChildren',\n\n props: makeVListChildrenProps(),\n\n setup (props, { slots }) {\n createList()\n\n return () => slots.default?.() ?? props.items?.map(({ children, props: itemProps, type, raw: item }) => {\n if (type === 'divider') {\n return slots.divider?.({ props: itemProps }) ?? (\n <VDivider { ...itemProps } />\n )\n }\n\n if (type === 'subheader') {\n return slots.subheader?.({ props: itemProps }) ?? (\n <VListSubheader { ...itemProps } />\n )\n }\n\n const slotsWithItem = {\n subtitle: slots.subtitle ? (slotProps: any) => slots.subtitle?.({ ...slotProps, item }) : undefined,\n prepend: slots.prepend ? (slotProps: any) => slots.prepend?.({ ...slotProps, item }) : undefined,\n append: slots.append ? (slotProps: any) => slots.append?.({ ...slotProps, item }) : undefined,\n title: slots.title ? (slotProps: any) => slots.title?.({ ...slotProps, item }) : undefined,\n }\n\n const [listGroupProps, _1] = VListGroup.filterProps(itemProps)\n\n return children ? (\n <VListGroup\n value={ itemProps?.value }\n { ...listGroupProps }\n >\n {{\n activator: ({ props: activatorProps }) => slots.header\n ? slots.header({ props: { ...itemProps, ...activatorProps } })\n : (\n <VListItem\n title={ itemProps.title }\n value={ props.returnObject ? item : itemProps.value }\n { ...activatorProps }\n v-slots={ slotsWithItem }\n />\n ),\n default: () => (\n <VListChildren items={ children } v-slots={ slots } />\n ),\n }}\n </VListGroup>\n ) : (\n slots.item ? slots.item({ props: itemProps }) : (\n <VListItem\n title={ itemProps.title }\n value={ props.returnObject ? item : itemProps.value }\n v-slots={ slotsWithItem }\n />\n )\n )\n })\n },\n})\n"],"mappings":"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"}
1
+ {"version":3,"file":"VListChildren.mjs","names":["VListGroup","VListItem","VListSubheader","VDivider","createList","genericComponent","propsFactory","makeVListChildrenProps","items","Array","returnObject","Boolean","VListChildren","name","props","setup","_ref","slots","default","map","_ref2","children","itemProps","type","raw","item","divider","_createVNode","subheader","slotsWithItem","subtitle","slotProps","undefined","prepend","append","title","listGroupProps","_1","filterProps","_mergeProps","value","activator","_ref3","activatorProps","listItemProps","header"],"sources":["../../../src/components/VList/VListChildren.tsx"],"sourcesContent":["// Components\nimport { VListGroup } from './VListGroup'\nimport { VListItem } from './VListItem'\nimport { VListSubheader } from './VListSubheader'\nimport { VDivider } from '../VDivider'\n\n// Utilities\nimport { createList } from './list'\nimport { genericComponent, propsFactory } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\nimport type { InternalListItem } from './VList'\nimport type { VListItemSlots } from './VListItem'\nimport type { GenericProps } from '@/util'\n\nexport type VListChildrenSlots<T> = {\n [K in keyof Omit<VListItemSlots, 'default'>]: VListItemSlots[K] & { item: T }\n} & {\n default: never\n item: { props: InternalListItem['props'] }\n divider: { props: InternalListItem['props'] }\n subheader: { props: InternalListItem['props'] }\n header: { props: InternalListItem['props'] }\n}\n\nexport const makeVListChildrenProps = propsFactory({\n items: Array as PropType<readonly InternalListItem[]>,\n returnObject: Boolean,\n}, 'VListChildren')\n\nexport const VListChildren = genericComponent<new <T extends InternalListItem>(\n props: {\n items?: readonly T[]\n returnObject?: boolean\n },\n slots: VListChildrenSlots<T>\n) => GenericProps<typeof props, typeof slots>>()({\n name: 'VListChildren',\n\n props: makeVListChildrenProps(),\n\n setup (props, { slots }) {\n createList()\n\n return () => slots.default?.() ?? props.items?.map(({ children, props: itemProps, type, raw: item }) => {\n if (type === 'divider') {\n return slots.divider?.({ props: itemProps }) ?? (\n <VDivider { ...itemProps } />\n )\n }\n\n if (type === 'subheader') {\n return slots.subheader?.({ props: itemProps }) ?? (\n <VListSubheader { ...itemProps } />\n )\n }\n\n const slotsWithItem = {\n subtitle: slots.subtitle ? (slotProps: any) => slots.subtitle?.({ ...slotProps, item }) : undefined,\n prepend: slots.prepend ? (slotProps: any) => slots.prepend?.({ ...slotProps, item }) : undefined,\n append: slots.append ? (slotProps: any) => slots.append?.({ ...slotProps, item }) : undefined,\n title: slots.title ? (slotProps: any) => slots.title?.({ ...slotProps, item }) : undefined,\n }\n\n const [listGroupProps, _1] = VListGroup.filterProps(itemProps)\n\n return children ? (\n <VListGroup\n value={ itemProps?.value }\n { ...listGroupProps }\n >\n {{\n activator: ({ props: activatorProps }) => {\n const listItemProps = {\n ...itemProps,\n ...activatorProps,\n value: props.returnObject ? item : itemProps.value,\n }\n\n return slots.header\n ? slots.header({ props: listItemProps })\n : (\n <VListItem { ...listItemProps } v-slots={ slotsWithItem } />\n )\n },\n default: () => (\n <VListChildren items={ children } v-slots={ slots } />\n ),\n }}\n </VListGroup>\n ) : (\n slots.item ? slots.item({ props: itemProps }) : (\n <VListItem\n { ...itemProps }\n value={ props.returnObject ? item : itemProps.value }\n v-slots={ slotsWithItem }\n />\n )\n )\n })\n },\n})\n"],"mappings":"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"}