@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
package/dist/vuetify.d.ts CHANGED
@@ -1859,6 +1859,7 @@ declare const VAppBarNavIcon: {
1859
1859
  location?: Anchor | undefined;
1860
1860
  baseColor?: string | undefined;
1861
1861
  selectedClass?: string | undefined;
1862
+ activeColor?: string | undefined;
1862
1863
  prependIcon?: IconValue | undefined;
1863
1864
  appendIcon?: IconValue | undefined;
1864
1865
  } & {
@@ -1922,6 +1923,7 @@ declare const VAppBarNavIcon: {
1922
1923
  location?: Anchor | undefined;
1923
1924
  baseColor?: string | undefined;
1924
1925
  selectedClass?: string | undefined;
1926
+ activeColor?: string | undefined;
1925
1927
  prependIcon?: IconValue | undefined;
1926
1928
  appendIcon?: IconValue | undefined;
1927
1929
  } & {
@@ -2027,6 +2029,7 @@ declare const VAppBarNavIcon: {
2027
2029
  location?: Anchor | undefined;
2028
2030
  baseColor?: string | undefined;
2029
2031
  selectedClass?: string | undefined;
2032
+ activeColor?: string | undefined;
2030
2033
  prependIcon?: IconValue | undefined;
2031
2034
  appendIcon?: IconValue | undefined;
2032
2035
  } & {
@@ -2116,6 +2119,7 @@ declare const VAppBarNavIcon: {
2116
2119
  location?: Anchor | undefined;
2117
2120
  baseColor?: string | undefined;
2118
2121
  selectedClass?: string | undefined;
2122
+ activeColor?: string | undefined;
2119
2123
  prependIcon?: IconValue | undefined;
2120
2124
  appendIcon?: IconValue | undefined;
2121
2125
  } & {
@@ -2239,6 +2243,7 @@ declare const VAppBarNavIcon: {
2239
2243
  type: BooleanConstructor;
2240
2244
  default: undefined;
2241
2245
  };
2246
+ activeColor: StringConstructor;
2242
2247
  baseColor: StringConstructor;
2243
2248
  symbol: {
2244
2249
  type: null;
@@ -2330,6 +2335,7 @@ declare const VAppBarNavIcon: {
2330
2335
  type: BooleanConstructor;
2331
2336
  default: undefined;
2332
2337
  };
2338
+ activeColor: StringConstructor;
2333
2339
  baseColor: StringConstructor;
2334
2340
  symbol: {
2335
2341
  type: null;
@@ -4255,12 +4261,12 @@ declare const VListItem: {
4255
4261
  minWidth?: string | number | undefined;
4256
4262
  elevation?: string | number | undefined;
4257
4263
  baseColor?: string | undefined;
4264
+ activeColor?: string | undefined;
4258
4265
  prependIcon?: IconValue | undefined;
4259
4266
  appendIcon?: IconValue | undefined;
4260
4267
  activeClass?: string | undefined;
4261
4268
  appendAvatar?: string | undefined;
4262
4269
  prependAvatar?: string | undefined;
4263
- activeColor?: string | undefined;
4264
4270
  subtitle?: string | number | undefined;
4265
4271
  lines?: "one" | "two" | "three" | undefined;
4266
4272
  } & {
@@ -4332,12 +4338,12 @@ declare const VListItem: {
4332
4338
  minWidth?: string | number | undefined;
4333
4339
  elevation?: string | number | undefined;
4334
4340
  baseColor?: string | undefined;
4341
+ activeColor?: string | undefined;
4335
4342
  prependIcon?: IconValue | undefined;
4336
4343
  appendIcon?: IconValue | undefined;
4337
4344
  activeClass?: string | undefined;
4338
4345
  appendAvatar?: string | undefined;
4339
4346
  prependAvatar?: string | undefined;
4340
- activeColor?: string | undefined;
4341
4347
  subtitle?: string | number | undefined;
4342
4348
  lines?: "one" | "two" | "three" | undefined;
4343
4349
  } & {
@@ -4439,12 +4445,12 @@ declare const VListItem: {
4439
4445
  minWidth?: string | number | undefined;
4440
4446
  elevation?: string | number | undefined;
4441
4447
  baseColor?: string | undefined;
4448
+ activeColor?: string | undefined;
4442
4449
  prependIcon?: IconValue | undefined;
4443
4450
  appendIcon?: IconValue | undefined;
4444
4451
  activeClass?: string | undefined;
4445
4452
  appendAvatar?: string | undefined;
4446
4453
  prependAvatar?: string | undefined;
4447
- activeColor?: string | undefined;
4448
4454
  subtitle?: string | number | undefined;
4449
4455
  lines?: "one" | "two" | "three" | undefined;
4450
4456
  } & {
@@ -4535,12 +4541,12 @@ declare const VListItem: {
4535
4541
  minWidth?: string | number | undefined;
4536
4542
  elevation?: string | number | undefined;
4537
4543
  baseColor?: string | undefined;
4544
+ activeColor?: string | undefined;
4538
4545
  prependIcon?: IconValue | undefined;
4539
4546
  appendIcon?: IconValue | undefined;
4540
4547
  activeClass?: string | undefined;
4541
4548
  appendAvatar?: string | undefined;
4542
4549
  prependAvatar?: string | undefined;
4543
- activeColor?: string | undefined;
4544
4550
  subtitle?: string | number | undefined;
4545
4551
  lines?: "one" | "two" | "three" | undefined;
4546
4552
  } & {
@@ -4947,9 +4953,9 @@ declare const VAutocomplete: {
4947
4953
  elevation?: string | number | undefined;
4948
4954
  baseColor?: string | undefined;
4949
4955
  bgColor?: string | undefined;
4956
+ activeColor?: string | undefined;
4950
4957
  activeClass?: string | undefined;
4951
4958
  activeStrategy?: SelectStrategy | undefined;
4952
- activeColor?: string | undefined;
4953
4959
  collapseIcon?: string | undefined;
4954
4960
  expandIcon?: string | undefined;
4955
4961
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -5002,9 +5008,9 @@ declare const VAutocomplete: {
5002
5008
  elevation?: string | number | undefined;
5003
5009
  baseColor?: string | undefined;
5004
5010
  bgColor?: string | undefined;
5011
+ activeColor?: string | undefined;
5005
5012
  activeClass?: string | undefined;
5006
5013
  activeStrategy?: SelectStrategy | undefined;
5007
- activeColor?: string | undefined;
5008
5014
  collapseIcon?: string | undefined;
5009
5015
  expandIcon?: string | undefined;
5010
5016
  } & {
@@ -5527,9 +5533,9 @@ declare const VAutocomplete: {
5527
5533
  elevation?: string | number | undefined;
5528
5534
  baseColor?: string | undefined;
5529
5535
  bgColor?: string | undefined;
5536
+ activeColor?: string | undefined;
5530
5537
  activeClass?: string | undefined;
5531
5538
  activeStrategy?: SelectStrategy | undefined;
5532
- activeColor?: string | undefined;
5533
5539
  collapseIcon?: string | undefined;
5534
5540
  expandIcon?: string | undefined;
5535
5541
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -5582,9 +5588,9 @@ declare const VAutocomplete: {
5582
5588
  elevation?: string | number | undefined;
5583
5589
  baseColor?: string | undefined;
5584
5590
  bgColor?: string | undefined;
5591
+ activeColor?: string | undefined;
5585
5592
  activeClass?: string | undefined;
5586
5593
  activeStrategy?: SelectStrategy | undefined;
5587
- activeColor?: string | undefined;
5588
5594
  collapseIcon?: string | undefined;
5589
5595
  expandIcon?: string | undefined;
5590
5596
  } & {
@@ -6221,9 +6227,9 @@ declare const VAutocomplete: {
6221
6227
  elevation?: string | number | undefined;
6222
6228
  baseColor?: string | undefined;
6223
6229
  bgColor?: string | undefined;
6230
+ activeColor?: string | undefined;
6224
6231
  activeClass?: string | undefined;
6225
6232
  activeStrategy?: SelectStrategy | undefined;
6226
- activeColor?: string | undefined;
6227
6233
  collapseIcon?: string | undefined;
6228
6234
  expandIcon?: string | undefined;
6229
6235
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -6276,9 +6282,9 @@ declare const VAutocomplete: {
6276
6282
  elevation?: string | number | undefined;
6277
6283
  baseColor?: string | undefined;
6278
6284
  bgColor?: string | undefined;
6285
+ activeColor?: string | undefined;
6279
6286
  activeClass?: string | undefined;
6280
6287
  activeStrategy?: SelectStrategy | undefined;
6281
- activeColor?: string | undefined;
6282
6288
  collapseIcon?: string | undefined;
6283
6289
  expandIcon?: string | undefined;
6284
6290
  } & {
@@ -6850,9 +6856,9 @@ declare const VAutocomplete: {
6850
6856
  elevation?: string | number | undefined;
6851
6857
  baseColor?: string | undefined;
6852
6858
  bgColor?: string | undefined;
6859
+ activeColor?: string | undefined;
6853
6860
  activeClass?: string | undefined;
6854
6861
  activeStrategy?: SelectStrategy | undefined;
6855
- activeColor?: string | undefined;
6856
6862
  collapseIcon?: string | undefined;
6857
6863
  expandIcon?: string | undefined;
6858
6864
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -6905,9 +6911,9 @@ declare const VAutocomplete: {
6905
6911
  elevation?: string | number | undefined;
6906
6912
  baseColor?: string | undefined;
6907
6913
  bgColor?: string | undefined;
6914
+ activeColor?: string | undefined;
6908
6915
  activeClass?: string | undefined;
6909
6916
  activeStrategy?: SelectStrategy | undefined;
6910
- activeColor?: string | undefined;
6911
6917
  collapseIcon?: string | undefined;
6912
6918
  expandIcon?: string | undefined;
6913
6919
  } & {
@@ -7680,9 +7686,9 @@ declare const VAutocomplete: {
7680
7686
  elevation?: string | number | undefined;
7681
7687
  baseColor?: string | undefined;
7682
7688
  bgColor?: string | undefined;
7689
+ activeColor?: string | undefined;
7683
7690
  activeClass?: string | undefined;
7684
7691
  activeStrategy?: SelectStrategy | undefined;
7685
- activeColor?: string | undefined;
7686
7692
  collapseIcon?: string | undefined;
7687
7693
  expandIcon?: string | undefined;
7688
7694
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -7735,9 +7741,9 @@ declare const VAutocomplete: {
7735
7741
  elevation?: string | number | undefined;
7736
7742
  baseColor?: string | undefined;
7737
7743
  bgColor?: string | undefined;
7744
+ activeColor?: string | undefined;
7738
7745
  activeClass?: string | undefined;
7739
7746
  activeStrategy?: SelectStrategy | undefined;
7740
- activeColor?: string | undefined;
7741
7747
  collapseIcon?: string | undefined;
7742
7748
  expandIcon?: string | undefined;
7743
7749
  } & {
@@ -8364,9 +8370,9 @@ declare const VAutocomplete: {
8364
8370
  elevation?: string | number | undefined;
8365
8371
  baseColor?: string | undefined;
8366
8372
  bgColor?: string | undefined;
8373
+ activeColor?: string | undefined;
8367
8374
  activeClass?: string | undefined;
8368
8375
  activeStrategy?: SelectStrategy | undefined;
8369
- activeColor?: string | undefined;
8370
8376
  collapseIcon?: string | undefined;
8371
8377
  expandIcon?: string | undefined;
8372
8378
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -8419,9 +8425,9 @@ declare const VAutocomplete: {
8419
8425
  elevation?: string | number | undefined;
8420
8426
  baseColor?: string | undefined;
8421
8427
  bgColor?: string | undefined;
8428
+ activeColor?: string | undefined;
8422
8429
  activeClass?: string | undefined;
8423
8430
  activeStrategy?: SelectStrategy | undefined;
8424
- activeColor?: string | undefined;
8425
8431
  collapseIcon?: string | undefined;
8426
8432
  expandIcon?: string | undefined;
8427
8433
  } & {
@@ -8848,6 +8854,7 @@ declare const VAvatar: {
8848
8854
  theme?: string | undefined;
8849
8855
  color?: string | undefined;
8850
8856
  icon?: IconValue | undefined;
8857
+ border?: string | number | boolean | undefined;
8851
8858
  rounded?: string | number | boolean | undefined;
8852
8859
  } & {
8853
8860
  $children?: vue.VNodeChild | {
@@ -8874,6 +8881,7 @@ declare const VAvatar: {
8874
8881
  theme?: string | undefined;
8875
8882
  color?: string | undefined;
8876
8883
  icon?: IconValue | undefined;
8884
+ border?: string | number | boolean | undefined;
8877
8885
  rounded?: string | number | boolean | undefined;
8878
8886
  } & {
8879
8887
  $children?: vue.VNodeChild | {
@@ -8921,6 +8929,7 @@ declare const VAvatar: {
8921
8929
  theme?: string | undefined;
8922
8930
  color?: string | undefined;
8923
8931
  icon?: IconValue | undefined;
8932
+ border?: string | number | boolean | undefined;
8924
8933
  rounded?: string | number | boolean | undefined;
8925
8934
  } & {
8926
8935
  $children?: vue.VNodeChild | {
@@ -8961,6 +8970,7 @@ declare const VAvatar: {
8961
8970
  theme?: string | undefined;
8962
8971
  color?: string | undefined;
8963
8972
  icon?: IconValue | undefined;
8973
+ border?: string | number | boolean | undefined;
8964
8974
  rounded?: string | number | boolean | undefined;
8965
8975
  } & {
8966
8976
  $children?: vue.VNodeChild | {
@@ -9019,6 +9029,7 @@ declare const VAvatar: {
9019
9029
  type: vue.PropType<vue.StyleValue>;
9020
9030
  default: null;
9021
9031
  };
9032
+ border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
9022
9033
  start: BooleanConstructor;
9023
9034
  end: BooleanConstructor;
9024
9035
  icon: vue.PropType<IconValue>;
@@ -9058,6 +9069,7 @@ declare const VAvatar: {
9058
9069
  type: vue.PropType<vue.StyleValue>;
9059
9070
  default: null;
9060
9071
  };
9072
+ border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
9061
9073
  start: BooleanConstructor;
9062
9074
  end: BooleanConstructor;
9063
9075
  icon: vue.PropType<IconValue>;
@@ -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
  }, {}, 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 & {
11056
11068
  style: vue.StyleValue;
11057
11069
  disabled: boolean;
@@ -11065,8 +11077,8 @@ declare const VBreadcrumbs: {
11065
11077
  icon?: IconValue | undefined;
11066
11078
  rounded?: string | number | boolean | undefined;
11067
11079
  bgColor?: string | undefined;
11068
- activeClass?: string | undefined;
11069
11080
  activeColor?: string | undefined;
11081
+ activeClass?: string | undefined;
11070
11082
  }, {
11071
11083
  style: vue.StyleValue;
11072
11084
  disabled: boolean;
@@ -11120,8 +11132,8 @@ declare const VBreadcrumbs: {
11120
11132
  icon?: IconValue | undefined;
11121
11133
  rounded?: string | number | boolean | undefined;
11122
11134
  bgColor?: string | undefined;
11123
- activeClass?: string | undefined;
11124
11135
  activeColor?: string | undefined;
11136
+ activeClass?: string | undefined;
11125
11137
  }, {}, {}, {}, {}, {
11126
11138
  style: vue.StyleValue;
11127
11139
  disabled: boolean;
@@ -11147,8 +11159,8 @@ declare const VBreadcrumbs: {
11147
11159
  icon?: IconValue | undefined;
11148
11160
  rounded?: string | number | boolean | undefined;
11149
11161
  bgColor?: string | undefined;
11150
- activeClass?: string | undefined;
11151
11162
  activeColor?: string | undefined;
11163
+ activeClass?: string | undefined;
11152
11164
  }, {}, 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, {
11153
11165
  style: vue.StyleValue;
11154
11166
  disabled: boolean;
@@ -11307,8 +11319,8 @@ declare const VBreadcrumbsItem: {
11307
11319
  href?: string | undefined;
11308
11320
  color?: string | undefined;
11309
11321
  to?: vue_router.RouteLocationRaw | undefined;
11310
- activeClass?: string | undefined;
11311
11322
  activeColor?: string | undefined;
11323
+ activeClass?: string | undefined;
11312
11324
  } & {
11313
11325
  $children?: vue.VNodeChild | {
11314
11326
  default?: (() => vue.VNodeChild) | undefined;
@@ -11331,8 +11343,8 @@ declare const VBreadcrumbsItem: {
11331
11343
  href?: string | undefined;
11332
11344
  color?: string | undefined;
11333
11345
  to?: vue_router.RouteLocationRaw | undefined;
11334
- activeClass?: string | undefined;
11335
11346
  activeColor?: string | undefined;
11347
+ activeClass?: string | undefined;
11336
11348
  } & {
11337
11349
  $children?: vue.VNodeChild | {
11338
11350
  default?: (() => vue.VNodeChild) | undefined;
@@ -11373,8 +11385,8 @@ declare const VBreadcrumbsItem: {
11373
11385
  href?: string | undefined;
11374
11386
  color?: string | undefined;
11375
11387
  to?: vue_router.RouteLocationRaw | undefined;
11376
- activeClass?: string | undefined;
11377
11388
  activeColor?: string | undefined;
11389
+ activeClass?: string | undefined;
11378
11390
  } & {
11379
11391
  $children?: vue.VNodeChild | {
11380
11392
  default?: (() => vue.VNodeChild) | undefined;
@@ -11408,8 +11420,8 @@ declare const VBreadcrumbsItem: {
11408
11420
  href?: string | undefined;
11409
11421
  color?: string | undefined;
11410
11422
  to?: vue_router.RouteLocationRaw | undefined;
11411
- activeClass?: string | undefined;
11412
11423
  activeColor?: string | undefined;
11424
+ activeClass?: string | undefined;
11413
11425
  } & {
11414
11426
  $children?: vue.VNodeChild | {
11415
11427
  default?: (() => vue.VNodeChild) | undefined;
@@ -11622,6 +11634,7 @@ declare const VBtn: {
11622
11634
  location?: Anchor | undefined;
11623
11635
  baseColor?: string | undefined;
11624
11636
  selectedClass?: string | undefined;
11637
+ activeColor?: string | undefined;
11625
11638
  prependIcon?: IconValue | undefined;
11626
11639
  appendIcon?: IconValue | undefined;
11627
11640
  } & {
@@ -11695,6 +11708,7 @@ declare const VBtn: {
11695
11708
  location?: Anchor | undefined;
11696
11709
  baseColor?: string | undefined;
11697
11710
  selectedClass?: string | undefined;
11711
+ activeColor?: string | undefined;
11698
11712
  prependIcon?: IconValue | undefined;
11699
11713
  appendIcon?: IconValue | undefined;
11700
11714
  } & {
@@ -11803,6 +11817,7 @@ declare const VBtn: {
11803
11817
  location?: Anchor | undefined;
11804
11818
  baseColor?: string | undefined;
11805
11819
  selectedClass?: string | undefined;
11820
+ activeColor?: string | undefined;
11806
11821
  prependIcon?: IconValue | undefined;
11807
11822
  appendIcon?: IconValue | undefined;
11808
11823
  } & {
@@ -11897,6 +11912,7 @@ declare const VBtn: {
11897
11912
  location?: Anchor | undefined;
11898
11913
  baseColor?: string | undefined;
11899
11914
  selectedClass?: string | undefined;
11915
+ activeColor?: string | undefined;
11900
11916
  prependIcon?: IconValue | undefined;
11901
11917
  appendIcon?: IconValue | undefined;
11902
11918
  } & {
@@ -12026,6 +12042,7 @@ declare const VBtn: {
12026
12042
  type: BooleanConstructor;
12027
12043
  default: undefined;
12028
12044
  };
12045
+ activeColor: StringConstructor;
12029
12046
  baseColor: StringConstructor;
12030
12047
  symbol: {
12031
12048
  type: null;
@@ -12111,6 +12128,7 @@ declare const VBtn: {
12111
12128
  type: BooleanConstructor;
12112
12129
  default: undefined;
12113
12130
  };
12131
+ activeColor: StringConstructor;
12114
12132
  baseColor: StringConstructor;
12115
12133
  symbol: {
12116
12134
  type: null;
@@ -18793,9 +18811,9 @@ declare const VCombobox: {
18793
18811
  elevation?: string | number | undefined;
18794
18812
  baseColor?: string | undefined;
18795
18813
  bgColor?: string | undefined;
18814
+ activeColor?: string | undefined;
18796
18815
  activeClass?: string | undefined;
18797
18816
  activeStrategy?: SelectStrategy | undefined;
18798
- activeColor?: string | undefined;
18799
18817
  collapseIcon?: string | undefined;
18800
18818
  expandIcon?: string | undefined;
18801
18819
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -18848,9 +18866,9 @@ declare const VCombobox: {
18848
18866
  elevation?: string | number | undefined;
18849
18867
  baseColor?: string | undefined;
18850
18868
  bgColor?: string | undefined;
18869
+ activeColor?: string | undefined;
18851
18870
  activeClass?: string | undefined;
18852
18871
  activeStrategy?: SelectStrategy | undefined;
18853
- activeColor?: string | undefined;
18854
18872
  collapseIcon?: string | undefined;
18855
18873
  expandIcon?: string | undefined;
18856
18874
  } & {
@@ -19373,9 +19391,9 @@ declare const VCombobox: {
19373
19391
  elevation?: string | number | undefined;
19374
19392
  baseColor?: string | undefined;
19375
19393
  bgColor?: string | undefined;
19394
+ activeColor?: string | undefined;
19376
19395
  activeClass?: string | undefined;
19377
19396
  activeStrategy?: SelectStrategy | undefined;
19378
- activeColor?: string | undefined;
19379
19397
  collapseIcon?: string | undefined;
19380
19398
  expandIcon?: string | undefined;
19381
19399
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -19428,9 +19446,9 @@ declare const VCombobox: {
19428
19446
  elevation?: string | number | undefined;
19429
19447
  baseColor?: string | undefined;
19430
19448
  bgColor?: string | undefined;
19449
+ activeColor?: string | undefined;
19431
19450
  activeClass?: string | undefined;
19432
19451
  activeStrategy?: SelectStrategy | undefined;
19433
- activeColor?: string | undefined;
19434
19452
  collapseIcon?: string | undefined;
19435
19453
  expandIcon?: string | undefined;
19436
19454
  } & {
@@ -20067,9 +20085,9 @@ declare const VCombobox: {
20067
20085
  elevation?: string | number | undefined;
20068
20086
  baseColor?: string | undefined;
20069
20087
  bgColor?: string | undefined;
20088
+ activeColor?: string | undefined;
20070
20089
  activeClass?: string | undefined;
20071
20090
  activeStrategy?: SelectStrategy | undefined;
20072
- activeColor?: string | undefined;
20073
20091
  collapseIcon?: string | undefined;
20074
20092
  expandIcon?: string | undefined;
20075
20093
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -20122,9 +20140,9 @@ declare const VCombobox: {
20122
20140
  elevation?: string | number | undefined;
20123
20141
  baseColor?: string | undefined;
20124
20142
  bgColor?: string | undefined;
20143
+ activeColor?: string | undefined;
20125
20144
  activeClass?: string | undefined;
20126
20145
  activeStrategy?: SelectStrategy | undefined;
20127
- activeColor?: string | undefined;
20128
20146
  collapseIcon?: string | undefined;
20129
20147
  expandIcon?: string | undefined;
20130
20148
  } & {
@@ -20696,9 +20714,9 @@ declare const VCombobox: {
20696
20714
  elevation?: string | number | undefined;
20697
20715
  baseColor?: string | undefined;
20698
20716
  bgColor?: string | undefined;
20717
+ activeColor?: string | undefined;
20699
20718
  activeClass?: string | undefined;
20700
20719
  activeStrategy?: SelectStrategy | undefined;
20701
- activeColor?: string | undefined;
20702
20720
  collapseIcon?: string | undefined;
20703
20721
  expandIcon?: string | undefined;
20704
20722
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -20751,9 +20769,9 @@ declare const VCombobox: {
20751
20769
  elevation?: string | number | undefined;
20752
20770
  baseColor?: string | undefined;
20753
20771
  bgColor?: string | undefined;
20772
+ activeColor?: string | undefined;
20754
20773
  activeClass?: string | undefined;
20755
20774
  activeStrategy?: SelectStrategy | undefined;
20756
- activeColor?: string | undefined;
20757
20775
  collapseIcon?: string | undefined;
20758
20776
  expandIcon?: string | undefined;
20759
20777
  } & {
@@ -21532,9 +21550,9 @@ declare const VCombobox: {
21532
21550
  elevation?: string | number | undefined;
21533
21551
  baseColor?: string | undefined;
21534
21552
  bgColor?: string | undefined;
21553
+ activeColor?: string | undefined;
21535
21554
  activeClass?: string | undefined;
21536
21555
  activeStrategy?: SelectStrategy | undefined;
21537
- activeColor?: string | undefined;
21538
21556
  collapseIcon?: string | undefined;
21539
21557
  expandIcon?: string | undefined;
21540
21558
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -21587,9 +21605,9 @@ declare const VCombobox: {
21587
21605
  elevation?: string | number | undefined;
21588
21606
  baseColor?: string | undefined;
21589
21607
  bgColor?: string | undefined;
21608
+ activeColor?: string | undefined;
21590
21609
  activeClass?: string | undefined;
21591
21610
  activeStrategy?: SelectStrategy | undefined;
21592
- activeColor?: string | undefined;
21593
21611
  collapseIcon?: string | undefined;
21594
21612
  expandIcon?: string | undefined;
21595
21613
  } & {
@@ -22225,9 +22243,9 @@ declare const VCombobox: {
22225
22243
  elevation?: string | number | undefined;
22226
22244
  baseColor?: string | undefined;
22227
22245
  bgColor?: string | undefined;
22246
+ activeColor?: string | undefined;
22228
22247
  activeClass?: string | undefined;
22229
22248
  activeStrategy?: SelectStrategy | undefined;
22230
- activeColor?: string | undefined;
22231
22249
  collapseIcon?: string | undefined;
22232
22250
  expandIcon?: string | undefined;
22233
22251
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -22280,9 +22298,9 @@ declare const VCombobox: {
22280
22298
  elevation?: string | number | undefined;
22281
22299
  baseColor?: string | undefined;
22282
22300
  bgColor?: string | undefined;
22301
+ activeColor?: string | undefined;
22283
22302
  activeClass?: string | undefined;
22284
22303
  activeStrategy?: SelectStrategy | undefined;
22285
- activeColor?: string | undefined;
22286
22304
  collapseIcon?: string | undefined;
22287
22305
  expandIcon?: string | undefined;
22288
22306
  } & {
@@ -33612,6 +33630,7 @@ declare const VFab: {
33612
33630
  elevation?: string | number | undefined;
33613
33631
  baseColor?: string | undefined;
33614
33632
  selectedClass?: string | undefined;
33633
+ activeColor?: string | undefined;
33615
33634
  prependIcon?: IconValue | undefined;
33616
33635
  appendIcon?: IconValue | undefined;
33617
33636
  } & {
@@ -33682,6 +33701,7 @@ declare const VFab: {
33682
33701
  elevation?: string | number | undefined;
33683
33702
  baseColor?: string | undefined;
33684
33703
  selectedClass?: string | undefined;
33704
+ activeColor?: string | undefined;
33685
33705
  prependIcon?: IconValue | undefined;
33686
33706
  appendIcon?: IconValue | undefined;
33687
33707
  } & {
@@ -33794,6 +33814,7 @@ declare const VFab: {
33794
33814
  elevation?: string | number | undefined;
33795
33815
  baseColor?: string | undefined;
33796
33816
  selectedClass?: string | undefined;
33817
+ activeColor?: string | undefined;
33797
33818
  prependIcon?: IconValue | undefined;
33798
33819
  appendIcon?: IconValue | undefined;
33799
33820
  } & {
@@ -33899,6 +33920,7 @@ declare const VFab: {
33899
33920
  elevation?: string | number | undefined;
33900
33921
  baseColor?: string | undefined;
33901
33922
  selectedClass?: string | undefined;
33923
+ activeColor?: string | undefined;
33902
33924
  prependIcon?: IconValue | undefined;
33903
33925
  appendIcon?: IconValue | undefined;
33904
33926
  } & {
@@ -34050,6 +34072,7 @@ declare const VFab: {
34050
34072
  };
34051
34073
  baseColor: StringConstructor;
34052
34074
  selectedClass: StringConstructor;
34075
+ activeColor: StringConstructor;
34053
34076
  prependIcon: PropType<IconValue>;
34054
34077
  appendIcon: PropType<IconValue>;
34055
34078
  slim: BooleanConstructor;
@@ -34172,6 +34195,7 @@ declare const VFab: {
34172
34195
  };
34173
34196
  baseColor: StringConstructor;
34174
34197
  selectedClass: StringConstructor;
34198
+ activeColor: StringConstructor;
34175
34199
  prependIcon: PropType<IconValue>;
34176
34200
  appendIcon: PropType<IconValue>;
34177
34201
  slim: BooleanConstructor;
@@ -39794,9 +39818,9 @@ declare const VList: {
39794
39818
  elevation?: string | number | undefined;
39795
39819
  baseColor?: string | undefined;
39796
39820
  bgColor?: string | undefined;
39821
+ activeColor?: string | undefined;
39797
39822
  activeClass?: string | undefined;
39798
39823
  activeStrategy?: SelectStrategy | undefined;
39799
- activeColor?: string | undefined;
39800
39824
  collapseIcon?: string | undefined;
39801
39825
  expandIcon?: string | undefined;
39802
39826
  } & {
@@ -39875,9 +39899,9 @@ declare const VList: {
39875
39899
  elevation?: string | number | undefined;
39876
39900
  baseColor?: string | undefined;
39877
39901
  bgColor?: string | undefined;
39902
+ activeColor?: string | undefined;
39878
39903
  activeClass?: string | undefined;
39879
39904
  activeStrategy?: SelectStrategy | undefined;
39880
- activeColor?: string | undefined;
39881
39905
  collapseIcon?: string | undefined;
39882
39906
  expandIcon?: string | undefined;
39883
39907
  } & {
@@ -40027,9 +40051,9 @@ declare const VList: {
40027
40051
  elevation?: string | number | undefined;
40028
40052
  baseColor?: string | undefined;
40029
40053
  bgColor?: string | undefined;
40054
+ activeColor?: string | undefined;
40030
40055
  activeClass?: string | undefined;
40031
40056
  activeStrategy?: SelectStrategy | undefined;
40032
- activeColor?: string | undefined;
40033
40057
  collapseIcon?: string | undefined;
40034
40058
  expandIcon?: string | undefined;
40035
40059
  } & {
@@ -40112,9 +40136,9 @@ declare const VList: {
40112
40136
  elevation?: string | number | undefined;
40113
40137
  baseColor?: string | undefined;
40114
40138
  bgColor?: string | undefined;
40139
+ activeColor?: string | undefined;
40115
40140
  activeClass?: string | undefined;
40116
40141
  activeStrategy?: SelectStrategy | undefined;
40117
- activeColor?: string | undefined;
40118
40142
  collapseIcon?: string | undefined;
40119
40143
  expandIcon?: string | undefined;
40120
40144
  } & {
@@ -40481,9 +40505,9 @@ declare const VListGroup: {
40481
40505
  value?: any;
40482
40506
  color?: string | undefined;
40483
40507
  baseColor?: string | undefined;
40508
+ activeColor?: string | undefined;
40484
40509
  prependIcon?: IconValue | undefined;
40485
40510
  appendIcon?: IconValue | undefined;
40486
- activeColor?: string | undefined;
40487
40511
  } & {
40488
40512
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
40489
40513
  default?: (() => vue.VNodeChild) | undefined;
@@ -40520,9 +40544,9 @@ declare const VListGroup: {
40520
40544
  value?: any;
40521
40545
  color?: string | undefined;
40522
40546
  baseColor?: string | undefined;
40547
+ activeColor?: string | undefined;
40523
40548
  prependIcon?: IconValue | undefined;
40524
40549
  appendIcon?: IconValue | undefined;
40525
- activeColor?: string | undefined;
40526
40550
  } & {
40527
40551
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
40528
40552
  default?: (() => vue.VNodeChild) | undefined;
@@ -40581,9 +40605,9 @@ declare const VListGroup: {
40581
40605
  value?: any;
40582
40606
  color?: string | undefined;
40583
40607
  baseColor?: string | undefined;
40608
+ activeColor?: string | undefined;
40584
40609
  prependIcon?: IconValue | undefined;
40585
40610
  appendIcon?: IconValue | undefined;
40586
- activeColor?: string | undefined;
40587
40611
  } & {
40588
40612
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
40589
40613
  default?: (() => vue.VNodeChild) | undefined;
@@ -40631,9 +40655,9 @@ declare const VListGroup: {
40631
40655
  value?: any;
40632
40656
  color?: string | undefined;
40633
40657
  baseColor?: string | undefined;
40658
+ activeColor?: string | undefined;
40634
40659
  prependIcon?: IconValue | undefined;
40635
40660
  appendIcon?: IconValue | undefined;
40636
- activeColor?: string | undefined;
40637
40661
  } & {
40638
40662
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
40639
40663
  default?: (() => vue.VNodeChild) | undefined;
@@ -49248,9 +49272,9 @@ declare const VSelect: {
49248
49272
  elevation?: string | number | undefined;
49249
49273
  baseColor?: string | undefined;
49250
49274
  bgColor?: string | undefined;
49275
+ activeColor?: string | undefined;
49251
49276
  activeClass?: string | undefined;
49252
49277
  activeStrategy?: SelectStrategy | undefined;
49253
- activeColor?: string | undefined;
49254
49278
  collapseIcon?: string | undefined;
49255
49279
  expandIcon?: string | undefined;
49256
49280
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -49303,9 +49327,9 @@ declare const VSelect: {
49303
49327
  elevation?: string | number | undefined;
49304
49328
  baseColor?: string | undefined;
49305
49329
  bgColor?: string | undefined;
49330
+ activeColor?: string | undefined;
49306
49331
  activeClass?: string | undefined;
49307
49332
  activeStrategy?: SelectStrategy | undefined;
49308
- activeColor?: string | undefined;
49309
49333
  collapseIcon?: string | undefined;
49310
49334
  expandIcon?: string | undefined;
49311
49335
  } & {
@@ -49820,9 +49844,9 @@ declare const VSelect: {
49820
49844
  elevation?: string | number | undefined;
49821
49845
  baseColor?: string | undefined;
49822
49846
  bgColor?: string | undefined;
49847
+ activeColor?: string | undefined;
49823
49848
  activeClass?: string | undefined;
49824
49849
  activeStrategy?: SelectStrategy | undefined;
49825
- activeColor?: string | undefined;
49826
49850
  collapseIcon?: string | undefined;
49827
49851
  expandIcon?: string | undefined;
49828
49852
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -49875,9 +49899,9 @@ declare const VSelect: {
49875
49899
  elevation?: string | number | undefined;
49876
49900
  baseColor?: string | undefined;
49877
49901
  bgColor?: string | undefined;
49902
+ activeColor?: string | undefined;
49878
49903
  activeClass?: string | undefined;
49879
49904
  activeStrategy?: SelectStrategy | undefined;
49880
- activeColor?: string | undefined;
49881
49905
  collapseIcon?: string | undefined;
49882
49906
  expandIcon?: string | undefined;
49883
49907
  } & {
@@ -50505,9 +50529,9 @@ declare const VSelect: {
50505
50529
  elevation?: string | number | undefined;
50506
50530
  baseColor?: string | undefined;
50507
50531
  bgColor?: string | undefined;
50532
+ activeColor?: string | undefined;
50508
50533
  activeClass?: string | undefined;
50509
50534
  activeStrategy?: SelectStrategy | undefined;
50510
- activeColor?: string | undefined;
50511
50535
  collapseIcon?: string | undefined;
50512
50536
  expandIcon?: string | undefined;
50513
50537
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -50560,9 +50584,9 @@ declare const VSelect: {
50560
50584
  elevation?: string | number | undefined;
50561
50585
  baseColor?: string | undefined;
50562
50586
  bgColor?: string | undefined;
50587
+ activeColor?: string | undefined;
50563
50588
  activeClass?: string | undefined;
50564
50589
  activeStrategy?: SelectStrategy | undefined;
50565
- activeColor?: string | undefined;
50566
50590
  collapseIcon?: string | undefined;
50567
50591
  expandIcon?: string | undefined;
50568
50592
  } & {
@@ -51125,9 +51149,9 @@ declare const VSelect: {
51125
51149
  elevation?: string | number | undefined;
51126
51150
  baseColor?: string | undefined;
51127
51151
  bgColor?: string | undefined;
51152
+ activeColor?: string | undefined;
51128
51153
  activeClass?: string | undefined;
51129
51154
  activeStrategy?: SelectStrategy | undefined;
51130
- activeColor?: string | undefined;
51131
51155
  collapseIcon?: string | undefined;
51132
51156
  expandIcon?: string | undefined;
51133
51157
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -51180,9 +51204,9 @@ declare const VSelect: {
51180
51204
  elevation?: string | number | undefined;
51181
51205
  baseColor?: string | undefined;
51182
51206
  bgColor?: string | undefined;
51207
+ activeColor?: string | undefined;
51183
51208
  activeClass?: string | undefined;
51184
51209
  activeStrategy?: SelectStrategy | undefined;
51185
- activeColor?: string | undefined;
51186
51210
  collapseIcon?: string | undefined;
51187
51211
  expandIcon?: string | undefined;
51188
51212
  } & {
@@ -51954,9 +51978,9 @@ declare const VSelect: {
51954
51978
  elevation?: string | number | undefined;
51955
51979
  baseColor?: string | undefined;
51956
51980
  bgColor?: string | undefined;
51981
+ activeColor?: string | undefined;
51957
51982
  activeClass?: string | undefined;
51958
51983
  activeStrategy?: SelectStrategy | undefined;
51959
- activeColor?: string | undefined;
51960
51984
  collapseIcon?: string | undefined;
51961
51985
  expandIcon?: string | undefined;
51962
51986
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -52009,9 +52033,9 @@ declare const VSelect: {
52009
52033
  elevation?: string | number | undefined;
52010
52034
  baseColor?: string | undefined;
52011
52035
  bgColor?: string | undefined;
52036
+ activeColor?: string | undefined;
52012
52037
  activeClass?: string | undefined;
52013
52038
  activeStrategy?: SelectStrategy | undefined;
52014
- activeColor?: string | undefined;
52015
52039
  collapseIcon?: string | undefined;
52016
52040
  expandIcon?: string | undefined;
52017
52041
  } & {
@@ -52626,9 +52650,9 @@ declare const VSelect: {
52626
52650
  elevation?: string | number | undefined;
52627
52651
  baseColor?: string | undefined;
52628
52652
  bgColor?: string | undefined;
52653
+ activeColor?: string | undefined;
52629
52654
  activeClass?: string | undefined;
52630
52655
  activeStrategy?: SelectStrategy | undefined;
52631
- activeColor?: string | undefined;
52632
52656
  collapseIcon?: string | undefined;
52633
52657
  expandIcon?: string | undefined;
52634
52658
  "onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
@@ -52681,9 +52705,9 @@ declare const VSelect: {
52681
52705
  elevation?: string | number | undefined;
52682
52706
  baseColor?: string | undefined;
52683
52707
  bgColor?: string | undefined;
52708
+ activeColor?: string | undefined;
52684
52709
  activeClass?: string | undefined;
52685
52710
  activeStrategy?: SelectStrategy | undefined;
52686
- activeColor?: string | undefined;
52687
52711
  collapseIcon?: string | undefined;
52688
52712
  expandIcon?: string | undefined;
52689
52713
  } & {
@@ -60549,6 +60573,7 @@ declare const VTab: {
60549
60573
  minWidth?: string | number | undefined;
60550
60574
  elevation?: string | number | undefined;
60551
60575
  baseColor?: string | undefined;
60576
+ activeColor?: string | undefined;
60552
60577
  prependIcon?: IconValue | undefined;
60553
60578
  appendIcon?: IconValue | undefined;
60554
60579
  sliderColor?: string | undefined;
@@ -60636,6 +60661,7 @@ declare const VTab: {
60636
60661
  location?: Anchor | undefined;
60637
60662
  baseColor?: string | undefined;
60638
60663
  selectedClass?: string | undefined;
60664
+ activeColor?: string | undefined;
60639
60665
  prependIcon?: IconValue | undefined;
60640
60666
  appendIcon?: IconValue | undefined;
60641
60667
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
@@ -60700,6 +60726,7 @@ declare const VTab: {
60700
60726
  location?: Anchor | undefined;
60701
60727
  baseColor?: string | undefined;
60702
60728
  selectedClass?: string | undefined;
60729
+ activeColor?: string | undefined;
60703
60730
  prependIcon?: IconValue | undefined;
60704
60731
  appendIcon?: IconValue | undefined;
60705
60732
  } & {
@@ -60794,6 +60821,7 @@ declare const VTab: {
60794
60821
  location?: Anchor | undefined;
60795
60822
  baseColor?: string | undefined;
60796
60823
  selectedClass?: string | undefined;
60824
+ activeColor?: string | undefined;
60797
60825
  prependIcon?: IconValue | undefined;
60798
60826
  appendIcon?: IconValue | undefined;
60799
60827
  } & {
@@ -60921,6 +60949,7 @@ declare const VTab: {
60921
60949
  location?: Anchor | undefined;
60922
60950
  baseColor?: string | undefined;
60923
60951
  selectedClass?: string | undefined;
60952
+ activeColor?: string | undefined;
60924
60953
  prependIcon?: IconValue | undefined;
60925
60954
  appendIcon?: IconValue | undefined;
60926
60955
  } & {
@@ -60947,7 +60976,7 @@ declare const VTab: {
60947
60976
  }) => any) | undefined;
60948
60977
  }, "group"> & vue.ShallowUnwrapRef<{
60949
60978
  group: GroupItemProvide | null;
60950
- }> & {} & 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 & {
60979
+ }> & {} & 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 & {
60951
60980
  replace: boolean;
60952
60981
  fixed: boolean;
60953
60982
  style: vue.StyleValue;
@@ -60987,6 +61016,7 @@ declare const VTab: {
60987
61016
  minWidth?: string | number | undefined;
60988
61017
  elevation?: string | number | undefined;
60989
61018
  baseColor?: string | undefined;
61019
+ activeColor?: string | undefined;
60990
61020
  prependIcon?: IconValue | undefined;
60991
61021
  appendIcon?: IconValue | undefined;
60992
61022
  sliderColor?: string | undefined;
@@ -61089,6 +61119,7 @@ declare const VTab: {
61089
61119
  minWidth?: string | number | undefined;
61090
61120
  elevation?: string | number | undefined;
61091
61121
  baseColor?: string | undefined;
61122
+ activeColor?: string | undefined;
61092
61123
  prependIcon?: IconValue | undefined;
61093
61124
  appendIcon?: IconValue | undefined;
61094
61125
  sliderColor?: string | undefined;
@@ -61176,6 +61207,7 @@ declare const VTab: {
61176
61207
  location?: Anchor | undefined;
61177
61208
  baseColor?: string | undefined;
61178
61209
  selectedClass?: string | undefined;
61210
+ activeColor?: string | undefined;
61179
61211
  prependIcon?: IconValue | undefined;
61180
61212
  appendIcon?: IconValue | undefined;
61181
61213
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
@@ -61240,6 +61272,7 @@ declare const VTab: {
61240
61272
  location?: Anchor | undefined;
61241
61273
  baseColor?: string | undefined;
61242
61274
  selectedClass?: string | undefined;
61275
+ activeColor?: string | undefined;
61243
61276
  prependIcon?: IconValue | undefined;
61244
61277
  appendIcon?: IconValue | undefined;
61245
61278
  } & {
@@ -61334,6 +61367,7 @@ declare const VTab: {
61334
61367
  location?: Anchor | undefined;
61335
61368
  baseColor?: string | undefined;
61336
61369
  selectedClass?: string | undefined;
61370
+ activeColor?: string | undefined;
61337
61371
  prependIcon?: IconValue | undefined;
61338
61372
  appendIcon?: IconValue | undefined;
61339
61373
  } & {
@@ -61461,6 +61495,7 @@ declare const VTab: {
61461
61495
  location?: Anchor | undefined;
61462
61496
  baseColor?: string | undefined;
61463
61497
  selectedClass?: string | undefined;
61498
+ activeColor?: string | undefined;
61464
61499
  prependIcon?: IconValue | undefined;
61465
61500
  appendIcon?: IconValue | undefined;
61466
61501
  } & {
@@ -61487,7 +61522,7 @@ declare const VTab: {
61487
61522
  }) => any) | undefined;
61488
61523
  }, "group"> & vue.ShallowUnwrapRef<{
61489
61524
  group: GroupItemProvide | null;
61490
- }> & {} & 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}`>, {}, {}, {}, {
61525
+ }> & {} & 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}`>, {}, {}, {}, {
61491
61526
  replace: boolean;
61492
61527
  fixed: boolean;
61493
61528
  style: vue.StyleValue;
@@ -61552,6 +61587,7 @@ declare const VTab: {
61552
61587
  minWidth?: string | number | undefined;
61553
61588
  elevation?: string | number | undefined;
61554
61589
  baseColor?: string | undefined;
61590
+ activeColor?: string | undefined;
61555
61591
  prependIcon?: IconValue | undefined;
61556
61592
  appendIcon?: IconValue | undefined;
61557
61593
  sliderColor?: string | undefined;
@@ -61639,6 +61675,7 @@ declare const VTab: {
61639
61675
  location?: Anchor | undefined;
61640
61676
  baseColor?: string | undefined;
61641
61677
  selectedClass?: string | undefined;
61678
+ activeColor?: string | undefined;
61642
61679
  prependIcon?: IconValue | undefined;
61643
61680
  appendIcon?: IconValue | undefined;
61644
61681
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
@@ -61703,6 +61740,7 @@ declare const VTab: {
61703
61740
  location?: Anchor | undefined;
61704
61741
  baseColor?: string | undefined;
61705
61742
  selectedClass?: string | undefined;
61743
+ activeColor?: string | undefined;
61706
61744
  prependIcon?: IconValue | undefined;
61707
61745
  appendIcon?: IconValue | undefined;
61708
61746
  } & {
@@ -61797,6 +61835,7 @@ declare const VTab: {
61797
61835
  location?: Anchor | undefined;
61798
61836
  baseColor?: string | undefined;
61799
61837
  selectedClass?: string | undefined;
61838
+ activeColor?: string | undefined;
61800
61839
  prependIcon?: IconValue | undefined;
61801
61840
  appendIcon?: IconValue | undefined;
61802
61841
  } & {
@@ -61924,6 +61963,7 @@ declare const VTab: {
61924
61963
  location?: Anchor | undefined;
61925
61964
  baseColor?: string | undefined;
61926
61965
  selectedClass?: string | undefined;
61966
+ activeColor?: string | undefined;
61927
61967
  prependIcon?: IconValue | undefined;
61928
61968
  appendIcon?: IconValue | undefined;
61929
61969
  } & {
@@ -61950,7 +61990,7 @@ declare const VTab: {
61950
61990
  }) => any) | undefined;
61951
61991
  }, "group"> & vue.ShallowUnwrapRef<{
61952
61992
  group: GroupItemProvide | null;
61953
- }> & {} & 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, {
61993
+ }> & {} & 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, {
61954
61994
  replace: boolean;
61955
61995
  fixed: boolean;
61956
61996
  style: vue.StyleValue;
@@ -62050,6 +62090,7 @@ declare const VTab: {
62050
62090
  type: PropType<string>;
62051
62091
  default: string;
62052
62092
  };
62093
+ activeColor: StringConstructor;
62053
62094
  prependIcon: PropType<IconValue>;
62054
62095
  appendIcon: PropType<IconValue>;
62055
62096
  slim: BooleanConstructor;
@@ -62133,6 +62174,7 @@ declare const VTab: {
62133
62174
  type: PropType<string>;
62134
62175
  default: string;
62135
62176
  };
62177
+ activeColor: StringConstructor;
62136
62178
  prependIcon: PropType<IconValue>;
62137
62179
  appendIcon: PropType<IconValue>;
62138
62180
  slim: BooleanConstructor;
@@ -73365,49 +73407,42 @@ declare module '@vue/runtime-core' {
73365
73407
  }
73366
73408
 
73367
73409
  export interface GlobalComponents {
73368
- VAlert: typeof import('vuetify/components')['VAlert']
73369
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
73410
+ VApp: typeof import('vuetify/components')['VApp']
73370
73411
  VAppBar: typeof import('vuetify/components')['VAppBar']
73371
73412
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
73372
73413
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
73414
+ VAvatar: typeof import('vuetify/components')['VAvatar']
73415
+ VAlert: typeof import('vuetify/components')['VAlert']
73416
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
73417
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
73418
+ VBadge: typeof import('vuetify/components')['VBadge']
73373
73419
  VBanner: typeof import('vuetify/components')['VBanner']
73374
73420
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
73375
73421
  VBannerText: typeof import('vuetify/components')['VBannerText']
73376
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
73377
- VAvatar: typeof import('vuetify/components')['VAvatar']
73378
- VApp: typeof import('vuetify/components')['VApp']
73379
- VBadge: typeof import('vuetify/components')['VBadge']
73380
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
73381
73422
  VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
73382
73423
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
73383
73424
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
73384
73425
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
73385
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
73386
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
73387
73426
  VBtn: typeof import('vuetify/components')['VBtn']
73427
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
73388
73428
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
73389
- VChip: typeof import('vuetify/components')['VChip']
73390
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
73391
- VCarousel: typeof import('vuetify/components')['VCarousel']
73392
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
73393
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
73394
73429
  VCard: typeof import('vuetify/components')['VCard']
73395
73430
  VCardActions: typeof import('vuetify/components')['VCardActions']
73396
73431
  VCardItem: typeof import('vuetify/components')['VCardItem']
73397
73432
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
73398
73433
  VCardText: typeof import('vuetify/components')['VCardText']
73399
73434
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
73435
+ VCarousel: typeof import('vuetify/components')['VCarousel']
73436
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
73437
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
73438
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
73439
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
73440
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
73441
+ VChip: typeof import('vuetify/components')['VChip']
73442
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
73400
73443
  VCode: typeof import('vuetify/components')['VCode']
73401
73444
  VCombobox: typeof import('vuetify/components')['VCombobox']
73402
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
73403
- VDatePicker: typeof import('vuetify/components')['VDatePicker']
73404
- VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
73405
- VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
73406
- VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
73407
- VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
73408
- VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
73409
73445
  VCounter: typeof import('vuetify/components')['VCounter']
73410
- VDialog: typeof import('vuetify/components')['VDialog']
73411
73446
  VDataTable: typeof import('vuetify/components')['VDataTable']
73412
73447
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
73413
73448
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -73415,9 +73450,15 @@ declare module '@vue/runtime-core' {
73415
73450
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
73416
73451
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
73417
73452
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
73418
- VDivider: typeof import('vuetify/components')['VDivider']
73453
+ VDatePicker: typeof import('vuetify/components')['VDatePicker']
73454
+ VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
73455
+ VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
73456
+ VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
73457
+ VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
73458
+ VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
73419
73459
  VEmptyState: typeof import('vuetify/components')['VEmptyState']
73420
- VFileInput: typeof import('vuetify/components')['VFileInput']
73460
+ VDialog: typeof import('vuetify/components')['VDialog']
73461
+ VDivider: typeof import('vuetify/components')['VDivider']
73421
73462
  VField: typeof import('vuetify/components')['VField']
73422
73463
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
73423
73464
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
@@ -73426,19 +73467,19 @@ declare module '@vue/runtime-core' {
73426
73467
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
73427
73468
  VFooter: typeof import('vuetify/components')['VFooter']
73428
73469
  VFab: typeof import('vuetify/components')['VFab']
73429
- VImg: typeof import('vuetify/components')['VImg']
73470
+ VFileInput: typeof import('vuetify/components')['VFileInput']
73430
73471
  VIcon: typeof import('vuetify/components')['VIcon']
73431
73472
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
73432
73473
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
73433
73474
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
73434
73475
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
73435
- VInput: typeof import('vuetify/components')['VInput']
73436
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
73437
- VKbd: typeof import('vuetify/components')['VKbd']
73476
+ VImg: typeof import('vuetify/components')['VImg']
73438
73477
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
73439
73478
  VItem: typeof import('vuetify/components')['VItem']
73440
- VMain: typeof import('vuetify/components')['VMain']
73479
+ VInput: typeof import('vuetify/components')['VInput']
73441
73480
  VLabel: typeof import('vuetify/components')['VLabel']
73481
+ VKbd: typeof import('vuetify/components')['VKbd']
73482
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
73442
73483
  VList: typeof import('vuetify/components')['VList']
73443
73484
  VListGroup: typeof import('vuetify/components')['VListGroup']
73444
73485
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -73448,40 +73489,41 @@ declare module '@vue/runtime-core' {
73448
73489
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
73449
73490
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
73450
73491
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
73451
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
73452
73492
  VMenu: typeof import('vuetify/components')['VMenu']
73493
+ VMain: typeof import('vuetify/components')['VMain']
73494
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
73453
73495
  VMessages: typeof import('vuetify/components')['VMessages']
73454
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
73455
- VOverlay: typeof import('vuetify/components')['VOverlay']
73456
73496
  VPagination: typeof import('vuetify/components')['VPagination']
73457
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
73497
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
73498
+ VOverlay: typeof import('vuetify/components')['VOverlay']
73458
73499
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
73500
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
73459
73501
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
73460
- VRating: typeof import('vuetify/components')['VRating']
73461
73502
  VSelect: typeof import('vuetify/components')['VSelect']
73462
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
73463
- VSheet: typeof import('vuetify/components')['VSheet']
73503
+ VRating: typeof import('vuetify/components')['VRating']
73464
73504
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
73505
+ VSheet: typeof import('vuetify/components')['VSheet']
73506
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
73465
73507
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
73466
- VSlider: typeof import('vuetify/components')['VSlider']
73467
- VTab: typeof import('vuetify/components')['VTab']
73468
- VTabs: typeof import('vuetify/components')['VTabs']
73469
- VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
73470
- VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
73471
73508
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
73472
73509
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
73473
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
73510
+ VSlider: typeof import('vuetify/components')['VSlider']
73474
73511
  VStepper: typeof import('vuetify/components')['VStepper']
73475
73512
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
73476
73513
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
73477
73514
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
73478
73515
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
73479
73516
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
73480
- VTable: typeof import('vuetify/components')['VTable']
73481
- VSwitch: typeof import('vuetify/components')['VSwitch']
73482
- VTextarea: typeof import('vuetify/components')['VTextarea']
73483
73517
  VSystemBar: typeof import('vuetify/components')['VSystemBar']
73518
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
73519
+ VTextarea: typeof import('vuetify/components')['VTextarea']
73520
+ VSwitch: typeof import('vuetify/components')['VSwitch']
73521
+ VTab: typeof import('vuetify/components')['VTab']
73522
+ VTabs: typeof import('vuetify/components')['VTabs']
73523
+ VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
73524
+ VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
73484
73525
  VTextField: typeof import('vuetify/components')['VTextField']
73526
+ VTable: typeof import('vuetify/components')['VTable']
73485
73527
  VTimeline: typeof import('vuetify/components')['VTimeline']
73486
73528
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
73487
73529
  VToolbar: typeof import('vuetify/components')['VToolbar']
@@ -73493,16 +73535,16 @@ declare module '@vue/runtime-core' {
73493
73535
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
73494
73536
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
73495
73537
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
73538
+ VForm: typeof import('vuetify/components')['VForm']
73496
73539
  VContainer: typeof import('vuetify/components')['VContainer']
73497
73540
  VCol: typeof import('vuetify/components')['VCol']
73498
73541
  VRow: typeof import('vuetify/components')['VRow']
73499
73542
  VSpacer: typeof import('vuetify/components')['VSpacer']
73500
- VForm: typeof import('vuetify/components')['VForm']
73501
73543
  VHover: typeof import('vuetify/components')['VHover']
73502
73544
  VLayout: typeof import('vuetify/components')['VLayout']
73503
73545
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
73504
- VLazy: typeof import('vuetify/components')['VLazy']
73505
73546
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
73547
+ VLazy: typeof import('vuetify/components')['VLazy']
73506
73548
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
73507
73549
  VParallax: typeof import('vuetify/components')['VParallax']
73508
73550
  VRadio: typeof import('vuetify/components')['VRadio']
@@ -73535,10 +73577,10 @@ declare module '@vue/runtime-core' {
73535
73577
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
73536
73578
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
73537
73579
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
73538
- VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
73539
73580
  VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
73540
73581
  VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
73541
73582
  VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
73583
+ VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
73542
73584
  VPicker: typeof import('vuetify/labs/components')['VPicker']
73543
73585
  VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
73544
73586
  VTreeview: typeof import('vuetify/labs/components')['VTreeview']