@vuetify/nightly 3.6.3-dev.2024-05-06 → 3.6.3-dev.2024-05-29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -2
- package/dist/json/attributes.json +40 -0
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +144 -144
- package/dist/json/tags.json +11 -1
- package/dist/json/web-types.json +91 -1
- package/dist/vuetify-labs.css +1766 -1766
- package/dist/vuetify-labs.d.ts +147 -75
- package/dist/vuetify-labs.esm.js +11 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +11 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1119 -1119
- package/dist/vuetify.d.ts +183 -111
- package/dist/vuetify.esm.js +11 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +11 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/index.d.mts +6 -0
- package/lib/components/VAutocomplete/index.d.mts +12 -12
- package/lib/components/VBreadcrumbs/index.d.mts +8 -8
- package/lib/components/VBtn/VBtn.mjs +3 -1
- package/lib/components/VBtn/VBtn.mjs.map +1 -1
- package/lib/components/VBtn/index.d.mts +6 -0
- package/lib/components/VCombobox/index.d.mts +12 -12
- package/lib/components/VFab/index.d.mts +6 -0
- package/lib/components/VGrid/VContainer.mjs +6 -1
- package/lib/components/VGrid/VContainer.mjs.map +1 -1
- package/lib/components/VGrid/index.d.mts +36 -0
- package/lib/components/VList/index.d.mts +12 -12
- package/lib/components/VSelect/index.d.mts +12 -12
- package/lib/components/VTabs/index.d.mts +21 -3
- package/lib/components/index.d.mts +131 -59
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +52 -52
- package/lib/labs/VTreeview/index.d.mts +16 -16
- package/lib/labs/components.d.mts +16 -16
- package/package.json +1 -1
@@ -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;
|
@@ -36727,6 +36745,12 @@ declare const VContainer: {
|
|
36727
36745
|
fluid: boolean;
|
36728
36746
|
} & {
|
36729
36747
|
class?: any;
|
36748
|
+
width?: string | number | undefined;
|
36749
|
+
height?: string | number | undefined;
|
36750
|
+
maxHeight?: string | number | undefined;
|
36751
|
+
maxWidth?: string | number | undefined;
|
36752
|
+
minHeight?: string | number | undefined;
|
36753
|
+
minWidth?: string | number | undefined;
|
36730
36754
|
} & {
|
36731
36755
|
$children?: vue.VNodeChild | {
|
36732
36756
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -36742,6 +36766,12 @@ declare const VContainer: {
|
|
36742
36766
|
fluid: boolean;
|
36743
36767
|
} & {
|
36744
36768
|
class?: any;
|
36769
|
+
width?: string | number | undefined;
|
36770
|
+
height?: string | number | undefined;
|
36771
|
+
maxHeight?: string | number | undefined;
|
36772
|
+
maxWidth?: string | number | undefined;
|
36773
|
+
minHeight?: string | number | undefined;
|
36774
|
+
minWidth?: string | number | undefined;
|
36745
36775
|
} & {
|
36746
36776
|
$children?: vue.VNodeChild | {
|
36747
36777
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -36772,6 +36802,12 @@ declare const VContainer: {
|
|
36772
36802
|
fluid: boolean;
|
36773
36803
|
} & {
|
36774
36804
|
class?: any;
|
36805
|
+
width?: string | number | undefined;
|
36806
|
+
height?: string | number | undefined;
|
36807
|
+
maxHeight?: string | number | undefined;
|
36808
|
+
maxWidth?: string | number | undefined;
|
36809
|
+
minHeight?: string | number | undefined;
|
36810
|
+
minWidth?: string | number | undefined;
|
36775
36811
|
} & {
|
36776
36812
|
$children?: vue.VNodeChild | {
|
36777
36813
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -36795,6 +36831,12 @@ declare const VContainer: {
|
|
36795
36831
|
fluid: boolean;
|
36796
36832
|
} & {
|
36797
36833
|
class?: any;
|
36834
|
+
width?: string | number | undefined;
|
36835
|
+
height?: string | number | undefined;
|
36836
|
+
maxHeight?: string | number | undefined;
|
36837
|
+
maxWidth?: string | number | undefined;
|
36838
|
+
minHeight?: string | number | undefined;
|
36839
|
+
minWidth?: string | number | undefined;
|
36798
36840
|
} & {
|
36799
36841
|
$children?: vue.VNodeChild | {
|
36800
36842
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -36817,6 +36859,12 @@ declare const VContainer: {
|
|
36817
36859
|
type: StringConstructor;
|
36818
36860
|
default: string;
|
36819
36861
|
};
|
36862
|
+
height: (StringConstructor | NumberConstructor)[];
|
36863
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
36864
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
36865
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
36866
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
36867
|
+
width: (StringConstructor | NumberConstructor)[];
|
36820
36868
|
class: vue.PropType<any>;
|
36821
36869
|
style: {
|
36822
36870
|
type: vue.PropType<vue.StyleValue>;
|
@@ -36831,6 +36879,12 @@ declare const VContainer: {
|
|
36831
36879
|
type: StringConstructor;
|
36832
36880
|
default: string;
|
36833
36881
|
};
|
36882
|
+
height: (StringConstructor | NumberConstructor)[];
|
36883
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
36884
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
36885
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
36886
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
36887
|
+
width: (StringConstructor | NumberConstructor)[];
|
36834
36888
|
class: vue.PropType<any>;
|
36835
36889
|
style: {
|
36836
36890
|
type: vue.PropType<vue.StyleValue>;
|
@@ -39470,9 +39524,9 @@ declare const VList: {
|
|
39470
39524
|
elevation?: string | number | undefined;
|
39471
39525
|
baseColor?: string | undefined;
|
39472
39526
|
bgColor?: string | undefined;
|
39527
|
+
activeColor?: string | undefined;
|
39473
39528
|
activeClass?: string | undefined;
|
39474
39529
|
activeStrategy?: SelectStrategy | undefined;
|
39475
|
-
activeColor?: string | undefined;
|
39476
39530
|
collapseIcon?: string | undefined;
|
39477
39531
|
expandIcon?: string | undefined;
|
39478
39532
|
} & {
|
@@ -39551,9 +39605,9 @@ declare const VList: {
|
|
39551
39605
|
elevation?: string | number | undefined;
|
39552
39606
|
baseColor?: string | undefined;
|
39553
39607
|
bgColor?: string | undefined;
|
39608
|
+
activeColor?: string | undefined;
|
39554
39609
|
activeClass?: string | undefined;
|
39555
39610
|
activeStrategy?: SelectStrategy | undefined;
|
39556
|
-
activeColor?: string | undefined;
|
39557
39611
|
collapseIcon?: string | undefined;
|
39558
39612
|
expandIcon?: string | undefined;
|
39559
39613
|
} & {
|
@@ -39703,9 +39757,9 @@ declare const VList: {
|
|
39703
39757
|
elevation?: string | number | undefined;
|
39704
39758
|
baseColor?: string | undefined;
|
39705
39759
|
bgColor?: string | undefined;
|
39760
|
+
activeColor?: string | undefined;
|
39706
39761
|
activeClass?: string | undefined;
|
39707
39762
|
activeStrategy?: SelectStrategy | undefined;
|
39708
|
-
activeColor?: string | undefined;
|
39709
39763
|
collapseIcon?: string | undefined;
|
39710
39764
|
expandIcon?: string | undefined;
|
39711
39765
|
} & {
|
@@ -39788,9 +39842,9 @@ declare const VList: {
|
|
39788
39842
|
elevation?: string | number | undefined;
|
39789
39843
|
baseColor?: string | undefined;
|
39790
39844
|
bgColor?: string | undefined;
|
39845
|
+
activeColor?: string | undefined;
|
39791
39846
|
activeClass?: string | undefined;
|
39792
39847
|
activeStrategy?: SelectStrategy | undefined;
|
39793
|
-
activeColor?: string | undefined;
|
39794
39848
|
collapseIcon?: string | undefined;
|
39795
39849
|
expandIcon?: string | undefined;
|
39796
39850
|
} & {
|
@@ -40157,9 +40211,9 @@ declare const VListGroup: {
|
|
40157
40211
|
value?: any;
|
40158
40212
|
color?: string | undefined;
|
40159
40213
|
baseColor?: string | undefined;
|
40214
|
+
activeColor?: string | undefined;
|
40160
40215
|
prependIcon?: IconValue | undefined;
|
40161
40216
|
appendIcon?: IconValue | undefined;
|
40162
|
-
activeColor?: string | undefined;
|
40163
40217
|
} & {
|
40164
40218
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
40165
40219
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -40196,9 +40250,9 @@ declare const VListGroup: {
|
|
40196
40250
|
value?: any;
|
40197
40251
|
color?: string | undefined;
|
40198
40252
|
baseColor?: string | undefined;
|
40253
|
+
activeColor?: string | undefined;
|
40199
40254
|
prependIcon?: IconValue | undefined;
|
40200
40255
|
appendIcon?: IconValue | undefined;
|
40201
|
-
activeColor?: string | undefined;
|
40202
40256
|
} & {
|
40203
40257
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
40204
40258
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -40257,9 +40311,9 @@ declare const VListGroup: {
|
|
40257
40311
|
value?: any;
|
40258
40312
|
color?: string | undefined;
|
40259
40313
|
baseColor?: string | undefined;
|
40314
|
+
activeColor?: string | undefined;
|
40260
40315
|
prependIcon?: IconValue | undefined;
|
40261
40316
|
appendIcon?: IconValue | undefined;
|
40262
|
-
activeColor?: string | undefined;
|
40263
40317
|
} & {
|
40264
40318
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
40265
40319
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -40307,9 +40361,9 @@ declare const VListGroup: {
|
|
40307
40361
|
value?: any;
|
40308
40362
|
color?: string | undefined;
|
40309
40363
|
baseColor?: string | undefined;
|
40364
|
+
activeColor?: string | undefined;
|
40310
40365
|
prependIcon?: IconValue | undefined;
|
40311
40366
|
appendIcon?: IconValue | undefined;
|
40312
|
-
activeColor?: string | undefined;
|
40313
40367
|
} & {
|
40314
40368
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
40315
40369
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -48924,9 +48978,9 @@ declare const VSelect: {
|
|
48924
48978
|
elevation?: string | number | undefined;
|
48925
48979
|
baseColor?: string | undefined;
|
48926
48980
|
bgColor?: string | undefined;
|
48981
|
+
activeColor?: string | undefined;
|
48927
48982
|
activeClass?: string | undefined;
|
48928
48983
|
activeStrategy?: SelectStrategy | undefined;
|
48929
|
-
activeColor?: string | undefined;
|
48930
48984
|
collapseIcon?: string | undefined;
|
48931
48985
|
expandIcon?: string | undefined;
|
48932
48986
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -48979,9 +49033,9 @@ declare const VSelect: {
|
|
48979
49033
|
elevation?: string | number | undefined;
|
48980
49034
|
baseColor?: string | undefined;
|
48981
49035
|
bgColor?: string | undefined;
|
49036
|
+
activeColor?: string | undefined;
|
48982
49037
|
activeClass?: string | undefined;
|
48983
49038
|
activeStrategy?: SelectStrategy | undefined;
|
48984
|
-
activeColor?: string | undefined;
|
48985
49039
|
collapseIcon?: string | undefined;
|
48986
49040
|
expandIcon?: string | undefined;
|
48987
49041
|
} & {
|
@@ -49496,9 +49550,9 @@ declare const VSelect: {
|
|
49496
49550
|
elevation?: string | number | undefined;
|
49497
49551
|
baseColor?: string | undefined;
|
49498
49552
|
bgColor?: string | undefined;
|
49553
|
+
activeColor?: string | undefined;
|
49499
49554
|
activeClass?: string | undefined;
|
49500
49555
|
activeStrategy?: SelectStrategy | undefined;
|
49501
|
-
activeColor?: string | undefined;
|
49502
49556
|
collapseIcon?: string | undefined;
|
49503
49557
|
expandIcon?: string | undefined;
|
49504
49558
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -49551,9 +49605,9 @@ declare const VSelect: {
|
|
49551
49605
|
elevation?: string | number | undefined;
|
49552
49606
|
baseColor?: string | undefined;
|
49553
49607
|
bgColor?: string | undefined;
|
49608
|
+
activeColor?: string | undefined;
|
49554
49609
|
activeClass?: string | undefined;
|
49555
49610
|
activeStrategy?: SelectStrategy | undefined;
|
49556
|
-
activeColor?: string | undefined;
|
49557
49611
|
collapseIcon?: string | undefined;
|
49558
49612
|
expandIcon?: string | undefined;
|
49559
49613
|
} & {
|
@@ -50181,9 +50235,9 @@ declare const VSelect: {
|
|
50181
50235
|
elevation?: string | number | undefined;
|
50182
50236
|
baseColor?: string | undefined;
|
50183
50237
|
bgColor?: string | undefined;
|
50238
|
+
activeColor?: string | undefined;
|
50184
50239
|
activeClass?: string | undefined;
|
50185
50240
|
activeStrategy?: SelectStrategy | undefined;
|
50186
|
-
activeColor?: string | undefined;
|
50187
50241
|
collapseIcon?: string | undefined;
|
50188
50242
|
expandIcon?: string | undefined;
|
50189
50243
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -50236,9 +50290,9 @@ declare const VSelect: {
|
|
50236
50290
|
elevation?: string | number | undefined;
|
50237
50291
|
baseColor?: string | undefined;
|
50238
50292
|
bgColor?: string | undefined;
|
50293
|
+
activeColor?: string | undefined;
|
50239
50294
|
activeClass?: string | undefined;
|
50240
50295
|
activeStrategy?: SelectStrategy | undefined;
|
50241
|
-
activeColor?: string | undefined;
|
50242
50296
|
collapseIcon?: string | undefined;
|
50243
50297
|
expandIcon?: string | undefined;
|
50244
50298
|
} & {
|
@@ -50801,9 +50855,9 @@ declare const VSelect: {
|
|
50801
50855
|
elevation?: string | number | undefined;
|
50802
50856
|
baseColor?: string | undefined;
|
50803
50857
|
bgColor?: string | undefined;
|
50858
|
+
activeColor?: string | undefined;
|
50804
50859
|
activeClass?: string | undefined;
|
50805
50860
|
activeStrategy?: SelectStrategy | undefined;
|
50806
|
-
activeColor?: string | undefined;
|
50807
50861
|
collapseIcon?: string | undefined;
|
50808
50862
|
expandIcon?: string | undefined;
|
50809
50863
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -50856,9 +50910,9 @@ declare const VSelect: {
|
|
50856
50910
|
elevation?: string | number | undefined;
|
50857
50911
|
baseColor?: string | undefined;
|
50858
50912
|
bgColor?: string | undefined;
|
50913
|
+
activeColor?: string | undefined;
|
50859
50914
|
activeClass?: string | undefined;
|
50860
50915
|
activeStrategy?: SelectStrategy | undefined;
|
50861
|
-
activeColor?: string | undefined;
|
50862
50916
|
collapseIcon?: string | undefined;
|
50863
50917
|
expandIcon?: string | undefined;
|
50864
50918
|
} & {
|
@@ -51630,9 +51684,9 @@ declare const VSelect: {
|
|
51630
51684
|
elevation?: string | number | undefined;
|
51631
51685
|
baseColor?: string | undefined;
|
51632
51686
|
bgColor?: string | undefined;
|
51687
|
+
activeColor?: string | undefined;
|
51633
51688
|
activeClass?: string | undefined;
|
51634
51689
|
activeStrategy?: SelectStrategy | undefined;
|
51635
|
-
activeColor?: string | undefined;
|
51636
51690
|
collapseIcon?: string | undefined;
|
51637
51691
|
expandIcon?: string | undefined;
|
51638
51692
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -51685,9 +51739,9 @@ declare const VSelect: {
|
|
51685
51739
|
elevation?: string | number | undefined;
|
51686
51740
|
baseColor?: string | undefined;
|
51687
51741
|
bgColor?: string | undefined;
|
51742
|
+
activeColor?: string | undefined;
|
51688
51743
|
activeClass?: string | undefined;
|
51689
51744
|
activeStrategy?: SelectStrategy | undefined;
|
51690
|
-
activeColor?: string | undefined;
|
51691
51745
|
collapseIcon?: string | undefined;
|
51692
51746
|
expandIcon?: string | undefined;
|
51693
51747
|
} & {
|
@@ -52302,9 +52356,9 @@ declare const VSelect: {
|
|
52302
52356
|
elevation?: string | number | undefined;
|
52303
52357
|
baseColor?: string | undefined;
|
52304
52358
|
bgColor?: string | undefined;
|
52359
|
+
activeColor?: string | undefined;
|
52305
52360
|
activeClass?: string | undefined;
|
52306
52361
|
activeStrategy?: SelectStrategy | undefined;
|
52307
|
-
activeColor?: string | undefined;
|
52308
52362
|
collapseIcon?: string | undefined;
|
52309
52363
|
expandIcon?: string | undefined;
|
52310
52364
|
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
@@ -52357,9 +52411,9 @@ declare const VSelect: {
|
|
52357
52411
|
elevation?: string | number | undefined;
|
52358
52412
|
baseColor?: string | undefined;
|
52359
52413
|
bgColor?: string | undefined;
|
52414
|
+
activeColor?: string | undefined;
|
52360
52415
|
activeClass?: string | undefined;
|
52361
52416
|
activeStrategy?: SelectStrategy | undefined;
|
52362
|
-
activeColor?: string | undefined;
|
52363
52417
|
collapseIcon?: string | undefined;
|
52364
52418
|
expandIcon?: string | undefined;
|
52365
52419
|
} & {
|
@@ -60225,6 +60279,7 @@ declare const VTab: {
|
|
60225
60279
|
minWidth?: string | number | undefined;
|
60226
60280
|
elevation?: string | number | undefined;
|
60227
60281
|
baseColor?: string | undefined;
|
60282
|
+
activeColor?: string | undefined;
|
60228
60283
|
prependIcon?: IconValue | undefined;
|
60229
60284
|
appendIcon?: IconValue | undefined;
|
60230
60285
|
sliderColor?: string | undefined;
|
@@ -60312,6 +60367,7 @@ declare const VTab: {
|
|
60312
60367
|
location?: Anchor | undefined;
|
60313
60368
|
baseColor?: string | undefined;
|
60314
60369
|
selectedClass?: string | undefined;
|
60370
|
+
activeColor?: string | undefined;
|
60315
60371
|
prependIcon?: IconValue | undefined;
|
60316
60372
|
appendIcon?: IconValue | undefined;
|
60317
60373
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
@@ -60376,6 +60432,7 @@ declare const VTab: {
|
|
60376
60432
|
location?: Anchor | undefined;
|
60377
60433
|
baseColor?: string | undefined;
|
60378
60434
|
selectedClass?: string | undefined;
|
60435
|
+
activeColor?: string | undefined;
|
60379
60436
|
prependIcon?: IconValue | undefined;
|
60380
60437
|
appendIcon?: IconValue | undefined;
|
60381
60438
|
} & {
|
@@ -60470,6 +60527,7 @@ declare const VTab: {
|
|
60470
60527
|
location?: Anchor | undefined;
|
60471
60528
|
baseColor?: string | undefined;
|
60472
60529
|
selectedClass?: string | undefined;
|
60530
|
+
activeColor?: string | undefined;
|
60473
60531
|
prependIcon?: IconValue | undefined;
|
60474
60532
|
appendIcon?: IconValue | undefined;
|
60475
60533
|
} & {
|
@@ -60597,6 +60655,7 @@ declare const VTab: {
|
|
60597
60655
|
location?: Anchor | undefined;
|
60598
60656
|
baseColor?: string | undefined;
|
60599
60657
|
selectedClass?: string | undefined;
|
60658
|
+
activeColor?: string | undefined;
|
60600
60659
|
prependIcon?: IconValue | undefined;
|
60601
60660
|
appendIcon?: IconValue | undefined;
|
60602
60661
|
} & {
|
@@ -60623,7 +60682,7 @@ declare const VTab: {
|
|
60623
60682
|
}) => any) | undefined;
|
60624
60683
|
}, "group"> & vue.ShallowUnwrapRef<{
|
60625
60684
|
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 & {
|
60685
|
+
}> & {} & 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
60686
|
replace: boolean;
|
60628
60687
|
fixed: boolean;
|
60629
60688
|
style: vue.StyleValue;
|
@@ -60663,6 +60722,7 @@ declare const VTab: {
|
|
60663
60722
|
minWidth?: string | number | undefined;
|
60664
60723
|
elevation?: string | number | undefined;
|
60665
60724
|
baseColor?: string | undefined;
|
60725
|
+
activeColor?: string | undefined;
|
60666
60726
|
prependIcon?: IconValue | undefined;
|
60667
60727
|
appendIcon?: IconValue | undefined;
|
60668
60728
|
sliderColor?: string | undefined;
|
@@ -60765,6 +60825,7 @@ declare const VTab: {
|
|
60765
60825
|
minWidth?: string | number | undefined;
|
60766
60826
|
elevation?: string | number | undefined;
|
60767
60827
|
baseColor?: string | undefined;
|
60828
|
+
activeColor?: string | undefined;
|
60768
60829
|
prependIcon?: IconValue | undefined;
|
60769
60830
|
appendIcon?: IconValue | undefined;
|
60770
60831
|
sliderColor?: string | undefined;
|
@@ -60852,6 +60913,7 @@ declare const VTab: {
|
|
60852
60913
|
location?: Anchor | undefined;
|
60853
60914
|
baseColor?: string | undefined;
|
60854
60915
|
selectedClass?: string | undefined;
|
60916
|
+
activeColor?: string | undefined;
|
60855
60917
|
prependIcon?: IconValue | undefined;
|
60856
60918
|
appendIcon?: IconValue | undefined;
|
60857
60919
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
@@ -60916,6 +60978,7 @@ declare const VTab: {
|
|
60916
60978
|
location?: Anchor | undefined;
|
60917
60979
|
baseColor?: string | undefined;
|
60918
60980
|
selectedClass?: string | undefined;
|
60981
|
+
activeColor?: string | undefined;
|
60919
60982
|
prependIcon?: IconValue | undefined;
|
60920
60983
|
appendIcon?: IconValue | undefined;
|
60921
60984
|
} & {
|
@@ -61010,6 +61073,7 @@ declare const VTab: {
|
|
61010
61073
|
location?: Anchor | undefined;
|
61011
61074
|
baseColor?: string | undefined;
|
61012
61075
|
selectedClass?: string | undefined;
|
61076
|
+
activeColor?: string | undefined;
|
61013
61077
|
prependIcon?: IconValue | undefined;
|
61014
61078
|
appendIcon?: IconValue | undefined;
|
61015
61079
|
} & {
|
@@ -61137,6 +61201,7 @@ declare const VTab: {
|
|
61137
61201
|
location?: Anchor | undefined;
|
61138
61202
|
baseColor?: string | undefined;
|
61139
61203
|
selectedClass?: string | undefined;
|
61204
|
+
activeColor?: string | undefined;
|
61140
61205
|
prependIcon?: IconValue | undefined;
|
61141
61206
|
appendIcon?: IconValue | undefined;
|
61142
61207
|
} & {
|
@@ -61163,7 +61228,7 @@ declare const VTab: {
|
|
61163
61228
|
}) => any) | undefined;
|
61164
61229
|
}, "group"> & vue.ShallowUnwrapRef<{
|
61165
61230
|
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}`>, {}, {}, {}, {
|
61231
|
+
}> & {} & 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
61232
|
replace: boolean;
|
61168
61233
|
fixed: boolean;
|
61169
61234
|
style: vue.StyleValue;
|
@@ -61228,6 +61293,7 @@ declare const VTab: {
|
|
61228
61293
|
minWidth?: string | number | undefined;
|
61229
61294
|
elevation?: string | number | undefined;
|
61230
61295
|
baseColor?: string | undefined;
|
61296
|
+
activeColor?: string | undefined;
|
61231
61297
|
prependIcon?: IconValue | undefined;
|
61232
61298
|
appendIcon?: IconValue | undefined;
|
61233
61299
|
sliderColor?: string | undefined;
|
@@ -61315,6 +61381,7 @@ declare const VTab: {
|
|
61315
61381
|
location?: Anchor | undefined;
|
61316
61382
|
baseColor?: string | undefined;
|
61317
61383
|
selectedClass?: string | undefined;
|
61384
|
+
activeColor?: string | undefined;
|
61318
61385
|
prependIcon?: IconValue | undefined;
|
61319
61386
|
appendIcon?: IconValue | undefined;
|
61320
61387
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
@@ -61379,6 +61446,7 @@ declare const VTab: {
|
|
61379
61446
|
location?: Anchor | undefined;
|
61380
61447
|
baseColor?: string | undefined;
|
61381
61448
|
selectedClass?: string | undefined;
|
61449
|
+
activeColor?: string | undefined;
|
61382
61450
|
prependIcon?: IconValue | undefined;
|
61383
61451
|
appendIcon?: IconValue | undefined;
|
61384
61452
|
} & {
|
@@ -61473,6 +61541,7 @@ declare const VTab: {
|
|
61473
61541
|
location?: Anchor | undefined;
|
61474
61542
|
baseColor?: string | undefined;
|
61475
61543
|
selectedClass?: string | undefined;
|
61544
|
+
activeColor?: string | undefined;
|
61476
61545
|
prependIcon?: IconValue | undefined;
|
61477
61546
|
appendIcon?: IconValue | undefined;
|
61478
61547
|
} & {
|
@@ -61600,6 +61669,7 @@ declare const VTab: {
|
|
61600
61669
|
location?: Anchor | undefined;
|
61601
61670
|
baseColor?: string | undefined;
|
61602
61671
|
selectedClass?: string | undefined;
|
61672
|
+
activeColor?: string | undefined;
|
61603
61673
|
prependIcon?: IconValue | undefined;
|
61604
61674
|
appendIcon?: IconValue | undefined;
|
61605
61675
|
} & {
|
@@ -61626,7 +61696,7 @@ declare const VTab: {
|
|
61626
61696
|
}) => any) | undefined;
|
61627
61697
|
}, "group"> & vue.ShallowUnwrapRef<{
|
61628
61698
|
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, {
|
61699
|
+
}> & {} & 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
61700
|
replace: boolean;
|
61631
61701
|
fixed: boolean;
|
61632
61702
|
style: vue.StyleValue;
|
@@ -61726,6 +61796,7 @@ declare const VTab: {
|
|
61726
61796
|
type: PropType<string>;
|
61727
61797
|
default: string;
|
61728
61798
|
};
|
61799
|
+
activeColor: StringConstructor;
|
61729
61800
|
prependIcon: PropType<IconValue>;
|
61730
61801
|
appendIcon: PropType<IconValue>;
|
61731
61802
|
slim: BooleanConstructor;
|
@@ -61809,6 +61880,7 @@ declare const VTab: {
|
|
61809
61880
|
type: PropType<string>;
|
61810
61881
|
default: string;
|
61811
61882
|
};
|
61883
|
+
activeColor: StringConstructor;
|
61812
61884
|
prependIcon: PropType<IconValue>;
|
61813
61885
|
appendIcon: PropType<IconValue>;
|
61814
61886
|
slim: BooleanConstructor;
|