@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.
Files changed (45) hide show
  1. package/CHANGELOG.md +8 -2
  2. package/dist/json/attributes.json +20 -0
  3. package/dist/json/importMap-labs.json +4 -4
  4. package/dist/json/importMap.json +144 -144
  5. package/dist/json/tags.json +5 -0
  6. package/dist/json/web-types.json +47 -1
  7. package/dist/vuetify-labs.css +2500 -2493
  8. package/dist/vuetify-labs.d.ts +117 -75
  9. package/dist/vuetify-labs.esm.js +11 -5
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +11 -5
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +475 -468
  14. package/dist/vuetify.d.ts +149 -107
  15. package/dist/vuetify.esm.js +11 -5
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +11 -5
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +10 -10
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAppBar/index.d.mts +6 -0
  23. package/lib/components/VAutocomplete/index.d.mts +12 -12
  24. package/lib/components/VAvatar/VAvatar.css +7 -0
  25. package/lib/components/VAvatar/VAvatar.mjs +6 -1
  26. package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
  27. package/lib/components/VAvatar/VAvatar.sass +1 -0
  28. package/lib/components/VAvatar/_variables.scss +13 -0
  29. package/lib/components/VAvatar/index.d.mts +6 -0
  30. package/lib/components/VBreadcrumbs/index.d.mts +8 -8
  31. package/lib/components/VBtn/VBtn.mjs +3 -1
  32. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  33. package/lib/components/VBtn/index.d.mts +6 -0
  34. package/lib/components/VCombobox/index.d.mts +12 -12
  35. package/lib/components/VFab/index.d.mts +6 -0
  36. package/lib/components/VList/index.d.mts +12 -12
  37. package/lib/components/VSelect/index.d.mts +12 -12
  38. package/lib/components/VTabs/index.d.mts +21 -3
  39. package/lib/components/index.d.mts +101 -59
  40. package/lib/entry-bundler.mjs +1 -1
  41. package/lib/framework.mjs +1 -1
  42. package/lib/index.d.mts +48 -48
  43. package/lib/labs/VTreeview/index.d.mts +16 -16
  44. package/lib/labs/components.d.mts +16 -16
  45. package/package.json +1 -1
@@ -1844,6 +1844,7 @@ declare const VAppBarNavIcon: {
1844
1844
  location?: Anchor | undefined;
1845
1845
  baseColor?: string | undefined;
1846
1846
  selectedClass?: string | undefined;
1847
+ activeColor?: string | undefined;
1847
1848
  prependIcon?: IconValue | undefined;
1848
1849
  appendIcon?: IconValue | undefined;
1849
1850
  } & {
@@ -1907,6 +1908,7 @@ declare const VAppBarNavIcon: {
1907
1908
  location?: Anchor | undefined;
1908
1909
  baseColor?: string | undefined;
1909
1910
  selectedClass?: string | undefined;
1911
+ activeColor?: string | undefined;
1910
1912
  prependIcon?: IconValue | undefined;
1911
1913
  appendIcon?: IconValue | undefined;
1912
1914
  } & {
@@ -2012,6 +2014,7 @@ declare const VAppBarNavIcon: {
2012
2014
  location?: Anchor | undefined;
2013
2015
  baseColor?: string | undefined;
2014
2016
  selectedClass?: string | undefined;
2017
+ activeColor?: string | undefined;
2015
2018
  prependIcon?: IconValue | undefined;
2016
2019
  appendIcon?: IconValue | undefined;
2017
2020
  } & {
@@ -2101,6 +2104,7 @@ declare const VAppBarNavIcon: {
2101
2104
  location?: Anchor | undefined;
2102
2105
  baseColor?: string | undefined;
2103
2106
  selectedClass?: string | undefined;
2107
+ activeColor?: string | undefined;
2104
2108
  prependIcon?: IconValue | undefined;
2105
2109
  appendIcon?: IconValue | undefined;
2106
2110
  } & {
@@ -2224,6 +2228,7 @@ declare const VAppBarNavIcon: {
2224
2228
  type: BooleanConstructor;
2225
2229
  default: undefined;
2226
2230
  };
2231
+ activeColor: StringConstructor;
2227
2232
  baseColor: StringConstructor;
2228
2233
  symbol: {
2229
2234
  type: null;
@@ -2315,6 +2320,7 @@ declare const VAppBarNavIcon: {
2315
2320
  type: BooleanConstructor;
2316
2321
  default: undefined;
2317
2322
  };
2323
+ activeColor: StringConstructor;
2318
2324
  baseColor: StringConstructor;
2319
2325
  symbol: {
2320
2326
  type: null;
@@ -4240,12 +4246,12 @@ declare const VListItem: {
4240
4246
  minWidth?: string | number | undefined;
4241
4247
  elevation?: string | number | undefined;
4242
4248
  baseColor?: string | undefined;
4249
+ activeColor?: string | undefined;
4243
4250
  prependIcon?: IconValue | undefined;
4244
4251
  appendIcon?: IconValue | undefined;
4245
4252
  activeClass?: string | undefined;
4246
4253
  appendAvatar?: string | undefined;
4247
4254
  prependAvatar?: string | undefined;
4248
- activeColor?: string | undefined;
4249
4255
  subtitle?: string | number | undefined;
4250
4256
  lines?: "one" | "two" | "three" | undefined;
4251
4257
  } & {
@@ -4317,12 +4323,12 @@ declare const VListItem: {
4317
4323
  minWidth?: string | number | undefined;
4318
4324
  elevation?: string | number | undefined;
4319
4325
  baseColor?: string | undefined;
4326
+ activeColor?: string | undefined;
4320
4327
  prependIcon?: IconValue | undefined;
4321
4328
  appendIcon?: IconValue | undefined;
4322
4329
  activeClass?: string | undefined;
4323
4330
  appendAvatar?: string | undefined;
4324
4331
  prependAvatar?: string | undefined;
4325
- activeColor?: string | undefined;
4326
4332
  subtitle?: string | number | undefined;
4327
4333
  lines?: "one" | "two" | "three" | undefined;
4328
4334
  } & {
@@ -4424,12 +4430,12 @@ declare const VListItem: {
4424
4430
  minWidth?: string | number | undefined;
4425
4431
  elevation?: string | number | undefined;
4426
4432
  baseColor?: string | undefined;
4433
+ activeColor?: string | undefined;
4427
4434
  prependIcon?: IconValue | undefined;
4428
4435
  appendIcon?: IconValue | undefined;
4429
4436
  activeClass?: string | undefined;
4430
4437
  appendAvatar?: string | undefined;
4431
4438
  prependAvatar?: string | undefined;
4432
- activeColor?: string | undefined;
4433
4439
  subtitle?: string | number | undefined;
4434
4440
  lines?: "one" | "two" | "three" | undefined;
4435
4441
  } & {
@@ -4520,12 +4526,12 @@ declare const VListItem: {
4520
4526
  minWidth?: string | number | undefined;
4521
4527
  elevation?: string | number | undefined;
4522
4528
  baseColor?: string | undefined;
4529
+ activeColor?: string | undefined;
4523
4530
  prependIcon?: IconValue | undefined;
4524
4531
  appendIcon?: IconValue | undefined;
4525
4532
  activeClass?: string | undefined;
4526
4533
  appendAvatar?: string | undefined;
4527
4534
  prependAvatar?: string | undefined;
4528
- activeColor?: string | undefined;
4529
4535
  subtitle?: string | number | undefined;
4530
4536
  lines?: "one" | "two" | "three" | undefined;
4531
4537
  } & {
@@ -4932,9 +4938,9 @@ declare const VAutocomplete: {
4932
4938
  elevation?: string | number | undefined;
4933
4939
  baseColor?: string | undefined;
4934
4940
  bgColor?: string | undefined;
4941
+ activeColor?: string | undefined;
4935
4942
  activeClass?: string | undefined;
4936
4943
  activeStrategy?: SelectStrategy | undefined;
4937
- activeColor?: string | undefined;
4938
4944
  collapseIcon?: string | undefined;
4939
4945
  expandIcon?: string | undefined;
4940
4946
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -4987,9 +4993,9 @@ declare const VAutocomplete: {
4987
4993
  elevation?: string | number | undefined;
4988
4994
  baseColor?: string | undefined;
4989
4995
  bgColor?: string | undefined;
4996
+ activeColor?: string | undefined;
4990
4997
  activeClass?: string | undefined;
4991
4998
  activeStrategy?: SelectStrategy | undefined;
4992
- activeColor?: string | undefined;
4993
4999
  collapseIcon?: string | undefined;
4994
5000
  expandIcon?: string | undefined;
4995
5001
  } & {
@@ -5512,9 +5518,9 @@ declare const VAutocomplete: {
5512
5518
  elevation?: string | number | undefined;
5513
5519
  baseColor?: string | undefined;
5514
5520
  bgColor?: string | undefined;
5521
+ activeColor?: string | undefined;
5515
5522
  activeClass?: string | undefined;
5516
5523
  activeStrategy?: SelectStrategy | undefined;
5517
- activeColor?: string | undefined;
5518
5524
  collapseIcon?: string | undefined;
5519
5525
  expandIcon?: string | undefined;
5520
5526
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -5567,9 +5573,9 @@ declare const VAutocomplete: {
5567
5573
  elevation?: string | number | undefined;
5568
5574
  baseColor?: string | undefined;
5569
5575
  bgColor?: string | undefined;
5576
+ activeColor?: string | undefined;
5570
5577
  activeClass?: string | undefined;
5571
5578
  activeStrategy?: SelectStrategy | undefined;
5572
- activeColor?: string | undefined;
5573
5579
  collapseIcon?: string | undefined;
5574
5580
  expandIcon?: string | undefined;
5575
5581
  } & {
@@ -6206,9 +6212,9 @@ declare const VAutocomplete: {
6206
6212
  elevation?: string | number | undefined;
6207
6213
  baseColor?: string | undefined;
6208
6214
  bgColor?: string | undefined;
6215
+ activeColor?: string | undefined;
6209
6216
  activeClass?: string | undefined;
6210
6217
  activeStrategy?: SelectStrategy | undefined;
6211
- activeColor?: string | undefined;
6212
6218
  collapseIcon?: string | undefined;
6213
6219
  expandIcon?: string | undefined;
6214
6220
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -6261,9 +6267,9 @@ declare const VAutocomplete: {
6261
6267
  elevation?: string | number | undefined;
6262
6268
  baseColor?: string | undefined;
6263
6269
  bgColor?: string | undefined;
6270
+ activeColor?: string | undefined;
6264
6271
  activeClass?: string | undefined;
6265
6272
  activeStrategy?: SelectStrategy | undefined;
6266
- activeColor?: string | undefined;
6267
6273
  collapseIcon?: string | undefined;
6268
6274
  expandIcon?: string | undefined;
6269
6275
  } & {
@@ -6835,9 +6841,9 @@ declare const VAutocomplete: {
6835
6841
  elevation?: string | number | undefined;
6836
6842
  baseColor?: string | undefined;
6837
6843
  bgColor?: string | undefined;
6844
+ activeColor?: string | undefined;
6838
6845
  activeClass?: string | undefined;
6839
6846
  activeStrategy?: SelectStrategy | undefined;
6840
- activeColor?: string | undefined;
6841
6847
  collapseIcon?: string | undefined;
6842
6848
  expandIcon?: string | undefined;
6843
6849
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -6890,9 +6896,9 @@ declare const VAutocomplete: {
6890
6896
  elevation?: string | number | undefined;
6891
6897
  baseColor?: string | undefined;
6892
6898
  bgColor?: string | undefined;
6899
+ activeColor?: string | undefined;
6893
6900
  activeClass?: string | undefined;
6894
6901
  activeStrategy?: SelectStrategy | undefined;
6895
- activeColor?: string | undefined;
6896
6902
  collapseIcon?: string | undefined;
6897
6903
  expandIcon?: string | undefined;
6898
6904
  } & {
@@ -7665,9 +7671,9 @@ declare const VAutocomplete: {
7665
7671
  elevation?: string | number | undefined;
7666
7672
  baseColor?: string | undefined;
7667
7673
  bgColor?: string | undefined;
7674
+ activeColor?: string | undefined;
7668
7675
  activeClass?: string | undefined;
7669
7676
  activeStrategy?: SelectStrategy | undefined;
7670
- activeColor?: string | undefined;
7671
7677
  collapseIcon?: string | undefined;
7672
7678
  expandIcon?: string | undefined;
7673
7679
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -7720,9 +7726,9 @@ declare const VAutocomplete: {
7720
7726
  elevation?: string | number | undefined;
7721
7727
  baseColor?: string | undefined;
7722
7728
  bgColor?: string | undefined;
7729
+ activeColor?: string | undefined;
7723
7730
  activeClass?: string | undefined;
7724
7731
  activeStrategy?: SelectStrategy | undefined;
7725
- activeColor?: string | undefined;
7726
7732
  collapseIcon?: string | undefined;
7727
7733
  expandIcon?: string | undefined;
7728
7734
  } & {
@@ -8349,9 +8355,9 @@ declare const VAutocomplete: {
8349
8355
  elevation?: string | number | undefined;
8350
8356
  baseColor?: string | undefined;
8351
8357
  bgColor?: string | undefined;
8358
+ activeColor?: string | undefined;
8352
8359
  activeClass?: string | undefined;
8353
8360
  activeStrategy?: SelectStrategy | undefined;
8354
- activeColor?: string | undefined;
8355
8361
  collapseIcon?: string | undefined;
8356
8362
  expandIcon?: string | undefined;
8357
8363
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -8404,9 +8410,9 @@ declare const VAutocomplete: {
8404
8410
  elevation?: string | number | undefined;
8405
8411
  baseColor?: string | undefined;
8406
8412
  bgColor?: string | undefined;
8413
+ activeColor?: string | undefined;
8407
8414
  activeClass?: string | undefined;
8408
8415
  activeStrategy?: SelectStrategy | undefined;
8409
- activeColor?: string | undefined;
8410
8416
  collapseIcon?: string | undefined;
8411
8417
  expandIcon?: string | undefined;
8412
8418
  } & {
@@ -8833,6 +8839,7 @@ declare const VAvatar: {
8833
8839
  theme?: string | undefined;
8834
8840
  color?: string | undefined;
8835
8841
  icon?: IconValue | undefined;
8842
+ border?: string | number | boolean | undefined;
8836
8843
  rounded?: string | number | boolean | undefined;
8837
8844
  } & {
8838
8845
  $children?: vue.VNodeChild | {
@@ -8859,6 +8866,7 @@ declare const VAvatar: {
8859
8866
  theme?: string | undefined;
8860
8867
  color?: string | undefined;
8861
8868
  icon?: IconValue | undefined;
8869
+ border?: string | number | boolean | undefined;
8862
8870
  rounded?: string | number | boolean | undefined;
8863
8871
  } & {
8864
8872
  $children?: vue.VNodeChild | {
@@ -8906,6 +8914,7 @@ declare const VAvatar: {
8906
8914
  theme?: string | undefined;
8907
8915
  color?: string | undefined;
8908
8916
  icon?: IconValue | undefined;
8917
+ border?: string | number | boolean | undefined;
8909
8918
  rounded?: string | number | boolean | undefined;
8910
8919
  } & {
8911
8920
  $children?: vue.VNodeChild | {
@@ -8946,6 +8955,7 @@ declare const VAvatar: {
8946
8955
  theme?: string | undefined;
8947
8956
  color?: string | undefined;
8948
8957
  icon?: IconValue | undefined;
8958
+ border?: string | number | boolean | undefined;
8949
8959
  rounded?: string | number | boolean | undefined;
8950
8960
  } & {
8951
8961
  $children?: vue.VNodeChild | {
@@ -9004,6 +9014,7 @@ declare const VAvatar: {
9004
9014
  type: vue.PropType<vue.StyleValue>;
9005
9015
  default: null;
9006
9016
  };
9017
+ border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
9007
9018
  start: BooleanConstructor;
9008
9019
  end: BooleanConstructor;
9009
9020
  icon: vue.PropType<IconValue>;
@@ -9043,6 +9054,7 @@ declare const VAvatar: {
9043
9054
  type: vue.PropType<vue.StyleValue>;
9044
9055
  default: null;
9045
9056
  };
9057
+ border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
9046
9058
  start: BooleanConstructor;
9047
9059
  end: BooleanConstructor;
9048
9060
  icon: vue.PropType<IconValue>;
@@ -11035,8 +11047,8 @@ declare const VBreadcrumbs: {
11035
11047
  icon?: IconValue | undefined;
11036
11048
  rounded?: string | number | boolean | undefined;
11037
11049
  bgColor?: string | undefined;
11038
- activeClass?: string | undefined;
11039
11050
  activeColor?: string | undefined;
11051
+ activeClass?: string | undefined;
11040
11052
  }, {}, 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 & {
11041
11053
  style: vue.StyleValue;
11042
11054
  disabled: boolean;
@@ -11050,8 +11062,8 @@ declare const VBreadcrumbs: {
11050
11062
  icon?: IconValue | undefined;
11051
11063
  rounded?: string | number | boolean | undefined;
11052
11064
  bgColor?: string | undefined;
11053
- activeClass?: string | undefined;
11054
11065
  activeColor?: string | undefined;
11066
+ activeClass?: string | undefined;
11055
11067
  }, {
11056
11068
  style: vue.StyleValue;
11057
11069
  disabled: boolean;
@@ -11105,8 +11117,8 @@ declare const VBreadcrumbs: {
11105
11117
  icon?: IconValue | undefined;
11106
11118
  rounded?: string | number | boolean | undefined;
11107
11119
  bgColor?: string | undefined;
11108
- activeClass?: string | undefined;
11109
11120
  activeColor?: string | undefined;
11121
+ activeClass?: string | undefined;
11110
11122
  }, {}, {}, {}, {}, {
11111
11123
  style: vue.StyleValue;
11112
11124
  disabled: boolean;
@@ -11132,8 +11144,8 @@ declare const VBreadcrumbs: {
11132
11144
  icon?: IconValue | undefined;
11133
11145
  rounded?: string | number | boolean | undefined;
11134
11146
  bgColor?: string | undefined;
11135
- activeClass?: string | undefined;
11136
11147
  activeColor?: string | undefined;
11148
+ activeClass?: string | undefined;
11137
11149
  }, {}, 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, {
11138
11150
  style: vue.StyleValue;
11139
11151
  disabled: boolean;
@@ -11292,8 +11304,8 @@ declare const VBreadcrumbsItem: {
11292
11304
  href?: string | undefined;
11293
11305
  color?: string | undefined;
11294
11306
  to?: vue_router.RouteLocationRaw | undefined;
11295
- activeClass?: string | undefined;
11296
11307
  activeColor?: string | undefined;
11308
+ activeClass?: string | undefined;
11297
11309
  } & {
11298
11310
  $children?: vue.VNodeChild | {
11299
11311
  default?: (() => vue.VNodeChild) | undefined;
@@ -11316,8 +11328,8 @@ declare const VBreadcrumbsItem: {
11316
11328
  href?: string | undefined;
11317
11329
  color?: string | undefined;
11318
11330
  to?: vue_router.RouteLocationRaw | undefined;
11319
- activeClass?: string | undefined;
11320
11331
  activeColor?: string | undefined;
11332
+ activeClass?: string | undefined;
11321
11333
  } & {
11322
11334
  $children?: vue.VNodeChild | {
11323
11335
  default?: (() => vue.VNodeChild) | undefined;
@@ -11358,8 +11370,8 @@ declare const VBreadcrumbsItem: {
11358
11370
  href?: string | undefined;
11359
11371
  color?: string | undefined;
11360
11372
  to?: vue_router.RouteLocationRaw | undefined;
11361
- activeClass?: string | undefined;
11362
11373
  activeColor?: string | undefined;
11374
+ activeClass?: string | undefined;
11363
11375
  } & {
11364
11376
  $children?: vue.VNodeChild | {
11365
11377
  default?: (() => vue.VNodeChild) | undefined;
@@ -11393,8 +11405,8 @@ declare const VBreadcrumbsItem: {
11393
11405
  href?: string | undefined;
11394
11406
  color?: string | undefined;
11395
11407
  to?: vue_router.RouteLocationRaw | undefined;
11396
- activeClass?: string | undefined;
11397
11408
  activeColor?: string | undefined;
11409
+ activeClass?: string | undefined;
11398
11410
  } & {
11399
11411
  $children?: vue.VNodeChild | {
11400
11412
  default?: (() => vue.VNodeChild) | undefined;
@@ -11607,6 +11619,7 @@ declare const VBtn: {
11607
11619
  location?: Anchor | undefined;
11608
11620
  baseColor?: string | undefined;
11609
11621
  selectedClass?: string | undefined;
11622
+ activeColor?: string | undefined;
11610
11623
  prependIcon?: IconValue | undefined;
11611
11624
  appendIcon?: IconValue | undefined;
11612
11625
  } & {
@@ -11680,6 +11693,7 @@ declare const VBtn: {
11680
11693
  location?: Anchor | undefined;
11681
11694
  baseColor?: string | undefined;
11682
11695
  selectedClass?: string | undefined;
11696
+ activeColor?: string | undefined;
11683
11697
  prependIcon?: IconValue | undefined;
11684
11698
  appendIcon?: IconValue | undefined;
11685
11699
  } & {
@@ -11788,6 +11802,7 @@ declare const VBtn: {
11788
11802
  location?: Anchor | undefined;
11789
11803
  baseColor?: string | undefined;
11790
11804
  selectedClass?: string | undefined;
11805
+ activeColor?: string | undefined;
11791
11806
  prependIcon?: IconValue | undefined;
11792
11807
  appendIcon?: IconValue | undefined;
11793
11808
  } & {
@@ -11882,6 +11897,7 @@ declare const VBtn: {
11882
11897
  location?: Anchor | undefined;
11883
11898
  baseColor?: string | undefined;
11884
11899
  selectedClass?: string | undefined;
11900
+ activeColor?: string | undefined;
11885
11901
  prependIcon?: IconValue | undefined;
11886
11902
  appendIcon?: IconValue | undefined;
11887
11903
  } & {
@@ -12011,6 +12027,7 @@ declare const VBtn: {
12011
12027
  type: BooleanConstructor;
12012
12028
  default: undefined;
12013
12029
  };
12030
+ activeColor: StringConstructor;
12014
12031
  baseColor: StringConstructor;
12015
12032
  symbol: {
12016
12033
  type: null;
@@ -12096,6 +12113,7 @@ declare const VBtn: {
12096
12113
  type: BooleanConstructor;
12097
12114
  default: undefined;
12098
12115
  };
12116
+ activeColor: StringConstructor;
12099
12117
  baseColor: StringConstructor;
12100
12118
  symbol: {
12101
12119
  type: null;
@@ -18778,9 +18796,9 @@ declare const VCombobox: {
18778
18796
  elevation?: string | number | undefined;
18779
18797
  baseColor?: string | undefined;
18780
18798
  bgColor?: string | undefined;
18799
+ activeColor?: string | undefined;
18781
18800
  activeClass?: string | undefined;
18782
18801
  activeStrategy?: SelectStrategy | undefined;
18783
- activeColor?: string | undefined;
18784
18802
  collapseIcon?: string | undefined;
18785
18803
  expandIcon?: string | undefined;
18786
18804
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -18833,9 +18851,9 @@ declare const VCombobox: {
18833
18851
  elevation?: string | number | undefined;
18834
18852
  baseColor?: string | undefined;
18835
18853
  bgColor?: string | undefined;
18854
+ activeColor?: string | undefined;
18836
18855
  activeClass?: string | undefined;
18837
18856
  activeStrategy?: SelectStrategy | undefined;
18838
- activeColor?: string | undefined;
18839
18857
  collapseIcon?: string | undefined;
18840
18858
  expandIcon?: string | undefined;
18841
18859
  } & {
@@ -19358,9 +19376,9 @@ declare const VCombobox: {
19358
19376
  elevation?: string | number | undefined;
19359
19377
  baseColor?: string | undefined;
19360
19378
  bgColor?: string | undefined;
19379
+ activeColor?: string | undefined;
19361
19380
  activeClass?: string | undefined;
19362
19381
  activeStrategy?: SelectStrategy | undefined;
19363
- activeColor?: string | undefined;
19364
19382
  collapseIcon?: string | undefined;
19365
19383
  expandIcon?: string | undefined;
19366
19384
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -19413,9 +19431,9 @@ declare const VCombobox: {
19413
19431
  elevation?: string | number | undefined;
19414
19432
  baseColor?: string | undefined;
19415
19433
  bgColor?: string | undefined;
19434
+ activeColor?: string | undefined;
19416
19435
  activeClass?: string | undefined;
19417
19436
  activeStrategy?: SelectStrategy | undefined;
19418
- activeColor?: string | undefined;
19419
19437
  collapseIcon?: string | undefined;
19420
19438
  expandIcon?: string | undefined;
19421
19439
  } & {
@@ -20052,9 +20070,9 @@ declare const VCombobox: {
20052
20070
  elevation?: string | number | undefined;
20053
20071
  baseColor?: string | undefined;
20054
20072
  bgColor?: string | undefined;
20073
+ activeColor?: string | undefined;
20055
20074
  activeClass?: string | undefined;
20056
20075
  activeStrategy?: SelectStrategy | undefined;
20057
- activeColor?: string | undefined;
20058
20076
  collapseIcon?: string | undefined;
20059
20077
  expandIcon?: string | undefined;
20060
20078
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -20107,9 +20125,9 @@ declare const VCombobox: {
20107
20125
  elevation?: string | number | undefined;
20108
20126
  baseColor?: string | undefined;
20109
20127
  bgColor?: string | undefined;
20128
+ activeColor?: string | undefined;
20110
20129
  activeClass?: string | undefined;
20111
20130
  activeStrategy?: SelectStrategy | undefined;
20112
- activeColor?: string | undefined;
20113
20131
  collapseIcon?: string | undefined;
20114
20132
  expandIcon?: string | undefined;
20115
20133
  } & {
@@ -20681,9 +20699,9 @@ declare const VCombobox: {
20681
20699
  elevation?: string | number | undefined;
20682
20700
  baseColor?: string | undefined;
20683
20701
  bgColor?: string | undefined;
20702
+ activeColor?: string | undefined;
20684
20703
  activeClass?: string | undefined;
20685
20704
  activeStrategy?: SelectStrategy | undefined;
20686
- activeColor?: string | undefined;
20687
20705
  collapseIcon?: string | undefined;
20688
20706
  expandIcon?: string | undefined;
20689
20707
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -20736,9 +20754,9 @@ declare const VCombobox: {
20736
20754
  elevation?: string | number | undefined;
20737
20755
  baseColor?: string | undefined;
20738
20756
  bgColor?: string | undefined;
20757
+ activeColor?: string | undefined;
20739
20758
  activeClass?: string | undefined;
20740
20759
  activeStrategy?: SelectStrategy | undefined;
20741
- activeColor?: string | undefined;
20742
20760
  collapseIcon?: string | undefined;
20743
20761
  expandIcon?: string | undefined;
20744
20762
  } & {
@@ -21517,9 +21535,9 @@ declare const VCombobox: {
21517
21535
  elevation?: string | number | undefined;
21518
21536
  baseColor?: string | undefined;
21519
21537
  bgColor?: string | undefined;
21538
+ activeColor?: string | undefined;
21520
21539
  activeClass?: string | undefined;
21521
21540
  activeStrategy?: SelectStrategy | undefined;
21522
- activeColor?: string | undefined;
21523
21541
  collapseIcon?: string | undefined;
21524
21542
  expandIcon?: string | undefined;
21525
21543
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -21572,9 +21590,9 @@ declare const VCombobox: {
21572
21590
  elevation?: string | number | undefined;
21573
21591
  baseColor?: string | undefined;
21574
21592
  bgColor?: string | undefined;
21593
+ activeColor?: string | undefined;
21575
21594
  activeClass?: string | undefined;
21576
21595
  activeStrategy?: SelectStrategy | undefined;
21577
- activeColor?: string | undefined;
21578
21596
  collapseIcon?: string | undefined;
21579
21597
  expandIcon?: string | undefined;
21580
21598
  } & {
@@ -22210,9 +22228,9 @@ declare const VCombobox: {
22210
22228
  elevation?: string | number | undefined;
22211
22229
  baseColor?: string | undefined;
22212
22230
  bgColor?: string | undefined;
22231
+ activeColor?: string | undefined;
22213
22232
  activeClass?: string | undefined;
22214
22233
  activeStrategy?: SelectStrategy | undefined;
22215
- activeColor?: string | undefined;
22216
22234
  collapseIcon?: string | undefined;
22217
22235
  expandIcon?: string | undefined;
22218
22236
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -22265,9 +22283,9 @@ declare const VCombobox: {
22265
22283
  elevation?: string | number | undefined;
22266
22284
  baseColor?: string | undefined;
22267
22285
  bgColor?: string | undefined;
22286
+ activeColor?: string | undefined;
22268
22287
  activeClass?: string | undefined;
22269
22288
  activeStrategy?: SelectStrategy | undefined;
22270
- activeColor?: string | undefined;
22271
22289
  collapseIcon?: string | undefined;
22272
22290
  expandIcon?: string | undefined;
22273
22291
  } & {
@@ -33896,6 +33914,7 @@ declare const VFab: {
33896
33914
  elevation?: string | number | undefined;
33897
33915
  baseColor?: string | undefined;
33898
33916
  selectedClass?: string | undefined;
33917
+ activeColor?: string | undefined;
33899
33918
  prependIcon?: IconValue | undefined;
33900
33919
  appendIcon?: IconValue | undefined;
33901
33920
  } & {
@@ -33966,6 +33985,7 @@ declare const VFab: {
33966
33985
  elevation?: string | number | undefined;
33967
33986
  baseColor?: string | undefined;
33968
33987
  selectedClass?: string | undefined;
33988
+ activeColor?: string | undefined;
33969
33989
  prependIcon?: IconValue | undefined;
33970
33990
  appendIcon?: IconValue | undefined;
33971
33991
  } & {
@@ -34078,6 +34098,7 @@ declare const VFab: {
34078
34098
  elevation?: string | number | undefined;
34079
34099
  baseColor?: string | undefined;
34080
34100
  selectedClass?: string | undefined;
34101
+ activeColor?: string | undefined;
34081
34102
  prependIcon?: IconValue | undefined;
34082
34103
  appendIcon?: IconValue | undefined;
34083
34104
  } & {
@@ -34183,6 +34204,7 @@ declare const VFab: {
34183
34204
  elevation?: string | number | undefined;
34184
34205
  baseColor?: string | undefined;
34185
34206
  selectedClass?: string | undefined;
34207
+ activeColor?: string | undefined;
34186
34208
  prependIcon?: IconValue | undefined;
34187
34209
  appendIcon?: IconValue | undefined;
34188
34210
  } & {
@@ -34334,6 +34356,7 @@ declare const VFab: {
34334
34356
  };
34335
34357
  baseColor: StringConstructor;
34336
34358
  selectedClass: StringConstructor;
34359
+ activeColor: StringConstructor;
34337
34360
  prependIcon: PropType<IconValue>;
34338
34361
  appendIcon: PropType<IconValue>;
34339
34362
  slim: BooleanConstructor;
@@ -34456,6 +34479,7 @@ declare const VFab: {
34456
34479
  };
34457
34480
  baseColor: StringConstructor;
34458
34481
  selectedClass: StringConstructor;
34482
+ activeColor: StringConstructor;
34459
34483
  prependIcon: PropType<IconValue>;
34460
34484
  appendIcon: PropType<IconValue>;
34461
34485
  slim: BooleanConstructor;
@@ -40078,9 +40102,9 @@ declare const VList: {
40078
40102
  elevation?: string | number | undefined;
40079
40103
  baseColor?: string | undefined;
40080
40104
  bgColor?: string | undefined;
40105
+ activeColor?: string | undefined;
40081
40106
  activeClass?: string | undefined;
40082
40107
  activeStrategy?: SelectStrategy | undefined;
40083
- activeColor?: string | undefined;
40084
40108
  collapseIcon?: string | undefined;
40085
40109
  expandIcon?: string | undefined;
40086
40110
  } & {
@@ -40159,9 +40183,9 @@ declare const VList: {
40159
40183
  elevation?: string | number | undefined;
40160
40184
  baseColor?: string | undefined;
40161
40185
  bgColor?: string | undefined;
40186
+ activeColor?: string | undefined;
40162
40187
  activeClass?: string | undefined;
40163
40188
  activeStrategy?: SelectStrategy | undefined;
40164
- activeColor?: string | undefined;
40165
40189
  collapseIcon?: string | undefined;
40166
40190
  expandIcon?: string | undefined;
40167
40191
  } & {
@@ -40311,9 +40335,9 @@ declare const VList: {
40311
40335
  elevation?: string | number | undefined;
40312
40336
  baseColor?: string | undefined;
40313
40337
  bgColor?: string | undefined;
40338
+ activeColor?: string | undefined;
40314
40339
  activeClass?: string | undefined;
40315
40340
  activeStrategy?: SelectStrategy | undefined;
40316
- activeColor?: string | undefined;
40317
40341
  collapseIcon?: string | undefined;
40318
40342
  expandIcon?: string | undefined;
40319
40343
  } & {
@@ -40396,9 +40420,9 @@ declare const VList: {
40396
40420
  elevation?: string | number | undefined;
40397
40421
  baseColor?: string | undefined;
40398
40422
  bgColor?: string | undefined;
40423
+ activeColor?: string | undefined;
40399
40424
  activeClass?: string | undefined;
40400
40425
  activeStrategy?: SelectStrategy | undefined;
40401
- activeColor?: string | undefined;
40402
40426
  collapseIcon?: string | undefined;
40403
40427
  expandIcon?: string | undefined;
40404
40428
  } & {
@@ -40765,9 +40789,9 @@ declare const VListGroup: {
40765
40789
  value?: any;
40766
40790
  color?: string | undefined;
40767
40791
  baseColor?: string | undefined;
40792
+ activeColor?: string | undefined;
40768
40793
  prependIcon?: IconValue | undefined;
40769
40794
  appendIcon?: IconValue | undefined;
40770
- activeColor?: string | undefined;
40771
40795
  } & {
40772
40796
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
40773
40797
  default?: (() => vue.VNodeChild) | undefined;
@@ -40804,9 +40828,9 @@ declare const VListGroup: {
40804
40828
  value?: any;
40805
40829
  color?: string | undefined;
40806
40830
  baseColor?: string | undefined;
40831
+ activeColor?: string | undefined;
40807
40832
  prependIcon?: IconValue | undefined;
40808
40833
  appendIcon?: IconValue | undefined;
40809
- activeColor?: string | undefined;
40810
40834
  } & {
40811
40835
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
40812
40836
  default?: (() => vue.VNodeChild) | undefined;
@@ -40865,9 +40889,9 @@ declare const VListGroup: {
40865
40889
  value?: any;
40866
40890
  color?: string | undefined;
40867
40891
  baseColor?: string | undefined;
40892
+ activeColor?: string | undefined;
40868
40893
  prependIcon?: IconValue | undefined;
40869
40894
  appendIcon?: IconValue | undefined;
40870
- activeColor?: string | undefined;
40871
40895
  } & {
40872
40896
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
40873
40897
  default?: (() => vue.VNodeChild) | undefined;
@@ -40915,9 +40939,9 @@ declare const VListGroup: {
40915
40939
  value?: any;
40916
40940
  color?: string | undefined;
40917
40941
  baseColor?: string | undefined;
40942
+ activeColor?: string | undefined;
40918
40943
  prependIcon?: IconValue | undefined;
40919
40944
  appendIcon?: IconValue | undefined;
40920
- activeColor?: string | undefined;
40921
40945
  } & {
40922
40946
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
40923
40947
  default?: (() => vue.VNodeChild) | undefined;
@@ -49532,9 +49556,9 @@ declare const VSelect: {
49532
49556
  elevation?: string | number | undefined;
49533
49557
  baseColor?: string | undefined;
49534
49558
  bgColor?: string | undefined;
49559
+ activeColor?: string | undefined;
49535
49560
  activeClass?: string | undefined;
49536
49561
  activeStrategy?: SelectStrategy | undefined;
49537
- activeColor?: string | undefined;
49538
49562
  collapseIcon?: string | undefined;
49539
49563
  expandIcon?: string | undefined;
49540
49564
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -49587,9 +49611,9 @@ declare const VSelect: {
49587
49611
  elevation?: string | number | undefined;
49588
49612
  baseColor?: string | undefined;
49589
49613
  bgColor?: string | undefined;
49614
+ activeColor?: string | undefined;
49590
49615
  activeClass?: string | undefined;
49591
49616
  activeStrategy?: SelectStrategy | undefined;
49592
- activeColor?: string | undefined;
49593
49617
  collapseIcon?: string | undefined;
49594
49618
  expandIcon?: string | undefined;
49595
49619
  } & {
@@ -50104,9 +50128,9 @@ declare const VSelect: {
50104
50128
  elevation?: string | number | undefined;
50105
50129
  baseColor?: string | undefined;
50106
50130
  bgColor?: string | undefined;
50131
+ activeColor?: string | undefined;
50107
50132
  activeClass?: string | undefined;
50108
50133
  activeStrategy?: SelectStrategy | undefined;
50109
- activeColor?: string | undefined;
50110
50134
  collapseIcon?: string | undefined;
50111
50135
  expandIcon?: string | undefined;
50112
50136
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -50159,9 +50183,9 @@ declare const VSelect: {
50159
50183
  elevation?: string | number | undefined;
50160
50184
  baseColor?: string | undefined;
50161
50185
  bgColor?: string | undefined;
50186
+ activeColor?: string | undefined;
50162
50187
  activeClass?: string | undefined;
50163
50188
  activeStrategy?: SelectStrategy | undefined;
50164
- activeColor?: string | undefined;
50165
50189
  collapseIcon?: string | undefined;
50166
50190
  expandIcon?: string | undefined;
50167
50191
  } & {
@@ -50789,9 +50813,9 @@ declare const VSelect: {
50789
50813
  elevation?: string | number | undefined;
50790
50814
  baseColor?: string | undefined;
50791
50815
  bgColor?: string | undefined;
50816
+ activeColor?: string | undefined;
50792
50817
  activeClass?: string | undefined;
50793
50818
  activeStrategy?: SelectStrategy | undefined;
50794
- activeColor?: string | undefined;
50795
50819
  collapseIcon?: string | undefined;
50796
50820
  expandIcon?: string | undefined;
50797
50821
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -50844,9 +50868,9 @@ declare const VSelect: {
50844
50868
  elevation?: string | number | undefined;
50845
50869
  baseColor?: string | undefined;
50846
50870
  bgColor?: string | undefined;
50871
+ activeColor?: string | undefined;
50847
50872
  activeClass?: string | undefined;
50848
50873
  activeStrategy?: SelectStrategy | undefined;
50849
- activeColor?: string | undefined;
50850
50874
  collapseIcon?: string | undefined;
50851
50875
  expandIcon?: string | undefined;
50852
50876
  } & {
@@ -51409,9 +51433,9 @@ declare const VSelect: {
51409
51433
  elevation?: string | number | undefined;
51410
51434
  baseColor?: string | undefined;
51411
51435
  bgColor?: string | undefined;
51436
+ activeColor?: string | undefined;
51412
51437
  activeClass?: string | undefined;
51413
51438
  activeStrategy?: SelectStrategy | undefined;
51414
- activeColor?: string | undefined;
51415
51439
  collapseIcon?: string | undefined;
51416
51440
  expandIcon?: string | undefined;
51417
51441
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -51464,9 +51488,9 @@ declare const VSelect: {
51464
51488
  elevation?: string | number | undefined;
51465
51489
  baseColor?: string | undefined;
51466
51490
  bgColor?: string | undefined;
51491
+ activeColor?: string | undefined;
51467
51492
  activeClass?: string | undefined;
51468
51493
  activeStrategy?: SelectStrategy | undefined;
51469
- activeColor?: string | undefined;
51470
51494
  collapseIcon?: string | undefined;
51471
51495
  expandIcon?: string | undefined;
51472
51496
  } & {
@@ -52238,9 +52262,9 @@ declare const VSelect: {
52238
52262
  elevation?: string | number | undefined;
52239
52263
  baseColor?: string | undefined;
52240
52264
  bgColor?: string | undefined;
52265
+ activeColor?: string | undefined;
52241
52266
  activeClass?: string | undefined;
52242
52267
  activeStrategy?: SelectStrategy | undefined;
52243
- activeColor?: string | undefined;
52244
52268
  collapseIcon?: string | undefined;
52245
52269
  expandIcon?: string | undefined;
52246
52270
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -52293,9 +52317,9 @@ declare const VSelect: {
52293
52317
  elevation?: string | number | undefined;
52294
52318
  baseColor?: string | undefined;
52295
52319
  bgColor?: string | undefined;
52320
+ activeColor?: string | undefined;
52296
52321
  activeClass?: string | undefined;
52297
52322
  activeStrategy?: SelectStrategy | undefined;
52298
- activeColor?: string | undefined;
52299
52323
  collapseIcon?: string | undefined;
52300
52324
  expandIcon?: string | undefined;
52301
52325
  } & {
@@ -52910,9 +52934,9 @@ declare const VSelect: {
52910
52934
  elevation?: string | number | undefined;
52911
52935
  baseColor?: string | undefined;
52912
52936
  bgColor?: string | undefined;
52937
+ activeColor?: string | undefined;
52913
52938
  activeClass?: string | undefined;
52914
52939
  activeStrategy?: SelectStrategy | undefined;
52915
- activeColor?: string | undefined;
52916
52940
  collapseIcon?: string | undefined;
52917
52941
  expandIcon?: string | undefined;
52918
52942
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -52965,9 +52989,9 @@ declare const VSelect: {
52965
52989
  elevation?: string | number | undefined;
52966
52990
  baseColor?: string | undefined;
52967
52991
  bgColor?: string | undefined;
52992
+ activeColor?: string | undefined;
52968
52993
  activeClass?: string | undefined;
52969
52994
  activeStrategy?: SelectStrategy | undefined;
52970
- activeColor?: string | undefined;
52971
52995
  collapseIcon?: string | undefined;
52972
52996
  expandIcon?: string | undefined;
52973
52997
  } & {
@@ -60833,6 +60857,7 @@ declare const VTab: {
60833
60857
  minWidth?: string | number | undefined;
60834
60858
  elevation?: string | number | undefined;
60835
60859
  baseColor?: string | undefined;
60860
+ activeColor?: string | undefined;
60836
60861
  prependIcon?: IconValue | undefined;
60837
60862
  appendIcon?: IconValue | undefined;
60838
60863
  sliderColor?: string | undefined;
@@ -60920,6 +60945,7 @@ declare const VTab: {
60920
60945
  location?: Anchor | undefined;
60921
60946
  baseColor?: string | undefined;
60922
60947
  selectedClass?: string | undefined;
60948
+ activeColor?: string | undefined;
60923
60949
  prependIcon?: IconValue | undefined;
60924
60950
  appendIcon?: IconValue | undefined;
60925
60951
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
@@ -60984,6 +61010,7 @@ declare const VTab: {
60984
61010
  location?: Anchor | undefined;
60985
61011
  baseColor?: string | undefined;
60986
61012
  selectedClass?: string | undefined;
61013
+ activeColor?: string | undefined;
60987
61014
  prependIcon?: IconValue | undefined;
60988
61015
  appendIcon?: IconValue | undefined;
60989
61016
  } & {
@@ -61078,6 +61105,7 @@ declare const VTab: {
61078
61105
  location?: Anchor | undefined;
61079
61106
  baseColor?: string | undefined;
61080
61107
  selectedClass?: string | undefined;
61108
+ activeColor?: string | undefined;
61081
61109
  prependIcon?: IconValue | undefined;
61082
61110
  appendIcon?: IconValue | undefined;
61083
61111
  } & {
@@ -61205,6 +61233,7 @@ declare const VTab: {
61205
61233
  location?: Anchor | undefined;
61206
61234
  baseColor?: string | undefined;
61207
61235
  selectedClass?: string | undefined;
61236
+ activeColor?: string | undefined;
61208
61237
  prependIcon?: IconValue | undefined;
61209
61238
  appendIcon?: IconValue | undefined;
61210
61239
  } & {
@@ -61231,7 +61260,7 @@ declare const VTab: {
61231
61260
  }) => any) | undefined;
61232
61261
  }, "group"> & vue.ShallowUnwrapRef<{
61233
61262
  group: GroupItemProvide | null;
61234
- }> & {} & 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 & {
61263
+ }> & {} & 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 & {
61235
61264
  replace: boolean;
61236
61265
  fixed: boolean;
61237
61266
  style: vue.StyleValue;
@@ -61271,6 +61300,7 @@ declare const VTab: {
61271
61300
  minWidth?: string | number | undefined;
61272
61301
  elevation?: string | number | undefined;
61273
61302
  baseColor?: string | undefined;
61303
+ activeColor?: string | undefined;
61274
61304
  prependIcon?: IconValue | undefined;
61275
61305
  appendIcon?: IconValue | undefined;
61276
61306
  sliderColor?: string | undefined;
@@ -61373,6 +61403,7 @@ declare const VTab: {
61373
61403
  minWidth?: string | number | undefined;
61374
61404
  elevation?: string | number | undefined;
61375
61405
  baseColor?: string | undefined;
61406
+ activeColor?: string | undefined;
61376
61407
  prependIcon?: IconValue | undefined;
61377
61408
  appendIcon?: IconValue | undefined;
61378
61409
  sliderColor?: string | undefined;
@@ -61460,6 +61491,7 @@ declare const VTab: {
61460
61491
  location?: Anchor | undefined;
61461
61492
  baseColor?: string | undefined;
61462
61493
  selectedClass?: string | undefined;
61494
+ activeColor?: string | undefined;
61463
61495
  prependIcon?: IconValue | undefined;
61464
61496
  appendIcon?: IconValue | undefined;
61465
61497
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
@@ -61524,6 +61556,7 @@ declare const VTab: {
61524
61556
  location?: Anchor | undefined;
61525
61557
  baseColor?: string | undefined;
61526
61558
  selectedClass?: string | undefined;
61559
+ activeColor?: string | undefined;
61527
61560
  prependIcon?: IconValue | undefined;
61528
61561
  appendIcon?: IconValue | undefined;
61529
61562
  } & {
@@ -61618,6 +61651,7 @@ declare const VTab: {
61618
61651
  location?: Anchor | undefined;
61619
61652
  baseColor?: string | undefined;
61620
61653
  selectedClass?: string | undefined;
61654
+ activeColor?: string | undefined;
61621
61655
  prependIcon?: IconValue | undefined;
61622
61656
  appendIcon?: IconValue | undefined;
61623
61657
  } & {
@@ -61745,6 +61779,7 @@ declare const VTab: {
61745
61779
  location?: Anchor | undefined;
61746
61780
  baseColor?: string | undefined;
61747
61781
  selectedClass?: string | undefined;
61782
+ activeColor?: string | undefined;
61748
61783
  prependIcon?: IconValue | undefined;
61749
61784
  appendIcon?: IconValue | undefined;
61750
61785
  } & {
@@ -61771,7 +61806,7 @@ declare const VTab: {
61771
61806
  }) => any) | undefined;
61772
61807
  }, "group"> & vue.ShallowUnwrapRef<{
61773
61808
  group: GroupItemProvide | null;
61774
- }> & {} & 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}`>, {}, {}, {}, {
61809
+ }> & {} & 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}`>, {}, {}, {}, {
61775
61810
  replace: boolean;
61776
61811
  fixed: boolean;
61777
61812
  style: vue.StyleValue;
@@ -61836,6 +61871,7 @@ declare const VTab: {
61836
61871
  minWidth?: string | number | undefined;
61837
61872
  elevation?: string | number | undefined;
61838
61873
  baseColor?: string | undefined;
61874
+ activeColor?: string | undefined;
61839
61875
  prependIcon?: IconValue | undefined;
61840
61876
  appendIcon?: IconValue | undefined;
61841
61877
  sliderColor?: string | undefined;
@@ -61923,6 +61959,7 @@ declare const VTab: {
61923
61959
  location?: Anchor | undefined;
61924
61960
  baseColor?: string | undefined;
61925
61961
  selectedClass?: string | undefined;
61962
+ activeColor?: string | undefined;
61926
61963
  prependIcon?: IconValue | undefined;
61927
61964
  appendIcon?: IconValue | undefined;
61928
61965
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
@@ -61987,6 +62024,7 @@ declare const VTab: {
61987
62024
  location?: Anchor | undefined;
61988
62025
  baseColor?: string | undefined;
61989
62026
  selectedClass?: string | undefined;
62027
+ activeColor?: string | undefined;
61990
62028
  prependIcon?: IconValue | undefined;
61991
62029
  appendIcon?: IconValue | undefined;
61992
62030
  } & {
@@ -62081,6 +62119,7 @@ declare const VTab: {
62081
62119
  location?: Anchor | undefined;
62082
62120
  baseColor?: string | undefined;
62083
62121
  selectedClass?: string | undefined;
62122
+ activeColor?: string | undefined;
62084
62123
  prependIcon?: IconValue | undefined;
62085
62124
  appendIcon?: IconValue | undefined;
62086
62125
  } & {
@@ -62208,6 +62247,7 @@ declare const VTab: {
62208
62247
  location?: Anchor | undefined;
62209
62248
  baseColor?: string | undefined;
62210
62249
  selectedClass?: string | undefined;
62250
+ activeColor?: string | undefined;
62211
62251
  prependIcon?: IconValue | undefined;
62212
62252
  appendIcon?: IconValue | undefined;
62213
62253
  } & {
@@ -62234,7 +62274,7 @@ declare const VTab: {
62234
62274
  }) => any) | undefined;
62235
62275
  }, "group"> & vue.ShallowUnwrapRef<{
62236
62276
  group: GroupItemProvide | null;
62237
- }> & {} & 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, {
62277
+ }> & {} & 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, {
62238
62278
  replace: boolean;
62239
62279
  fixed: boolean;
62240
62280
  style: vue.StyleValue;
@@ -62334,6 +62374,7 @@ declare const VTab: {
62334
62374
  type: PropType<string>;
62335
62375
  default: string;
62336
62376
  };
62377
+ activeColor: StringConstructor;
62337
62378
  prependIcon: PropType<IconValue>;
62338
62379
  appendIcon: PropType<IconValue>;
62339
62380
  slim: BooleanConstructor;
@@ -62417,6 +62458,7 @@ declare const VTab: {
62417
62458
  type: PropType<string>;
62418
62459
  default: string;
62419
62460
  };
62461
+ activeColor: StringConstructor;
62420
62462
  prependIcon: PropType<IconValue>;
62421
62463
  appendIcon: PropType<IconValue>;
62422
62464
  slim: BooleanConstructor;
@@ -78381,10 +78423,10 @@ declare const VTreeview: {
78381
78423
  baseColor?: string | undefined;
78382
78424
  selected?: readonly unknown[] | undefined;
78383
78425
  bgColor?: string | undefined;
78426
+ activeColor?: string | undefined;
78384
78427
  activeClass?: string | undefined;
78385
78428
  opened?: readonly unknown[] | undefined;
78386
78429
  activeStrategy?: SelectStrategy | undefined;
78387
- activeColor?: string | undefined;
78388
78430
  customFilter?: FilterFunction | undefined;
78389
78431
  customKeyFilter?: FilterKeyFunctions | undefined;
78390
78432
  loadChildren?: ((item: unknown) => Promise<void>) | undefined;
@@ -78464,10 +78506,10 @@ declare const VTreeview: {
78464
78506
  baseColor?: string | undefined;
78465
78507
  selected?: readonly unknown[] | undefined;
78466
78508
  bgColor?: string | undefined;
78509
+ activeColor?: string | undefined;
78467
78510
  activeClass?: string | undefined;
78468
78511
  opened?: readonly unknown[] | undefined;
78469
78512
  activeStrategy?: SelectStrategy | undefined;
78470
- activeColor?: string | undefined;
78471
78513
  customFilter?: FilterFunction | undefined;
78472
78514
  customKeyFilter?: FilterKeyFunctions | undefined;
78473
78515
  loadChildren?: ((item: unknown) => Promise<void>) | undefined;
@@ -78637,10 +78679,10 @@ declare const VTreeview: {
78637
78679
  baseColor?: string | undefined;
78638
78680
  selected?: readonly unknown[] | undefined;
78639
78681
  bgColor?: string | undefined;
78682
+ activeColor?: string | undefined;
78640
78683
  activeClass?: string | undefined;
78641
78684
  opened?: readonly unknown[] | undefined;
78642
78685
  activeStrategy?: SelectStrategy | undefined;
78643
- activeColor?: string | undefined;
78644
78686
  customFilter?: FilterFunction | undefined;
78645
78687
  customKeyFilter?: FilterKeyFunctions | undefined;
78646
78688
  loadChildren?: ((item: unknown) => Promise<void>) | undefined;
@@ -78739,10 +78781,10 @@ declare const VTreeview: {
78739
78781
  baseColor?: string | undefined;
78740
78782
  selected?: readonly unknown[] | undefined;
78741
78783
  bgColor?: string | undefined;
78784
+ activeColor?: string | undefined;
78742
78785
  activeClass?: string | undefined;
78743
78786
  opened?: readonly unknown[] | undefined;
78744
78787
  activeStrategy?: SelectStrategy | undefined;
78745
- activeColor?: string | undefined;
78746
78788
  customFilter?: FilterFunction | undefined;
78747
78789
  customKeyFilter?: FilterKeyFunctions | undefined;
78748
78790
  loadChildren?: ((item: unknown) => Promise<void>) | undefined;
@@ -78930,6 +78972,7 @@ declare const VTreeview: {
78930
78972
  baseColor: StringConstructor;
78931
78973
  selected: vue.PropType<readonly unknown[]>;
78932
78974
  bgColor: StringConstructor;
78975
+ activeColor: StringConstructor;
78933
78976
  slim: {
78934
78977
  type: vue.PropType<boolean>;
78935
78978
  default: boolean;
@@ -78957,7 +79000,6 @@ declare const VTreeview: {
78957
79000
  type: vue.PropType<NonNullable<NonNullable<OpenStrategyProp>>>;
78958
79001
  default: NonNullable<NonNullable<OpenStrategyProp>>;
78959
79002
  };
78960
- activeColor: StringConstructor;
78961
79003
  collapseIcon: {
78962
79004
  type: vue.PropType<string>;
78963
79005
  default: string;
@@ -79060,6 +79102,7 @@ declare const VTreeview: {
79060
79102
  baseColor: StringConstructor;
79061
79103
  selected: vue.PropType<readonly unknown[]>;
79062
79104
  bgColor: StringConstructor;
79105
+ activeColor: StringConstructor;
79063
79106
  slim: {
79064
79107
  type: vue.PropType<boolean>;
79065
79108
  default: boolean;
@@ -79087,7 +79130,6 @@ declare const VTreeview: {
79087
79130
  type: vue.PropType<NonNullable<NonNullable<OpenStrategyProp>>>;
79088
79131
  default: NonNullable<NonNullable<OpenStrategyProp>>;
79089
79132
  };
79090
- activeColor: StringConstructor;
79091
79133
  collapseIcon: {
79092
79134
  type: vue.PropType<string>;
79093
79135
  default: string;
@@ -79180,12 +79222,12 @@ declare const VTreeviewItem: {
79180
79222
  minWidth?: string | number | undefined;
79181
79223
  elevation?: string | number | undefined;
79182
79224
  baseColor?: string | undefined;
79225
+ activeColor?: string | undefined;
79183
79226
  prependIcon?: IconValue | undefined;
79184
79227
  appendIcon?: IconValue | undefined;
79185
79228
  activeClass?: string | undefined;
79186
79229
  appendAvatar?: string | undefined;
79187
79230
  prependAvatar?: string | undefined;
79188
- activeColor?: string | undefined;
79189
79231
  subtitle?: string | number | undefined;
79190
79232
  lines?: "one" | "two" | "three" | undefined;
79191
79233
  toggleIcon?: IconValue | undefined;
@@ -79297,12 +79339,12 @@ declare const VTreeviewItem: {
79297
79339
  minWidth?: string | number | undefined;
79298
79340
  elevation?: string | number | undefined;
79299
79341
  baseColor?: string | undefined;
79342
+ activeColor?: string | undefined;
79300
79343
  prependIcon?: IconValue | undefined;
79301
79344
  appendIcon?: IconValue | undefined;
79302
79345
  activeClass?: string | undefined;
79303
79346
  appendAvatar?: string | undefined;
79304
79347
  prependAvatar?: string | undefined;
79305
- activeColor?: string | undefined;
79306
79348
  subtitle?: string | number | undefined;
79307
79349
  lines?: "one" | "two" | "three" | undefined;
79308
79350
  toggleIcon?: IconValue | undefined;
@@ -79470,12 +79512,12 @@ declare const VTreeviewItem: {
79470
79512
  minWidth?: string | number | undefined;
79471
79513
  elevation?: string | number | undefined;
79472
79514
  baseColor?: string | undefined;
79515
+ activeColor?: string | undefined;
79473
79516
  prependIcon?: IconValue | undefined;
79474
79517
  appendIcon?: IconValue | undefined;
79475
79518
  activeClass?: string | undefined;
79476
79519
  appendAvatar?: string | undefined;
79477
79520
  prependAvatar?: string | undefined;
79478
- activeColor?: string | undefined;
79479
79521
  subtitle?: string | number | undefined;
79480
79522
  lines?: "one" | "two" | "three" | undefined;
79481
79523
  toggleIcon?: IconValue | undefined;
@@ -79609,12 +79651,12 @@ declare const VTreeviewItem: {
79609
79651
  minWidth?: string | number | undefined;
79610
79652
  elevation?: string | number | undefined;
79611
79653
  baseColor?: string | undefined;
79654
+ activeColor?: string | undefined;
79612
79655
  prependIcon?: IconValue | undefined;
79613
79656
  appendIcon?: IconValue | undefined;
79614
79657
  activeClass?: string | undefined;
79615
79658
  appendAvatar?: string | undefined;
79616
79659
  prependAvatar?: string | undefined;
79617
- activeColor?: string | undefined;
79618
79660
  subtitle?: string | number | undefined;
79619
79661
  lines?: "one" | "two" | "three" | undefined;
79620
79662
  toggleIcon?: IconValue | undefined;
@@ -79914,9 +79956,9 @@ declare const VTreeviewGroup: {
79914
79956
  value?: any;
79915
79957
  color?: string | undefined;
79916
79958
  baseColor?: string | undefined;
79959
+ activeColor?: string | undefined;
79917
79960
  prependIcon?: IconValue | undefined;
79918
79961
  appendIcon?: IconValue | undefined;
79919
- activeColor?: string | undefined;
79920
79962
  } & {
79921
79963
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
79922
79964
  default?: (() => vue.VNodeChild) | undefined;
@@ -79950,9 +79992,9 @@ declare const VTreeviewGroup: {
79950
79992
  value?: any;
79951
79993
  color?: string | undefined;
79952
79994
  baseColor?: string | undefined;
79995
+ activeColor?: string | undefined;
79953
79996
  prependIcon?: IconValue | undefined;
79954
79997
  appendIcon?: IconValue | undefined;
79955
- activeColor?: string | undefined;
79956
79998
  } & {
79957
79999
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
79958
80000
  default?: (() => vue.VNodeChild) | undefined;
@@ -80009,9 +80051,9 @@ declare const VTreeviewGroup: {
80009
80051
  value?: any;
80010
80052
  color?: string | undefined;
80011
80053
  baseColor?: string | undefined;
80054
+ activeColor?: string | undefined;
80012
80055
  prependIcon?: IconValue | undefined;
80013
80056
  appendIcon?: IconValue | undefined;
80014
- activeColor?: string | undefined;
80015
80057
  } & {
80016
80058
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
80017
80059
  default?: (() => vue.VNodeChild) | undefined;
@@ -80055,9 +80097,9 @@ declare const VTreeviewGroup: {
80055
80097
  value?: any;
80056
80098
  color?: string | undefined;
80057
80099
  baseColor?: string | undefined;
80100
+ activeColor?: string | undefined;
80058
80101
  prependIcon?: IconValue | undefined;
80059
80102
  appendIcon?: IconValue | undefined;
80060
- activeColor?: string | undefined;
80061
80103
  } & {
80062
80104
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
80063
80105
  default?: (() => vue.VNodeChild) | undefined;
@@ -80109,9 +80151,9 @@ declare const VTreeviewGroup: {
80109
80151
  default: string;
80110
80152
  };
80111
80153
  baseColor: StringConstructor;
80154
+ activeColor: StringConstructor;
80112
80155
  prependIcon: vue.PropType<IconValue>;
80113
80156
  appendIcon: vue.PropType<IconValue>;
80114
- activeColor: StringConstructor;
80115
80157
  collapseIcon: Omit<{
80116
80158
  type: vue.PropType<IconValue>;
80117
80159
  default: string;
@@ -80141,9 +80183,9 @@ declare const VTreeviewGroup: {
80141
80183
  default: string;
80142
80184
  };
80143
80185
  baseColor: StringConstructor;
80186
+ activeColor: StringConstructor;
80144
80187
  prependIcon: vue.PropType<IconValue>;
80145
80188
  appendIcon: vue.PropType<IconValue>;
80146
- activeColor: StringConstructor;
80147
80189
  collapseIcon: Omit<{
80148
80190
  type: vue.PropType<IconValue>;
80149
80191
  default: string;