@vuetify/nightly 3.8.7-dev.2025-05-27 → 3.8.7-dev.2025-05-30

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 (70) hide show
  1. package/CHANGELOG.md +8 -3
  2. package/dist/json/attributes.json +1893 -1885
  3. package/dist/json/importMap-labs.json +34 -34
  4. package/dist/json/importMap.json +140 -140
  5. package/dist/json/tags.json +2 -0
  6. package/dist/json/web-types.json +3286 -3266
  7. package/dist/vuetify-labs.cjs +36 -15
  8. package/dist/vuetify-labs.css +5222 -5222
  9. package/dist/vuetify-labs.d.ts +401 -213
  10. package/dist/vuetify-labs.esm.js +36 -15
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +36 -15
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +36 -15
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +5419 -5419
  17. package/dist/vuetify.d.ts +345 -189
  18. package/dist/vuetify.esm.js +36 -15
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +36 -15
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +24 -19
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAppBar/VAppBarNavIcon.d.ts +20 -10
  26. package/lib/components/VAutocomplete/VAutocomplete.d.ts +21 -7
  27. package/lib/components/VAutocomplete/VAutocomplete.js +2 -1
  28. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  29. package/lib/components/VBtn/VBtn.d.ts +20 -10
  30. package/lib/components/VCard/VCard.d.ts +20 -10
  31. package/lib/components/VCheckbox/VCheckbox.d.ts +20 -10
  32. package/lib/components/VCheckbox/VCheckboxBtn.d.ts +20 -10
  33. package/lib/components/VChip/VChip.d.ts +20 -10
  34. package/lib/components/VCombobox/VCombobox.d.ts +21 -7
  35. package/lib/components/VCombobox/VCombobox.js +2 -1
  36. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  37. package/lib/components/VExpansionPanel/VExpansionPanel.d.ts +20 -10
  38. package/lib/components/VExpansionPanel/VExpansionPanelTitle.d.ts +20 -10
  39. package/lib/components/VExpansionPanel/VExpansionPanels.d.ts +20 -10
  40. package/lib/components/VFab/VFab.d.ts +20 -10
  41. package/lib/components/VList/VList.d.ts +13 -0
  42. package/lib/components/VList/VList.js +4 -1
  43. package/lib/components/VList/VList.js.map +1 -1
  44. package/lib/components/VList/VListItem.d.ts +23 -10
  45. package/lib/components/VList/VListItem.js +7 -3
  46. package/lib/components/VList/VListItem.js.map +1 -1
  47. package/lib/components/VList/list.d.ts +9 -2
  48. package/lib/components/VList/list.js +7 -0
  49. package/lib/components/VList/list.js.map +1 -1
  50. package/lib/components/VRadio/VRadio.d.ts +20 -10
  51. package/lib/components/VRadioGroup/VRadioGroup.d.ts +20 -10
  52. package/lib/components/VSelect/VSelect.d.ts +33 -11
  53. package/lib/components/VSelectionControl/VSelectionControl.d.ts +20 -10
  54. package/lib/components/VSelectionControlGroup/VSelectionControlGroup.d.ts +28 -14
  55. package/lib/components/VSlider/VSliderThumb.d.ts +20 -10
  56. package/lib/components/VStepper/VStepperItem.d.ts +28 -14
  57. package/lib/components/VSwitch/VSwitch.d.ts +20 -10
  58. package/lib/components/VTabs/VTab.d.ts +56 -28
  59. package/lib/directives/ripple/index.d.ts +2 -1
  60. package/lib/directives/ripple/index.js +12 -7
  61. package/lib/directives/ripple/index.js.map +1 -1
  62. package/lib/entry-bundler.js +1 -1
  63. package/lib/framework.d.ts +53 -53
  64. package/lib/framework.js +1 -1
  65. package/lib/labs/VFileUpload/VFileUploadItem.d.ts +20 -10
  66. package/lib/labs/VStepperVertical/VStepperVertical.d.ts +20 -10
  67. package/lib/labs/VStepperVertical/VStepperVerticalItem.d.ts +20 -10
  68. package/lib/labs/VTreeview/VTreeview.d.ts +13 -0
  69. package/lib/labs/VTreeview/VTreeviewItem.d.ts +20 -10
  70. package/package.json +1 -1
package/dist/vuetify.d.ts CHANGED
@@ -4170,7 +4170,8 @@ type VAppBar = InstanceType<typeof VAppBar>;
4170
4170
 
4171
4171
  interface RippleDirectiveBinding extends Omit<DirectiveBinding, 'modifiers' | 'value'> {
4172
4172
  value?: boolean | {
4173
- class: string;
4173
+ class?: string;
4174
+ keys?: number[];
4174
4175
  };
4175
4176
  modifiers: {
4176
4177
  center?: boolean;
@@ -4244,7 +4245,8 @@ declare const VAppBarNavIcon: {
4244
4245
  slim: boolean;
4245
4246
  stacked: boolean;
4246
4247
  ripple: boolean | {
4247
- class: string;
4248
+ class?: string;
4249
+ keys?: number[];
4248
4250
  } | undefined;
4249
4251
  } & {
4250
4252
  location?: Anchor | null | undefined;
@@ -4311,7 +4313,8 @@ declare const VAppBarNavIcon: {
4311
4313
  slim: boolean;
4312
4314
  stacked: boolean;
4313
4315
  ripple: boolean | {
4314
- class: string;
4316
+ class?: string;
4317
+ keys?: number[];
4315
4318
  } | undefined;
4316
4319
  }, true, {}, vue.SlotsType<Partial<{
4317
4320
  default: () => vue.VNode[];
@@ -4343,7 +4346,8 @@ declare const VAppBarNavIcon: {
4343
4346
  slim: boolean;
4344
4347
  stacked: boolean;
4345
4348
  ripple: boolean | {
4346
- class: string;
4349
+ class?: string;
4350
+ keys?: number[];
4347
4351
  } | undefined;
4348
4352
  } & {
4349
4353
  location?: Anchor | null | undefined;
@@ -4410,7 +4414,8 @@ declare const VAppBarNavIcon: {
4410
4414
  slim: boolean;
4411
4415
  stacked: boolean;
4412
4416
  ripple: boolean | {
4413
- class: string;
4417
+ class?: string;
4418
+ keys?: number[];
4414
4419
  } | undefined;
4415
4420
  }>;
4416
4421
  __isFragment?: never;
@@ -4434,7 +4439,8 @@ declare const VAppBarNavIcon: {
4434
4439
  slim: boolean;
4435
4440
  stacked: boolean;
4436
4441
  ripple: boolean | {
4437
- class: string;
4442
+ class?: string;
4443
+ keys?: number[];
4438
4444
  } | undefined;
4439
4445
  } & {
4440
4446
  location?: Anchor | null | undefined;
@@ -4501,7 +4507,8 @@ declare const VAppBarNavIcon: {
4501
4507
  slim: boolean;
4502
4508
  stacked: boolean;
4503
4509
  ripple: boolean | {
4504
- class: string;
4510
+ class?: string;
4511
+ keys?: number[];
4505
4512
  } | undefined;
4506
4513
  }, {}, string, vue.SlotsType<Partial<{
4507
4514
  default: () => vue.VNode[];
@@ -6458,7 +6465,8 @@ declare const VListItem: {
6458
6465
  tile: boolean;
6459
6466
  slim: boolean;
6460
6467
  ripple: boolean | {
6461
- class: string;
6468
+ class?: string;
6469
+ keys?: number[];
6462
6470
  } | undefined;
6463
6471
  } & {
6464
6472
  link?: boolean | undefined;
@@ -6519,6 +6527,7 @@ declare const VListItem: {
6519
6527
  isGroupActivator: boolean | undefined;
6520
6528
  isSelected: vue.ComputedRef<boolean>;
6521
6529
  list: {
6530
+ filterable: vue.MaybeRefOrGetter<boolean>;
6522
6531
  hasPrepend: vue.Ref<boolean>;
6523
6532
  updateHasPrepend: (value: boolean) => void;
6524
6533
  } | null;
@@ -6560,7 +6569,8 @@ declare const VListItem: {
6560
6569
  tile: boolean;
6561
6570
  slim: boolean;
6562
6571
  ripple: boolean | {
6563
- class: string;
6572
+ class?: string;
6573
+ keys?: number[];
6564
6574
  } | undefined;
6565
6575
  subtitle: string | number | boolean;
6566
6576
  }, true, {}, vue.SlotsType<Partial<{
@@ -6588,7 +6598,8 @@ declare const VListItem: {
6588
6598
  tile: boolean;
6589
6599
  slim: boolean;
6590
6600
  ripple: boolean | {
6591
- class: string;
6601
+ class?: string;
6602
+ keys?: number[];
6592
6603
  } | undefined;
6593
6604
  } & {
6594
6605
  link?: boolean | undefined;
@@ -6649,6 +6660,7 @@ declare const VListItem: {
6649
6660
  isGroupActivator: boolean | undefined;
6650
6661
  isSelected: vue.ComputedRef<boolean>;
6651
6662
  list: {
6663
+ filterable: vue.MaybeRefOrGetter<boolean>;
6652
6664
  hasPrepend: vue.Ref<boolean>;
6653
6665
  updateHasPrepend: (value: boolean) => void;
6654
6666
  } | null;
@@ -6688,7 +6700,8 @@ declare const VListItem: {
6688
6700
  tile: boolean;
6689
6701
  slim: boolean;
6690
6702
  ripple: boolean | {
6691
- class: string;
6703
+ class?: string;
6704
+ keys?: number[];
6692
6705
  } | undefined;
6693
6706
  subtitle: string | number | boolean;
6694
6707
  }>;
@@ -6707,7 +6720,8 @@ declare const VListItem: {
6707
6720
  tile: boolean;
6708
6721
  slim: boolean;
6709
6722
  ripple: boolean | {
6710
- class: string;
6723
+ class?: string;
6724
+ keys?: number[];
6711
6725
  } | undefined;
6712
6726
  } & {
6713
6727
  link?: boolean | undefined;
@@ -6768,6 +6782,7 @@ declare const VListItem: {
6768
6782
  isGroupActivator: boolean | undefined;
6769
6783
  isSelected: vue.ComputedRef<boolean>;
6770
6784
  list: {
6785
+ filterable: vue.MaybeRefOrGetter<boolean>;
6771
6786
  hasPrepend: vue.Ref<boolean>;
6772
6787
  updateHasPrepend: (value: boolean) => void;
6773
6788
  } | null;
@@ -6809,7 +6824,8 @@ declare const VListItem: {
6809
6824
  tile: boolean;
6810
6825
  slim: boolean;
6811
6826
  ripple: boolean | {
6812
- class: string;
6827
+ class?: string;
6828
+ keys?: number[];
6813
6829
  } | undefined;
6814
6830
  subtitle: string | number | boolean;
6815
6831
  }, {}, string, vue.SlotsType<Partial<{
@@ -7040,6 +7056,7 @@ declare const VList: {
7040
7056
  density: Density;
7041
7057
  tile: boolean;
7042
7058
  slim: boolean;
7059
+ filterable: boolean;
7043
7060
  activatable: boolean;
7044
7061
  selectable: boolean;
7045
7062
  openStrategy: OpenStrategyProp;
@@ -7113,6 +7130,7 @@ declare const VList: {
7113
7130
  rounded: string | number | boolean;
7114
7131
  tile: boolean;
7115
7132
  slim: boolean;
7133
+ filterable: boolean;
7116
7134
  activatable: boolean;
7117
7135
  selectable: boolean;
7118
7136
  openStrategy: OpenStrategyProp;
@@ -7163,6 +7181,7 @@ declare const VList: {
7163
7181
  density: Density;
7164
7182
  tile: boolean;
7165
7183
  slim: boolean;
7184
+ filterable: boolean;
7166
7185
  activatable: boolean;
7167
7186
  selectable: boolean;
7168
7187
  openStrategy: OpenStrategyProp;
@@ -7217,6 +7236,7 @@ declare const VList: {
7217
7236
  rounded: string | number | boolean;
7218
7237
  tile: boolean;
7219
7238
  slim: boolean;
7239
+ filterable: boolean;
7220
7240
  activatable: boolean;
7221
7241
  selectable: boolean;
7222
7242
  openStrategy: OpenStrategyProp;
@@ -7238,6 +7258,7 @@ declare const VList: {
7238
7258
  density: Density;
7239
7259
  tile: boolean;
7240
7260
  slim: boolean;
7261
+ filterable: boolean;
7241
7262
  activatable: boolean;
7242
7263
  selectable: boolean;
7243
7264
  openStrategy: OpenStrategyProp;
@@ -7311,6 +7332,7 @@ declare const VList: {
7311
7332
  rounded: string | number | boolean;
7312
7333
  tile: boolean;
7313
7334
  slim: boolean;
7335
+ filterable: boolean;
7314
7336
  activatable: boolean;
7315
7337
  selectable: boolean;
7316
7338
  openStrategy: OpenStrategyProp;
@@ -7448,6 +7470,7 @@ declare const VList: {
7448
7470
  activeClass: StringConstructor;
7449
7471
  bgColor: StringConstructor;
7450
7472
  disabled: BooleanConstructor;
7473
+ filterable: BooleanConstructor;
7451
7474
  expandIcon: PropType<IconValue>;
7452
7475
  collapseIcon: PropType<IconValue>;
7453
7476
  lines: {
@@ -7554,6 +7577,7 @@ declare const VList: {
7554
7577
  activeClass: StringConstructor;
7555
7578
  bgColor: StringConstructor;
7556
7579
  disabled: BooleanConstructor;
7580
+ filterable: BooleanConstructor;
7557
7581
  expandIcon: PropType<IconValue>;
7558
7582
  collapseIcon: PropType<IconValue>;
7559
7583
  lines: {
@@ -10818,6 +10842,7 @@ declare const VAutocomplete: {
10818
10842
  rounded: string | number | boolean;
10819
10843
  tile: boolean;
10820
10844
  slim: boolean;
10845
+ filterable: boolean;
10821
10846
  activatable: boolean;
10822
10847
  selectable: boolean;
10823
10848
  openStrategy: OpenStrategyProp;
@@ -10835,6 +10860,7 @@ declare const VAutocomplete: {
10835
10860
  density: Density;
10836
10861
  tile: boolean;
10837
10862
  slim: boolean;
10863
+ filterable: boolean;
10838
10864
  activatable: boolean;
10839
10865
  selectable: boolean;
10840
10866
  openStrategy: OpenStrategyProp;
@@ -10866,7 +10892,7 @@ declare const VAutocomplete: {
10866
10892
  value: boolean;
10867
10893
  path: unknown[];
10868
10894
  }) => any) | undefined;
10869
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
10895
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
10870
10896
  items?: readonly any[] | undefined;
10871
10897
  itemTitle?: SelectItemKey<any>;
10872
10898
  itemValue?: SelectItemKey<any>;
@@ -13344,6 +13370,7 @@ declare const VAutocomplete: {
13344
13370
  rounded: string | number | boolean;
13345
13371
  tile: boolean;
13346
13372
  slim: boolean;
13373
+ filterable: boolean;
13347
13374
  activatable: boolean;
13348
13375
  selectable: boolean;
13349
13376
  openStrategy: OpenStrategyProp;
@@ -13361,6 +13388,7 @@ declare const VAutocomplete: {
13361
13388
  density: Density;
13362
13389
  tile: boolean;
13363
13390
  slim: boolean;
13391
+ filterable: boolean;
13364
13392
  activatable: boolean;
13365
13393
  selectable: boolean;
13366
13394
  openStrategy: OpenStrategyProp;
@@ -13392,7 +13420,7 @@ declare const VAutocomplete: {
13392
13420
  value: boolean;
13393
13421
  path: unknown[];
13394
13422
  }) => any) | undefined;
13395
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
13423
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
13396
13424
  items?: readonly any[] | undefined;
13397
13425
  itemTitle?: SelectItemKey<any>;
13398
13426
  itemValue?: SelectItemKey<any>;
@@ -15822,6 +15850,7 @@ declare const VAutocomplete: {
15822
15850
  rounded: string | number | boolean;
15823
15851
  tile: boolean;
15824
15852
  slim: boolean;
15853
+ filterable: boolean;
15825
15854
  activatable: boolean;
15826
15855
  selectable: boolean;
15827
15856
  openStrategy: OpenStrategyProp;
@@ -15839,6 +15868,7 @@ declare const VAutocomplete: {
15839
15868
  density: Density;
15840
15869
  tile: boolean;
15841
15870
  slim: boolean;
15871
+ filterable: boolean;
15842
15872
  activatable: boolean;
15843
15873
  selectable: boolean;
15844
15874
  openStrategy: OpenStrategyProp;
@@ -15870,7 +15900,7 @@ declare const VAutocomplete: {
15870
15900
  value: boolean;
15871
15901
  path: unknown[];
15872
15902
  }) => any) | undefined;
15873
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
15903
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
15874
15904
  items?: readonly any[] | undefined;
15875
15905
  itemTitle?: SelectItemKey<any>;
15876
15906
  itemValue?: SelectItemKey<any>;
@@ -21731,7 +21761,8 @@ declare const VBtn: {
21731
21761
  slim: boolean;
21732
21762
  stacked: boolean;
21733
21763
  ripple: boolean | {
21734
- class: string;
21764
+ class?: string;
21765
+ keys?: number[];
21735
21766
  } | undefined;
21736
21767
  } & {
21737
21768
  location?: Anchor | null | undefined;
@@ -21808,7 +21839,8 @@ declare const VBtn: {
21808
21839
  slim: boolean;
21809
21840
  stacked: boolean;
21810
21841
  ripple: boolean | {
21811
- class: string;
21842
+ class?: string;
21843
+ keys?: number[];
21812
21844
  } | undefined;
21813
21845
  }, true, {}, vue.SlotsType<Partial<{
21814
21846
  default: () => vue.VNode[];
@@ -21839,7 +21871,8 @@ declare const VBtn: {
21839
21871
  slim: boolean;
21840
21872
  stacked: boolean;
21841
21873
  ripple: boolean | {
21842
- class: string;
21874
+ class?: string;
21875
+ keys?: number[];
21843
21876
  } | undefined;
21844
21877
  } & {
21845
21878
  location?: Anchor | null | undefined;
@@ -21912,7 +21945,8 @@ declare const VBtn: {
21912
21945
  slim: boolean;
21913
21946
  stacked: boolean;
21914
21947
  ripple: boolean | {
21915
- class: string;
21948
+ class?: string;
21949
+ keys?: number[];
21916
21950
  } | undefined;
21917
21951
  }>;
21918
21952
  __isFragment?: never;
@@ -21935,7 +21969,8 @@ declare const VBtn: {
21935
21969
  slim: boolean;
21936
21970
  stacked: boolean;
21937
21971
  ripple: boolean | {
21938
- class: string;
21972
+ class?: string;
21973
+ keys?: number[];
21939
21974
  } | undefined;
21940
21975
  } & {
21941
21976
  location?: Anchor | null | undefined;
@@ -22012,7 +22047,8 @@ declare const VBtn: {
22012
22047
  slim: boolean;
22013
22048
  stacked: boolean;
22014
22049
  ripple: boolean | {
22015
- class: string;
22050
+ class?: string;
22051
+ keys?: number[];
22016
22052
  } | undefined;
22017
22053
  }, {}, string, vue.SlotsType<Partial<{
22018
22054
  default: () => vue.VNode[];
@@ -22823,7 +22859,8 @@ declare const VCard: {
22823
22859
  density: Density;
22824
22860
  tile: boolean;
22825
22861
  ripple: boolean | {
22826
- class: string;
22862
+ class?: string;
22863
+ keys?: number[];
22827
22864
  } | undefined;
22828
22865
  hover: boolean;
22829
22866
  } & {
@@ -22904,7 +22941,8 @@ declare const VCard: {
22904
22941
  rounded: string | number | boolean;
22905
22942
  tile: boolean;
22906
22943
  ripple: boolean | {
22907
- class: string;
22944
+ class?: string;
22945
+ keys?: number[];
22908
22946
  } | undefined;
22909
22947
  subtitle: string | number | boolean;
22910
22948
  hover: boolean;
@@ -22937,7 +22975,8 @@ declare const VCard: {
22937
22975
  density: Density;
22938
22976
  tile: boolean;
22939
22977
  ripple: boolean | {
22940
- class: string;
22978
+ class?: string;
22979
+ keys?: number[];
22941
22980
  } | undefined;
22942
22981
  hover: boolean;
22943
22982
  } & {
@@ -23018,7 +23057,8 @@ declare const VCard: {
23018
23057
  rounded: string | number | boolean;
23019
23058
  tile: boolean;
23020
23059
  ripple: boolean | {
23021
- class: string;
23060
+ class?: string;
23061
+ keys?: number[];
23022
23062
  } | undefined;
23023
23063
  subtitle: string | number | boolean;
23024
23064
  hover: boolean;
@@ -23037,7 +23077,8 @@ declare const VCard: {
23037
23077
  density: Density;
23038
23078
  tile: boolean;
23039
23079
  ripple: boolean | {
23040
- class: string;
23080
+ class?: string;
23081
+ keys?: number[];
23041
23082
  } | undefined;
23042
23083
  hover: boolean;
23043
23084
  } & {
@@ -23118,7 +23159,8 @@ declare const VCard: {
23118
23159
  rounded: string | number | boolean;
23119
23160
  tile: boolean;
23120
23161
  ripple: boolean | {
23121
- class: string;
23162
+ class?: string;
23163
+ keys?: number[];
23122
23164
  } | undefined;
23123
23165
  subtitle: string | number | boolean;
23124
23166
  hover: boolean;
@@ -25019,7 +25061,8 @@ declare const VSelectionControlGroup: {
25019
25061
  valueComparator: typeof deepEqual;
25020
25062
  density: Density;
25021
25063
  ripple: boolean | {
25022
- class: string;
25064
+ class?: string;
25065
+ keys?: number[];
25023
25066
  } | undefined;
25024
25067
  defaultsTarget: string;
25025
25068
  } & {
@@ -25043,7 +25086,8 @@ declare const VSelectionControlGroup: {
25043
25086
  valueComparator: typeof deepEqual;
25044
25087
  density: Density;
25045
25088
  ripple: boolean | {
25046
- class: string;
25089
+ class?: string;
25090
+ keys?: number[];
25047
25091
  } | undefined;
25048
25092
  defaultsTarget: string;
25049
25093
  }, true, {}, vue.SlotsType<Partial<{
@@ -25065,7 +25109,8 @@ declare const VSelectionControlGroup: {
25065
25109
  valueComparator: typeof deepEqual;
25066
25110
  density: Density;
25067
25111
  ripple: boolean | {
25068
- class: string;
25112
+ class?: string;
25113
+ keys?: number[];
25069
25114
  } | undefined;
25070
25115
  defaultsTarget: string;
25071
25116
  } & {
@@ -25087,7 +25132,8 @@ declare const VSelectionControlGroup: {
25087
25132
  valueComparator: typeof deepEqual;
25088
25133
  density: Density;
25089
25134
  ripple: boolean | {
25090
- class: string;
25135
+ class?: string;
25136
+ keys?: number[];
25091
25137
  } | undefined;
25092
25138
  defaultsTarget: string;
25093
25139
  }>;
@@ -25104,7 +25150,8 @@ declare const VSelectionControlGroup: {
25104
25150
  valueComparator: typeof deepEqual;
25105
25151
  density: Density;
25106
25152
  ripple: boolean | {
25107
- class: string;
25153
+ class?: string;
25154
+ keys?: number[];
25108
25155
  } | undefined;
25109
25156
  defaultsTarget: string;
25110
25157
  } & {
@@ -25128,7 +25175,8 @@ declare const VSelectionControlGroup: {
25128
25175
  valueComparator: typeof deepEqual;
25129
25176
  density: Density;
25130
25177
  ripple: boolean | {
25131
- class: string;
25178
+ class?: string;
25179
+ keys?: number[];
25132
25180
  } | undefined;
25133
25181
  defaultsTarget: string;
25134
25182
  }, {}, string, vue.SlotsType<Partial<{
@@ -25267,7 +25315,8 @@ declare const VSelectionControl: {
25267
25315
  valueComparator: typeof deepEqual;
25268
25316
  density: Density;
25269
25317
  ripple: boolean | {
25270
- class: string;
25318
+ class?: string;
25319
+ keys?: number[];
25271
25320
  } | undefined;
25272
25321
  } & {
25273
25322
  name?: string | undefined;
@@ -25299,7 +25348,8 @@ declare const VSelectionControl: {
25299
25348
  valueComparator: typeof deepEqual;
25300
25349
  density: Density;
25301
25350
  ripple: boolean | {
25302
- class: string;
25351
+ class?: string;
25352
+ keys?: number[];
25303
25353
  } | undefined;
25304
25354
  }, true, {}, vue.SlotsType<Partial<{
25305
25355
  default: (arg: {
@@ -25328,7 +25378,8 @@ declare const VSelectionControl: {
25328
25378
  valueComparator: typeof deepEqual;
25329
25379
  density: Density;
25330
25380
  ripple: boolean | {
25331
- class: string;
25381
+ class?: string;
25382
+ keys?: number[];
25332
25383
  } | undefined;
25333
25384
  } & {
25334
25385
  name?: string | undefined;
@@ -25358,7 +25409,8 @@ declare const VSelectionControl: {
25358
25409
  valueComparator: typeof deepEqual;
25359
25410
  density: Density;
25360
25411
  ripple: boolean | {
25361
- class: string;
25412
+ class?: string;
25413
+ keys?: number[];
25362
25414
  } | undefined;
25363
25415
  }>;
25364
25416
  __isFragment?: never;
@@ -25374,7 +25426,8 @@ declare const VSelectionControl: {
25374
25426
  valueComparator: typeof deepEqual;
25375
25427
  density: Density;
25376
25428
  ripple: boolean | {
25377
- class: string;
25429
+ class?: string;
25430
+ keys?: number[];
25378
25431
  } | undefined;
25379
25432
  } & {
25380
25433
  name?: string | undefined;
@@ -25406,7 +25459,8 @@ declare const VSelectionControl: {
25406
25459
  valueComparator: typeof deepEqual;
25407
25460
  density: Density;
25408
25461
  ripple: boolean | {
25409
- class: string;
25462
+ class?: string;
25463
+ keys?: number[];
25410
25464
  } | undefined;
25411
25465
  }, {}, string, vue.SlotsType<Partial<{
25412
25466
  default: (arg: {
@@ -25536,7 +25590,8 @@ declare const VCheckbox: {
25536
25590
  valueComparator: typeof deepEqual;
25537
25591
  density: Density;
25538
25592
  ripple: boolean | {
25539
- class: string;
25593
+ class?: string;
25594
+ keys?: number[];
25540
25595
  } | undefined;
25541
25596
  falseIcon: IconValue;
25542
25597
  trueIcon: IconValue;
@@ -25592,7 +25647,8 @@ declare const VCheckbox: {
25592
25647
  valueComparator: typeof deepEqual;
25593
25648
  density: Density;
25594
25649
  ripple: boolean | {
25595
- class: string;
25650
+ class?: string;
25651
+ keys?: number[];
25596
25652
  } | undefined;
25597
25653
  falseIcon: IconValue;
25598
25654
  trueIcon: IconValue;
@@ -25638,7 +25694,8 @@ declare const VCheckbox: {
25638
25694
  valueComparator: typeof deepEqual;
25639
25695
  density: Density;
25640
25696
  ripple: boolean | {
25641
- class: string;
25697
+ class?: string;
25698
+ keys?: number[];
25642
25699
  } | undefined;
25643
25700
  falseIcon: IconValue;
25644
25701
  trueIcon: IconValue;
@@ -25691,7 +25748,8 @@ declare const VCheckbox: {
25691
25748
  valueComparator: typeof deepEqual;
25692
25749
  density: Density;
25693
25750
  ripple: boolean | {
25694
- class: string;
25751
+ class?: string;
25752
+ keys?: number[];
25695
25753
  } | undefined;
25696
25754
  falseIcon: IconValue;
25697
25755
  trueIcon: IconValue;
@@ -25720,7 +25778,8 @@ declare const VCheckbox: {
25720
25778
  valueComparator: typeof deepEqual;
25721
25779
  density: Density;
25722
25780
  ripple: boolean | {
25723
- class: string;
25781
+ class?: string;
25782
+ keys?: number[];
25724
25783
  } | undefined;
25725
25784
  falseIcon: IconValue;
25726
25785
  trueIcon: IconValue;
@@ -25776,7 +25835,8 @@ declare const VCheckbox: {
25776
25835
  valueComparator: typeof deepEqual;
25777
25836
  density: Density;
25778
25837
  ripple: boolean | {
25779
- class: string;
25838
+ class?: string;
25839
+ keys?: number[];
25780
25840
  } | undefined;
25781
25841
  falseIcon: IconValue;
25782
25842
  trueIcon: IconValue;
@@ -26015,7 +26075,8 @@ declare const VCheckboxBtn: {
26015
26075
  valueComparator: typeof deepEqual;
26016
26076
  density: Density;
26017
26077
  ripple: boolean | {
26018
- class: string;
26078
+ class?: string;
26079
+ keys?: number[];
26019
26080
  } | undefined;
26020
26081
  falseIcon: IconValue;
26021
26082
  trueIcon: IconValue;
@@ -26049,7 +26110,8 @@ declare const VCheckboxBtn: {
26049
26110
  valueComparator: typeof deepEqual;
26050
26111
  density: Density;
26051
26112
  ripple: boolean | {
26052
- class: string;
26113
+ class?: string;
26114
+ keys?: number[];
26053
26115
  } | undefined;
26054
26116
  falseIcon: IconValue;
26055
26117
  trueIcon: IconValue;
@@ -26082,7 +26144,8 @@ declare const VCheckboxBtn: {
26082
26144
  valueComparator: typeof deepEqual;
26083
26145
  density: Density;
26084
26146
  ripple: boolean | {
26085
- class: string;
26147
+ class?: string;
26148
+ keys?: number[];
26086
26149
  } | undefined;
26087
26150
  falseIcon: IconValue;
26088
26151
  trueIcon: IconValue;
@@ -26113,7 +26176,8 @@ declare const VCheckboxBtn: {
26113
26176
  valueComparator: typeof deepEqual;
26114
26177
  density: Density;
26115
26178
  ripple: boolean | {
26116
- class: string;
26179
+ class?: string;
26180
+ keys?: number[];
26117
26181
  } | undefined;
26118
26182
  falseIcon: IconValue;
26119
26183
  trueIcon: IconValue;
@@ -26133,7 +26197,8 @@ declare const VCheckboxBtn: {
26133
26197
  valueComparator: typeof deepEqual;
26134
26198
  density: Density;
26135
26199
  ripple: boolean | {
26136
- class: string;
26200
+ class?: string;
26201
+ keys?: number[];
26137
26202
  } | undefined;
26138
26203
  falseIcon: IconValue;
26139
26204
  trueIcon: IconValue;
@@ -26167,7 +26232,8 @@ declare const VCheckboxBtn: {
26167
26232
  valueComparator: typeof deepEqual;
26168
26233
  density: Density;
26169
26234
  ripple: boolean | {
26170
- class: string;
26235
+ class?: string;
26236
+ keys?: number[];
26171
26237
  } | undefined;
26172
26238
  falseIcon: IconValue;
26173
26239
  trueIcon: IconValue;
@@ -26320,7 +26386,8 @@ declare const VChip: {
26320
26386
  density: Density;
26321
26387
  tile: boolean;
26322
26388
  ripple: boolean | {
26323
- class: string;
26389
+ class?: string;
26390
+ keys?: number[];
26324
26391
  } | undefined;
26325
26392
  closable: boolean;
26326
26393
  closeIcon: IconValue;
@@ -26432,7 +26499,8 @@ declare const VChip: {
26432
26499
  rounded: string | number | boolean;
26433
26500
  tile: boolean;
26434
26501
  ripple: boolean | {
26435
- class: string;
26502
+ class?: string;
26503
+ keys?: number[];
26436
26504
  } | undefined;
26437
26505
  closable: boolean;
26438
26506
  closeIcon: IconValue;
@@ -26475,7 +26543,8 @@ declare const VChip: {
26475
26543
  density: Density;
26476
26544
  tile: boolean;
26477
26545
  ripple: boolean | {
26478
- class: string;
26546
+ class?: string;
26547
+ keys?: number[];
26479
26548
  } | undefined;
26480
26549
  closable: boolean;
26481
26550
  closeIcon: IconValue;
@@ -26580,7 +26649,8 @@ declare const VChip: {
26580
26649
  rounded: string | number | boolean;
26581
26650
  tile: boolean;
26582
26651
  ripple: boolean | {
26583
- class: string;
26652
+ class?: string;
26653
+ keys?: number[];
26584
26654
  } | undefined;
26585
26655
  closable: boolean;
26586
26656
  closeIcon: IconValue;
@@ -26606,7 +26676,8 @@ declare const VChip: {
26606
26676
  density: Density;
26607
26677
  tile: boolean;
26608
26678
  ripple: boolean | {
26609
- class: string;
26679
+ class?: string;
26680
+ keys?: number[];
26610
26681
  } | undefined;
26611
26682
  closable: boolean;
26612
26683
  closeIcon: IconValue;
@@ -26718,7 +26789,8 @@ declare const VChip: {
26718
26789
  rounded: string | number | boolean;
26719
26790
  tile: boolean;
26720
26791
  ripple: boolean | {
26721
- class: string;
26792
+ class?: string;
26793
+ keys?: number[];
26722
26794
  } | undefined;
26723
26795
  closable: boolean;
26724
26796
  closeIcon: IconValue;
@@ -27925,6 +27997,7 @@ declare const VCombobox: {
27925
27997
  rounded: string | number | boolean;
27926
27998
  tile: boolean;
27927
27999
  slim: boolean;
28000
+ filterable: boolean;
27928
28001
  activatable: boolean;
27929
28002
  selectable: boolean;
27930
28003
  openStrategy: OpenStrategyProp;
@@ -27942,6 +28015,7 @@ declare const VCombobox: {
27942
28015
  density: Density;
27943
28016
  tile: boolean;
27944
28017
  slim: boolean;
28018
+ filterable: boolean;
27945
28019
  activatable: boolean;
27946
28020
  selectable: boolean;
27947
28021
  openStrategy: OpenStrategyProp;
@@ -27973,7 +28047,7 @@ declare const VCombobox: {
27973
28047
  value: boolean;
27974
28048
  path: unknown[];
27975
28049
  }) => any) | undefined;
27976
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
28050
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
27977
28051
  items?: readonly any[] | undefined;
27978
28052
  itemTitle?: SelectItemKey<any>;
27979
28053
  itemValue?: SelectItemKey<any>;
@@ -30449,6 +30523,7 @@ declare const VCombobox: {
30449
30523
  rounded: string | number | boolean;
30450
30524
  tile: boolean;
30451
30525
  slim: boolean;
30526
+ filterable: boolean;
30452
30527
  activatable: boolean;
30453
30528
  selectable: boolean;
30454
30529
  openStrategy: OpenStrategyProp;
@@ -30466,6 +30541,7 @@ declare const VCombobox: {
30466
30541
  density: Density;
30467
30542
  tile: boolean;
30468
30543
  slim: boolean;
30544
+ filterable: boolean;
30469
30545
  activatable: boolean;
30470
30546
  selectable: boolean;
30471
30547
  openStrategy: OpenStrategyProp;
@@ -30497,7 +30573,7 @@ declare const VCombobox: {
30497
30573
  value: boolean;
30498
30574
  path: unknown[];
30499
30575
  }) => any) | undefined;
30500
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
30576
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
30501
30577
  items?: readonly any[] | undefined;
30502
30578
  itemTitle?: SelectItemKey<any>;
30503
30579
  itemValue?: SelectItemKey<any>;
@@ -32925,6 +33001,7 @@ declare const VCombobox: {
32925
33001
  rounded: string | number | boolean;
32926
33002
  tile: boolean;
32927
33003
  slim: boolean;
33004
+ filterable: boolean;
32928
33005
  activatable: boolean;
32929
33006
  selectable: boolean;
32930
33007
  openStrategy: OpenStrategyProp;
@@ -32942,6 +33019,7 @@ declare const VCombobox: {
32942
33019
  density: Density;
32943
33020
  tile: boolean;
32944
33021
  slim: boolean;
33022
+ filterable: boolean;
32945
33023
  activatable: boolean;
32946
33024
  selectable: boolean;
32947
33025
  openStrategy: OpenStrategyProp;
@@ -32973,7 +33051,7 @@ declare const VCombobox: {
32973
33051
  value: boolean;
32974
33052
  path: unknown[];
32975
33053
  }) => any) | undefined;
32976
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
33054
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
32977
33055
  items?: readonly any[] | undefined;
32978
33056
  itemTitle?: SelectItemKey<any>;
32979
33057
  itemValue?: SelectItemKey<any>;
@@ -43846,7 +43924,8 @@ declare const VExpansionPanels: {
43846
43924
  focusable: boolean;
43847
43925
  tile: boolean;
43848
43926
  ripple: boolean | {
43849
- class: string;
43927
+ class?: string;
43928
+ keys?: number[];
43850
43929
  } | undefined;
43851
43930
  collapseIcon: IconValue;
43852
43931
  expandIcon: IconValue;
@@ -43893,7 +43972,8 @@ declare const VExpansionPanels: {
43893
43972
  rounded: string | number | boolean;
43894
43973
  tile: boolean;
43895
43974
  ripple: boolean | {
43896
- class: string;
43975
+ class?: string;
43976
+ keys?: number[];
43897
43977
  } | undefined;
43898
43978
  collapseIcon: IconValue;
43899
43979
  expandIcon: IconValue;
@@ -43920,7 +44000,8 @@ declare const VExpansionPanels: {
43920
44000
  focusable: boolean;
43921
44001
  tile: boolean;
43922
44002
  ripple: boolean | {
43923
- class: string;
44003
+ class?: string;
44004
+ keys?: number[];
43924
44005
  } | undefined;
43925
44006
  collapseIcon: IconValue;
43926
44007
  expandIcon: IconValue;
@@ -43965,7 +44046,8 @@ declare const VExpansionPanels: {
43965
44046
  rounded: string | number | boolean;
43966
44047
  tile: boolean;
43967
44048
  ripple: boolean | {
43968
- class: string;
44049
+ class?: string;
44050
+ keys?: number[];
43969
44051
  } | undefined;
43970
44052
  collapseIcon: IconValue;
43971
44053
  expandIcon: IconValue;
@@ -43987,7 +44069,8 @@ declare const VExpansionPanels: {
43987
44069
  focusable: boolean;
43988
44070
  tile: boolean;
43989
44071
  ripple: boolean | {
43990
- class: string;
44072
+ class?: string;
44073
+ keys?: number[];
43991
44074
  } | undefined;
43992
44075
  collapseIcon: IconValue;
43993
44076
  expandIcon: IconValue;
@@ -44034,7 +44117,8 @@ declare const VExpansionPanels: {
44034
44117
  rounded: string | number | boolean;
44035
44118
  tile: boolean;
44036
44119
  ripple: boolean | {
44037
- class: string;
44120
+ class?: string;
44121
+ keys?: number[];
44038
44122
  } | undefined;
44039
44123
  collapseIcon: IconValue;
44040
44124
  expandIcon: IconValue;
@@ -44163,7 +44247,8 @@ declare const VExpansionPanel: {
44163
44247
  focusable: boolean;
44164
44248
  tile: boolean;
44165
44249
  ripple: boolean | {
44166
- class: string;
44250
+ class?: string;
44251
+ keys?: number[];
44167
44252
  } | undefined;
44168
44253
  collapseIcon: IconValue;
44169
44254
  expandIcon: IconValue;
@@ -44220,7 +44305,8 @@ declare const VExpansionPanel: {
44220
44305
  rounded: string | number | boolean;
44221
44306
  tile: boolean;
44222
44307
  ripple: boolean | {
44223
- class: string;
44308
+ class?: string;
44309
+ keys?: number[];
44224
44310
  } | undefined;
44225
44311
  collapseIcon: IconValue;
44226
44312
  expandIcon: IconValue;
@@ -44246,7 +44332,8 @@ declare const VExpansionPanel: {
44246
44332
  focusable: boolean;
44247
44333
  tile: boolean;
44248
44334
  ripple: boolean | {
44249
- class: string;
44335
+ class?: string;
44336
+ keys?: number[];
44250
44337
  } | undefined;
44251
44338
  collapseIcon: IconValue;
44252
44339
  expandIcon: IconValue;
@@ -44299,7 +44386,8 @@ declare const VExpansionPanel: {
44299
44386
  rounded: string | number | boolean;
44300
44387
  tile: boolean;
44301
44388
  ripple: boolean | {
44302
- class: string;
44389
+ class?: string;
44390
+ keys?: number[];
44303
44391
  } | undefined;
44304
44392
  collapseIcon: IconValue;
44305
44393
  expandIcon: IconValue;
@@ -44318,7 +44406,8 @@ declare const VExpansionPanel: {
44318
44406
  focusable: boolean;
44319
44407
  tile: boolean;
44320
44408
  ripple: boolean | {
44321
- class: string;
44409
+ class?: string;
44410
+ keys?: number[];
44322
44411
  } | undefined;
44323
44412
  collapseIcon: IconValue;
44324
44413
  expandIcon: IconValue;
@@ -44375,7 +44464,8 @@ declare const VExpansionPanel: {
44375
44464
  rounded: string | number | boolean;
44376
44465
  tile: boolean;
44377
44466
  ripple: boolean | {
44378
- class: string;
44467
+ class?: string;
44468
+ keys?: number[];
44379
44469
  } | undefined;
44380
44470
  collapseIcon: IconValue;
44381
44471
  expandIcon: IconValue;
@@ -44583,7 +44673,8 @@ declare const VExpansionPanelTitle: {
44583
44673
  static: boolean;
44584
44674
  focusable: boolean;
44585
44675
  ripple: boolean | {
44586
- class: string;
44676
+ class?: string;
44677
+ keys?: number[];
44587
44678
  } | undefined;
44588
44679
  collapseIcon: IconValue;
44589
44680
  expandIcon: IconValue;
@@ -44615,7 +44706,8 @@ declare const VExpansionPanelTitle: {
44615
44706
  static: boolean;
44616
44707
  focusable: boolean;
44617
44708
  ripple: boolean | {
44618
- class: string;
44709
+ class?: string;
44710
+ keys?: number[];
44619
44711
  } | undefined;
44620
44712
  collapseIcon: IconValue;
44621
44713
  expandIcon: IconValue;
@@ -44636,7 +44728,8 @@ declare const VExpansionPanelTitle: {
44636
44728
  static: boolean;
44637
44729
  focusable: boolean;
44638
44730
  ripple: boolean | {
44639
- class: string;
44731
+ class?: string;
44732
+ keys?: number[];
44640
44733
  } | undefined;
44641
44734
  collapseIcon: IconValue;
44642
44735
  expandIcon: IconValue;
@@ -44668,7 +44761,8 @@ declare const VExpansionPanelTitle: {
44668
44761
  static: boolean;
44669
44762
  focusable: boolean;
44670
44763
  ripple: boolean | {
44671
- class: string;
44764
+ class?: string;
44765
+ keys?: number[];
44672
44766
  } | undefined;
44673
44767
  collapseIcon: IconValue;
44674
44768
  expandIcon: IconValue;
@@ -44683,7 +44777,8 @@ declare const VExpansionPanelTitle: {
44683
44777
  static: boolean;
44684
44778
  focusable: boolean;
44685
44779
  ripple: boolean | {
44686
- class: string;
44780
+ class?: string;
44781
+ keys?: number[];
44687
44782
  } | undefined;
44688
44783
  collapseIcon: IconValue;
44689
44784
  expandIcon: IconValue;
@@ -44715,7 +44810,8 @@ declare const VExpansionPanelTitle: {
44715
44810
  static: boolean;
44716
44811
  focusable: boolean;
44717
44812
  ripple: boolean | {
44718
- class: string;
44813
+ class?: string;
44814
+ keys?: number[];
44719
44815
  } | undefined;
44720
44816
  collapseIcon: IconValue;
44721
44817
  expandIcon: IconValue;
@@ -44813,7 +44909,8 @@ declare const VFab: {
44813
44909
  slim: boolean;
44814
44910
  stacked: boolean;
44815
44911
  ripple: boolean | {
44816
- class: string;
44912
+ class?: string;
44913
+ keys?: number[];
44817
44914
  } | undefined;
44818
44915
  extended: boolean;
44819
44916
  } & {
@@ -44886,7 +44983,8 @@ declare const VFab: {
44886
44983
  slim: boolean;
44887
44984
  stacked: boolean;
44888
44985
  ripple: boolean | {
44889
- class: string;
44986
+ class?: string;
44987
+ keys?: number[];
44890
44988
  } | undefined;
44891
44989
  extended: boolean;
44892
44990
  }, true, {}, vue.SlotsType<Partial<{
@@ -44926,7 +45024,8 @@ declare const VFab: {
44926
45024
  slim: boolean;
44927
45025
  stacked: boolean;
44928
45026
  ripple: boolean | {
44929
- class: string;
45027
+ class?: string;
45028
+ keys?: number[];
44930
45029
  } | undefined;
44931
45030
  extended: boolean;
44932
45031
  } & {
@@ -44997,7 +45096,8 @@ declare const VFab: {
44997
45096
  slim: boolean;
44998
45097
  stacked: boolean;
44999
45098
  ripple: boolean | {
45000
- class: string;
45099
+ class?: string;
45100
+ keys?: number[];
45001
45101
  } | undefined;
45002
45102
  extended: boolean;
45003
45103
  }>;
@@ -45032,7 +45132,8 @@ declare const VFab: {
45032
45132
  slim: boolean;
45033
45133
  stacked: boolean;
45034
45134
  ripple: boolean | {
45035
- class: string;
45135
+ class?: string;
45136
+ keys?: number[];
45036
45137
  } | undefined;
45037
45138
  extended: boolean;
45038
45139
  } & {
@@ -45105,7 +45206,8 @@ declare const VFab: {
45105
45206
  slim: boolean;
45106
45207
  stacked: boolean;
45107
45208
  ripple: boolean | {
45108
- class: string;
45209
+ class?: string;
45210
+ keys?: number[];
45109
45211
  } | undefined;
45110
45212
  extended: boolean;
45111
45213
  }, {}, string, vue.SlotsType<Partial<{
@@ -59812,7 +59914,8 @@ declare const VRadio: {
59812
59914
  valueComparator: typeof deepEqual;
59813
59915
  density: Density;
59814
59916
  ripple: boolean | {
59815
- class: string;
59917
+ class?: string;
59918
+ keys?: number[];
59816
59919
  } | undefined;
59817
59920
  falseIcon: IconValue;
59818
59921
  trueIcon: IconValue;
@@ -59876,7 +59979,8 @@ declare const VRadio: {
59876
59979
  valueComparator: typeof deepEqual;
59877
59980
  density: Density;
59878
59981
  ripple: boolean | {
59879
- class: string;
59982
+ class?: string;
59983
+ keys?: number[];
59880
59984
  } | undefined;
59881
59985
  falseIcon: IconValue;
59882
59986
  trueIcon: IconValue;
@@ -59907,7 +60011,8 @@ declare const VRadio: {
59907
60011
  valueComparator: typeof deepEqual;
59908
60012
  density: Density;
59909
60013
  ripple: boolean | {
59910
- class: string;
60014
+ class?: string;
60015
+ keys?: number[];
59911
60016
  } | undefined;
59912
60017
  falseIcon: IconValue;
59913
60018
  trueIcon: IconValue;
@@ -59971,7 +60076,8 @@ declare const VRadio: {
59971
60076
  valueComparator: typeof deepEqual;
59972
60077
  density: Density;
59973
60078
  ripple: boolean | {
59974
- class: string;
60079
+ class?: string;
60080
+ keys?: number[];
59975
60081
  } | undefined;
59976
60082
  falseIcon: IconValue;
59977
60083
  trueIcon: IconValue;
@@ -59989,7 +60095,8 @@ declare const VRadio: {
59989
60095
  valueComparator: typeof deepEqual;
59990
60096
  density: Density;
59991
60097
  ripple: boolean | {
59992
- class: string;
60098
+ class?: string;
60099
+ keys?: number[];
59993
60100
  } | undefined;
59994
60101
  falseIcon: IconValue;
59995
60102
  trueIcon: IconValue;
@@ -60053,7 +60160,8 @@ declare const VRadio: {
60053
60160
  valueComparator: typeof deepEqual;
60054
60161
  density: Density;
60055
60162
  ripple: boolean | {
60056
- class: string;
60163
+ class?: string;
60164
+ keys?: number[];
60057
60165
  } | undefined;
60058
60166
  falseIcon: IconValue;
60059
60167
  trueIcon: IconValue;
@@ -60201,7 +60309,8 @@ declare const VRadioGroup: {
60201
60309
  valueComparator: typeof deepEqual;
60202
60310
  density: Density;
60203
60311
  ripple: boolean | {
60204
- class: string;
60312
+ class?: string;
60313
+ keys?: number[];
60205
60314
  } | undefined;
60206
60315
  falseIcon: IconValue;
60207
60316
  trueIcon: IconValue;
@@ -60250,7 +60359,8 @@ declare const VRadioGroup: {
60250
60359
  valueComparator: typeof deepEqual;
60251
60360
  density: Density;
60252
60361
  ripple: boolean | {
60253
- class: string;
60362
+ class?: string;
60363
+ keys?: number[];
60254
60364
  } | undefined;
60255
60365
  falseIcon: IconValue;
60256
60366
  trueIcon: IconValue;
@@ -60292,7 +60402,8 @@ declare const VRadioGroup: {
60292
60402
  valueComparator: typeof deepEqual;
60293
60403
  density: Density;
60294
60404
  ripple: boolean | {
60295
- class: string;
60405
+ class?: string;
60406
+ keys?: number[];
60296
60407
  } | undefined;
60297
60408
  falseIcon: IconValue;
60298
60409
  trueIcon: IconValue;
@@ -60339,7 +60450,8 @@ declare const VRadioGroup: {
60339
60450
  valueComparator: typeof deepEqual;
60340
60451
  density: Density;
60341
60452
  ripple: boolean | {
60342
- class: string;
60453
+ class?: string;
60454
+ keys?: number[];
60343
60455
  } | undefined;
60344
60456
  falseIcon: IconValue;
60345
60457
  trueIcon: IconValue;
@@ -60368,7 +60480,8 @@ declare const VRadioGroup: {
60368
60480
  valueComparator: typeof deepEqual;
60369
60481
  density: Density;
60370
60482
  ripple: boolean | {
60371
- class: string;
60483
+ class?: string;
60484
+ keys?: number[];
60372
60485
  } | undefined;
60373
60486
  falseIcon: IconValue;
60374
60487
  trueIcon: IconValue;
@@ -60417,7 +60530,8 @@ declare const VRadioGroup: {
60417
60530
  valueComparator: typeof deepEqual;
60418
60531
  density: Density;
60419
60532
  ripple: boolean | {
60420
- class: string;
60533
+ class?: string;
60534
+ keys?: number[];
60421
60535
  } | undefined;
60422
60536
  falseIcon: IconValue;
60423
60537
  trueIcon: IconValue;
@@ -61912,6 +62026,7 @@ declare const VSelect: {
61912
62026
  rounded: string | number | boolean;
61913
62027
  tile: boolean;
61914
62028
  slim: boolean;
62029
+ filterable: boolean;
61915
62030
  activatable: boolean;
61916
62031
  selectable: boolean;
61917
62032
  openStrategy: OpenStrategyProp;
@@ -61929,6 +62044,7 @@ declare const VSelect: {
61929
62044
  density: Density;
61930
62045
  tile: boolean;
61931
62046
  slim: boolean;
62047
+ filterable: boolean;
61932
62048
  activatable: boolean;
61933
62049
  selectable: boolean;
61934
62050
  openStrategy: OpenStrategyProp;
@@ -61960,7 +62076,7 @@ declare const VSelect: {
61960
62076
  value: boolean;
61961
62077
  path: unknown[];
61962
62078
  }) => any) | undefined;
61963
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
62079
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
61964
62080
  items?: readonly any[] | undefined;
61965
62081
  itemTitle?: SelectItemKey<any>;
61966
62082
  itemValue?: SelectItemKey<any>;
@@ -64418,6 +64534,7 @@ declare const VSelect: {
64418
64534
  rounded: string | number | boolean;
64419
64535
  tile: boolean;
64420
64536
  slim: boolean;
64537
+ filterable: boolean;
64421
64538
  activatable: boolean;
64422
64539
  selectable: boolean;
64423
64540
  openStrategy: OpenStrategyProp;
@@ -64435,6 +64552,7 @@ declare const VSelect: {
64435
64552
  density: Density;
64436
64553
  tile: boolean;
64437
64554
  slim: boolean;
64555
+ filterable: boolean;
64438
64556
  activatable: boolean;
64439
64557
  selectable: boolean;
64440
64558
  openStrategy: OpenStrategyProp;
@@ -64466,7 +64584,7 @@ declare const VSelect: {
64466
64584
  value: boolean;
64467
64585
  path: unknown[];
64468
64586
  }) => any) | undefined;
64469
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
64587
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
64470
64588
  items?: readonly any[] | undefined;
64471
64589
  itemTitle?: SelectItemKey<any>;
64472
64590
  itemValue?: SelectItemKey<any>;
@@ -66877,6 +66995,7 @@ declare const VSelect: {
66877
66995
  rounded: string | number | boolean;
66878
66996
  tile: boolean;
66879
66997
  slim: boolean;
66998
+ filterable: boolean;
66880
66999
  activatable: boolean;
66881
67000
  selectable: boolean;
66882
67001
  openStrategy: OpenStrategyProp;
@@ -66894,6 +67013,7 @@ declare const VSelect: {
66894
67013
  density: Density;
66895
67014
  tile: boolean;
66896
67015
  slim: boolean;
67016
+ filterable: boolean;
66897
67017
  activatable: boolean;
66898
67018
  selectable: boolean;
66899
67019
  openStrategy: OpenStrategyProp;
@@ -66925,7 +67045,7 @@ declare const VSelect: {
66925
67045
  value: boolean;
66926
67046
  path: unknown[];
66927
67047
  }) => any) | undefined;
66928
- } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
67048
+ } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
66929
67049
  items?: readonly any[] | undefined;
66930
67050
  itemTitle?: SelectItemKey<any>;
66931
67051
  itemValue?: SelectItemKey<any>;
@@ -72926,7 +73046,8 @@ declare const VStepperItem: {
72926
73046
  disabled: boolean;
72927
73047
  rules: readonly ValidationRule[];
72928
73048
  ripple: boolean | {
72929
- class: string;
73049
+ class?: string;
73050
+ keys?: number[];
72930
73051
  } | undefined;
72931
73052
  completeIcon: IconValue;
72932
73053
  editable: boolean;
@@ -72971,7 +73092,8 @@ declare const VStepperItem: {
72971
73092
  disabled: boolean;
72972
73093
  rules: readonly ValidationRule[];
72973
73094
  ripple: boolean | {
72974
- class: string;
73095
+ class?: string;
73096
+ keys?: number[];
72975
73097
  } | undefined;
72976
73098
  completeIcon: IconValue;
72977
73099
  editable: boolean;
@@ -72995,7 +73117,8 @@ declare const VStepperItem: {
72995
73117
  disabled: boolean;
72996
73118
  rules: readonly ValidationRule[];
72997
73119
  ripple: boolean | {
72998
- class: string;
73120
+ class?: string;
73121
+ keys?: number[];
72999
73122
  } | undefined;
73000
73123
  completeIcon: IconValue;
73001
73124
  editable: boolean;
@@ -73036,7 +73159,8 @@ declare const VStepperItem: {
73036
73159
  disabled: boolean;
73037
73160
  rules: readonly ValidationRule[];
73038
73161
  ripple: boolean | {
73039
- class: string;
73162
+ class?: string;
73163
+ keys?: number[];
73040
73164
  } | undefined;
73041
73165
  completeIcon: IconValue;
73042
73166
  editable: boolean;
@@ -73052,7 +73176,8 @@ declare const VStepperItem: {
73052
73176
  disabled: boolean;
73053
73177
  rules: readonly ValidationRule[];
73054
73178
  ripple: boolean | {
73055
- class: string;
73179
+ class?: string;
73180
+ keys?: number[];
73056
73181
  } | undefined;
73057
73182
  completeIcon: IconValue;
73058
73183
  editable: boolean;
@@ -73097,7 +73222,8 @@ declare const VStepperItem: {
73097
73222
  disabled: boolean;
73098
73223
  rules: readonly ValidationRule[];
73099
73224
  ripple: boolean | {
73100
- class: string;
73225
+ class?: string;
73226
+ keys?: number[];
73101
73227
  } | undefined;
73102
73228
  completeIcon: IconValue;
73103
73229
  editable: boolean;
@@ -74344,7 +74470,8 @@ declare const VSwitch: {
74344
74470
  valueComparator: typeof deepEqual;
74345
74471
  density: Density;
74346
74472
  ripple: boolean | {
74347
- class: string;
74473
+ class?: string;
74474
+ keys?: number[];
74348
74475
  } | undefined;
74349
74476
  centerAffix: boolean;
74350
74477
  glow: boolean;
@@ -74405,7 +74532,8 @@ declare const VSwitch: {
74405
74532
  valueComparator: typeof deepEqual;
74406
74533
  density: Density;
74407
74534
  ripple: boolean | {
74408
- class: string;
74535
+ class?: string;
74536
+ keys?: number[];
74409
74537
  } | undefined;
74410
74538
  centerAffix: boolean;
74411
74539
  glow: boolean;
@@ -74458,7 +74586,8 @@ declare const VSwitch: {
74458
74586
  valueComparator: typeof deepEqual;
74459
74587
  density: Density;
74460
74588
  ripple: boolean | {
74461
- class: string;
74589
+ class?: string;
74590
+ keys?: number[];
74462
74591
  } | undefined;
74463
74592
  centerAffix: boolean;
74464
74593
  glow: boolean;
@@ -74515,7 +74644,8 @@ declare const VSwitch: {
74515
74644
  valueComparator: typeof deepEqual;
74516
74645
  density: Density;
74517
74646
  ripple: boolean | {
74518
- class: string;
74647
+ class?: string;
74648
+ keys?: number[];
74519
74649
  } | undefined;
74520
74650
  centerAffix: boolean;
74521
74651
  glow: boolean;
@@ -74545,7 +74675,8 @@ declare const VSwitch: {
74545
74675
  valueComparator: typeof deepEqual;
74546
74676
  density: Density;
74547
74677
  ripple: boolean | {
74548
- class: string;
74678
+ class?: string;
74679
+ keys?: number[];
74549
74680
  } | undefined;
74550
74681
  centerAffix: boolean;
74551
74682
  glow: boolean;
@@ -74606,7 +74737,8 @@ declare const VSwitch: {
74606
74737
  valueComparator: typeof deepEqual;
74607
74738
  density: Density;
74608
74739
  ripple: boolean | {
74609
- class: string;
74740
+ class?: string;
74741
+ keys?: number[];
74610
74742
  } | undefined;
74611
74743
  centerAffix: boolean;
74612
74744
  glow: boolean;
@@ -75025,7 +75157,8 @@ declare const VTab: {
75025
75157
  slim: boolean;
75026
75158
  stacked: boolean;
75027
75159
  ripple: boolean | {
75028
- class: string;
75160
+ class?: string;
75161
+ keys?: number[];
75029
75162
  } | undefined;
75030
75163
  hideSlider: boolean;
75031
75164
  } & {
@@ -75093,7 +75226,8 @@ declare const VTab: {
75093
75226
  slim: boolean;
75094
75227
  stacked: boolean;
75095
75228
  ripple: boolean | {
75096
- class: string;
75229
+ class?: string;
75230
+ keys?: number[];
75097
75231
  } | undefined;
75098
75232
  }> & Omit<{
75099
75233
  symbol: any;
@@ -75112,7 +75246,8 @@ declare const VTab: {
75112
75246
  slim: boolean;
75113
75247
  stacked: boolean;
75114
75248
  ripple: boolean | {
75115
- class: string;
75249
+ class?: string;
75250
+ keys?: number[];
75116
75251
  } | undefined;
75117
75252
  location?: Anchor | null | undefined;
75118
75253
  height?: string | number | undefined;
@@ -75196,7 +75331,8 @@ declare const VTab: {
75196
75331
  slim: boolean;
75197
75332
  stacked: boolean;
75198
75333
  ripple: boolean | {
75199
- class: string;
75334
+ class?: string;
75335
+ keys?: number[];
75200
75336
  } | undefined;
75201
75337
  } & {
75202
75338
  location?: Anchor | null | undefined;
@@ -75273,7 +75409,8 @@ declare const VTab: {
75273
75409
  slim: boolean;
75274
75410
  stacked: boolean;
75275
75411
  ripple: boolean | {
75276
- class: string;
75412
+ class?: string;
75413
+ keys?: number[];
75277
75414
  } | undefined;
75278
75415
  }, {}, string, vue.SlotsType<Partial<{
75279
75416
  default: () => vue.VNode[];
@@ -75320,7 +75457,8 @@ declare const VTab: {
75320
75457
  slim: boolean;
75321
75458
  stacked: boolean;
75322
75459
  ripple: boolean | {
75323
- class: string;
75460
+ class?: string;
75461
+ keys?: number[];
75324
75462
  } | undefined;
75325
75463
  }> & Omit<{
75326
75464
  symbol: any;
@@ -75339,7 +75477,8 @@ declare const VTab: {
75339
75477
  slim: boolean;
75340
75478
  stacked: boolean;
75341
75479
  ripple: boolean | {
75342
- class: string;
75480
+ class?: string;
75481
+ keys?: number[];
75343
75482
  } | undefined;
75344
75483
  } & {
75345
75484
  location?: Anchor | null | undefined;
@@ -75415,7 +75554,8 @@ declare const VTab: {
75415
75554
  slim: boolean;
75416
75555
  stacked: boolean;
75417
75556
  ripple: boolean | {
75418
- class: string;
75557
+ class?: string;
75558
+ keys?: number[];
75419
75559
  } | undefined;
75420
75560
  hideSlider: boolean;
75421
75561
  }, true, {}, vue.SlotsType<Partial<{
@@ -75447,7 +75587,8 @@ declare const VTab: {
75447
75587
  slim: boolean;
75448
75588
  stacked: boolean;
75449
75589
  ripple: boolean | {
75450
- class: string;
75590
+ class?: string;
75591
+ keys?: number[];
75451
75592
  } | undefined;
75452
75593
  hideSlider: boolean;
75453
75594
  } & {
@@ -75515,7 +75656,8 @@ declare const VTab: {
75515
75656
  slim: boolean;
75516
75657
  stacked: boolean;
75517
75658
  ripple: boolean | {
75518
- class: string;
75659
+ class?: string;
75660
+ keys?: number[];
75519
75661
  } | undefined;
75520
75662
  }> & Omit<{
75521
75663
  symbol: any;
@@ -75534,7 +75676,8 @@ declare const VTab: {
75534
75676
  slim: boolean;
75535
75677
  stacked: boolean;
75536
75678
  ripple: boolean | {
75537
- class: string;
75679
+ class?: string;
75680
+ keys?: number[];
75538
75681
  } | undefined;
75539
75682
  location?: Anchor | null | undefined;
75540
75683
  height?: string | number | undefined;
@@ -75618,7 +75761,8 @@ declare const VTab: {
75618
75761
  slim: boolean;
75619
75762
  stacked: boolean;
75620
75763
  ripple: boolean | {
75621
- class: string;
75764
+ class?: string;
75765
+ keys?: number[];
75622
75766
  } | undefined;
75623
75767
  } & {
75624
75768
  location?: Anchor | null | undefined;
@@ -75695,7 +75839,8 @@ declare const VTab: {
75695
75839
  slim: boolean;
75696
75840
  stacked: boolean;
75697
75841
  ripple: boolean | {
75698
- class: string;
75842
+ class?: string;
75843
+ keys?: number[];
75699
75844
  } | undefined;
75700
75845
  }, {}, string, vue.SlotsType<Partial<{
75701
75846
  default: () => vue.VNode[];
@@ -75742,7 +75887,8 @@ declare const VTab: {
75742
75887
  slim: boolean;
75743
75888
  stacked: boolean;
75744
75889
  ripple: boolean | {
75745
- class: string;
75890
+ class?: string;
75891
+ keys?: number[];
75746
75892
  } | undefined;
75747
75893
  }> & Omit<{
75748
75894
  symbol: any;
@@ -75761,7 +75907,8 @@ declare const VTab: {
75761
75907
  slim: boolean;
75762
75908
  stacked: boolean;
75763
75909
  ripple: boolean | {
75764
- class: string;
75910
+ class?: string;
75911
+ keys?: number[];
75765
75912
  } | undefined;
75766
75913
  } & {
75767
75914
  location?: Anchor | null | undefined;
@@ -75837,7 +75984,8 @@ declare const VTab: {
75837
75984
  slim: boolean;
75838
75985
  stacked: boolean;
75839
75986
  ripple: boolean | {
75840
- class: string;
75987
+ class?: string;
75988
+ keys?: number[];
75841
75989
  } | undefined;
75842
75990
  hideSlider: boolean;
75843
75991
  }>;
@@ -75861,7 +76009,8 @@ declare const VTab: {
75861
76009
  slim: boolean;
75862
76010
  stacked: boolean;
75863
76011
  ripple: boolean | {
75864
- class: string;
76012
+ class?: string;
76013
+ keys?: number[];
75865
76014
  } | undefined;
75866
76015
  hideSlider: boolean;
75867
76016
  } & {
@@ -75929,7 +76078,8 @@ declare const VTab: {
75929
76078
  slim: boolean;
75930
76079
  stacked: boolean;
75931
76080
  ripple: boolean | {
75932
- class: string;
76081
+ class?: string;
76082
+ keys?: number[];
75933
76083
  } | undefined;
75934
76084
  }> & Omit<{
75935
76085
  symbol: any;
@@ -75948,7 +76098,8 @@ declare const VTab: {
75948
76098
  slim: boolean;
75949
76099
  stacked: boolean;
75950
76100
  ripple: boolean | {
75951
- class: string;
76101
+ class?: string;
76102
+ keys?: number[];
75952
76103
  } | undefined;
75953
76104
  location?: Anchor | null | undefined;
75954
76105
  height?: string | number | undefined;
@@ -76032,7 +76183,8 @@ declare const VTab: {
76032
76183
  slim: boolean;
76033
76184
  stacked: boolean;
76034
76185
  ripple: boolean | {
76035
- class: string;
76186
+ class?: string;
76187
+ keys?: number[];
76036
76188
  } | undefined;
76037
76189
  } & {
76038
76190
  location?: Anchor | null | undefined;
@@ -76109,7 +76261,8 @@ declare const VTab: {
76109
76261
  slim: boolean;
76110
76262
  stacked: boolean;
76111
76263
  ripple: boolean | {
76112
- class: string;
76264
+ class?: string;
76265
+ keys?: number[];
76113
76266
  } | undefined;
76114
76267
  }, {}, string, vue.SlotsType<Partial<{
76115
76268
  default: () => vue.VNode[];
@@ -76156,7 +76309,8 @@ declare const VTab: {
76156
76309
  slim: boolean;
76157
76310
  stacked: boolean;
76158
76311
  ripple: boolean | {
76159
- class: string;
76312
+ class?: string;
76313
+ keys?: number[];
76160
76314
  } | undefined;
76161
76315
  }> & Omit<{
76162
76316
  symbol: any;
@@ -76175,7 +76329,8 @@ declare const VTab: {
76175
76329
  slim: boolean;
76176
76330
  stacked: boolean;
76177
76331
  ripple: boolean | {
76178
- class: string;
76332
+ class?: string;
76333
+ keys?: number[];
76179
76334
  } | undefined;
76180
76335
  } & {
76181
76336
  location?: Anchor | null | undefined;
@@ -76251,7 +76406,8 @@ declare const VTab: {
76251
76406
  slim: boolean;
76252
76407
  stacked: boolean;
76253
76408
  ripple: boolean | {
76254
- class: string;
76409
+ class?: string;
76410
+ keys?: number[];
76255
76411
  } | undefined;
76256
76412
  hideSlider: boolean;
76257
76413
  }, {}, string, vue.SlotsType<Partial<{
@@ -86099,34 +86255,38 @@ declare module 'vue' {
86099
86255
  }
86100
86256
  export interface GlobalComponents {
86101
86257
  VApp: VApp
86102
- VAppBar: VAppBar
86103
- VAppBarNavIcon: VAppBarNavIcon
86104
- VAppBarTitle: VAppBarTitle
86258
+ VAutocomplete: VAutocomplete
86259
+ VAvatar: VAvatar
86105
86260
  VAlert: VAlert
86106
86261
  VAlertTitle: VAlertTitle
86107
86262
  VBadge: VBadge
86108
- VAutocomplete: VAutocomplete
86109
86263
  VBanner: VBanner
86110
86264
  VBannerActions: VBannerActions
86111
86265
  VBannerText: VBannerText
86112
- VBottomNavigation: VBottomNavigation
86113
86266
  VBottomSheet: VBottomSheet
86114
- VBtn: VBtn
86267
+ VBottomNavigation: VBottomNavigation
86115
86268
  VBtnGroup: VBtnGroup
86269
+ VCarousel: VCarousel
86270
+ VCarouselItem: VCarouselItem
86271
+ VBreadcrumbs: VBreadcrumbs
86272
+ VBreadcrumbsItem: VBreadcrumbsItem
86273
+ VBreadcrumbsDivider: VBreadcrumbsDivider
86116
86274
  VBtnToggle: VBtnToggle
86117
- VAvatar: VAvatar
86275
+ VBtn: VBtn
86276
+ VChip: VChip
86118
86277
  VCard: VCard
86119
86278
  VCardActions: VCardActions
86120
86279
  VCardItem: VCardItem
86121
86280
  VCardSubtitle: VCardSubtitle
86122
86281
  VCardText: VCardText
86123
86282
  VCardTitle: VCardTitle
86283
+ VCode: VCode
86124
86284
  VCheckbox: VCheckbox
86125
86285
  VCheckboxBtn: VCheckboxBtn
86126
- VCarousel: VCarousel
86127
- VCarouselItem: VCarouselItem
86128
86286
  VColorPicker: VColorPicker
86129
86287
  VChipGroup: VChipGroup
86288
+ VCombobox: VCombobox
86289
+ VCounter: VCounter
86130
86290
  VDataTable: VDataTable
86131
86291
  VDataTableHeaders: VDataTableHeaders
86132
86292
  VDataTableFooter: VDataTableFooter
@@ -86134,43 +86294,36 @@ declare module 'vue' {
86134
86294
  VDataTableRow: VDataTableRow
86135
86295
  VDataTableVirtual: VDataTableVirtual
86136
86296
  VDataTableServer: VDataTableServer
86137
- VCode: VCode
86138
- VBreadcrumbs: VBreadcrumbs
86139
- VBreadcrumbsItem: VBreadcrumbsItem
86140
- VBreadcrumbsDivider: VBreadcrumbsDivider
86141
- VCounter: VCounter
86142
- VCombobox: VCombobox
86143
- VDialog: VDialog
86144
86297
  VDatePicker: VDatePicker
86145
86298
  VDatePickerControls: VDatePickerControls
86146
86299
  VDatePickerHeader: VDatePickerHeader
86147
86300
  VDatePickerMonth: VDatePickerMonth
86148
86301
  VDatePickerMonths: VDatePickerMonths
86149
86302
  VDatePickerYears: VDatePickerYears
86150
- VEmptyState: VEmptyState
86303
+ VDialog: VDialog
86151
86304
  VDivider: VDivider
86305
+ VField: VField
86306
+ VFieldLabel: VFieldLabel
86307
+ VEmptyState: VEmptyState
86308
+ VFab: VFab
86152
86309
  VExpansionPanels: VExpansionPanels
86153
86310
  VExpansionPanel: VExpansionPanel
86154
86311
  VExpansionPanelText: VExpansionPanelText
86155
86312
  VExpansionPanelTitle: VExpansionPanelTitle
86156
86313
  VFileInput: VFileInput
86157
- VFab: VFab
86158
- VFooter: VFooter
86159
- VField: VField
86160
- VFieldLabel: VFieldLabel
86161
- VChip: VChip
86162
86314
  VIcon: VIcon
86163
86315
  VComponentIcon: VComponentIcon
86164
86316
  VSvgIcon: VSvgIcon
86165
86317
  VLigatureIcon: VLigatureIcon
86166
86318
  VClassIcon: VClassIcon
86319
+ VFooter: VFooter
86167
86320
  VInfiniteScroll: VInfiniteScroll
86168
- VItemGroup: VItemGroup
86169
- VItem: VItem
86170
86321
  VInput: VInput
86171
86322
  VImg: VImg
86172
- VKbd: VKbd
86323
+ VItemGroup: VItemGroup
86324
+ VItem: VItem
86173
86325
  VLabel: VLabel
86326
+ VKbd: VKbd
86174
86327
  VList: VList
86175
86328
  VListGroup: VListGroup
86176
86329
  VListImg: VListImg
@@ -86180,62 +86333,64 @@ declare module 'vue' {
86180
86333
  VListItemSubtitle: VListItemSubtitle
86181
86334
  VListItemTitle: VListItemTitle
86182
86335
  VListSubheader: VListSubheader
86183
- VMain: VMain
86184
86336
  VMenu: VMenu
86185
86337
  VMessages: VMessages
86186
- VOverlay: VOverlay
86338
+ VMain: VMain
86187
86339
  VNumberInput: VNumberInput
86188
- VPagination: VPagination
86189
- VOtpInput: VOtpInput
86190
- VProgressCircular: VProgressCircular
86191
86340
  VNavigationDrawer: VNavigationDrawer
86341
+ VOtpInput: VOtpInput
86342
+ VPagination: VPagination
86343
+ VOverlay: VOverlay
86344
+ VRadioGroup: VRadioGroup
86192
86345
  VProgressLinear: VProgressLinear
86346
+ VProgressCircular: VProgressCircular
86193
86347
  VRating: VRating
86194
86348
  VSelect: VSelect
86195
86349
  VSelectionControl: VSelectionControl
86196
- VRadioGroup: VRadioGroup
86350
+ VSelectionControlGroup: VSelectionControlGroup
86197
86351
  VSkeletonLoader: VSkeletonLoader
86198
86352
  VSheet: VSheet
86199
- VSlider: VSlider
86353
+ VSnackbar: VSnackbar
86200
86354
  VSlideGroup: VSlideGroup
86201
86355
  VSlideGroupItem: VSlideGroupItem
86202
- VSelectionControlGroup: VSelectionControlGroup
86203
- VSnackbar: VSnackbar
86356
+ VSlider: VSlider
86357
+ VSwitch: VSwitch
86358
+ VSystemBar: VSystemBar
86204
86359
  VStepper: VStepper
86205
86360
  VStepperActions: VStepperActions
86206
86361
  VStepperHeader: VStepperHeader
86207
86362
  VStepperItem: VStepperItem
86208
86363
  VStepperWindow: VStepperWindow
86209
86364
  VStepperWindowItem: VStepperWindowItem
86210
- VSwitch: VSwitch
86211
- VSystemBar: VSystemBar
86212
86365
  VTab: VTab
86213
86366
  VTabs: VTabs
86214
86367
  VTabsWindow: VTabsWindow
86215
86368
  VTabsWindowItem: VTabsWindowItem
86369
+ VTextField: VTextField
86216
86370
  VTextarea: VTextarea
86217
- VTable: VTable
86371
+ VAppBar: VAppBar
86372
+ VAppBarNavIcon: VAppBarNavIcon
86373
+ VAppBarTitle: VAppBarTitle
86218
86374
  VTimeline: VTimeline
86219
86375
  VTimelineItem: VTimelineItem
86220
- VTextField: VTextField
86376
+ VTooltip: VTooltip
86221
86377
  VToolbar: VToolbar
86222
86378
  VToolbarTitle: VToolbarTitle
86223
86379
  VToolbarItems: VToolbarItems
86224
- VTooltip: VTooltip
86225
86380
  VWindow: VWindow
86226
86381
  VWindowItem: VWindowItem
86227
86382
  VDataIterator: VDataIterator
86228
86383
  VConfirmEdit: VConfirmEdit
86229
86384
  VDefaultsProvider: VDefaultsProvider
86385
+ VContainer: VContainer
86386
+ VCol: VCol
86387
+ VRow: VRow
86388
+ VSpacer: VSpacer
86230
86389
  VForm: VForm
86231
86390
  VHover: VHover
86232
86391
  VLayout: VLayout
86233
86392
  VLayoutItem: VLayoutItem
86234
86393
  VLazy: VLazy
86235
- VContainer: VContainer
86236
- VCol: VCol
86237
- VRow: VRow
86238
- VSpacer: VSpacer
86239
86394
  VLocaleProvider: VLocaleProvider
86240
86395
  VNoSsr: VNoSsr
86241
86396
  VParallax: VParallax
@@ -86243,6 +86398,7 @@ declare module 'vue' {
86243
86398
  VRangeSlider: VRangeSlider
86244
86399
  VResponsive: VResponsive
86245
86400
  VSparkline: VSparkline
86401
+ VTable: VTable
86246
86402
  VSnackbarQueue: VSnackbarQueue
86247
86403
  VSpeedDial: VSpeedDial
86248
86404
  VThemeProvider: VThemeProvider
@@ -86264,27 +86420,27 @@ declare module 'vue' {
86264
86420
  VExpandTransition: VExpandTransition
86265
86421
  VExpandXTransition: VExpandXTransition
86266
86422
  VDialogTransition: VDialogTransition
86423
+ VColorInput: VColorInput
86424
+ VFileUpload: VFileUpload
86425
+ VFileUploadItem: VFileUploadItem
86426
+ VStepperVertical: VStepperVertical
86427
+ VStepperVerticalItem: VStepperVerticalItem
86428
+ VStepperVerticalActions: VStepperVerticalActions
86267
86429
  VCalendar: VCalendar
86268
86430
  VCalendarDay: VCalendarDay
86269
86431
  VCalendarHeader: VCalendarHeader
86270
86432
  VCalendarInterval: VCalendarInterval
86271
86433
  VCalendarIntervalEvent: VCalendarIntervalEvent
86272
86434
  VCalendarMonthDay: VCalendarMonthDay
86273
- VFileUpload: VFileUpload
86274
- VFileUploadItem: VFileUploadItem
86275
86435
  VPicker: VPicker
86276
86436
  VPickerTitle: VPickerTitle
86277
- VColorInput: VColorInput
86278
- VIconBtn: VIconBtn
86279
- VTimePicker: VTimePicker
86280
- VTimePickerClock: VTimePickerClock
86281
- VTimePickerControls: VTimePickerControls
86282
86437
  VTreeview: VTreeview
86283
86438
  VTreeviewItem: VTreeviewItem
86284
86439
  VTreeviewGroup: VTreeviewGroup
86285
- VStepperVertical: VStepperVertical
86286
- VStepperVerticalItem: VStepperVerticalItem
86287
- VStepperVerticalActions: VStepperVerticalActions
86440
+ VTimePicker: VTimePicker
86441
+ VTimePickerClock: VTimePickerClock
86442
+ VTimePickerControls: VTimePickerControls
86443
+ VIconBtn: VIconBtn
86288
86444
  VDateInput: VDateInput
86289
86445
  VPullToRefresh: VPullToRefresh
86290
86446
  }