@vuetify/nightly 3.6.3-dev.2024-05-06 → 3.6.3-dev.2024-05-29
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/CHANGELOG.md +4 -2
- package/dist/json/attributes.json +40 -0
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +144 -144
- package/dist/json/tags.json +11 -1
- package/dist/json/web-types.json +91 -1
- package/dist/vuetify-labs.css +1766 -1766
- package/dist/vuetify-labs.d.ts +147 -75
- package/dist/vuetify-labs.esm.js +11 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +11 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1119 -1119
- package/dist/vuetify.d.ts +183 -111
- package/dist/vuetify.esm.js +11 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +11 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/index.d.mts +6 -0
- package/lib/components/VAutocomplete/index.d.mts +12 -12
- package/lib/components/VBreadcrumbs/index.d.mts +8 -8
- package/lib/components/VBtn/VBtn.mjs +3 -1
- package/lib/components/VBtn/VBtn.mjs.map +1 -1
- package/lib/components/VBtn/index.d.mts +6 -0
- package/lib/components/VCombobox/index.d.mts +12 -12
- package/lib/components/VFab/index.d.mts +6 -0
- package/lib/components/VGrid/VContainer.mjs +6 -1
- package/lib/components/VGrid/VContainer.mjs.map +1 -1
- package/lib/components/VGrid/index.d.mts +36 -0
- package/lib/components/VList/index.d.mts +12 -12
- package/lib/components/VSelect/index.d.mts +12 -12
- package/lib/components/VTabs/index.d.mts +21 -3
- package/lib/components/index.d.mts +131 -59
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +52 -52
- package/lib/labs/VTreeview/index.d.mts +16 -16
- package/lib/labs/components.d.mts +16 -16
- package/package.json +1 -1
@@ -12,6 +12,12 @@ declare const VContainer: {
|
|
12
12
|
fluid: boolean;
|
13
13
|
} & {
|
14
14
|
class?: any;
|
15
|
+
width?: string | number | undefined;
|
16
|
+
height?: string | number | undefined;
|
17
|
+
maxHeight?: string | number | undefined;
|
18
|
+
maxWidth?: string | number | undefined;
|
19
|
+
minHeight?: string | number | undefined;
|
20
|
+
minWidth?: string | number | undefined;
|
15
21
|
} & {
|
16
22
|
$children?: vue.VNodeChild | {
|
17
23
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -27,6 +33,12 @@ declare const VContainer: {
|
|
27
33
|
fluid: boolean;
|
28
34
|
} & {
|
29
35
|
class?: any;
|
36
|
+
width?: string | number | undefined;
|
37
|
+
height?: string | number | undefined;
|
38
|
+
maxHeight?: string | number | undefined;
|
39
|
+
maxWidth?: string | number | undefined;
|
40
|
+
minHeight?: string | number | undefined;
|
41
|
+
minWidth?: string | number | undefined;
|
30
42
|
} & {
|
31
43
|
$children?: vue.VNodeChild | {
|
32
44
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -57,6 +69,12 @@ declare const VContainer: {
|
|
57
69
|
fluid: boolean;
|
58
70
|
} & {
|
59
71
|
class?: any;
|
72
|
+
width?: string | number | undefined;
|
73
|
+
height?: string | number | undefined;
|
74
|
+
maxHeight?: string | number | undefined;
|
75
|
+
maxWidth?: string | number | undefined;
|
76
|
+
minHeight?: string | number | undefined;
|
77
|
+
minWidth?: string | number | undefined;
|
60
78
|
} & {
|
61
79
|
$children?: vue.VNodeChild | {
|
62
80
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -80,6 +98,12 @@ declare const VContainer: {
|
|
80
98
|
fluid: boolean;
|
81
99
|
} & {
|
82
100
|
class?: any;
|
101
|
+
width?: string | number | undefined;
|
102
|
+
height?: string | number | undefined;
|
103
|
+
maxHeight?: string | number | undefined;
|
104
|
+
maxWidth?: string | number | undefined;
|
105
|
+
minHeight?: string | number | undefined;
|
106
|
+
minWidth?: string | number | undefined;
|
83
107
|
} & {
|
84
108
|
$children?: vue.VNodeChild | {
|
85
109
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -102,6 +126,12 @@ declare const VContainer: {
|
|
102
126
|
type: StringConstructor;
|
103
127
|
default: string;
|
104
128
|
};
|
129
|
+
height: (StringConstructor | NumberConstructor)[];
|
130
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
131
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
132
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
133
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
134
|
+
width: (StringConstructor | NumberConstructor)[];
|
105
135
|
class: vue.PropType<any>;
|
106
136
|
style: {
|
107
137
|
type: vue.PropType<vue.StyleValue>;
|
@@ -116,6 +146,12 @@ declare const VContainer: {
|
|
116
146
|
type: StringConstructor;
|
117
147
|
default: string;
|
118
148
|
};
|
149
|
+
height: (StringConstructor | NumberConstructor)[];
|
150
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
151
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
152
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
153
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
154
|
+
width: (StringConstructor | NumberConstructor)[];
|
119
155
|
class: vue.PropType<any>;
|
120
156
|
style: {
|
121
157
|
type: vue.PropType<vue.StyleValue>;
|
@@ -96,12 +96,12 @@ declare const VListItem: {
|
|
96
96
|
minWidth?: string | number | undefined;
|
97
97
|
elevation?: string | number | undefined;
|
98
98
|
baseColor?: string | undefined;
|
99
|
+
activeColor?: string | undefined;
|
99
100
|
prependIcon?: IconValue | undefined;
|
100
101
|
appendIcon?: IconValue | undefined;
|
101
102
|
activeClass?: string | undefined;
|
102
103
|
appendAvatar?: string | undefined;
|
103
104
|
prependAvatar?: string | undefined;
|
104
|
-
activeColor?: string | undefined;
|
105
105
|
subtitle?: string | number | undefined;
|
106
106
|
lines?: "one" | "two" | "three" | undefined;
|
107
107
|
} & {
|
@@ -173,12 +173,12 @@ declare const VListItem: {
|
|
173
173
|
minWidth?: string | number | undefined;
|
174
174
|
elevation?: string | number | undefined;
|
175
175
|
baseColor?: string | undefined;
|
176
|
+
activeColor?: string | undefined;
|
176
177
|
prependIcon?: IconValue | undefined;
|
177
178
|
appendIcon?: IconValue | undefined;
|
178
179
|
activeClass?: string | undefined;
|
179
180
|
appendAvatar?: string | undefined;
|
180
181
|
prependAvatar?: string | undefined;
|
181
|
-
activeColor?: string | undefined;
|
182
182
|
subtitle?: string | number | undefined;
|
183
183
|
lines?: "one" | "two" | "three" | undefined;
|
184
184
|
} & {
|
@@ -280,12 +280,12 @@ declare const VListItem: {
|
|
280
280
|
minWidth?: string | number | undefined;
|
281
281
|
elevation?: string | number | undefined;
|
282
282
|
baseColor?: string | undefined;
|
283
|
+
activeColor?: string | undefined;
|
283
284
|
prependIcon?: IconValue | undefined;
|
284
285
|
appendIcon?: IconValue | undefined;
|
285
286
|
activeClass?: string | undefined;
|
286
287
|
appendAvatar?: string | undefined;
|
287
288
|
prependAvatar?: string | undefined;
|
288
|
-
activeColor?: string | undefined;
|
289
289
|
subtitle?: string | number | undefined;
|
290
290
|
lines?: "one" | "two" | "three" | undefined;
|
291
291
|
} & {
|
@@ -376,12 +376,12 @@ declare const VListItem: {
|
|
376
376
|
minWidth?: string | number | undefined;
|
377
377
|
elevation?: string | number | undefined;
|
378
378
|
baseColor?: string | undefined;
|
379
|
+
activeColor?: string | undefined;
|
379
380
|
prependIcon?: IconValue | undefined;
|
380
381
|
appendIcon?: IconValue | undefined;
|
381
382
|
activeClass?: string | undefined;
|
382
383
|
appendAvatar?: string | undefined;
|
383
384
|
prependAvatar?: string | undefined;
|
384
|
-
activeColor?: string | undefined;
|
385
385
|
subtitle?: string | number | undefined;
|
386
386
|
lines?: "one" | "two" | "three" | undefined;
|
387
387
|
} & {
|
@@ -711,9 +711,9 @@ declare const VList: {
|
|
711
711
|
elevation?: string | number | undefined;
|
712
712
|
baseColor?: string | undefined;
|
713
713
|
bgColor?: string | undefined;
|
714
|
+
activeColor?: string | undefined;
|
714
715
|
activeClass?: string | undefined;
|
715
716
|
activeStrategy?: SelectStrategy | undefined;
|
716
|
-
activeColor?: string | undefined;
|
717
717
|
collapseIcon?: string | undefined;
|
718
718
|
expandIcon?: string | undefined;
|
719
719
|
} & {
|
@@ -792,9 +792,9 @@ declare const VList: {
|
|
792
792
|
elevation?: string | number | undefined;
|
793
793
|
baseColor?: string | undefined;
|
794
794
|
bgColor?: string | undefined;
|
795
|
+
activeColor?: string | undefined;
|
795
796
|
activeClass?: string | undefined;
|
796
797
|
activeStrategy?: SelectStrategy | undefined;
|
797
|
-
activeColor?: string | undefined;
|
798
798
|
collapseIcon?: string | undefined;
|
799
799
|
expandIcon?: string | undefined;
|
800
800
|
} & {
|
@@ -944,9 +944,9 @@ declare const VList: {
|
|
944
944
|
elevation?: string | number | undefined;
|
945
945
|
baseColor?: string | undefined;
|
946
946
|
bgColor?: string | undefined;
|
947
|
+
activeColor?: string | undefined;
|
947
948
|
activeClass?: string | undefined;
|
948
949
|
activeStrategy?: SelectStrategy | undefined;
|
949
|
-
activeColor?: string | undefined;
|
950
950
|
collapseIcon?: string | undefined;
|
951
951
|
expandIcon?: string | undefined;
|
952
952
|
} & {
|
@@ -1029,9 +1029,9 @@ declare const VList: {
|
|
1029
1029
|
elevation?: string | number | undefined;
|
1030
1030
|
baseColor?: string | undefined;
|
1031
1031
|
bgColor?: string | undefined;
|
1032
|
+
activeColor?: string | undefined;
|
1032
1033
|
activeClass?: string | undefined;
|
1033
1034
|
activeStrategy?: SelectStrategy | undefined;
|
1034
|
-
activeColor?: string | undefined;
|
1035
1035
|
collapseIcon?: string | undefined;
|
1036
1036
|
expandIcon?: string | undefined;
|
1037
1037
|
} & {
|
@@ -1398,9 +1398,9 @@ declare const VListGroup: {
|
|
1398
1398
|
value?: any;
|
1399
1399
|
color?: string | undefined;
|
1400
1400
|
baseColor?: string | undefined;
|
1401
|
+
activeColor?: string | undefined;
|
1401
1402
|
prependIcon?: IconValue | undefined;
|
1402
1403
|
appendIcon?: IconValue | undefined;
|
1403
|
-
activeColor?: string | undefined;
|
1404
1404
|
} & {
|
1405
1405
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
1406
1406
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -1437,9 +1437,9 @@ declare const VListGroup: {
|
|
1437
1437
|
value?: any;
|
1438
1438
|
color?: string | undefined;
|
1439
1439
|
baseColor?: string | undefined;
|
1440
|
+
activeColor?: string | undefined;
|
1440
1441
|
prependIcon?: IconValue | undefined;
|
1441
1442
|
appendIcon?: IconValue | undefined;
|
1442
|
-
activeColor?: string | undefined;
|
1443
1443
|
} & {
|
1444
1444
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
1445
1445
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -1498,9 +1498,9 @@ declare const VListGroup: {
|
|
1498
1498
|
value?: any;
|
1499
1499
|
color?: string | undefined;
|
1500
1500
|
baseColor?: string | undefined;
|
1501
|
+
activeColor?: string | undefined;
|
1501
1502
|
prependIcon?: IconValue | undefined;
|
1502
1503
|
appendIcon?: IconValue | undefined;
|
1503
|
-
activeColor?: string | undefined;
|
1504
1504
|
} & {
|
1505
1505
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
1506
1506
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -1548,9 +1548,9 @@ declare const VListGroup: {
|
|
1548
1548
|
value?: any;
|
1549
1549
|
color?: string | undefined;
|
1550
1550
|
baseColor?: string | undefined;
|
1551
|
+
activeColor?: string | undefined;
|
1551
1552
|
prependIcon?: IconValue | undefined;
|
1552
1553
|
appendIcon?: IconValue | undefined;
|
1553
|
-
activeColor?: string | undefined;
|
1554
1554
|
} & {
|
1555
1555
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
1556
1556
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -366,9 +366,9 @@ declare const VSelect: {
|
|
366
366
|
elevation?: string | number | undefined;
|
367
367
|
baseColor?: string | undefined;
|
368
368
|
bgColor?: string | undefined;
|
369
|
+
activeColor?: string | undefined;
|
369
370
|
activeClass?: string | undefined;
|
370
371
|
activeStrategy?: SelectStrategy | undefined;
|
371
|
-
activeColor?: string | undefined;
|
372
372
|
collapseIcon?: string | undefined;
|
373
373
|
expandIcon?: string | undefined;
|
374
374
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -421,9 +421,9 @@ declare const VSelect: {
|
|
421
421
|
elevation?: string | number | undefined;
|
422
422
|
baseColor?: string | undefined;
|
423
423
|
bgColor?: string | undefined;
|
424
|
+
activeColor?: string | undefined;
|
424
425
|
activeClass?: string | undefined;
|
425
426
|
activeStrategy?: SelectStrategy | undefined;
|
426
|
-
activeColor?: string | undefined;
|
427
427
|
collapseIcon?: string | undefined;
|
428
428
|
expandIcon?: string | undefined;
|
429
429
|
} & {
|
@@ -938,9 +938,9 @@ declare const VSelect: {
|
|
938
938
|
elevation?: string | number | undefined;
|
939
939
|
baseColor?: string | undefined;
|
940
940
|
bgColor?: string | undefined;
|
941
|
+
activeColor?: string | undefined;
|
941
942
|
activeClass?: string | undefined;
|
942
943
|
activeStrategy?: SelectStrategy | undefined;
|
943
|
-
activeColor?: string | undefined;
|
944
944
|
collapseIcon?: string | undefined;
|
945
945
|
expandIcon?: string | undefined;
|
946
946
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -993,9 +993,9 @@ declare const VSelect: {
|
|
993
993
|
elevation?: string | number | undefined;
|
994
994
|
baseColor?: string | undefined;
|
995
995
|
bgColor?: string | undefined;
|
996
|
+
activeColor?: string | undefined;
|
996
997
|
activeClass?: string | undefined;
|
997
998
|
activeStrategy?: SelectStrategy | undefined;
|
998
|
-
activeColor?: string | undefined;
|
999
999
|
collapseIcon?: string | undefined;
|
1000
1000
|
expandIcon?: string | undefined;
|
1001
1001
|
} & {
|
@@ -1623,9 +1623,9 @@ declare const VSelect: {
|
|
1623
1623
|
elevation?: string | number | undefined;
|
1624
1624
|
baseColor?: string | undefined;
|
1625
1625
|
bgColor?: string | undefined;
|
1626
|
+
activeColor?: string | undefined;
|
1626
1627
|
activeClass?: string | undefined;
|
1627
1628
|
activeStrategy?: SelectStrategy | undefined;
|
1628
|
-
activeColor?: string | undefined;
|
1629
1629
|
collapseIcon?: string | undefined;
|
1630
1630
|
expandIcon?: string | undefined;
|
1631
1631
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -1678,9 +1678,9 @@ declare const VSelect: {
|
|
1678
1678
|
elevation?: string | number | undefined;
|
1679
1679
|
baseColor?: string | undefined;
|
1680
1680
|
bgColor?: string | undefined;
|
1681
|
+
activeColor?: string | undefined;
|
1681
1682
|
activeClass?: string | undefined;
|
1682
1683
|
activeStrategy?: SelectStrategy | undefined;
|
1683
|
-
activeColor?: string | undefined;
|
1684
1684
|
collapseIcon?: string | undefined;
|
1685
1685
|
expandIcon?: string | undefined;
|
1686
1686
|
} & {
|
@@ -2243,9 +2243,9 @@ declare const VSelect: {
|
|
2243
2243
|
elevation?: string | number | undefined;
|
2244
2244
|
baseColor?: string | undefined;
|
2245
2245
|
bgColor?: string | undefined;
|
2246
|
+
activeColor?: string | undefined;
|
2246
2247
|
activeClass?: string | undefined;
|
2247
2248
|
activeStrategy?: SelectStrategy | undefined;
|
2248
|
-
activeColor?: string | undefined;
|
2249
2249
|
collapseIcon?: string | undefined;
|
2250
2250
|
expandIcon?: string | undefined;
|
2251
2251
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -2298,9 +2298,9 @@ declare const VSelect: {
|
|
2298
2298
|
elevation?: string | number | undefined;
|
2299
2299
|
baseColor?: string | undefined;
|
2300
2300
|
bgColor?: string | undefined;
|
2301
|
+
activeColor?: string | undefined;
|
2301
2302
|
activeClass?: string | undefined;
|
2302
2303
|
activeStrategy?: SelectStrategy | undefined;
|
2303
|
-
activeColor?: string | undefined;
|
2304
2304
|
collapseIcon?: string | undefined;
|
2305
2305
|
expandIcon?: string | undefined;
|
2306
2306
|
} & {
|
@@ -3072,9 +3072,9 @@ declare const VSelect: {
|
|
3072
3072
|
elevation?: string | number | undefined;
|
3073
3073
|
baseColor?: string | undefined;
|
3074
3074
|
bgColor?: string | undefined;
|
3075
|
+
activeColor?: string | undefined;
|
3075
3076
|
activeClass?: string | undefined;
|
3076
3077
|
activeStrategy?: SelectStrategy | undefined;
|
3077
|
-
activeColor?: string | undefined;
|
3078
3078
|
collapseIcon?: string | undefined;
|
3079
3079
|
expandIcon?: string | undefined;
|
3080
3080
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -3127,9 +3127,9 @@ declare const VSelect: {
|
|
3127
3127
|
elevation?: string | number | undefined;
|
3128
3128
|
baseColor?: string | undefined;
|
3129
3129
|
bgColor?: string | undefined;
|
3130
|
+
activeColor?: string | undefined;
|
3130
3131
|
activeClass?: string | undefined;
|
3131
3132
|
activeStrategy?: SelectStrategy | undefined;
|
3132
|
-
activeColor?: string | undefined;
|
3133
3133
|
collapseIcon?: string | undefined;
|
3134
3134
|
expandIcon?: string | undefined;
|
3135
3135
|
} & {
|
@@ -3744,9 +3744,9 @@ declare const VSelect: {
|
|
3744
3744
|
elevation?: string | number | undefined;
|
3745
3745
|
baseColor?: string | undefined;
|
3746
3746
|
bgColor?: string | undefined;
|
3747
|
+
activeColor?: string | undefined;
|
3747
3748
|
activeClass?: string | undefined;
|
3748
3749
|
activeStrategy?: SelectStrategy | undefined;
|
3749
|
-
activeColor?: string | undefined;
|
3750
3750
|
collapseIcon?: string | undefined;
|
3751
3751
|
expandIcon?: string | undefined;
|
3752
3752
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -3799,9 +3799,9 @@ declare const VSelect: {
|
|
3799
3799
|
elevation?: string | number | undefined;
|
3800
3800
|
baseColor?: string | undefined;
|
3801
3801
|
bgColor?: string | undefined;
|
3802
|
+
activeColor?: string | undefined;
|
3802
3803
|
activeClass?: string | undefined;
|
3803
3804
|
activeStrategy?: SelectStrategy | undefined;
|
3804
|
-
activeColor?: string | undefined;
|
3805
3805
|
collapseIcon?: string | undefined;
|
3806
3806
|
expandIcon?: string | undefined;
|
3807
3807
|
} & {
|
@@ -93,6 +93,7 @@ declare const VTab: {
|
|
93
93
|
minWidth?: string | number | undefined;
|
94
94
|
elevation?: string | number | undefined;
|
95
95
|
baseColor?: string | undefined;
|
96
|
+
activeColor?: string | undefined;
|
96
97
|
prependIcon?: IconValue | undefined;
|
97
98
|
appendIcon?: IconValue | undefined;
|
98
99
|
sliderColor?: string | undefined;
|
@@ -180,6 +181,7 @@ declare const VTab: {
|
|
180
181
|
location?: Anchor | undefined;
|
181
182
|
baseColor?: string | undefined;
|
182
183
|
selectedClass?: string | undefined;
|
184
|
+
activeColor?: string | undefined;
|
183
185
|
prependIcon?: IconValue | undefined;
|
184
186
|
appendIcon?: IconValue | undefined;
|
185
187
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
@@ -244,6 +246,7 @@ declare const VTab: {
|
|
244
246
|
location?: Anchor | undefined;
|
245
247
|
baseColor?: string | undefined;
|
246
248
|
selectedClass?: string | undefined;
|
249
|
+
activeColor?: string | undefined;
|
247
250
|
prependIcon?: IconValue | undefined;
|
248
251
|
appendIcon?: IconValue | undefined;
|
249
252
|
} & {
|
@@ -338,6 +341,7 @@ declare const VTab: {
|
|
338
341
|
location?: Anchor | undefined;
|
339
342
|
baseColor?: string | undefined;
|
340
343
|
selectedClass?: string | undefined;
|
344
|
+
activeColor?: string | undefined;
|
341
345
|
prependIcon?: IconValue | undefined;
|
342
346
|
appendIcon?: IconValue | undefined;
|
343
347
|
} & {
|
@@ -465,6 +469,7 @@ declare const VTab: {
|
|
465
469
|
location?: Anchor | undefined;
|
466
470
|
baseColor?: string | undefined;
|
467
471
|
selectedClass?: string | undefined;
|
472
|
+
activeColor?: string | undefined;
|
468
473
|
prependIcon?: IconValue | undefined;
|
469
474
|
appendIcon?: IconValue | undefined;
|
470
475
|
} & {
|
@@ -491,7 +496,7 @@ declare const VTab: {
|
|
491
496
|
}) => any) | undefined;
|
492
497
|
}, "group"> & vue.ShallowUnwrapRef<{
|
493
498
|
group: GroupItemProvide | null;
|
494
|
-
}> & {} & vue.ComponentCustomProperties & {}, "class" | "text" | "value" | "width" | "height" | "theme" | "key" | "href" | "color" | "v-slot:default" | "$children" | "v-slots" | "loading" | "icon" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "to" | "border" | "position" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "elevation" | "v-slot:prepend" | "v-slot:append" | "location" | "baseColor" | "selectedClass" | "onGroup:selected" | "prependIcon" | "appendIcon" | ("symbol" | "flat" | "replace" | "style" | "size" | "active" | "disabled" | "tag" | "readonly" | "rounded" | "variant" | "block" | "exact" | "tile" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
499
|
+
}> & {} & vue.ComponentCustomProperties & {}, "class" | "text" | "value" | "width" | "height" | "theme" | "key" | "href" | "color" | "v-slot:default" | "$children" | "v-slots" | "loading" | "icon" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "to" | "border" | "position" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "elevation" | "v-slot:prepend" | "v-slot:append" | "location" | "baseColor" | "selectedClass" | "onGroup:selected" | "activeColor" | "prependIcon" | "appendIcon" | ("symbol" | "flat" | "replace" | "style" | "size" | "active" | "disabled" | "tag" | "readonly" | "rounded" | "variant" | "block" | "exact" | "tile" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
495
500
|
replace: boolean;
|
496
501
|
fixed: boolean;
|
497
502
|
style: vue.StyleValue;
|
@@ -531,6 +536,7 @@ declare const VTab: {
|
|
531
536
|
minWidth?: string | number | undefined;
|
532
537
|
elevation?: string | number | undefined;
|
533
538
|
baseColor?: string | undefined;
|
539
|
+
activeColor?: string | undefined;
|
534
540
|
prependIcon?: IconValue | undefined;
|
535
541
|
appendIcon?: IconValue | undefined;
|
536
542
|
sliderColor?: string | undefined;
|
@@ -633,6 +639,7 @@ declare const VTab: {
|
|
633
639
|
minWidth?: string | number | undefined;
|
634
640
|
elevation?: string | number | undefined;
|
635
641
|
baseColor?: string | undefined;
|
642
|
+
activeColor?: string | undefined;
|
636
643
|
prependIcon?: IconValue | undefined;
|
637
644
|
appendIcon?: IconValue | undefined;
|
638
645
|
sliderColor?: string | undefined;
|
@@ -720,6 +727,7 @@ declare const VTab: {
|
|
720
727
|
location?: Anchor | undefined;
|
721
728
|
baseColor?: string | undefined;
|
722
729
|
selectedClass?: string | undefined;
|
730
|
+
activeColor?: string | undefined;
|
723
731
|
prependIcon?: IconValue | undefined;
|
724
732
|
appendIcon?: IconValue | undefined;
|
725
733
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
@@ -784,6 +792,7 @@ declare const VTab: {
|
|
784
792
|
location?: Anchor | undefined;
|
785
793
|
baseColor?: string | undefined;
|
786
794
|
selectedClass?: string | undefined;
|
795
|
+
activeColor?: string | undefined;
|
787
796
|
prependIcon?: IconValue | undefined;
|
788
797
|
appendIcon?: IconValue | undefined;
|
789
798
|
} & {
|
@@ -878,6 +887,7 @@ declare const VTab: {
|
|
878
887
|
location?: Anchor | undefined;
|
879
888
|
baseColor?: string | undefined;
|
880
889
|
selectedClass?: string | undefined;
|
890
|
+
activeColor?: string | undefined;
|
881
891
|
prependIcon?: IconValue | undefined;
|
882
892
|
appendIcon?: IconValue | undefined;
|
883
893
|
} & {
|
@@ -1005,6 +1015,7 @@ declare const VTab: {
|
|
1005
1015
|
location?: Anchor | undefined;
|
1006
1016
|
baseColor?: string | undefined;
|
1007
1017
|
selectedClass?: string | undefined;
|
1018
|
+
activeColor?: string | undefined;
|
1008
1019
|
prependIcon?: IconValue | undefined;
|
1009
1020
|
appendIcon?: IconValue | undefined;
|
1010
1021
|
} & {
|
@@ -1031,7 +1042,7 @@ declare const VTab: {
|
|
1031
1042
|
}) => any) | undefined;
|
1032
1043
|
}, "group"> & vue.ShallowUnwrapRef<{
|
1033
1044
|
group: GroupItemProvide | null;
|
1034
|
-
}> & {} & vue.ComponentCustomProperties & {}, "class" | "text" | "value" | "width" | "height" | "theme" | "key" | "href" | "color" | "v-slot:default" | "$children" | "v-slots" | "loading" | "icon" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "to" | "border" | "position" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "elevation" | "v-slot:prepend" | "v-slot:append" | "location" | "baseColor" | "selectedClass" | "onGroup:selected" | "prependIcon" | "appendIcon" | ("symbol" | "flat" | "replace" | "style" | "size" | "active" | "disabled" | "tag" | "readonly" | "rounded" | "variant" | "block" | "exact" | "tile" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, {}, {}, {}, {
|
1045
|
+
}> & {} & vue.ComponentCustomProperties & {}, "class" | "text" | "value" | "width" | "height" | "theme" | "key" | "href" | "color" | "v-slot:default" | "$children" | "v-slots" | "loading" | "icon" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "to" | "border" | "position" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "elevation" | "v-slot:prepend" | "v-slot:append" | "location" | "baseColor" | "selectedClass" | "onGroup:selected" | "activeColor" | "prependIcon" | "appendIcon" | ("symbol" | "flat" | "replace" | "style" | "size" | "active" | "disabled" | "tag" | "readonly" | "rounded" | "variant" | "block" | "exact" | "tile" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, {}, {}, {}, {
|
1035
1046
|
replace: boolean;
|
1036
1047
|
fixed: boolean;
|
1037
1048
|
style: vue.StyleValue;
|
@@ -1096,6 +1107,7 @@ declare const VTab: {
|
|
1096
1107
|
minWidth?: string | number | undefined;
|
1097
1108
|
elevation?: string | number | undefined;
|
1098
1109
|
baseColor?: string | undefined;
|
1110
|
+
activeColor?: string | undefined;
|
1099
1111
|
prependIcon?: IconValue | undefined;
|
1100
1112
|
appendIcon?: IconValue | undefined;
|
1101
1113
|
sliderColor?: string | undefined;
|
@@ -1183,6 +1195,7 @@ declare const VTab: {
|
|
1183
1195
|
location?: Anchor | undefined;
|
1184
1196
|
baseColor?: string | undefined;
|
1185
1197
|
selectedClass?: string | undefined;
|
1198
|
+
activeColor?: string | undefined;
|
1186
1199
|
prependIcon?: IconValue | undefined;
|
1187
1200
|
appendIcon?: IconValue | undefined;
|
1188
1201
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
@@ -1247,6 +1260,7 @@ declare const VTab: {
|
|
1247
1260
|
location?: Anchor | undefined;
|
1248
1261
|
baseColor?: string | undefined;
|
1249
1262
|
selectedClass?: string | undefined;
|
1263
|
+
activeColor?: string | undefined;
|
1250
1264
|
prependIcon?: IconValue | undefined;
|
1251
1265
|
appendIcon?: IconValue | undefined;
|
1252
1266
|
} & {
|
@@ -1341,6 +1355,7 @@ declare const VTab: {
|
|
1341
1355
|
location?: Anchor | undefined;
|
1342
1356
|
baseColor?: string | undefined;
|
1343
1357
|
selectedClass?: string | undefined;
|
1358
|
+
activeColor?: string | undefined;
|
1344
1359
|
prependIcon?: IconValue | undefined;
|
1345
1360
|
appendIcon?: IconValue | undefined;
|
1346
1361
|
} & {
|
@@ -1468,6 +1483,7 @@ declare const VTab: {
|
|
1468
1483
|
location?: Anchor | undefined;
|
1469
1484
|
baseColor?: string | undefined;
|
1470
1485
|
selectedClass?: string | undefined;
|
1486
|
+
activeColor?: string | undefined;
|
1471
1487
|
prependIcon?: IconValue | undefined;
|
1472
1488
|
appendIcon?: IconValue | undefined;
|
1473
1489
|
} & {
|
@@ -1494,7 +1510,7 @@ declare const VTab: {
|
|
1494
1510
|
}) => any) | undefined;
|
1495
1511
|
}, "group"> & vue.ShallowUnwrapRef<{
|
1496
1512
|
group: GroupItemProvide | null;
|
1497
|
-
}> & {} & vue.ComponentCustomProperties & {}, "class" | "text" | "value" | "width" | "height" | "theme" | "key" | "href" | "color" | "v-slot:default" | "$children" | "v-slots" | "loading" | "icon" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "to" | "border" | "position" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "elevation" | "v-slot:prepend" | "v-slot:append" | "location" | "baseColor" | "selectedClass" | "onGroup:selected" | "prependIcon" | "appendIcon" | ("symbol" | "flat" | "replace" | "style" | "size" | "active" | "disabled" | "tag" | "readonly" | "rounded" | "variant" | "block" | "exact" | "tile" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
1513
|
+
}> & {} & vue.ComponentCustomProperties & {}, "class" | "text" | "value" | "width" | "height" | "theme" | "key" | "href" | "color" | "v-slot:default" | "$children" | "v-slots" | "loading" | "icon" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "to" | "border" | "position" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "elevation" | "v-slot:prepend" | "v-slot:append" | "location" | "baseColor" | "selectedClass" | "onGroup:selected" | "activeColor" | "prependIcon" | "appendIcon" | ("symbol" | "flat" | "replace" | "style" | "size" | "active" | "disabled" | "tag" | "readonly" | "rounded" | "variant" | "block" | "exact" | "tile" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
1498
1514
|
replace: boolean;
|
1499
1515
|
fixed: boolean;
|
1500
1516
|
style: vue.StyleValue;
|
@@ -1594,6 +1610,7 @@ declare const VTab: {
|
|
1594
1610
|
type: PropType<string>;
|
1595
1611
|
default: string;
|
1596
1612
|
};
|
1613
|
+
activeColor: StringConstructor;
|
1597
1614
|
prependIcon: PropType<IconValue>;
|
1598
1615
|
appendIcon: PropType<IconValue>;
|
1599
1616
|
slim: BooleanConstructor;
|
@@ -1677,6 +1694,7 @@ declare const VTab: {
|
|
1677
1694
|
type: PropType<string>;
|
1678
1695
|
default: string;
|
1679
1696
|
};
|
1697
|
+
activeColor: StringConstructor;
|
1680
1698
|
prependIcon: PropType<IconValue>;
|
1681
1699
|
appendIcon: PropType<IconValue>;
|
1682
1700
|
slim: BooleanConstructor;
|