@vuetify/nightly 3.6.3-dev.2024-05-03 → 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 +8 -2
- package/dist/json/attributes.json +20 -0
- package/dist/json/importMap-labs.json +4 -4
- package/dist/json/importMap.json +144 -144
- package/dist/json/tags.json +5 -0
- package/dist/json/web-types.json +47 -1
- package/dist/vuetify-labs.css +2500 -2493
- package/dist/vuetify-labs.d.ts +117 -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 +475 -468
- package/dist/vuetify.d.ts +149 -107
- 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/VAvatar/VAvatar.css +7 -0
- package/lib/components/VAvatar/VAvatar.mjs +6 -1
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VAvatar/VAvatar.sass +1 -0
- package/lib/components/VAvatar/_variables.scss +13 -0
- package/lib/components/VAvatar/index.d.mts +6 -0
- 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 +101 -59
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +48 -48
- 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
|
} & {
|
@@ -8510,6 +8516,7 @@ declare const VAvatar: {
|
|
8510
8516
|
theme?: string | undefined;
|
8511
8517
|
color?: string | undefined;
|
8512
8518
|
icon?: IconValue | undefined;
|
8519
|
+
border?: string | number | boolean | undefined;
|
8513
8520
|
rounded?: string | number | boolean | undefined;
|
8514
8521
|
} & {
|
8515
8522
|
$children?: vue.VNodeChild | {
|
@@ -8536,6 +8543,7 @@ declare const VAvatar: {
|
|
8536
8543
|
theme?: string | undefined;
|
8537
8544
|
color?: string | undefined;
|
8538
8545
|
icon?: IconValue | undefined;
|
8546
|
+
border?: string | number | boolean | undefined;
|
8539
8547
|
rounded?: string | number | boolean | undefined;
|
8540
8548
|
} & {
|
8541
8549
|
$children?: vue.VNodeChild | {
|
@@ -8583,6 +8591,7 @@ declare const VAvatar: {
|
|
8583
8591
|
theme?: string | undefined;
|
8584
8592
|
color?: string | undefined;
|
8585
8593
|
icon?: IconValue | undefined;
|
8594
|
+
border?: string | number | boolean | undefined;
|
8586
8595
|
rounded?: string | number | boolean | undefined;
|
8587
8596
|
} & {
|
8588
8597
|
$children?: vue.VNodeChild | {
|
@@ -8623,6 +8632,7 @@ declare const VAvatar: {
|
|
8623
8632
|
theme?: string | undefined;
|
8624
8633
|
color?: string | undefined;
|
8625
8634
|
icon?: IconValue | undefined;
|
8635
|
+
border?: string | number | boolean | undefined;
|
8626
8636
|
rounded?: string | number | boolean | undefined;
|
8627
8637
|
} & {
|
8628
8638
|
$children?: vue.VNodeChild | {
|
@@ -8681,6 +8691,7 @@ declare const VAvatar: {
|
|
8681
8691
|
type: vue.PropType<vue.StyleValue>;
|
8682
8692
|
default: null;
|
8683
8693
|
};
|
8694
|
+
border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
8684
8695
|
start: BooleanConstructor;
|
8685
8696
|
end: BooleanConstructor;
|
8686
8697
|
icon: vue.PropType<IconValue>;
|
@@ -8720,6 +8731,7 @@ declare const VAvatar: {
|
|
8720
8731
|
type: vue.PropType<vue.StyleValue>;
|
8721
8732
|
default: null;
|
8722
8733
|
};
|
8734
|
+
border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
8723
8735
|
start: BooleanConstructor;
|
8724
8736
|
end: BooleanConstructor;
|
8725
8737
|
icon: vue.PropType<IconValue>;
|
@@ -10716,8 +10728,8 @@ declare const VBreadcrumbs: {
|
|
10716
10728
|
icon?: IconValue | undefined;
|
10717
10729
|
rounded?: string | number | boolean | undefined;
|
10718
10730
|
bgColor?: string | undefined;
|
10719
|
-
activeClass?: string | undefined;
|
10720
10731
|
activeColor?: string | undefined;
|
10732
|
+
activeClass?: string | undefined;
|
10721
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 & {
|
10722
10734
|
style: vue.StyleValue;
|
10723
10735
|
disabled: boolean;
|
@@ -10731,8 +10743,8 @@ declare const VBreadcrumbs: {
|
|
10731
10743
|
icon?: IconValue | undefined;
|
10732
10744
|
rounded?: string | number | boolean | undefined;
|
10733
10745
|
bgColor?: string | undefined;
|
10734
|
-
activeClass?: string | undefined;
|
10735
10746
|
activeColor?: string | undefined;
|
10747
|
+
activeClass?: string | undefined;
|
10736
10748
|
}, {
|
10737
10749
|
style: vue.StyleValue;
|
10738
10750
|
disabled: boolean;
|
@@ -10786,8 +10798,8 @@ declare const VBreadcrumbs: {
|
|
10786
10798
|
icon?: IconValue | undefined;
|
10787
10799
|
rounded?: string | number | boolean | undefined;
|
10788
10800
|
bgColor?: string | undefined;
|
10789
|
-
activeClass?: string | undefined;
|
10790
10801
|
activeColor?: string | undefined;
|
10802
|
+
activeClass?: string | undefined;
|
10791
10803
|
}, {}, {}, {}, {}, {
|
10792
10804
|
style: vue.StyleValue;
|
10793
10805
|
disabled: boolean;
|
@@ -10813,8 +10825,8 @@ declare const VBreadcrumbs: {
|
|
10813
10825
|
icon?: IconValue | undefined;
|
10814
10826
|
rounded?: string | number | boolean | undefined;
|
10815
10827
|
bgColor?: string | undefined;
|
10816
|
-
activeClass?: string | undefined;
|
10817
10828
|
activeColor?: string | undefined;
|
10829
|
+
activeClass?: string | undefined;
|
10818
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, {
|
10819
10831
|
style: vue.StyleValue;
|
10820
10832
|
disabled: boolean;
|
@@ -10973,8 +10985,8 @@ declare const VBreadcrumbsItem: {
|
|
10973
10985
|
href?: string | undefined;
|
10974
10986
|
color?: string | undefined;
|
10975
10987
|
to?: vue_router.RouteLocationRaw | undefined;
|
10976
|
-
activeClass?: string | undefined;
|
10977
10988
|
activeColor?: string | undefined;
|
10989
|
+
activeClass?: string | undefined;
|
10978
10990
|
} & {
|
10979
10991
|
$children?: vue.VNodeChild | {
|
10980
10992
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -10997,8 +11009,8 @@ declare const VBreadcrumbsItem: {
|
|
10997
11009
|
href?: string | undefined;
|
10998
11010
|
color?: string | undefined;
|
10999
11011
|
to?: vue_router.RouteLocationRaw | undefined;
|
11000
|
-
activeClass?: string | undefined;
|
11001
11012
|
activeColor?: string | undefined;
|
11013
|
+
activeClass?: string | undefined;
|
11002
11014
|
} & {
|
11003
11015
|
$children?: vue.VNodeChild | {
|
11004
11016
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -11039,8 +11051,8 @@ declare const VBreadcrumbsItem: {
|
|
11039
11051
|
href?: string | undefined;
|
11040
11052
|
color?: string | undefined;
|
11041
11053
|
to?: vue_router.RouteLocationRaw | undefined;
|
11042
|
-
activeClass?: string | undefined;
|
11043
11054
|
activeColor?: string | undefined;
|
11055
|
+
activeClass?: string | undefined;
|
11044
11056
|
} & {
|
11045
11057
|
$children?: vue.VNodeChild | {
|
11046
11058
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -11074,8 +11086,8 @@ declare const VBreadcrumbsItem: {
|
|
11074
11086
|
href?: string | undefined;
|
11075
11087
|
color?: string | undefined;
|
11076
11088
|
to?: vue_router.RouteLocationRaw | undefined;
|
11077
|
-
activeClass?: string | undefined;
|
11078
11089
|
activeColor?: string | undefined;
|
11090
|
+
activeClass?: string | undefined;
|
11079
11091
|
} & {
|
11080
11092
|
$children?: vue.VNodeChild | {
|
11081
11093
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -11288,6 +11300,7 @@ declare const VBtn: {
|
|
11288
11300
|
location?: Anchor | undefined;
|
11289
11301
|
baseColor?: string | undefined;
|
11290
11302
|
selectedClass?: string | undefined;
|
11303
|
+
activeColor?: string | undefined;
|
11291
11304
|
prependIcon?: IconValue | undefined;
|
11292
11305
|
appendIcon?: IconValue | undefined;
|
11293
11306
|
} & {
|
@@ -11361,6 +11374,7 @@ declare const VBtn: {
|
|
11361
11374
|
location?: Anchor | undefined;
|
11362
11375
|
baseColor?: string | undefined;
|
11363
11376
|
selectedClass?: string | undefined;
|
11377
|
+
activeColor?: string | undefined;
|
11364
11378
|
prependIcon?: IconValue | undefined;
|
11365
11379
|
appendIcon?: IconValue | undefined;
|
11366
11380
|
} & {
|
@@ -11469,6 +11483,7 @@ declare const VBtn: {
|
|
11469
11483
|
location?: Anchor | undefined;
|
11470
11484
|
baseColor?: string | undefined;
|
11471
11485
|
selectedClass?: string | undefined;
|
11486
|
+
activeColor?: string | undefined;
|
11472
11487
|
prependIcon?: IconValue | undefined;
|
11473
11488
|
appendIcon?: IconValue | undefined;
|
11474
11489
|
} & {
|
@@ -11563,6 +11578,7 @@ declare const VBtn: {
|
|
11563
11578
|
location?: Anchor | undefined;
|
11564
11579
|
baseColor?: string | undefined;
|
11565
11580
|
selectedClass?: string | undefined;
|
11581
|
+
activeColor?: string | undefined;
|
11566
11582
|
prependIcon?: IconValue | undefined;
|
11567
11583
|
appendIcon?: IconValue | undefined;
|
11568
11584
|
} & {
|
@@ -11692,6 +11708,7 @@ declare const VBtn: {
|
|
11692
11708
|
type: BooleanConstructor;
|
11693
11709
|
default: undefined;
|
11694
11710
|
};
|
11711
|
+
activeColor: StringConstructor;
|
11695
11712
|
baseColor: StringConstructor;
|
11696
11713
|
symbol: {
|
11697
11714
|
type: null;
|
@@ -11777,6 +11794,7 @@ declare const VBtn: {
|
|
11777
11794
|
type: BooleanConstructor;
|
11778
11795
|
default: undefined;
|
11779
11796
|
};
|
11797
|
+
activeColor: StringConstructor;
|
11780
11798
|
baseColor: StringConstructor;
|
11781
11799
|
symbol: {
|
11782
11800
|
type: null;
|
@@ -18463,9 +18481,9 @@ declare const VCombobox: {
|
|
18463
18481
|
elevation?: string | number | undefined;
|
18464
18482
|
baseColor?: string | undefined;
|
18465
18483
|
bgColor?: string | undefined;
|
18484
|
+
activeColor?: string | undefined;
|
18466
18485
|
activeClass?: string | undefined;
|
18467
18486
|
activeStrategy?: SelectStrategy | undefined;
|
18468
|
-
activeColor?: string | undefined;
|
18469
18487
|
collapseIcon?: string | undefined;
|
18470
18488
|
expandIcon?: string | undefined;
|
18471
18489
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -18518,9 +18536,9 @@ declare const VCombobox: {
|
|
18518
18536
|
elevation?: string | number | undefined;
|
18519
18537
|
baseColor?: string | undefined;
|
18520
18538
|
bgColor?: string | undefined;
|
18539
|
+
activeColor?: string | undefined;
|
18521
18540
|
activeClass?: string | undefined;
|
18522
18541
|
activeStrategy?: SelectStrategy | undefined;
|
18523
|
-
activeColor?: string | undefined;
|
18524
18542
|
collapseIcon?: string | undefined;
|
18525
18543
|
expandIcon?: string | undefined;
|
18526
18544
|
} & {
|
@@ -19043,9 +19061,9 @@ declare const VCombobox: {
|
|
19043
19061
|
elevation?: string | number | undefined;
|
19044
19062
|
baseColor?: string | undefined;
|
19045
19063
|
bgColor?: string | undefined;
|
19064
|
+
activeColor?: string | undefined;
|
19046
19065
|
activeClass?: string | undefined;
|
19047
19066
|
activeStrategy?: SelectStrategy | undefined;
|
19048
|
-
activeColor?: string | undefined;
|
19049
19067
|
collapseIcon?: string | undefined;
|
19050
19068
|
expandIcon?: string | undefined;
|
19051
19069
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -19098,9 +19116,9 @@ declare const VCombobox: {
|
|
19098
19116
|
elevation?: string | number | undefined;
|
19099
19117
|
baseColor?: string | undefined;
|
19100
19118
|
bgColor?: string | undefined;
|
19119
|
+
activeColor?: string | undefined;
|
19101
19120
|
activeClass?: string | undefined;
|
19102
19121
|
activeStrategy?: SelectStrategy | undefined;
|
19103
|
-
activeColor?: string | undefined;
|
19104
19122
|
collapseIcon?: string | undefined;
|
19105
19123
|
expandIcon?: string | undefined;
|
19106
19124
|
} & {
|
@@ -19737,9 +19755,9 @@ declare const VCombobox: {
|
|
19737
19755
|
elevation?: string | number | undefined;
|
19738
19756
|
baseColor?: string | undefined;
|
19739
19757
|
bgColor?: string | undefined;
|
19758
|
+
activeColor?: string | undefined;
|
19740
19759
|
activeClass?: string | undefined;
|
19741
19760
|
activeStrategy?: SelectStrategy | undefined;
|
19742
|
-
activeColor?: string | undefined;
|
19743
19761
|
collapseIcon?: string | undefined;
|
19744
19762
|
expandIcon?: string | undefined;
|
19745
19763
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -19792,9 +19810,9 @@ declare const VCombobox: {
|
|
19792
19810
|
elevation?: string | number | undefined;
|
19793
19811
|
baseColor?: string | undefined;
|
19794
19812
|
bgColor?: string | undefined;
|
19813
|
+
activeColor?: string | undefined;
|
19795
19814
|
activeClass?: string | undefined;
|
19796
19815
|
activeStrategy?: SelectStrategy | undefined;
|
19797
|
-
activeColor?: string | undefined;
|
19798
19816
|
collapseIcon?: string | undefined;
|
19799
19817
|
expandIcon?: string | undefined;
|
19800
19818
|
} & {
|
@@ -20366,9 +20384,9 @@ declare const VCombobox: {
|
|
20366
20384
|
elevation?: string | number | undefined;
|
20367
20385
|
baseColor?: string | undefined;
|
20368
20386
|
bgColor?: string | undefined;
|
20387
|
+
activeColor?: string | undefined;
|
20369
20388
|
activeClass?: string | undefined;
|
20370
20389
|
activeStrategy?: SelectStrategy | undefined;
|
20371
|
-
activeColor?: string | undefined;
|
20372
20390
|
collapseIcon?: string | undefined;
|
20373
20391
|
expandIcon?: string | undefined;
|
20374
20392
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -20421,9 +20439,9 @@ declare const VCombobox: {
|
|
20421
20439
|
elevation?: string | number | undefined;
|
20422
20440
|
baseColor?: string | undefined;
|
20423
20441
|
bgColor?: string | undefined;
|
20442
|
+
activeColor?: string | undefined;
|
20424
20443
|
activeClass?: string | undefined;
|
20425
20444
|
activeStrategy?: SelectStrategy | undefined;
|
20426
|
-
activeColor?: string | undefined;
|
20427
20445
|
collapseIcon?: string | undefined;
|
20428
20446
|
expandIcon?: string | undefined;
|
20429
20447
|
} & {
|
@@ -21202,9 +21220,9 @@ declare const VCombobox: {
|
|
21202
21220
|
elevation?: string | number | undefined;
|
21203
21221
|
baseColor?: string | undefined;
|
21204
21222
|
bgColor?: string | undefined;
|
21223
|
+
activeColor?: string | undefined;
|
21205
21224
|
activeClass?: string | undefined;
|
21206
21225
|
activeStrategy?: SelectStrategy | undefined;
|
21207
|
-
activeColor?: string | undefined;
|
21208
21226
|
collapseIcon?: string | undefined;
|
21209
21227
|
expandIcon?: string | undefined;
|
21210
21228
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -21257,9 +21275,9 @@ declare const VCombobox: {
|
|
21257
21275
|
elevation?: string | number | undefined;
|
21258
21276
|
baseColor?: string | undefined;
|
21259
21277
|
bgColor?: string | undefined;
|
21278
|
+
activeColor?: string | undefined;
|
21260
21279
|
activeClass?: string | undefined;
|
21261
21280
|
activeStrategy?: SelectStrategy | undefined;
|
21262
|
-
activeColor?: string | undefined;
|
21263
21281
|
collapseIcon?: string | undefined;
|
21264
21282
|
expandIcon?: string | undefined;
|
21265
21283
|
} & {
|
@@ -21895,9 +21913,9 @@ declare const VCombobox: {
|
|
21895
21913
|
elevation?: string | number | undefined;
|
21896
21914
|
baseColor?: string | undefined;
|
21897
21915
|
bgColor?: string | undefined;
|
21916
|
+
activeColor?: string | undefined;
|
21898
21917
|
activeClass?: string | undefined;
|
21899
21918
|
activeStrategy?: SelectStrategy | undefined;
|
21900
|
-
activeColor?: string | undefined;
|
21901
21919
|
collapseIcon?: string | undefined;
|
21902
21920
|
expandIcon?: string | undefined;
|
21903
21921
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -21950,9 +21968,9 @@ declare const VCombobox: {
|
|
21950
21968
|
elevation?: string | number | undefined;
|
21951
21969
|
baseColor?: string | undefined;
|
21952
21970
|
bgColor?: string | undefined;
|
21971
|
+
activeColor?: string | undefined;
|
21953
21972
|
activeClass?: string | undefined;
|
21954
21973
|
activeStrategy?: SelectStrategy | undefined;
|
21955
|
-
activeColor?: string | undefined;
|
21956
21974
|
collapseIcon?: string | undefined;
|
21957
21975
|
expandIcon?: string | undefined;
|
21958
21976
|
} & {
|
@@ -33282,6 +33300,7 @@ declare const VFab: {
|
|
33282
33300
|
elevation?: string | number | undefined;
|
33283
33301
|
baseColor?: string | undefined;
|
33284
33302
|
selectedClass?: string | undefined;
|
33303
|
+
activeColor?: string | undefined;
|
33285
33304
|
prependIcon?: IconValue | undefined;
|
33286
33305
|
appendIcon?: IconValue | undefined;
|
33287
33306
|
} & {
|
@@ -33352,6 +33371,7 @@ declare const VFab: {
|
|
33352
33371
|
elevation?: string | number | undefined;
|
33353
33372
|
baseColor?: string | undefined;
|
33354
33373
|
selectedClass?: string | undefined;
|
33374
|
+
activeColor?: string | undefined;
|
33355
33375
|
prependIcon?: IconValue | undefined;
|
33356
33376
|
appendIcon?: IconValue | undefined;
|
33357
33377
|
} & {
|
@@ -33464,6 +33484,7 @@ declare const VFab: {
|
|
33464
33484
|
elevation?: string | number | undefined;
|
33465
33485
|
baseColor?: string | undefined;
|
33466
33486
|
selectedClass?: string | undefined;
|
33487
|
+
activeColor?: string | undefined;
|
33467
33488
|
prependIcon?: IconValue | undefined;
|
33468
33489
|
appendIcon?: IconValue | undefined;
|
33469
33490
|
} & {
|
@@ -33569,6 +33590,7 @@ declare const VFab: {
|
|
33569
33590
|
elevation?: string | number | undefined;
|
33570
33591
|
baseColor?: string | undefined;
|
33571
33592
|
selectedClass?: string | undefined;
|
33593
|
+
activeColor?: string | undefined;
|
33572
33594
|
prependIcon?: IconValue | undefined;
|
33573
33595
|
appendIcon?: IconValue | undefined;
|
33574
33596
|
} & {
|
@@ -33720,6 +33742,7 @@ declare const VFab: {
|
|
33720
33742
|
};
|
33721
33743
|
baseColor: StringConstructor;
|
33722
33744
|
selectedClass: StringConstructor;
|
33745
|
+
activeColor: StringConstructor;
|
33723
33746
|
prependIcon: PropType<IconValue>;
|
33724
33747
|
appendIcon: PropType<IconValue>;
|
33725
33748
|
slim: BooleanConstructor;
|
@@ -33842,6 +33865,7 @@ declare const VFab: {
|
|
33842
33865
|
};
|
33843
33866
|
baseColor: StringConstructor;
|
33844
33867
|
selectedClass: StringConstructor;
|
33868
|
+
activeColor: StringConstructor;
|
33845
33869
|
prependIcon: PropType<IconValue>;
|
33846
33870
|
appendIcon: PropType<IconValue>;
|
33847
33871
|
slim: BooleanConstructor;
|
@@ -39464,9 +39488,9 @@ declare const VList: {
|
|
39464
39488
|
elevation?: string | number | undefined;
|
39465
39489
|
baseColor?: string | undefined;
|
39466
39490
|
bgColor?: string | undefined;
|
39491
|
+
activeColor?: string | undefined;
|
39467
39492
|
activeClass?: string | undefined;
|
39468
39493
|
activeStrategy?: SelectStrategy | undefined;
|
39469
|
-
activeColor?: string | undefined;
|
39470
39494
|
collapseIcon?: string | undefined;
|
39471
39495
|
expandIcon?: string | undefined;
|
39472
39496
|
} & {
|
@@ -39545,9 +39569,9 @@ declare const VList: {
|
|
39545
39569
|
elevation?: string | number | undefined;
|
39546
39570
|
baseColor?: string | undefined;
|
39547
39571
|
bgColor?: string | undefined;
|
39572
|
+
activeColor?: string | undefined;
|
39548
39573
|
activeClass?: string | undefined;
|
39549
39574
|
activeStrategy?: SelectStrategy | undefined;
|
39550
|
-
activeColor?: string | undefined;
|
39551
39575
|
collapseIcon?: string | undefined;
|
39552
39576
|
expandIcon?: string | undefined;
|
39553
39577
|
} & {
|
@@ -39697,9 +39721,9 @@ declare const VList: {
|
|
39697
39721
|
elevation?: string | number | undefined;
|
39698
39722
|
baseColor?: string | undefined;
|
39699
39723
|
bgColor?: string | undefined;
|
39724
|
+
activeColor?: string | undefined;
|
39700
39725
|
activeClass?: string | undefined;
|
39701
39726
|
activeStrategy?: SelectStrategy | undefined;
|
39702
|
-
activeColor?: string | undefined;
|
39703
39727
|
collapseIcon?: string | undefined;
|
39704
39728
|
expandIcon?: string | undefined;
|
39705
39729
|
} & {
|
@@ -39782,9 +39806,9 @@ declare const VList: {
|
|
39782
39806
|
elevation?: string | number | undefined;
|
39783
39807
|
baseColor?: string | undefined;
|
39784
39808
|
bgColor?: string | undefined;
|
39809
|
+
activeColor?: string | undefined;
|
39785
39810
|
activeClass?: string | undefined;
|
39786
39811
|
activeStrategy?: SelectStrategy | undefined;
|
39787
|
-
activeColor?: string | undefined;
|
39788
39812
|
collapseIcon?: string | undefined;
|
39789
39813
|
expandIcon?: string | undefined;
|
39790
39814
|
} & {
|
@@ -40151,9 +40175,9 @@ declare const VListGroup: {
|
|
40151
40175
|
value?: any;
|
40152
40176
|
color?: string | undefined;
|
40153
40177
|
baseColor?: string | undefined;
|
40178
|
+
activeColor?: string | undefined;
|
40154
40179
|
prependIcon?: IconValue | undefined;
|
40155
40180
|
appendIcon?: IconValue | undefined;
|
40156
|
-
activeColor?: string | undefined;
|
40157
40181
|
} & {
|
40158
40182
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
40159
40183
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -40190,9 +40214,9 @@ declare const VListGroup: {
|
|
40190
40214
|
value?: any;
|
40191
40215
|
color?: string | undefined;
|
40192
40216
|
baseColor?: string | undefined;
|
40217
|
+
activeColor?: string | undefined;
|
40193
40218
|
prependIcon?: IconValue | undefined;
|
40194
40219
|
appendIcon?: IconValue | undefined;
|
40195
|
-
activeColor?: string | undefined;
|
40196
40220
|
} & {
|
40197
40221
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
40198
40222
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -40251,9 +40275,9 @@ declare const VListGroup: {
|
|
40251
40275
|
value?: any;
|
40252
40276
|
color?: string | undefined;
|
40253
40277
|
baseColor?: string | undefined;
|
40278
|
+
activeColor?: string | undefined;
|
40254
40279
|
prependIcon?: IconValue | undefined;
|
40255
40280
|
appendIcon?: IconValue | undefined;
|
40256
|
-
activeColor?: string | undefined;
|
40257
40281
|
} & {
|
40258
40282
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
40259
40283
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -40301,9 +40325,9 @@ declare const VListGroup: {
|
|
40301
40325
|
value?: any;
|
40302
40326
|
color?: string | undefined;
|
40303
40327
|
baseColor?: string | undefined;
|
40328
|
+
activeColor?: string | undefined;
|
40304
40329
|
prependIcon?: IconValue | undefined;
|
40305
40330
|
appendIcon?: IconValue | undefined;
|
40306
|
-
activeColor?: string | undefined;
|
40307
40331
|
} & {
|
40308
40332
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
40309
40333
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -48918,9 +48942,9 @@ declare const VSelect: {
|
|
48918
48942
|
elevation?: string | number | undefined;
|
48919
48943
|
baseColor?: string | undefined;
|
48920
48944
|
bgColor?: string | undefined;
|
48945
|
+
activeColor?: string | undefined;
|
48921
48946
|
activeClass?: string | undefined;
|
48922
48947
|
activeStrategy?: SelectStrategy | undefined;
|
48923
|
-
activeColor?: string | undefined;
|
48924
48948
|
collapseIcon?: string | undefined;
|
48925
48949
|
expandIcon?: string | undefined;
|
48926
48950
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -48973,9 +48997,9 @@ declare const VSelect: {
|
|
48973
48997
|
elevation?: string | number | undefined;
|
48974
48998
|
baseColor?: string | undefined;
|
48975
48999
|
bgColor?: string | undefined;
|
49000
|
+
activeColor?: string | undefined;
|
48976
49001
|
activeClass?: string | undefined;
|
48977
49002
|
activeStrategy?: SelectStrategy | undefined;
|
48978
|
-
activeColor?: string | undefined;
|
48979
49003
|
collapseIcon?: string | undefined;
|
48980
49004
|
expandIcon?: string | undefined;
|
48981
49005
|
} & {
|
@@ -49490,9 +49514,9 @@ declare const VSelect: {
|
|
49490
49514
|
elevation?: string | number | undefined;
|
49491
49515
|
baseColor?: string | undefined;
|
49492
49516
|
bgColor?: string | undefined;
|
49517
|
+
activeColor?: string | undefined;
|
49493
49518
|
activeClass?: string | undefined;
|
49494
49519
|
activeStrategy?: SelectStrategy | undefined;
|
49495
|
-
activeColor?: string | undefined;
|
49496
49520
|
collapseIcon?: string | undefined;
|
49497
49521
|
expandIcon?: string | undefined;
|
49498
49522
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -49545,9 +49569,9 @@ declare const VSelect: {
|
|
49545
49569
|
elevation?: string | number | undefined;
|
49546
49570
|
baseColor?: string | undefined;
|
49547
49571
|
bgColor?: string | undefined;
|
49572
|
+
activeColor?: string | undefined;
|
49548
49573
|
activeClass?: string | undefined;
|
49549
49574
|
activeStrategy?: SelectStrategy | undefined;
|
49550
|
-
activeColor?: string | undefined;
|
49551
49575
|
collapseIcon?: string | undefined;
|
49552
49576
|
expandIcon?: string | undefined;
|
49553
49577
|
} & {
|
@@ -50175,9 +50199,9 @@ declare const VSelect: {
|
|
50175
50199
|
elevation?: string | number | undefined;
|
50176
50200
|
baseColor?: string | undefined;
|
50177
50201
|
bgColor?: string | undefined;
|
50202
|
+
activeColor?: string | undefined;
|
50178
50203
|
activeClass?: string | undefined;
|
50179
50204
|
activeStrategy?: SelectStrategy | undefined;
|
50180
|
-
activeColor?: string | undefined;
|
50181
50205
|
collapseIcon?: string | undefined;
|
50182
50206
|
expandIcon?: string | undefined;
|
50183
50207
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -50230,9 +50254,9 @@ declare const VSelect: {
|
|
50230
50254
|
elevation?: string | number | undefined;
|
50231
50255
|
baseColor?: string | undefined;
|
50232
50256
|
bgColor?: string | undefined;
|
50257
|
+
activeColor?: string | undefined;
|
50233
50258
|
activeClass?: string | undefined;
|
50234
50259
|
activeStrategy?: SelectStrategy | undefined;
|
50235
|
-
activeColor?: string | undefined;
|
50236
50260
|
collapseIcon?: string | undefined;
|
50237
50261
|
expandIcon?: string | undefined;
|
50238
50262
|
} & {
|
@@ -50795,9 +50819,9 @@ declare const VSelect: {
|
|
50795
50819
|
elevation?: string | number | undefined;
|
50796
50820
|
baseColor?: string | undefined;
|
50797
50821
|
bgColor?: string | undefined;
|
50822
|
+
activeColor?: string | undefined;
|
50798
50823
|
activeClass?: string | undefined;
|
50799
50824
|
activeStrategy?: SelectStrategy | undefined;
|
50800
|
-
activeColor?: string | undefined;
|
50801
50825
|
collapseIcon?: string | undefined;
|
50802
50826
|
expandIcon?: string | undefined;
|
50803
50827
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -50850,9 +50874,9 @@ declare const VSelect: {
|
|
50850
50874
|
elevation?: string | number | undefined;
|
50851
50875
|
baseColor?: string | undefined;
|
50852
50876
|
bgColor?: string | undefined;
|
50877
|
+
activeColor?: string | undefined;
|
50853
50878
|
activeClass?: string | undefined;
|
50854
50879
|
activeStrategy?: SelectStrategy | undefined;
|
50855
|
-
activeColor?: string | undefined;
|
50856
50880
|
collapseIcon?: string | undefined;
|
50857
50881
|
expandIcon?: string | undefined;
|
50858
50882
|
} & {
|
@@ -51624,9 +51648,9 @@ declare const VSelect: {
|
|
51624
51648
|
elevation?: string | number | undefined;
|
51625
51649
|
baseColor?: string | undefined;
|
51626
51650
|
bgColor?: string | undefined;
|
51651
|
+
activeColor?: string | undefined;
|
51627
51652
|
activeClass?: string | undefined;
|
51628
51653
|
activeStrategy?: SelectStrategy | undefined;
|
51629
|
-
activeColor?: string | undefined;
|
51630
51654
|
collapseIcon?: string | undefined;
|
51631
51655
|
expandIcon?: string | undefined;
|
51632
51656
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -51679,9 +51703,9 @@ declare const VSelect: {
|
|
51679
51703
|
elevation?: string | number | undefined;
|
51680
51704
|
baseColor?: string | undefined;
|
51681
51705
|
bgColor?: string | undefined;
|
51706
|
+
activeColor?: string | undefined;
|
51682
51707
|
activeClass?: string | undefined;
|
51683
51708
|
activeStrategy?: SelectStrategy | undefined;
|
51684
|
-
activeColor?: string | undefined;
|
51685
51709
|
collapseIcon?: string | undefined;
|
51686
51710
|
expandIcon?: string | undefined;
|
51687
51711
|
} & {
|
@@ -52296,9 +52320,9 @@ declare const VSelect: {
|
|
52296
52320
|
elevation?: string | number | undefined;
|
52297
52321
|
baseColor?: string | undefined;
|
52298
52322
|
bgColor?: string | undefined;
|
52323
|
+
activeColor?: string | undefined;
|
52299
52324
|
activeClass?: string | undefined;
|
52300
52325
|
activeStrategy?: SelectStrategy | undefined;
|
52301
|
-
activeColor?: string | undefined;
|
52302
52326
|
collapseIcon?: string | undefined;
|
52303
52327
|
expandIcon?: string | undefined;
|
52304
52328
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -52351,9 +52375,9 @@ declare const VSelect: {
|
|
52351
52375
|
elevation?: string | number | undefined;
|
52352
52376
|
baseColor?: string | undefined;
|
52353
52377
|
bgColor?: string | undefined;
|
52378
|
+
activeColor?: string | undefined;
|
52354
52379
|
activeClass?: string | undefined;
|
52355
52380
|
activeStrategy?: SelectStrategy | undefined;
|
52356
|
-
activeColor?: string | undefined;
|
52357
52381
|
collapseIcon?: string | undefined;
|
52358
52382
|
expandIcon?: string | undefined;
|
52359
52383
|
} & {
|
@@ -60219,6 +60243,7 @@ declare const VTab: {
|
|
60219
60243
|
minWidth?: string | number | undefined;
|
60220
60244
|
elevation?: string | number | undefined;
|
60221
60245
|
baseColor?: string | undefined;
|
60246
|
+
activeColor?: string | undefined;
|
60222
60247
|
prependIcon?: IconValue | undefined;
|
60223
60248
|
appendIcon?: IconValue | undefined;
|
60224
60249
|
sliderColor?: string | undefined;
|
@@ -60306,6 +60331,7 @@ declare const VTab: {
|
|
60306
60331
|
location?: Anchor | undefined;
|
60307
60332
|
baseColor?: string | undefined;
|
60308
60333
|
selectedClass?: string | undefined;
|
60334
|
+
activeColor?: string | undefined;
|
60309
60335
|
prependIcon?: IconValue | undefined;
|
60310
60336
|
appendIcon?: IconValue | undefined;
|
60311
60337
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
@@ -60370,6 +60396,7 @@ declare const VTab: {
|
|
60370
60396
|
location?: Anchor | undefined;
|
60371
60397
|
baseColor?: string | undefined;
|
60372
60398
|
selectedClass?: string | undefined;
|
60399
|
+
activeColor?: string | undefined;
|
60373
60400
|
prependIcon?: IconValue | undefined;
|
60374
60401
|
appendIcon?: IconValue | undefined;
|
60375
60402
|
} & {
|
@@ -60464,6 +60491,7 @@ declare const VTab: {
|
|
60464
60491
|
location?: Anchor | undefined;
|
60465
60492
|
baseColor?: string | undefined;
|
60466
60493
|
selectedClass?: string | undefined;
|
60494
|
+
activeColor?: string | undefined;
|
60467
60495
|
prependIcon?: IconValue | undefined;
|
60468
60496
|
appendIcon?: IconValue | undefined;
|
60469
60497
|
} & {
|
@@ -60591,6 +60619,7 @@ declare const VTab: {
|
|
60591
60619
|
location?: Anchor | undefined;
|
60592
60620
|
baseColor?: string | undefined;
|
60593
60621
|
selectedClass?: string | undefined;
|
60622
|
+
activeColor?: string | undefined;
|
60594
60623
|
prependIcon?: IconValue | undefined;
|
60595
60624
|
appendIcon?: IconValue | undefined;
|
60596
60625
|
} & {
|
@@ -60617,7 +60646,7 @@ declare const VTab: {
|
|
60617
60646
|
}) => any) | undefined;
|
60618
60647
|
}, "group"> & vue.ShallowUnwrapRef<{
|
60619
60648
|
group: GroupItemProvide | null;
|
60620
|
-
}> & {} & 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 & {
|
60621
60650
|
replace: boolean;
|
60622
60651
|
fixed: boolean;
|
60623
60652
|
style: vue.StyleValue;
|
@@ -60657,6 +60686,7 @@ declare const VTab: {
|
|
60657
60686
|
minWidth?: string | number | undefined;
|
60658
60687
|
elevation?: string | number | undefined;
|
60659
60688
|
baseColor?: string | undefined;
|
60689
|
+
activeColor?: string | undefined;
|
60660
60690
|
prependIcon?: IconValue | undefined;
|
60661
60691
|
appendIcon?: IconValue | undefined;
|
60662
60692
|
sliderColor?: string | undefined;
|
@@ -60759,6 +60789,7 @@ declare const VTab: {
|
|
60759
60789
|
minWidth?: string | number | undefined;
|
60760
60790
|
elevation?: string | number | undefined;
|
60761
60791
|
baseColor?: string | undefined;
|
60792
|
+
activeColor?: string | undefined;
|
60762
60793
|
prependIcon?: IconValue | undefined;
|
60763
60794
|
appendIcon?: IconValue | undefined;
|
60764
60795
|
sliderColor?: string | undefined;
|
@@ -60846,6 +60877,7 @@ declare const VTab: {
|
|
60846
60877
|
location?: Anchor | undefined;
|
60847
60878
|
baseColor?: string | undefined;
|
60848
60879
|
selectedClass?: string | undefined;
|
60880
|
+
activeColor?: string | undefined;
|
60849
60881
|
prependIcon?: IconValue | undefined;
|
60850
60882
|
appendIcon?: IconValue | undefined;
|
60851
60883
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
@@ -60910,6 +60942,7 @@ declare const VTab: {
|
|
60910
60942
|
location?: Anchor | undefined;
|
60911
60943
|
baseColor?: string | undefined;
|
60912
60944
|
selectedClass?: string | undefined;
|
60945
|
+
activeColor?: string | undefined;
|
60913
60946
|
prependIcon?: IconValue | undefined;
|
60914
60947
|
appendIcon?: IconValue | undefined;
|
60915
60948
|
} & {
|
@@ -61004,6 +61037,7 @@ declare const VTab: {
|
|
61004
61037
|
location?: Anchor | undefined;
|
61005
61038
|
baseColor?: string | undefined;
|
61006
61039
|
selectedClass?: string | undefined;
|
61040
|
+
activeColor?: string | undefined;
|
61007
61041
|
prependIcon?: IconValue | undefined;
|
61008
61042
|
appendIcon?: IconValue | undefined;
|
61009
61043
|
} & {
|
@@ -61131,6 +61165,7 @@ declare const VTab: {
|
|
61131
61165
|
location?: Anchor | undefined;
|
61132
61166
|
baseColor?: string | undefined;
|
61133
61167
|
selectedClass?: string | undefined;
|
61168
|
+
activeColor?: string | undefined;
|
61134
61169
|
prependIcon?: IconValue | undefined;
|
61135
61170
|
appendIcon?: IconValue | undefined;
|
61136
61171
|
} & {
|
@@ -61157,7 +61192,7 @@ declare const VTab: {
|
|
61157
61192
|
}) => any) | undefined;
|
61158
61193
|
}, "group"> & vue.ShallowUnwrapRef<{
|
61159
61194
|
group: GroupItemProvide | null;
|
61160
|
-
}> & {} & 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}`>, {}, {}, {}, {
|
61161
61196
|
replace: boolean;
|
61162
61197
|
fixed: boolean;
|
61163
61198
|
style: vue.StyleValue;
|
@@ -61222,6 +61257,7 @@ declare const VTab: {
|
|
61222
61257
|
minWidth?: string | number | undefined;
|
61223
61258
|
elevation?: string | number | undefined;
|
61224
61259
|
baseColor?: string | undefined;
|
61260
|
+
activeColor?: string | undefined;
|
61225
61261
|
prependIcon?: IconValue | undefined;
|
61226
61262
|
appendIcon?: IconValue | undefined;
|
61227
61263
|
sliderColor?: string | undefined;
|
@@ -61309,6 +61345,7 @@ declare const VTab: {
|
|
61309
61345
|
location?: Anchor | undefined;
|
61310
61346
|
baseColor?: string | undefined;
|
61311
61347
|
selectedClass?: string | undefined;
|
61348
|
+
activeColor?: string | undefined;
|
61312
61349
|
prependIcon?: IconValue | undefined;
|
61313
61350
|
appendIcon?: IconValue | undefined;
|
61314
61351
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
@@ -61373,6 +61410,7 @@ declare const VTab: {
|
|
61373
61410
|
location?: Anchor | undefined;
|
61374
61411
|
baseColor?: string | undefined;
|
61375
61412
|
selectedClass?: string | undefined;
|
61413
|
+
activeColor?: string | undefined;
|
61376
61414
|
prependIcon?: IconValue | undefined;
|
61377
61415
|
appendIcon?: IconValue | undefined;
|
61378
61416
|
} & {
|
@@ -61467,6 +61505,7 @@ declare const VTab: {
|
|
61467
61505
|
location?: Anchor | undefined;
|
61468
61506
|
baseColor?: string | undefined;
|
61469
61507
|
selectedClass?: string | undefined;
|
61508
|
+
activeColor?: string | undefined;
|
61470
61509
|
prependIcon?: IconValue | undefined;
|
61471
61510
|
appendIcon?: IconValue | undefined;
|
61472
61511
|
} & {
|
@@ -61594,6 +61633,7 @@ declare const VTab: {
|
|
61594
61633
|
location?: Anchor | undefined;
|
61595
61634
|
baseColor?: string | undefined;
|
61596
61635
|
selectedClass?: string | undefined;
|
61636
|
+
activeColor?: string | undefined;
|
61597
61637
|
prependIcon?: IconValue | undefined;
|
61598
61638
|
appendIcon?: IconValue | undefined;
|
61599
61639
|
} & {
|
@@ -61620,7 +61660,7 @@ declare const VTab: {
|
|
61620
61660
|
}) => any) | undefined;
|
61621
61661
|
}, "group"> & vue.ShallowUnwrapRef<{
|
61622
61662
|
group: GroupItemProvide | null;
|
61623
|
-
}> & {} & 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, {
|
61624
61664
|
replace: boolean;
|
61625
61665
|
fixed: boolean;
|
61626
61666
|
style: vue.StyleValue;
|
@@ -61720,6 +61760,7 @@ declare const VTab: {
|
|
61720
61760
|
type: PropType<string>;
|
61721
61761
|
default: string;
|
61722
61762
|
};
|
61763
|
+
activeColor: StringConstructor;
|
61723
61764
|
prependIcon: PropType<IconValue>;
|
61724
61765
|
appendIcon: PropType<IconValue>;
|
61725
61766
|
slim: BooleanConstructor;
|
@@ -61803,6 +61844,7 @@ declare const VTab: {
|
|
61803
61844
|
type: PropType<string>;
|
61804
61845
|
default: string;
|
61805
61846
|
};
|
61847
|
+
activeColor: StringConstructor;
|
61806
61848
|
prependIcon: PropType<IconValue>;
|
61807
61849
|
appendIcon: PropType<IconValue>;
|
61808
61850
|
slim: BooleanConstructor;
|