@vuetify/nightly 3.6.3-dev.2024-05-06 → 3.6.3-dev.2024-05-14
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 +3 -2
- package/dist/json/attributes.json +16 -0
- package/dist/json/importMap-labs.json +22 -22
- package/dist/json/importMap.json +138 -138
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +37 -1
- package/dist/vuetify-labs.css +2041 -2041
- package/dist/vuetify-labs.d.ts +111 -75
- package/dist/vuetify-labs.esm.js +6 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +6 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +994 -994
- package/dist/vuetify.d.ts +144 -108
- package/dist/vuetify.esm.js +6 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +6 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +7 -7
- 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/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 +95 -59
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +49 -49
- package/lib/labs/VTreeview/index.d.mts +16 -16
- package/lib/labs/components.d.mts +16 -16
- package/package.json +1 -1
@@ -1487,6 +1487,7 @@ declare const VAppBarNavIcon: {
|
|
1487
1487
|
location?: Anchor | undefined;
|
1488
1488
|
baseColor?: string | undefined;
|
1489
1489
|
selectedClass?: string | undefined;
|
1490
|
+
activeColor?: string | undefined;
|
1490
1491
|
prependIcon?: IconValue | undefined;
|
1491
1492
|
appendIcon?: IconValue | undefined;
|
1492
1493
|
} & {
|
@@ -1550,6 +1551,7 @@ declare const VAppBarNavIcon: {
|
|
1550
1551
|
location?: Anchor | undefined;
|
1551
1552
|
baseColor?: string | undefined;
|
1552
1553
|
selectedClass?: string | undefined;
|
1554
|
+
activeColor?: string | undefined;
|
1553
1555
|
prependIcon?: IconValue | undefined;
|
1554
1556
|
appendIcon?: IconValue | undefined;
|
1555
1557
|
} & {
|
@@ -1655,6 +1657,7 @@ declare const VAppBarNavIcon: {
|
|
1655
1657
|
location?: Anchor | undefined;
|
1656
1658
|
baseColor?: string | undefined;
|
1657
1659
|
selectedClass?: string | undefined;
|
1660
|
+
activeColor?: string | undefined;
|
1658
1661
|
prependIcon?: IconValue | undefined;
|
1659
1662
|
appendIcon?: IconValue | undefined;
|
1660
1663
|
} & {
|
@@ -1744,6 +1747,7 @@ declare const VAppBarNavIcon: {
|
|
1744
1747
|
location?: Anchor | undefined;
|
1745
1748
|
baseColor?: string | undefined;
|
1746
1749
|
selectedClass?: string | undefined;
|
1750
|
+
activeColor?: string | undefined;
|
1747
1751
|
prependIcon?: IconValue | undefined;
|
1748
1752
|
appendIcon?: IconValue | undefined;
|
1749
1753
|
} & {
|
@@ -1867,6 +1871,7 @@ declare const VAppBarNavIcon: {
|
|
1867
1871
|
type: BooleanConstructor;
|
1868
1872
|
default: undefined;
|
1869
1873
|
};
|
1874
|
+
activeColor: StringConstructor;
|
1870
1875
|
baseColor: StringConstructor;
|
1871
1876
|
symbol: {
|
1872
1877
|
type: null;
|
@@ -1958,6 +1963,7 @@ declare const VAppBarNavIcon: {
|
|
1958
1963
|
type: BooleanConstructor;
|
1959
1964
|
default: undefined;
|
1960
1965
|
};
|
1966
|
+
activeColor: StringConstructor;
|
1961
1967
|
baseColor: StringConstructor;
|
1962
1968
|
symbol: {
|
1963
1969
|
type: null;
|
@@ -3917,12 +3923,12 @@ declare const VListItem: {
|
|
3917
3923
|
minWidth?: string | number | undefined;
|
3918
3924
|
elevation?: string | number | undefined;
|
3919
3925
|
baseColor?: string | undefined;
|
3926
|
+
activeColor?: string | undefined;
|
3920
3927
|
prependIcon?: IconValue | undefined;
|
3921
3928
|
appendIcon?: IconValue | undefined;
|
3922
3929
|
activeClass?: string | undefined;
|
3923
3930
|
appendAvatar?: string | undefined;
|
3924
3931
|
prependAvatar?: string | undefined;
|
3925
|
-
activeColor?: string | undefined;
|
3926
3932
|
subtitle?: string | number | undefined;
|
3927
3933
|
lines?: "one" | "two" | "three" | undefined;
|
3928
3934
|
} & {
|
@@ -3994,12 +4000,12 @@ declare const VListItem: {
|
|
3994
4000
|
minWidth?: string | number | undefined;
|
3995
4001
|
elevation?: string | number | undefined;
|
3996
4002
|
baseColor?: string | undefined;
|
4003
|
+
activeColor?: string | undefined;
|
3997
4004
|
prependIcon?: IconValue | undefined;
|
3998
4005
|
appendIcon?: IconValue | undefined;
|
3999
4006
|
activeClass?: string | undefined;
|
4000
4007
|
appendAvatar?: string | undefined;
|
4001
4008
|
prependAvatar?: string | undefined;
|
4002
|
-
activeColor?: string | undefined;
|
4003
4009
|
subtitle?: string | number | undefined;
|
4004
4010
|
lines?: "one" | "two" | "three" | undefined;
|
4005
4011
|
} & {
|
@@ -4101,12 +4107,12 @@ declare const VListItem: {
|
|
4101
4107
|
minWidth?: string | number | undefined;
|
4102
4108
|
elevation?: string | number | undefined;
|
4103
4109
|
baseColor?: string | undefined;
|
4110
|
+
activeColor?: string | undefined;
|
4104
4111
|
prependIcon?: IconValue | undefined;
|
4105
4112
|
appendIcon?: IconValue | undefined;
|
4106
4113
|
activeClass?: string | undefined;
|
4107
4114
|
appendAvatar?: string | undefined;
|
4108
4115
|
prependAvatar?: string | undefined;
|
4109
|
-
activeColor?: string | undefined;
|
4110
4116
|
subtitle?: string | number | undefined;
|
4111
4117
|
lines?: "one" | "two" | "three" | undefined;
|
4112
4118
|
} & {
|
@@ -4197,12 +4203,12 @@ declare const VListItem: {
|
|
4197
4203
|
minWidth?: string | number | undefined;
|
4198
4204
|
elevation?: string | number | undefined;
|
4199
4205
|
baseColor?: string | undefined;
|
4206
|
+
activeColor?: string | undefined;
|
4200
4207
|
prependIcon?: IconValue | undefined;
|
4201
4208
|
appendIcon?: IconValue | undefined;
|
4202
4209
|
activeClass?: string | undefined;
|
4203
4210
|
appendAvatar?: string | undefined;
|
4204
4211
|
prependAvatar?: string | undefined;
|
4205
|
-
activeColor?: string | undefined;
|
4206
4212
|
subtitle?: string | number | undefined;
|
4207
4213
|
lines?: "one" | "two" | "three" | undefined;
|
4208
4214
|
} & {
|
@@ -4609,9 +4615,9 @@ declare const VAutocomplete: {
|
|
4609
4615
|
elevation?: string | number | undefined;
|
4610
4616
|
baseColor?: string | undefined;
|
4611
4617
|
bgColor?: string | undefined;
|
4618
|
+
activeColor?: string | undefined;
|
4612
4619
|
activeClass?: string | undefined;
|
4613
4620
|
activeStrategy?: SelectStrategy | undefined;
|
4614
|
-
activeColor?: string | undefined;
|
4615
4621
|
collapseIcon?: string | undefined;
|
4616
4622
|
expandIcon?: string | undefined;
|
4617
4623
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -4664,9 +4670,9 @@ declare const VAutocomplete: {
|
|
4664
4670
|
elevation?: string | number | undefined;
|
4665
4671
|
baseColor?: string | undefined;
|
4666
4672
|
bgColor?: string | undefined;
|
4673
|
+
activeColor?: string | undefined;
|
4667
4674
|
activeClass?: string | undefined;
|
4668
4675
|
activeStrategy?: SelectStrategy | undefined;
|
4669
|
-
activeColor?: string | undefined;
|
4670
4676
|
collapseIcon?: string | undefined;
|
4671
4677
|
expandIcon?: string | undefined;
|
4672
4678
|
} & {
|
@@ -5189,9 +5195,9 @@ declare const VAutocomplete: {
|
|
5189
5195
|
elevation?: string | number | undefined;
|
5190
5196
|
baseColor?: string | undefined;
|
5191
5197
|
bgColor?: string | undefined;
|
5198
|
+
activeColor?: string | undefined;
|
5192
5199
|
activeClass?: string | undefined;
|
5193
5200
|
activeStrategy?: SelectStrategy | undefined;
|
5194
|
-
activeColor?: string | undefined;
|
5195
5201
|
collapseIcon?: string | undefined;
|
5196
5202
|
expandIcon?: string | undefined;
|
5197
5203
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -5244,9 +5250,9 @@ declare const VAutocomplete: {
|
|
5244
5250
|
elevation?: string | number | undefined;
|
5245
5251
|
baseColor?: string | undefined;
|
5246
5252
|
bgColor?: string | undefined;
|
5253
|
+
activeColor?: string | undefined;
|
5247
5254
|
activeClass?: string | undefined;
|
5248
5255
|
activeStrategy?: SelectStrategy | undefined;
|
5249
|
-
activeColor?: string | undefined;
|
5250
5256
|
collapseIcon?: string | undefined;
|
5251
5257
|
expandIcon?: string | undefined;
|
5252
5258
|
} & {
|
@@ -5883,9 +5889,9 @@ declare const VAutocomplete: {
|
|
5883
5889
|
elevation?: string | number | undefined;
|
5884
5890
|
baseColor?: string | undefined;
|
5885
5891
|
bgColor?: string | undefined;
|
5892
|
+
activeColor?: string | undefined;
|
5886
5893
|
activeClass?: string | undefined;
|
5887
5894
|
activeStrategy?: SelectStrategy | undefined;
|
5888
|
-
activeColor?: string | undefined;
|
5889
5895
|
collapseIcon?: string | undefined;
|
5890
5896
|
expandIcon?: string | undefined;
|
5891
5897
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -5938,9 +5944,9 @@ declare const VAutocomplete: {
|
|
5938
5944
|
elevation?: string | number | undefined;
|
5939
5945
|
baseColor?: string | undefined;
|
5940
5946
|
bgColor?: string | undefined;
|
5947
|
+
activeColor?: string | undefined;
|
5941
5948
|
activeClass?: string | undefined;
|
5942
5949
|
activeStrategy?: SelectStrategy | undefined;
|
5943
|
-
activeColor?: string | undefined;
|
5944
5950
|
collapseIcon?: string | undefined;
|
5945
5951
|
expandIcon?: string | undefined;
|
5946
5952
|
} & {
|
@@ -6512,9 +6518,9 @@ declare const VAutocomplete: {
|
|
6512
6518
|
elevation?: string | number | undefined;
|
6513
6519
|
baseColor?: string | undefined;
|
6514
6520
|
bgColor?: string | undefined;
|
6521
|
+
activeColor?: string | undefined;
|
6515
6522
|
activeClass?: string | undefined;
|
6516
6523
|
activeStrategy?: SelectStrategy | undefined;
|
6517
|
-
activeColor?: string | undefined;
|
6518
6524
|
collapseIcon?: string | undefined;
|
6519
6525
|
expandIcon?: string | undefined;
|
6520
6526
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -6567,9 +6573,9 @@ declare const VAutocomplete: {
|
|
6567
6573
|
elevation?: string | number | undefined;
|
6568
6574
|
baseColor?: string | undefined;
|
6569
6575
|
bgColor?: string | undefined;
|
6576
|
+
activeColor?: string | undefined;
|
6570
6577
|
activeClass?: string | undefined;
|
6571
6578
|
activeStrategy?: SelectStrategy | undefined;
|
6572
|
-
activeColor?: string | undefined;
|
6573
6579
|
collapseIcon?: string | undefined;
|
6574
6580
|
expandIcon?: string | undefined;
|
6575
6581
|
} & {
|
@@ -7342,9 +7348,9 @@ declare const VAutocomplete: {
|
|
7342
7348
|
elevation?: string | number | undefined;
|
7343
7349
|
baseColor?: string | undefined;
|
7344
7350
|
bgColor?: string | undefined;
|
7351
|
+
activeColor?: string | undefined;
|
7345
7352
|
activeClass?: string | undefined;
|
7346
7353
|
activeStrategy?: SelectStrategy | undefined;
|
7347
|
-
activeColor?: string | undefined;
|
7348
7354
|
collapseIcon?: string | undefined;
|
7349
7355
|
expandIcon?: string | undefined;
|
7350
7356
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -7397,9 +7403,9 @@ declare const VAutocomplete: {
|
|
7397
7403
|
elevation?: string | number | undefined;
|
7398
7404
|
baseColor?: string | undefined;
|
7399
7405
|
bgColor?: string | undefined;
|
7406
|
+
activeColor?: string | undefined;
|
7400
7407
|
activeClass?: string | undefined;
|
7401
7408
|
activeStrategy?: SelectStrategy | undefined;
|
7402
|
-
activeColor?: string | undefined;
|
7403
7409
|
collapseIcon?: string | undefined;
|
7404
7410
|
expandIcon?: string | undefined;
|
7405
7411
|
} & {
|
@@ -8026,9 +8032,9 @@ declare const VAutocomplete: {
|
|
8026
8032
|
elevation?: string | number | undefined;
|
8027
8033
|
baseColor?: string | undefined;
|
8028
8034
|
bgColor?: string | undefined;
|
8035
|
+
activeColor?: string | undefined;
|
8029
8036
|
activeClass?: string | undefined;
|
8030
8037
|
activeStrategy?: SelectStrategy | undefined;
|
8031
|
-
activeColor?: string | undefined;
|
8032
8038
|
collapseIcon?: string | undefined;
|
8033
8039
|
expandIcon?: string | undefined;
|
8034
8040
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -8081,9 +8087,9 @@ declare const VAutocomplete: {
|
|
8081
8087
|
elevation?: string | number | undefined;
|
8082
8088
|
baseColor?: string | undefined;
|
8083
8089
|
bgColor?: string | undefined;
|
8090
|
+
activeColor?: string | undefined;
|
8084
8091
|
activeClass?: string | undefined;
|
8085
8092
|
activeStrategy?: SelectStrategy | undefined;
|
8086
|
-
activeColor?: string | undefined;
|
8087
8093
|
collapseIcon?: string | undefined;
|
8088
8094
|
expandIcon?: string | undefined;
|
8089
8095
|
} & {
|
@@ -10722,8 +10728,8 @@ declare const VBreadcrumbs: {
|
|
10722
10728
|
icon?: IconValue | undefined;
|
10723
10729
|
rounded?: string | number | boolean | undefined;
|
10724
10730
|
bgColor?: string | undefined;
|
10725
|
-
activeClass?: string | undefined;
|
10726
10731
|
activeColor?: string | undefined;
|
10732
|
+
activeClass?: string | undefined;
|
10727
10733
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "v-slot:default" | "$children" | "v-slots" | "items" | "v-slot:title" | "v-slot:prepend" | "v-slot:divider" | "v-slot:item">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
10728
10734
|
style: vue.StyleValue;
|
10729
10735
|
disabled: boolean;
|
@@ -10737,8 +10743,8 @@ declare const VBreadcrumbs: {
|
|
10737
10743
|
icon?: IconValue | undefined;
|
10738
10744
|
rounded?: string | number | boolean | undefined;
|
10739
10745
|
bgColor?: string | undefined;
|
10740
|
-
activeClass?: string | undefined;
|
10741
10746
|
activeColor?: string | undefined;
|
10747
|
+
activeClass?: string | undefined;
|
10742
10748
|
}, {
|
10743
10749
|
style: vue.StyleValue;
|
10744
10750
|
disabled: boolean;
|
@@ -10792,8 +10798,8 @@ declare const VBreadcrumbs: {
|
|
10792
10798
|
icon?: IconValue | undefined;
|
10793
10799
|
rounded?: string | number | boolean | undefined;
|
10794
10800
|
bgColor?: string | undefined;
|
10795
|
-
activeClass?: string | undefined;
|
10796
10801
|
activeColor?: string | undefined;
|
10802
|
+
activeClass?: string | undefined;
|
10797
10803
|
}, {}, {}, {}, {}, {
|
10798
10804
|
style: vue.StyleValue;
|
10799
10805
|
disabled: boolean;
|
@@ -10819,8 +10825,8 @@ declare const VBreadcrumbs: {
|
|
10819
10825
|
icon?: IconValue | undefined;
|
10820
10826
|
rounded?: string | number | boolean | undefined;
|
10821
10827
|
bgColor?: string | undefined;
|
10822
|
-
activeClass?: string | undefined;
|
10823
10828
|
activeColor?: string | undefined;
|
10829
|
+
activeClass?: string | undefined;
|
10824
10830
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "v-slot:default" | "$children" | "v-slots" | "items" | "v-slot:title" | "v-slot:prepend" | "v-slot:divider" | "v-slot:item">, string, {
|
10825
10831
|
style: vue.StyleValue;
|
10826
10832
|
disabled: boolean;
|
@@ -10979,8 +10985,8 @@ declare const VBreadcrumbsItem: {
|
|
10979
10985
|
href?: string | undefined;
|
10980
10986
|
color?: string | undefined;
|
10981
10987
|
to?: vue_router.RouteLocationRaw | undefined;
|
10982
|
-
activeClass?: string | undefined;
|
10983
10988
|
activeColor?: string | undefined;
|
10989
|
+
activeClass?: string | undefined;
|
10984
10990
|
} & {
|
10985
10991
|
$children?: vue.VNodeChild | {
|
10986
10992
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -11003,8 +11009,8 @@ declare const VBreadcrumbsItem: {
|
|
11003
11009
|
href?: string | undefined;
|
11004
11010
|
color?: string | undefined;
|
11005
11011
|
to?: vue_router.RouteLocationRaw | undefined;
|
11006
|
-
activeClass?: string | undefined;
|
11007
11012
|
activeColor?: string | undefined;
|
11013
|
+
activeClass?: string | undefined;
|
11008
11014
|
} & {
|
11009
11015
|
$children?: vue.VNodeChild | {
|
11010
11016
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -11045,8 +11051,8 @@ declare const VBreadcrumbsItem: {
|
|
11045
11051
|
href?: string | undefined;
|
11046
11052
|
color?: string | undefined;
|
11047
11053
|
to?: vue_router.RouteLocationRaw | undefined;
|
11048
|
-
activeClass?: string | undefined;
|
11049
11054
|
activeColor?: string | undefined;
|
11055
|
+
activeClass?: string | undefined;
|
11050
11056
|
} & {
|
11051
11057
|
$children?: vue.VNodeChild | {
|
11052
11058
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -11080,8 +11086,8 @@ declare const VBreadcrumbsItem: {
|
|
11080
11086
|
href?: string | undefined;
|
11081
11087
|
color?: string | undefined;
|
11082
11088
|
to?: vue_router.RouteLocationRaw | undefined;
|
11083
|
-
activeClass?: string | undefined;
|
11084
11089
|
activeColor?: string | undefined;
|
11090
|
+
activeClass?: string | undefined;
|
11085
11091
|
} & {
|
11086
11092
|
$children?: vue.VNodeChild | {
|
11087
11093
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -11294,6 +11300,7 @@ declare const VBtn: {
|
|
11294
11300
|
location?: Anchor | undefined;
|
11295
11301
|
baseColor?: string | undefined;
|
11296
11302
|
selectedClass?: string | undefined;
|
11303
|
+
activeColor?: string | undefined;
|
11297
11304
|
prependIcon?: IconValue | undefined;
|
11298
11305
|
appendIcon?: IconValue | undefined;
|
11299
11306
|
} & {
|
@@ -11367,6 +11374,7 @@ declare const VBtn: {
|
|
11367
11374
|
location?: Anchor | undefined;
|
11368
11375
|
baseColor?: string | undefined;
|
11369
11376
|
selectedClass?: string | undefined;
|
11377
|
+
activeColor?: string | undefined;
|
11370
11378
|
prependIcon?: IconValue | undefined;
|
11371
11379
|
appendIcon?: IconValue | undefined;
|
11372
11380
|
} & {
|
@@ -11475,6 +11483,7 @@ declare const VBtn: {
|
|
11475
11483
|
location?: Anchor | undefined;
|
11476
11484
|
baseColor?: string | undefined;
|
11477
11485
|
selectedClass?: string | undefined;
|
11486
|
+
activeColor?: string | undefined;
|
11478
11487
|
prependIcon?: IconValue | undefined;
|
11479
11488
|
appendIcon?: IconValue | undefined;
|
11480
11489
|
} & {
|
@@ -11569,6 +11578,7 @@ declare const VBtn: {
|
|
11569
11578
|
location?: Anchor | undefined;
|
11570
11579
|
baseColor?: string | undefined;
|
11571
11580
|
selectedClass?: string | undefined;
|
11581
|
+
activeColor?: string | undefined;
|
11572
11582
|
prependIcon?: IconValue | undefined;
|
11573
11583
|
appendIcon?: IconValue | undefined;
|
11574
11584
|
} & {
|
@@ -11698,6 +11708,7 @@ declare const VBtn: {
|
|
11698
11708
|
type: BooleanConstructor;
|
11699
11709
|
default: undefined;
|
11700
11710
|
};
|
11711
|
+
activeColor: StringConstructor;
|
11701
11712
|
baseColor: StringConstructor;
|
11702
11713
|
symbol: {
|
11703
11714
|
type: null;
|
@@ -11783,6 +11794,7 @@ declare const VBtn: {
|
|
11783
11794
|
type: BooleanConstructor;
|
11784
11795
|
default: undefined;
|
11785
11796
|
};
|
11797
|
+
activeColor: StringConstructor;
|
11786
11798
|
baseColor: StringConstructor;
|
11787
11799
|
symbol: {
|
11788
11800
|
type: null;
|
@@ -18469,9 +18481,9 @@ declare const VCombobox: {
|
|
18469
18481
|
elevation?: string | number | undefined;
|
18470
18482
|
baseColor?: string | undefined;
|
18471
18483
|
bgColor?: string | undefined;
|
18484
|
+
activeColor?: string | undefined;
|
18472
18485
|
activeClass?: string | undefined;
|
18473
18486
|
activeStrategy?: SelectStrategy | undefined;
|
18474
|
-
activeColor?: string | undefined;
|
18475
18487
|
collapseIcon?: string | undefined;
|
18476
18488
|
expandIcon?: string | undefined;
|
18477
18489
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -18524,9 +18536,9 @@ declare const VCombobox: {
|
|
18524
18536
|
elevation?: string | number | undefined;
|
18525
18537
|
baseColor?: string | undefined;
|
18526
18538
|
bgColor?: string | undefined;
|
18539
|
+
activeColor?: string | undefined;
|
18527
18540
|
activeClass?: string | undefined;
|
18528
18541
|
activeStrategy?: SelectStrategy | undefined;
|
18529
|
-
activeColor?: string | undefined;
|
18530
18542
|
collapseIcon?: string | undefined;
|
18531
18543
|
expandIcon?: string | undefined;
|
18532
18544
|
} & {
|
@@ -19049,9 +19061,9 @@ declare const VCombobox: {
|
|
19049
19061
|
elevation?: string | number | undefined;
|
19050
19062
|
baseColor?: string | undefined;
|
19051
19063
|
bgColor?: string | undefined;
|
19064
|
+
activeColor?: string | undefined;
|
19052
19065
|
activeClass?: string | undefined;
|
19053
19066
|
activeStrategy?: SelectStrategy | undefined;
|
19054
|
-
activeColor?: string | undefined;
|
19055
19067
|
collapseIcon?: string | undefined;
|
19056
19068
|
expandIcon?: string | undefined;
|
19057
19069
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -19104,9 +19116,9 @@ declare const VCombobox: {
|
|
19104
19116
|
elevation?: string | number | undefined;
|
19105
19117
|
baseColor?: string | undefined;
|
19106
19118
|
bgColor?: string | undefined;
|
19119
|
+
activeColor?: string | undefined;
|
19107
19120
|
activeClass?: string | undefined;
|
19108
19121
|
activeStrategy?: SelectStrategy | undefined;
|
19109
|
-
activeColor?: string | undefined;
|
19110
19122
|
collapseIcon?: string | undefined;
|
19111
19123
|
expandIcon?: string | undefined;
|
19112
19124
|
} & {
|
@@ -19743,9 +19755,9 @@ declare const VCombobox: {
|
|
19743
19755
|
elevation?: string | number | undefined;
|
19744
19756
|
baseColor?: string | undefined;
|
19745
19757
|
bgColor?: string | undefined;
|
19758
|
+
activeColor?: string | undefined;
|
19746
19759
|
activeClass?: string | undefined;
|
19747
19760
|
activeStrategy?: SelectStrategy | undefined;
|
19748
|
-
activeColor?: string | undefined;
|
19749
19761
|
collapseIcon?: string | undefined;
|
19750
19762
|
expandIcon?: string | undefined;
|
19751
19763
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -19798,9 +19810,9 @@ declare const VCombobox: {
|
|
19798
19810
|
elevation?: string | number | undefined;
|
19799
19811
|
baseColor?: string | undefined;
|
19800
19812
|
bgColor?: string | undefined;
|
19813
|
+
activeColor?: string | undefined;
|
19801
19814
|
activeClass?: string | undefined;
|
19802
19815
|
activeStrategy?: SelectStrategy | undefined;
|
19803
|
-
activeColor?: string | undefined;
|
19804
19816
|
collapseIcon?: string | undefined;
|
19805
19817
|
expandIcon?: string | undefined;
|
19806
19818
|
} & {
|
@@ -20372,9 +20384,9 @@ declare const VCombobox: {
|
|
20372
20384
|
elevation?: string | number | undefined;
|
20373
20385
|
baseColor?: string | undefined;
|
20374
20386
|
bgColor?: string | undefined;
|
20387
|
+
activeColor?: string | undefined;
|
20375
20388
|
activeClass?: string | undefined;
|
20376
20389
|
activeStrategy?: SelectStrategy | undefined;
|
20377
|
-
activeColor?: string | undefined;
|
20378
20390
|
collapseIcon?: string | undefined;
|
20379
20391
|
expandIcon?: string | undefined;
|
20380
20392
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -20427,9 +20439,9 @@ declare const VCombobox: {
|
|
20427
20439
|
elevation?: string | number | undefined;
|
20428
20440
|
baseColor?: string | undefined;
|
20429
20441
|
bgColor?: string | undefined;
|
20442
|
+
activeColor?: string | undefined;
|
20430
20443
|
activeClass?: string | undefined;
|
20431
20444
|
activeStrategy?: SelectStrategy | undefined;
|
20432
|
-
activeColor?: string | undefined;
|
20433
20445
|
collapseIcon?: string | undefined;
|
20434
20446
|
expandIcon?: string | undefined;
|
20435
20447
|
} & {
|
@@ -21208,9 +21220,9 @@ declare const VCombobox: {
|
|
21208
21220
|
elevation?: string | number | undefined;
|
21209
21221
|
baseColor?: string | undefined;
|
21210
21222
|
bgColor?: string | undefined;
|
21223
|
+
activeColor?: string | undefined;
|
21211
21224
|
activeClass?: string | undefined;
|
21212
21225
|
activeStrategy?: SelectStrategy | undefined;
|
21213
|
-
activeColor?: string | undefined;
|
21214
21226
|
collapseIcon?: string | undefined;
|
21215
21227
|
expandIcon?: string | undefined;
|
21216
21228
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -21263,9 +21275,9 @@ declare const VCombobox: {
|
|
21263
21275
|
elevation?: string | number | undefined;
|
21264
21276
|
baseColor?: string | undefined;
|
21265
21277
|
bgColor?: string | undefined;
|
21278
|
+
activeColor?: string | undefined;
|
21266
21279
|
activeClass?: string | undefined;
|
21267
21280
|
activeStrategy?: SelectStrategy | undefined;
|
21268
|
-
activeColor?: string | undefined;
|
21269
21281
|
collapseIcon?: string | undefined;
|
21270
21282
|
expandIcon?: string | undefined;
|
21271
21283
|
} & {
|
@@ -21901,9 +21913,9 @@ declare const VCombobox: {
|
|
21901
21913
|
elevation?: string | number | undefined;
|
21902
21914
|
baseColor?: string | undefined;
|
21903
21915
|
bgColor?: string | undefined;
|
21916
|
+
activeColor?: string | undefined;
|
21904
21917
|
activeClass?: string | undefined;
|
21905
21918
|
activeStrategy?: SelectStrategy | undefined;
|
21906
|
-
activeColor?: string | undefined;
|
21907
21919
|
collapseIcon?: string | undefined;
|
21908
21920
|
expandIcon?: string | undefined;
|
21909
21921
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -21956,9 +21968,9 @@ declare const VCombobox: {
|
|
21956
21968
|
elevation?: string | number | undefined;
|
21957
21969
|
baseColor?: string | undefined;
|
21958
21970
|
bgColor?: string | undefined;
|
21971
|
+
activeColor?: string | undefined;
|
21959
21972
|
activeClass?: string | undefined;
|
21960
21973
|
activeStrategy?: SelectStrategy | undefined;
|
21961
|
-
activeColor?: string | undefined;
|
21962
21974
|
collapseIcon?: string | undefined;
|
21963
21975
|
expandIcon?: string | undefined;
|
21964
21976
|
} & {
|
@@ -33288,6 +33300,7 @@ declare const VFab: {
|
|
33288
33300
|
elevation?: string | number | undefined;
|
33289
33301
|
baseColor?: string | undefined;
|
33290
33302
|
selectedClass?: string | undefined;
|
33303
|
+
activeColor?: string | undefined;
|
33291
33304
|
prependIcon?: IconValue | undefined;
|
33292
33305
|
appendIcon?: IconValue | undefined;
|
33293
33306
|
} & {
|
@@ -33358,6 +33371,7 @@ declare const VFab: {
|
|
33358
33371
|
elevation?: string | number | undefined;
|
33359
33372
|
baseColor?: string | undefined;
|
33360
33373
|
selectedClass?: string | undefined;
|
33374
|
+
activeColor?: string | undefined;
|
33361
33375
|
prependIcon?: IconValue | undefined;
|
33362
33376
|
appendIcon?: IconValue | undefined;
|
33363
33377
|
} & {
|
@@ -33470,6 +33484,7 @@ declare const VFab: {
|
|
33470
33484
|
elevation?: string | number | undefined;
|
33471
33485
|
baseColor?: string | undefined;
|
33472
33486
|
selectedClass?: string | undefined;
|
33487
|
+
activeColor?: string | undefined;
|
33473
33488
|
prependIcon?: IconValue | undefined;
|
33474
33489
|
appendIcon?: IconValue | undefined;
|
33475
33490
|
} & {
|
@@ -33575,6 +33590,7 @@ declare const VFab: {
|
|
33575
33590
|
elevation?: string | number | undefined;
|
33576
33591
|
baseColor?: string | undefined;
|
33577
33592
|
selectedClass?: string | undefined;
|
33593
|
+
activeColor?: string | undefined;
|
33578
33594
|
prependIcon?: IconValue | undefined;
|
33579
33595
|
appendIcon?: IconValue | undefined;
|
33580
33596
|
} & {
|
@@ -33726,6 +33742,7 @@ declare const VFab: {
|
|
33726
33742
|
};
|
33727
33743
|
baseColor: StringConstructor;
|
33728
33744
|
selectedClass: StringConstructor;
|
33745
|
+
activeColor: StringConstructor;
|
33729
33746
|
prependIcon: PropType<IconValue>;
|
33730
33747
|
appendIcon: PropType<IconValue>;
|
33731
33748
|
slim: BooleanConstructor;
|
@@ -33848,6 +33865,7 @@ declare const VFab: {
|
|
33848
33865
|
};
|
33849
33866
|
baseColor: StringConstructor;
|
33850
33867
|
selectedClass: StringConstructor;
|
33868
|
+
activeColor: StringConstructor;
|
33851
33869
|
prependIcon: PropType<IconValue>;
|
33852
33870
|
appendIcon: PropType<IconValue>;
|
33853
33871
|
slim: BooleanConstructor;
|
@@ -39470,9 +39488,9 @@ declare const VList: {
|
|
39470
39488
|
elevation?: string | number | undefined;
|
39471
39489
|
baseColor?: string | undefined;
|
39472
39490
|
bgColor?: string | undefined;
|
39491
|
+
activeColor?: string | undefined;
|
39473
39492
|
activeClass?: string | undefined;
|
39474
39493
|
activeStrategy?: SelectStrategy | undefined;
|
39475
|
-
activeColor?: string | undefined;
|
39476
39494
|
collapseIcon?: string | undefined;
|
39477
39495
|
expandIcon?: string | undefined;
|
39478
39496
|
} & {
|
@@ -39551,9 +39569,9 @@ declare const VList: {
|
|
39551
39569
|
elevation?: string | number | undefined;
|
39552
39570
|
baseColor?: string | undefined;
|
39553
39571
|
bgColor?: string | undefined;
|
39572
|
+
activeColor?: string | undefined;
|
39554
39573
|
activeClass?: string | undefined;
|
39555
39574
|
activeStrategy?: SelectStrategy | undefined;
|
39556
|
-
activeColor?: string | undefined;
|
39557
39575
|
collapseIcon?: string | undefined;
|
39558
39576
|
expandIcon?: string | undefined;
|
39559
39577
|
} & {
|
@@ -39703,9 +39721,9 @@ declare const VList: {
|
|
39703
39721
|
elevation?: string | number | undefined;
|
39704
39722
|
baseColor?: string | undefined;
|
39705
39723
|
bgColor?: string | undefined;
|
39724
|
+
activeColor?: string | undefined;
|
39706
39725
|
activeClass?: string | undefined;
|
39707
39726
|
activeStrategy?: SelectStrategy | undefined;
|
39708
|
-
activeColor?: string | undefined;
|
39709
39727
|
collapseIcon?: string | undefined;
|
39710
39728
|
expandIcon?: string | undefined;
|
39711
39729
|
} & {
|
@@ -39788,9 +39806,9 @@ declare const VList: {
|
|
39788
39806
|
elevation?: string | number | undefined;
|
39789
39807
|
baseColor?: string | undefined;
|
39790
39808
|
bgColor?: string | undefined;
|
39809
|
+
activeColor?: string | undefined;
|
39791
39810
|
activeClass?: string | undefined;
|
39792
39811
|
activeStrategy?: SelectStrategy | undefined;
|
39793
|
-
activeColor?: string | undefined;
|
39794
39812
|
collapseIcon?: string | undefined;
|
39795
39813
|
expandIcon?: string | undefined;
|
39796
39814
|
} & {
|
@@ -40157,9 +40175,9 @@ declare const VListGroup: {
|
|
40157
40175
|
value?: any;
|
40158
40176
|
color?: string | undefined;
|
40159
40177
|
baseColor?: string | undefined;
|
40178
|
+
activeColor?: string | undefined;
|
40160
40179
|
prependIcon?: IconValue | undefined;
|
40161
40180
|
appendIcon?: IconValue | undefined;
|
40162
|
-
activeColor?: string | undefined;
|
40163
40181
|
} & {
|
40164
40182
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
40165
40183
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -40196,9 +40214,9 @@ declare const VListGroup: {
|
|
40196
40214
|
value?: any;
|
40197
40215
|
color?: string | undefined;
|
40198
40216
|
baseColor?: string | undefined;
|
40217
|
+
activeColor?: string | undefined;
|
40199
40218
|
prependIcon?: IconValue | undefined;
|
40200
40219
|
appendIcon?: IconValue | undefined;
|
40201
|
-
activeColor?: string | undefined;
|
40202
40220
|
} & {
|
40203
40221
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
40204
40222
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -40257,9 +40275,9 @@ declare const VListGroup: {
|
|
40257
40275
|
value?: any;
|
40258
40276
|
color?: string | undefined;
|
40259
40277
|
baseColor?: string | undefined;
|
40278
|
+
activeColor?: string | undefined;
|
40260
40279
|
prependIcon?: IconValue | undefined;
|
40261
40280
|
appendIcon?: IconValue | undefined;
|
40262
|
-
activeColor?: string | undefined;
|
40263
40281
|
} & {
|
40264
40282
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
40265
40283
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -40307,9 +40325,9 @@ declare const VListGroup: {
|
|
40307
40325
|
value?: any;
|
40308
40326
|
color?: string | undefined;
|
40309
40327
|
baseColor?: string | undefined;
|
40328
|
+
activeColor?: string | undefined;
|
40310
40329
|
prependIcon?: IconValue | undefined;
|
40311
40330
|
appendIcon?: IconValue | undefined;
|
40312
|
-
activeColor?: string | undefined;
|
40313
40331
|
} & {
|
40314
40332
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
40315
40333
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -48924,9 +48942,9 @@ declare const VSelect: {
|
|
48924
48942
|
elevation?: string | number | undefined;
|
48925
48943
|
baseColor?: string | undefined;
|
48926
48944
|
bgColor?: string | undefined;
|
48945
|
+
activeColor?: string | undefined;
|
48927
48946
|
activeClass?: string | undefined;
|
48928
48947
|
activeStrategy?: SelectStrategy | undefined;
|
48929
|
-
activeColor?: string | undefined;
|
48930
48948
|
collapseIcon?: string | undefined;
|
48931
48949
|
expandIcon?: string | undefined;
|
48932
48950
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -48979,9 +48997,9 @@ declare const VSelect: {
|
|
48979
48997
|
elevation?: string | number | undefined;
|
48980
48998
|
baseColor?: string | undefined;
|
48981
48999
|
bgColor?: string | undefined;
|
49000
|
+
activeColor?: string | undefined;
|
48982
49001
|
activeClass?: string | undefined;
|
48983
49002
|
activeStrategy?: SelectStrategy | undefined;
|
48984
|
-
activeColor?: string | undefined;
|
48985
49003
|
collapseIcon?: string | undefined;
|
48986
49004
|
expandIcon?: string | undefined;
|
48987
49005
|
} & {
|
@@ -49496,9 +49514,9 @@ declare const VSelect: {
|
|
49496
49514
|
elevation?: string | number | undefined;
|
49497
49515
|
baseColor?: string | undefined;
|
49498
49516
|
bgColor?: string | undefined;
|
49517
|
+
activeColor?: string | undefined;
|
49499
49518
|
activeClass?: string | undefined;
|
49500
49519
|
activeStrategy?: SelectStrategy | undefined;
|
49501
|
-
activeColor?: string | undefined;
|
49502
49520
|
collapseIcon?: string | undefined;
|
49503
49521
|
expandIcon?: string | undefined;
|
49504
49522
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -49551,9 +49569,9 @@ declare const VSelect: {
|
|
49551
49569
|
elevation?: string | number | undefined;
|
49552
49570
|
baseColor?: string | undefined;
|
49553
49571
|
bgColor?: string | undefined;
|
49572
|
+
activeColor?: string | undefined;
|
49554
49573
|
activeClass?: string | undefined;
|
49555
49574
|
activeStrategy?: SelectStrategy | undefined;
|
49556
|
-
activeColor?: string | undefined;
|
49557
49575
|
collapseIcon?: string | undefined;
|
49558
49576
|
expandIcon?: string | undefined;
|
49559
49577
|
} & {
|
@@ -50181,9 +50199,9 @@ declare const VSelect: {
|
|
50181
50199
|
elevation?: string | number | undefined;
|
50182
50200
|
baseColor?: string | undefined;
|
50183
50201
|
bgColor?: string | undefined;
|
50202
|
+
activeColor?: string | undefined;
|
50184
50203
|
activeClass?: string | undefined;
|
50185
50204
|
activeStrategy?: SelectStrategy | undefined;
|
50186
|
-
activeColor?: string | undefined;
|
50187
50205
|
collapseIcon?: string | undefined;
|
50188
50206
|
expandIcon?: string | undefined;
|
50189
50207
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -50236,9 +50254,9 @@ declare const VSelect: {
|
|
50236
50254
|
elevation?: string | number | undefined;
|
50237
50255
|
baseColor?: string | undefined;
|
50238
50256
|
bgColor?: string | undefined;
|
50257
|
+
activeColor?: string | undefined;
|
50239
50258
|
activeClass?: string | undefined;
|
50240
50259
|
activeStrategy?: SelectStrategy | undefined;
|
50241
|
-
activeColor?: string | undefined;
|
50242
50260
|
collapseIcon?: string | undefined;
|
50243
50261
|
expandIcon?: string | undefined;
|
50244
50262
|
} & {
|
@@ -50801,9 +50819,9 @@ declare const VSelect: {
|
|
50801
50819
|
elevation?: string | number | undefined;
|
50802
50820
|
baseColor?: string | undefined;
|
50803
50821
|
bgColor?: string | undefined;
|
50822
|
+
activeColor?: string | undefined;
|
50804
50823
|
activeClass?: string | undefined;
|
50805
50824
|
activeStrategy?: SelectStrategy | undefined;
|
50806
|
-
activeColor?: string | undefined;
|
50807
50825
|
collapseIcon?: string | undefined;
|
50808
50826
|
expandIcon?: string | undefined;
|
50809
50827
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -50856,9 +50874,9 @@ declare const VSelect: {
|
|
50856
50874
|
elevation?: string | number | undefined;
|
50857
50875
|
baseColor?: string | undefined;
|
50858
50876
|
bgColor?: string | undefined;
|
50877
|
+
activeColor?: string | undefined;
|
50859
50878
|
activeClass?: string | undefined;
|
50860
50879
|
activeStrategy?: SelectStrategy | undefined;
|
50861
|
-
activeColor?: string | undefined;
|
50862
50880
|
collapseIcon?: string | undefined;
|
50863
50881
|
expandIcon?: string | undefined;
|
50864
50882
|
} & {
|
@@ -51630,9 +51648,9 @@ declare const VSelect: {
|
|
51630
51648
|
elevation?: string | number | undefined;
|
51631
51649
|
baseColor?: string | undefined;
|
51632
51650
|
bgColor?: string | undefined;
|
51651
|
+
activeColor?: string | undefined;
|
51633
51652
|
activeClass?: string | undefined;
|
51634
51653
|
activeStrategy?: SelectStrategy | undefined;
|
51635
|
-
activeColor?: string | undefined;
|
51636
51654
|
collapseIcon?: string | undefined;
|
51637
51655
|
expandIcon?: string | undefined;
|
51638
51656
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -51685,9 +51703,9 @@ declare const VSelect: {
|
|
51685
51703
|
elevation?: string | number | undefined;
|
51686
51704
|
baseColor?: string | undefined;
|
51687
51705
|
bgColor?: string | undefined;
|
51706
|
+
activeColor?: string | undefined;
|
51688
51707
|
activeClass?: string | undefined;
|
51689
51708
|
activeStrategy?: SelectStrategy | undefined;
|
51690
|
-
activeColor?: string | undefined;
|
51691
51709
|
collapseIcon?: string | undefined;
|
51692
51710
|
expandIcon?: string | undefined;
|
51693
51711
|
} & {
|
@@ -52302,9 +52320,9 @@ declare const VSelect: {
|
|
52302
52320
|
elevation?: string | number | undefined;
|
52303
52321
|
baseColor?: string | undefined;
|
52304
52322
|
bgColor?: string | undefined;
|
52323
|
+
activeColor?: string | undefined;
|
52305
52324
|
activeClass?: string | undefined;
|
52306
52325
|
activeStrategy?: SelectStrategy | undefined;
|
52307
|
-
activeColor?: string | undefined;
|
52308
52326
|
collapseIcon?: string | undefined;
|
52309
52327
|
expandIcon?: string | undefined;
|
52310
52328
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -52357,9 +52375,9 @@ declare const VSelect: {
|
|
52357
52375
|
elevation?: string | number | undefined;
|
52358
52376
|
baseColor?: string | undefined;
|
52359
52377
|
bgColor?: string | undefined;
|
52378
|
+
activeColor?: string | undefined;
|
52360
52379
|
activeClass?: string | undefined;
|
52361
52380
|
activeStrategy?: SelectStrategy | undefined;
|
52362
|
-
activeColor?: string | undefined;
|
52363
52381
|
collapseIcon?: string | undefined;
|
52364
52382
|
expandIcon?: string | undefined;
|
52365
52383
|
} & {
|
@@ -60225,6 +60243,7 @@ declare const VTab: {
|
|
60225
60243
|
minWidth?: string | number | undefined;
|
60226
60244
|
elevation?: string | number | undefined;
|
60227
60245
|
baseColor?: string | undefined;
|
60246
|
+
activeColor?: string | undefined;
|
60228
60247
|
prependIcon?: IconValue | undefined;
|
60229
60248
|
appendIcon?: IconValue | undefined;
|
60230
60249
|
sliderColor?: string | undefined;
|
@@ -60312,6 +60331,7 @@ declare const VTab: {
|
|
60312
60331
|
location?: Anchor | undefined;
|
60313
60332
|
baseColor?: string | undefined;
|
60314
60333
|
selectedClass?: string | undefined;
|
60334
|
+
activeColor?: string | undefined;
|
60315
60335
|
prependIcon?: IconValue | undefined;
|
60316
60336
|
appendIcon?: IconValue | undefined;
|
60317
60337
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
@@ -60376,6 +60396,7 @@ declare const VTab: {
|
|
60376
60396
|
location?: Anchor | undefined;
|
60377
60397
|
baseColor?: string | undefined;
|
60378
60398
|
selectedClass?: string | undefined;
|
60399
|
+
activeColor?: string | undefined;
|
60379
60400
|
prependIcon?: IconValue | undefined;
|
60380
60401
|
appendIcon?: IconValue | undefined;
|
60381
60402
|
} & {
|
@@ -60470,6 +60491,7 @@ declare const VTab: {
|
|
60470
60491
|
location?: Anchor | undefined;
|
60471
60492
|
baseColor?: string | undefined;
|
60472
60493
|
selectedClass?: string | undefined;
|
60494
|
+
activeColor?: string | undefined;
|
60473
60495
|
prependIcon?: IconValue | undefined;
|
60474
60496
|
appendIcon?: IconValue | undefined;
|
60475
60497
|
} & {
|
@@ -60597,6 +60619,7 @@ declare const VTab: {
|
|
60597
60619
|
location?: Anchor | undefined;
|
60598
60620
|
baseColor?: string | undefined;
|
60599
60621
|
selectedClass?: string | undefined;
|
60622
|
+
activeColor?: string | undefined;
|
60600
60623
|
prependIcon?: IconValue | undefined;
|
60601
60624
|
appendIcon?: IconValue | undefined;
|
60602
60625
|
} & {
|
@@ -60623,7 +60646,7 @@ declare const VTab: {
|
|
60623
60646
|
}) => any) | undefined;
|
60624
60647
|
}, "group"> & vue.ShallowUnwrapRef<{
|
60625
60648
|
group: GroupItemProvide | null;
|
60626
|
-
}> & {} & 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 & {
|
60649
|
+
}> & {} & 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 & {
|
60627
60650
|
replace: boolean;
|
60628
60651
|
fixed: boolean;
|
60629
60652
|
style: vue.StyleValue;
|
@@ -60663,6 +60686,7 @@ declare const VTab: {
|
|
60663
60686
|
minWidth?: string | number | undefined;
|
60664
60687
|
elevation?: string | number | undefined;
|
60665
60688
|
baseColor?: string | undefined;
|
60689
|
+
activeColor?: string | undefined;
|
60666
60690
|
prependIcon?: IconValue | undefined;
|
60667
60691
|
appendIcon?: IconValue | undefined;
|
60668
60692
|
sliderColor?: string | undefined;
|
@@ -60765,6 +60789,7 @@ declare const VTab: {
|
|
60765
60789
|
minWidth?: string | number | undefined;
|
60766
60790
|
elevation?: string | number | undefined;
|
60767
60791
|
baseColor?: string | undefined;
|
60792
|
+
activeColor?: string | undefined;
|
60768
60793
|
prependIcon?: IconValue | undefined;
|
60769
60794
|
appendIcon?: IconValue | undefined;
|
60770
60795
|
sliderColor?: string | undefined;
|
@@ -60852,6 +60877,7 @@ declare const VTab: {
|
|
60852
60877
|
location?: Anchor | undefined;
|
60853
60878
|
baseColor?: string | undefined;
|
60854
60879
|
selectedClass?: string | undefined;
|
60880
|
+
activeColor?: string | undefined;
|
60855
60881
|
prependIcon?: IconValue | undefined;
|
60856
60882
|
appendIcon?: IconValue | undefined;
|
60857
60883
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
@@ -60916,6 +60942,7 @@ declare const VTab: {
|
|
60916
60942
|
location?: Anchor | undefined;
|
60917
60943
|
baseColor?: string | undefined;
|
60918
60944
|
selectedClass?: string | undefined;
|
60945
|
+
activeColor?: string | undefined;
|
60919
60946
|
prependIcon?: IconValue | undefined;
|
60920
60947
|
appendIcon?: IconValue | undefined;
|
60921
60948
|
} & {
|
@@ -61010,6 +61037,7 @@ declare const VTab: {
|
|
61010
61037
|
location?: Anchor | undefined;
|
61011
61038
|
baseColor?: string | undefined;
|
61012
61039
|
selectedClass?: string | undefined;
|
61040
|
+
activeColor?: string | undefined;
|
61013
61041
|
prependIcon?: IconValue | undefined;
|
61014
61042
|
appendIcon?: IconValue | undefined;
|
61015
61043
|
} & {
|
@@ -61137,6 +61165,7 @@ declare const VTab: {
|
|
61137
61165
|
location?: Anchor | undefined;
|
61138
61166
|
baseColor?: string | undefined;
|
61139
61167
|
selectedClass?: string | undefined;
|
61168
|
+
activeColor?: string | undefined;
|
61140
61169
|
prependIcon?: IconValue | undefined;
|
61141
61170
|
appendIcon?: IconValue | undefined;
|
61142
61171
|
} & {
|
@@ -61163,7 +61192,7 @@ declare const VTab: {
|
|
61163
61192
|
}) => any) | undefined;
|
61164
61193
|
}, "group"> & vue.ShallowUnwrapRef<{
|
61165
61194
|
group: GroupItemProvide | null;
|
61166
|
-
}> & {} & 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}`>, {}, {}, {}, {
|
61195
|
+
}> & {} & 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}`>, {}, {}, {}, {
|
61167
61196
|
replace: boolean;
|
61168
61197
|
fixed: boolean;
|
61169
61198
|
style: vue.StyleValue;
|
@@ -61228,6 +61257,7 @@ declare const VTab: {
|
|
61228
61257
|
minWidth?: string | number | undefined;
|
61229
61258
|
elevation?: string | number | undefined;
|
61230
61259
|
baseColor?: string | undefined;
|
61260
|
+
activeColor?: string | undefined;
|
61231
61261
|
prependIcon?: IconValue | undefined;
|
61232
61262
|
appendIcon?: IconValue | undefined;
|
61233
61263
|
sliderColor?: string | undefined;
|
@@ -61315,6 +61345,7 @@ declare const VTab: {
|
|
61315
61345
|
location?: Anchor | undefined;
|
61316
61346
|
baseColor?: string | undefined;
|
61317
61347
|
selectedClass?: string | undefined;
|
61348
|
+
activeColor?: string | undefined;
|
61318
61349
|
prependIcon?: IconValue | undefined;
|
61319
61350
|
appendIcon?: IconValue | undefined;
|
61320
61351
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
@@ -61379,6 +61410,7 @@ declare const VTab: {
|
|
61379
61410
|
location?: Anchor | undefined;
|
61380
61411
|
baseColor?: string | undefined;
|
61381
61412
|
selectedClass?: string | undefined;
|
61413
|
+
activeColor?: string | undefined;
|
61382
61414
|
prependIcon?: IconValue | undefined;
|
61383
61415
|
appendIcon?: IconValue | undefined;
|
61384
61416
|
} & {
|
@@ -61473,6 +61505,7 @@ declare const VTab: {
|
|
61473
61505
|
location?: Anchor | undefined;
|
61474
61506
|
baseColor?: string | undefined;
|
61475
61507
|
selectedClass?: string | undefined;
|
61508
|
+
activeColor?: string | undefined;
|
61476
61509
|
prependIcon?: IconValue | undefined;
|
61477
61510
|
appendIcon?: IconValue | undefined;
|
61478
61511
|
} & {
|
@@ -61600,6 +61633,7 @@ declare const VTab: {
|
|
61600
61633
|
location?: Anchor | undefined;
|
61601
61634
|
baseColor?: string | undefined;
|
61602
61635
|
selectedClass?: string | undefined;
|
61636
|
+
activeColor?: string | undefined;
|
61603
61637
|
prependIcon?: IconValue | undefined;
|
61604
61638
|
appendIcon?: IconValue | undefined;
|
61605
61639
|
} & {
|
@@ -61626,7 +61660,7 @@ declare const VTab: {
|
|
61626
61660
|
}) => any) | undefined;
|
61627
61661
|
}, "group"> & vue.ShallowUnwrapRef<{
|
61628
61662
|
group: GroupItemProvide | null;
|
61629
|
-
}> & {} & 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, {
|
61663
|
+
}> & {} & 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, {
|
61630
61664
|
replace: boolean;
|
61631
61665
|
fixed: boolean;
|
61632
61666
|
style: vue.StyleValue;
|
@@ -61726,6 +61760,7 @@ declare const VTab: {
|
|
61726
61760
|
type: PropType<string>;
|
61727
61761
|
default: string;
|
61728
61762
|
};
|
61763
|
+
activeColor: StringConstructor;
|
61729
61764
|
prependIcon: PropType<IconValue>;
|
61730
61765
|
appendIcon: PropType<IconValue>;
|
61731
61766
|
slim: BooleanConstructor;
|
@@ -61809,6 +61844,7 @@ declare const VTab: {
|
|
61809
61844
|
type: PropType<string>;
|
61810
61845
|
default: string;
|
61811
61846
|
};
|
61847
|
+
activeColor: StringConstructor;
|
61812
61848
|
prependIcon: PropType<IconValue>;
|
61813
61849
|
appendIcon: PropType<IconValue>;
|
61814
61850
|
slim: BooleanConstructor;
|