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.
- package/dist/json/attributes.json +25 -25
- package/dist/json/importMap.json +20 -20
- package/dist/json/web-types.json +63 -63
- package/dist/vuetify-labs.css +5122 -5112
- package/dist/vuetify-labs.d.ts +172 -172
- package/dist/vuetify-labs.esm.js +45 -51
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +45 -51
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +5088 -5082
- package/dist/vuetify.d.ts +169 -169
- package/dist/vuetify.esm.js +33 -40
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +33 -40
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +201 -202
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +14 -14
- package/lib/components/VCheckbox/index.d.mts +8 -8
- package/lib/components/VCombobox/index.d.mts +14 -14
- package/lib/components/VFileInput/index.d.mts +20 -20
- package/lib/components/VInput/index.d.mts +8 -8
- package/lib/components/VList/VList.css +0 -3
- package/lib/components/VList/VList.sass +0 -4
- package/lib/components/VList/VListItem.css +9 -1
- package/lib/components/VList/VListItem.sass +12 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +8 -7
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VRadioGroup/index.d.mts +8 -8
- package/lib/components/VRangeSlider/index.d.mts +8 -8
- package/lib/components/VSelect/index.d.mts +14 -14
- package/lib/components/VSlider/VSliderThumb.css +2 -0
- package/lib/components/VSlider/VSliderThumb.mjs +7 -6
- package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.sass +2 -0
- package/lib/components/VSlider/VSliderTrack.mjs +5 -7
- package/lib/components/VSlider/VSliderTrack.mjs.map +1 -1
- package/lib/components/VSlider/index.d.mts +8 -8
- package/lib/components/VSlider/slider.mjs +4 -10
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/VSwitch/index.d.mts +8 -8
- package/lib/components/VTextField/VTextField.mjs +1 -1
- package/lib/components/VTextField/VTextField.mjs.map +1 -1
- package/lib/components/VTextField/index.d.mts +26 -26
- package/lib/components/VTextarea/index.d.mts +20 -20
- package/lib/components/VTimeline/VTimeline.css +0 -1
- package/lib/components/VTimeline/VTimeline.sass +0 -1
- package/lib/components/VValidation/index.d.mts +8 -8
- package/lib/components/index.d.mts +164 -164
- package/lib/composables/forwardRefs.mjs +4 -4
- package/lib/composables/forwardRefs.mjs.map +1 -1
- package/lib/composables/validation.mjs +2 -2
- package/lib/composables/validation.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +5 -5
- package/lib/labs/VDataTable/VDataTableVirtual.mjs +5 -5
- package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/labs/VDataTable/composables/select.mjs +6 -6
- package/lib/labs/VDataTable/composables/select.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +14 -14
- package/lib/labs/VSkeletonLoader/VSkeletonLoader.css +4 -0
- package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs +2 -1
- package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs.map +1 -1
- package/lib/labs/VSkeletonLoader/VSkeletonLoader.sass +4 -0
- package/lib/labs/VSkeletonLoader/index.d.mts +8 -8
- package/lib/labs/components.d.mts +8 -8
- package/lib/labs/date/date.mjs +1 -1
- package/lib/labs/date/date.mjs.map +1 -1
- 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 |
|
|
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 |
|
|
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 |
|
|
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 |
|
|
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:
|
|
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:
|
|
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 |
|
|
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 |
|
|
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 |
|
|
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 |
|
|
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:
|
|
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:
|
|
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
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
display: grid;
|
|
4
4
|
flex: none;
|
|
5
5
|
grid-template-areas: "prepend content append";
|
|
6
|
-
grid-template-columns: max-content auto
|
|
6
|
+
grid-template-columns: max-content 1fr auto;
|
|
7
7
|
outline: none;
|
|
8
8
|
max-width: 100%;
|
|
9
9
|
padding: 4px 16px;
|
|
@@ -123,6 +123,9 @@
|
|
|
123
123
|
.v-list-item--link {
|
|
124
124
|
cursor: pointer;
|
|
125
125
|
}
|
|
126
|
+
.v-navigation-drawer--rail:not(.v-navigation-drawer--expand-on-hover) .v-list-item .v-avatar, .v-navigation-drawer--rail.v-navigation-drawer--expand-on-hover:not(.v-navigation-drawer--is-hovering) .v-list-item .v-avatar {
|
|
127
|
+
--v-avatar-height: 24px;
|
|
128
|
+
}
|
|
126
129
|
|
|
127
130
|
.v-list-item__prepend {
|
|
128
131
|
align-items: center;
|
|
@@ -147,9 +150,14 @@
|
|
|
147
150
|
display: flex;
|
|
148
151
|
align-items: center;
|
|
149
152
|
grid-area: append;
|
|
153
|
+
overflow: hidden;
|
|
150
154
|
}
|
|
151
155
|
.v-list-item__append .v-list-item__spacer {
|
|
152
156
|
order: -1;
|
|
157
|
+
transition: 150ms width cubic-bezier(0.4, 0, 0.2, 1);
|
|
158
|
+
}
|
|
159
|
+
.v-navigation-drawer--rail:not(.v-navigation-drawer--expand-on-hover) .v-list-item__append .v-list-item__spacer, .v-navigation-drawer--rail.v-navigation-drawer--expand-on-hover:not(.v-navigation-drawer--is-hovering) .v-list-item__append .v-list-item__spacer {
|
|
160
|
+
width: 0;
|
|
153
161
|
}
|
|
154
162
|
.v-list-item__append > .v-badge ~ .v-list-item__spacer,
|
|
155
163
|
.v-list-item__append > .v-icon ~ .v-list-item__spacer,
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
display: grid
|
|
11
11
|
flex: none
|
|
12
12
|
grid-template-areas: "prepend content append"
|
|
13
|
-
grid-template-columns: max-content auto
|
|
13
|
+
grid-template-columns: max-content 1fr auto
|
|
14
14
|
outline: none
|
|
15
15
|
max-width: 100%
|
|
16
16
|
padding: $list-item-padding
|
|
@@ -58,6 +58,11 @@
|
|
|
58
58
|
&--link
|
|
59
59
|
cursor: pointer
|
|
60
60
|
|
|
61
|
+
.v-navigation-drawer--rail:not(.v-navigation-drawer--expand-on-hover) &,
|
|
62
|
+
.v-navigation-drawer--rail.v-navigation-drawer--expand-on-hover:not(.v-navigation-drawer--is-hovering) &
|
|
63
|
+
.v-avatar
|
|
64
|
+
--v-avatar-height: 24px
|
|
65
|
+
|
|
61
66
|
.v-list-item__prepend
|
|
62
67
|
align-items: center
|
|
63
68
|
align-self: center
|
|
@@ -81,9 +86,15 @@
|
|
|
81
86
|
display: flex
|
|
82
87
|
align-items: center
|
|
83
88
|
grid-area: append
|
|
89
|
+
overflow: hidden
|
|
84
90
|
|
|
85
91
|
.v-list-item__spacer
|
|
86
92
|
order: -1
|
|
93
|
+
transition: 150ms width settings.$standard-easing
|
|
94
|
+
|
|
95
|
+
.v-navigation-drawer--rail:not(.v-navigation-drawer--expand-on-hover) &,
|
|
96
|
+
.v-navigation-drawer--rail.v-navigation-drawer--expand-on-hover:not(.v-navigation-drawer--is-hovering) &
|
|
97
|
+
width: 0
|
|
87
98
|
|
|
88
99
|
> .v-badge,
|
|
89
100
|
> .v-icon,
|