vuetify 3.3.15 → 3.3.16

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 (78) hide show
  1. package/dist/json/attributes.json +427 -403
  2. package/dist/json/importMap.json +4 -4
  3. package/dist/json/tags.json +1 -0
  4. package/dist/json/web-types.json +908 -879
  5. package/dist/vuetify-labs.css +245 -240
  6. package/dist/vuetify-labs.d.ts +162 -144
  7. package/dist/vuetify-labs.esm.js +121 -136
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +121 -136
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +92 -88
  12. package/dist/vuetify.d.ts +99 -81
  13. package/dist/vuetify.esm.js +113 -130
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +113 -130
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +223 -224
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/blueprints/index.d.mts +2 -0
  21. package/lib/blueprints/md1.d.mts +2 -0
  22. package/lib/blueprints/md2.d.mts +2 -0
  23. package/lib/blueprints/md3.d.mts +2 -0
  24. package/lib/components/VAutocomplete/VAutocomplete.mjs +16 -26
  25. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  26. package/lib/components/VAutocomplete/index.d.mts +40 -38
  27. package/lib/components/VColorPicker/VColorPickerCanvas.css +1 -0
  28. package/lib/components/VColorPicker/VColorPickerCanvas.mjs +28 -34
  29. package/lib/components/VColorPicker/VColorPickerCanvas.mjs.map +1 -1
  30. package/lib/components/VColorPicker/VColorPickerCanvas.sass +1 -0
  31. package/lib/components/VCombobox/VCombobox.mjs +15 -25
  32. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  33. package/lib/components/VCombobox/index.d.mts +40 -38
  34. package/lib/components/VField/VField.css +3 -2
  35. package/lib/components/VField/VField.sass +3 -2
  36. package/lib/components/VLabel/VLabel.css +1 -0
  37. package/lib/components/VLabel/VLabel.sass +1 -0
  38. package/lib/components/VLabel/_variables.scss +1 -1
  39. package/lib/components/VList/index.d.mts +21 -3
  40. package/lib/components/VSelect/VSelect.mjs +9 -23
  41. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  42. package/lib/components/VSelect/index.d.mts +14 -11
  43. package/lib/components/VSelectionControl/VSelectionControl.css +1 -1
  44. package/lib/components/VSelectionControl/VSelectionControl.sass +1 -1
  45. package/lib/components/VTabs/VTab.css +1 -0
  46. package/lib/components/VTabs/VTab.mjs +2 -3
  47. package/lib/components/VTabs/VTab.mjs.map +1 -1
  48. package/lib/components/VTabs/VTab.sass +1 -0
  49. package/lib/components/VTabs/_variables.scss +1 -0
  50. package/lib/components/index.d.mts +96 -80
  51. package/lib/composables/filter.mjs +4 -4
  52. package/lib/composables/filter.mjs.map +1 -1
  53. package/lib/composables/list-items.mjs +26 -15
  54. package/lib/composables/list-items.mjs.map +1 -1
  55. package/lib/entry-bundler.mjs +1 -1
  56. package/lib/framework.mjs +1 -1
  57. package/lib/index.d.mts +3 -1
  58. package/lib/labs/VBottomSheet/VBottomSheet.css +1 -0
  59. package/lib/labs/VBottomSheet/VBottomSheet.sass +2 -0
  60. package/lib/labs/VBottomSheet/_variables.scss +1 -0
  61. package/lib/labs/VDataIterator/index.d.mts +30 -26
  62. package/lib/labs/VDataTable/index.d.mts +43 -39
  63. package/lib/labs/VDataTable/types.mjs.map +1 -1
  64. package/lib/labs/VDatePicker/VDatePicker.mjs +4 -2
  65. package/lib/labs/VDatePicker/VDatePicker.mjs.map +1 -1
  66. package/lib/labs/VDatePicker/VDatePickerControls.mjs +4 -4
  67. package/lib/labs/VDatePicker/VDatePickerControls.mjs.map +1 -1
  68. package/lib/labs/VDatePicker/VDatePickerYears.css +1 -1
  69. package/lib/labs/VDatePicker/VDatePickerYears.sass +1 -1
  70. package/lib/labs/VDatePicker/index.d.mts +24 -24
  71. package/lib/labs/VDateRangePicker/index.d.mts +8 -8
  72. package/lib/labs/components.d.mts +80 -76
  73. package/lib/labs/date/DateAdapter.mjs.map +1 -1
  74. package/lib/labs/date/adapters/vuetify.d.mts +4 -0
  75. package/lib/labs/date/adapters/vuetify.mjs +13 -0
  76. package/lib/labs/date/adapters/vuetify.mjs.map +1 -1
  77. package/lib/labs/date/index.d.mts +4 -0
  78. package/package.json +2 -2
@@ -837,6 +837,8 @@ interface DateAdapter<T> {
837
837
  date(value?: any): T | null;
838
838
  format(date: T, formatString: string): string;
839
839
  toJsDate(value: T): Date;
840
+ startOfDay(date: T): T;
841
+ endOfDay(date: T): T;
840
842
  startOfMonth(date: T): T;
841
843
  endOfMonth(date: T): T;
842
844
  startOfYear(date: T): T;
@@ -4953,10 +4955,14 @@ type VInput = InstanceType<typeof VInput>;
4953
4955
  * - multiple matches (start, end), probably shouldn't overlap
4954
4956
  */
4955
4957
  type FilterMatch = boolean | number | [number, number] | [number, number][];
4956
- type FilterFunction = (value: string, query: string, item?: any) => FilterMatch;
4958
+ type FilterFunction = (value: string, query: string, item?: InternalItem) => FilterMatch;
4957
4959
  type FilterKeyFunctions = Record<string, FilterFunction>;
4958
4960
  type FilterKeys = string | string[];
4959
4961
  type FilterMode = 'some' | 'every' | 'union' | 'intersection';
4962
+ interface InternalItem<T = any> {
4963
+ value: any;
4964
+ raw: T;
4965
+ }
4960
4966
 
4961
4967
  interface ScrollStrategyData {
4962
4968
  root: Ref<HTMLElement | undefined>;
@@ -5014,16 +5020,14 @@ declare function connectedLocationStrategy(data: LocationStrategyData, props: St
5014
5020
  } | undefined;
5015
5021
  };
5016
5022
 
5017
- interface ListItem<T = any> {
5023
+ interface ListItem<T = any> extends InternalItem<T> {
5018
5024
  title: string;
5019
- value: any;
5020
5025
  props: {
5021
5026
  [key: string]: any;
5022
5027
  title: string;
5023
5028
  value: any;
5024
5029
  };
5025
5030
  children?: ListItem<T>[];
5026
- raw: T;
5027
5031
  }
5028
5032
 
5029
5033
  type Primitive$2 = string | number | boolean | symbol;
@@ -5063,6 +5067,9 @@ declare const VAutocomplete: {
5063
5067
  rules?: readonly ValidationRule$1[] | undefined;
5064
5068
  centerAffix?: boolean | undefined;
5065
5069
  persistentHint?: boolean | undefined;
5070
+ filterMode?: FilterMode | undefined;
5071
+ noFilter?: boolean | undefined;
5072
+ filterKeys?: NonNullable<FilterKeys> | undefined;
5066
5073
  itemTitle?: SelectItemKey | undefined;
5067
5074
  itemValue?: SelectItemKey | undefined;
5068
5075
  itemChildren?: NonNullable<SelectItemKey> | undefined;
@@ -5080,9 +5087,6 @@ declare const VAutocomplete: {
5080
5087
  hideSelected?: boolean | undefined;
5081
5088
  menuIcon?: IconValue | undefined;
5082
5089
  openOnClear?: boolean | undefined;
5083
- filterMode?: FilterMode | undefined;
5084
- noFilter?: boolean | undefined;
5085
- filterKeys?: NonNullable<FilterKeys> | undefined;
5086
5090
  search?: string | undefined;
5087
5091
  key?: string | number | symbol | undefined;
5088
5092
  id?: string | undefined;
@@ -5151,6 +5155,8 @@ declare const VAutocomplete: {
5151
5155
  hint?: string | undefined;
5152
5156
  hideDetails?: boolean | "auto" | undefined;
5153
5157
  baseColor?: string | undefined;
5158
+ customFilter?: FilterFunction | undefined;
5159
+ customKeyFilter?: FilterKeyFunctions | undefined;
5154
5160
  suffix?: string | undefined;
5155
5161
  counterValue?: ((value: any) => number) | undefined;
5156
5162
  modelModifiers?: Record<string, boolean> | undefined;
@@ -5270,8 +5276,6 @@ declare const VAutocomplete: {
5270
5276
  } | undefined;
5271
5277
  itemColor?: string | undefined;
5272
5278
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
5273
- customFilter?: FilterFunction | undefined;
5274
- customKeyFilter?: FilterKeyFunctions | undefined;
5275
5279
  autoSelectFirst?: boolean | "exact" | undefined;
5276
5280
  "onUpdate:search"?: ((val: any) => any) | undefined;
5277
5281
  };
@@ -5374,6 +5378,9 @@ declare const VAutocomplete: {
5374
5378
  maxErrors: string | number;
5375
5379
  rules: readonly ValidationRule$1[];
5376
5380
  persistentHint: boolean;
5381
+ filterMode: FilterMode;
5382
+ noFilter: boolean;
5383
+ filterKeys: NonNullable<FilterKeys>;
5377
5384
  itemTitle: SelectItemKey;
5378
5385
  itemValue: SelectItemKey;
5379
5386
  itemChildren: NonNullable<SelectItemKey>;
@@ -5391,9 +5398,6 @@ declare const VAutocomplete: {
5391
5398
  hideSelected: boolean;
5392
5399
  menuIcon: IconValue;
5393
5400
  openOnClear: boolean;
5394
- filterMode: FilterMode;
5395
- noFilter: boolean;
5396
- filterKeys: NonNullable<FilterKeys>;
5397
5401
  } & {
5398
5402
  search?: string | undefined;
5399
5403
  id?: string | undefined;
@@ -5422,6 +5426,8 @@ declare const VAutocomplete: {
5422
5426
  hint?: string | undefined;
5423
5427
  hideDetails?: boolean | "auto" | undefined;
5424
5428
  baseColor?: string | undefined;
5429
+ customFilter?: FilterFunction | undefined;
5430
+ customKeyFilter?: FilterKeyFunctions | undefined;
5425
5431
  suffix?: string | undefined;
5426
5432
  counterValue?: ((value: any) => number) | undefined;
5427
5433
  modelModifiers?: Record<string, boolean> | undefined;
@@ -5540,8 +5546,6 @@ declare const VAutocomplete: {
5540
5546
  attach?: string | boolean | Element | undefined;
5541
5547
  } | undefined;
5542
5548
  itemColor?: string | undefined;
5543
- customFilter?: FilterFunction | undefined;
5544
- customKeyFilter?: FilterKeyFunctions | undefined;
5545
5549
  autoSelectFirst?: boolean | "exact" | undefined;
5546
5550
  } & {
5547
5551
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
@@ -5583,6 +5587,9 @@ declare const VAutocomplete: {
5583
5587
  rules: readonly ValidationRule$1[];
5584
5588
  centerAffix: boolean;
5585
5589
  persistentHint: boolean;
5590
+ filterMode: FilterMode;
5591
+ noFilter: boolean;
5592
+ filterKeys: NonNullable<FilterKeys>;
5586
5593
  itemTitle: SelectItemKey;
5587
5594
  itemValue: SelectItemKey;
5588
5595
  itemChildren: NonNullable<SelectItemKey>;
@@ -5600,9 +5607,6 @@ declare const VAutocomplete: {
5600
5607
  hideSelected: boolean;
5601
5608
  menuIcon: IconValue;
5602
5609
  openOnClear: boolean;
5603
- filterMode: FilterMode;
5604
- noFilter: boolean;
5605
- filterKeys: NonNullable<FilterKeys>;
5606
5610
  }, {}, string, vue.SlotsType<Partial<{
5607
5611
  message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
5608
5612
  [key: string]: any;
@@ -5711,6 +5715,9 @@ declare const VAutocomplete: {
5711
5715
  maxErrors: string | number;
5712
5716
  rules: readonly ValidationRule$1[];
5713
5717
  persistentHint: boolean;
5718
+ filterMode: FilterMode;
5719
+ noFilter: boolean;
5720
+ filterKeys: NonNullable<FilterKeys>;
5714
5721
  itemTitle: SelectItemKey;
5715
5722
  itemValue: SelectItemKey;
5716
5723
  itemChildren: NonNullable<SelectItemKey>;
@@ -5728,9 +5735,6 @@ declare const VAutocomplete: {
5728
5735
  hideSelected: boolean;
5729
5736
  menuIcon: IconValue;
5730
5737
  openOnClear: boolean;
5731
- filterMode: FilterMode;
5732
- noFilter: boolean;
5733
- filterKeys: NonNullable<FilterKeys>;
5734
5738
  } & {
5735
5739
  search?: string | undefined;
5736
5740
  id?: string | undefined;
@@ -5759,6 +5763,8 @@ declare const VAutocomplete: {
5759
5763
  hint?: string | undefined;
5760
5764
  hideDetails?: boolean | "auto" | undefined;
5761
5765
  baseColor?: string | undefined;
5766
+ customFilter?: FilterFunction | undefined;
5767
+ customKeyFilter?: FilterKeyFunctions | undefined;
5762
5768
  suffix?: string | undefined;
5763
5769
  counterValue?: ((value: any) => number) | undefined;
5764
5770
  modelModifiers?: Record<string, boolean> | undefined;
@@ -5877,8 +5883,6 @@ declare const VAutocomplete: {
5877
5883
  attach?: string | boolean | Element | undefined;
5878
5884
  } | undefined;
5879
5885
  itemColor?: string | undefined;
5880
- customFilter?: FilterFunction | undefined;
5881
- customKeyFilter?: FilterKeyFunctions | undefined;
5882
5886
  autoSelectFirst?: boolean | "exact" | undefined;
5883
5887
  } & {
5884
5888
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
@@ -5917,6 +5921,9 @@ declare const VAutocomplete: {
5917
5921
  maxErrors: string | number;
5918
5922
  rules: readonly ValidationRule$1[];
5919
5923
  persistentHint: boolean;
5924
+ filterMode: FilterMode;
5925
+ noFilter: boolean;
5926
+ filterKeys: NonNullable<FilterKeys>;
5920
5927
  itemTitle: SelectItemKey;
5921
5928
  itemValue: SelectItemKey;
5922
5929
  itemChildren: NonNullable<SelectItemKey>;
@@ -5934,9 +5941,6 @@ declare const VAutocomplete: {
5934
5941
  hideSelected: boolean;
5935
5942
  menuIcon: IconValue;
5936
5943
  openOnClear: boolean;
5937
- filterMode: FilterMode;
5938
- noFilter: boolean;
5939
- filterKeys: NonNullable<FilterKeys>;
5940
5944
  } & {
5941
5945
  search?: string | undefined;
5942
5946
  id?: string | undefined;
@@ -5965,6 +5969,8 @@ declare const VAutocomplete: {
5965
5969
  hint?: string | undefined;
5966
5970
  hideDetails?: boolean | "auto" | undefined;
5967
5971
  baseColor?: string | undefined;
5972
+ customFilter?: FilterFunction | undefined;
5973
+ customKeyFilter?: FilterKeyFunctions | undefined;
5968
5974
  suffix?: string | undefined;
5969
5975
  counterValue?: ((value: any) => number) | undefined;
5970
5976
  modelModifiers?: Record<string, boolean> | undefined;
@@ -6083,8 +6089,6 @@ declare const VAutocomplete: {
6083
6089
  attach?: string | boolean | Element | undefined;
6084
6090
  } | undefined;
6085
6091
  itemColor?: string | undefined;
6086
- customFilter?: FilterFunction | undefined;
6087
- customKeyFilter?: FilterKeyFunctions | undefined;
6088
6092
  autoSelectFirst?: boolean | "exact" | undefined;
6089
6093
  } & {
6090
6094
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
@@ -6126,6 +6130,9 @@ declare const VAutocomplete: {
6126
6130
  rules: readonly ValidationRule$1[];
6127
6131
  centerAffix: boolean;
6128
6132
  persistentHint: boolean;
6133
+ filterMode: FilterMode;
6134
+ noFilter: boolean;
6135
+ filterKeys: NonNullable<FilterKeys>;
6129
6136
  itemTitle: SelectItemKey;
6130
6137
  itemValue: SelectItemKey;
6131
6138
  itemChildren: NonNullable<SelectItemKey>;
@@ -6143,9 +6150,6 @@ declare const VAutocomplete: {
6143
6150
  hideSelected: boolean;
6144
6151
  menuIcon: IconValue;
6145
6152
  openOnClear: boolean;
6146
- filterMode: FilterMode;
6147
- noFilter: boolean;
6148
- filterKeys: NonNullable<FilterKeys>;
6149
6153
  }, {}, string, vue.SlotsType<Partial<{
6150
6154
  message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
6151
6155
  [key: string]: any;
@@ -6399,6 +6403,10 @@ declare const VAutocomplete: {
6399
6403
  default: string;
6400
6404
  };
6401
6405
  returnObject: BooleanConstructor;
6406
+ valueComparator: {
6407
+ type: PropType<typeof deepEqual>;
6408
+ default: typeof deepEqual;
6409
+ };
6402
6410
  chips: BooleanConstructor;
6403
6411
  closableChips: BooleanConstructor;
6404
6412
  closeText: {
@@ -6539,10 +6547,6 @@ declare const VAutocomplete: {
6539
6547
  default: string;
6540
6548
  };
6541
6549
  openOnClear: BooleanConstructor;
6542
- valueComparator: {
6543
- type: PropType<typeof deepEqual>;
6544
- default: typeof deepEqual;
6545
- };
6546
6550
  itemColor: StringConstructor;
6547
6551
  customFilter: PropType<FilterFunction>;
6548
6552
  customKeyFilter: PropType<FilterKeyFunctions>;
@@ -6704,6 +6708,10 @@ declare const VAutocomplete: {
6704
6708
  default: string;
6705
6709
  };
6706
6710
  returnObject: BooleanConstructor;
6711
+ valueComparator: {
6712
+ type: PropType<typeof deepEqual>;
6713
+ default: typeof deepEqual;
6714
+ };
6707
6715
  chips: BooleanConstructor;
6708
6716
  closableChips: BooleanConstructor;
6709
6717
  closeText: {
@@ -6844,10 +6852,6 @@ declare const VAutocomplete: {
6844
6852
  default: string;
6845
6853
  };
6846
6854
  openOnClear: BooleanConstructor;
6847
- valueComparator: {
6848
- type: PropType<typeof deepEqual>;
6849
- default: typeof deepEqual;
6850
- };
6851
6855
  itemColor: StringConstructor;
6852
6856
  customFilter: PropType<FilterFunction>;
6853
6857
  customKeyFilter: PropType<FilterKeyFunctions>;
@@ -18083,6 +18087,9 @@ declare const VCombobox: {
18083
18087
  rules?: readonly ValidationRule$1[] | undefined;
18084
18088
  centerAffix?: boolean | undefined;
18085
18089
  persistentHint?: boolean | undefined;
18090
+ filterMode?: FilterMode | undefined;
18091
+ noFilter?: boolean | undefined;
18092
+ filterKeys?: NonNullable<FilterKeys> | undefined;
18086
18093
  itemTitle?: SelectItemKey | undefined;
18087
18094
  itemValue?: SelectItemKey | undefined;
18088
18095
  itemChildren?: NonNullable<SelectItemKey> | undefined;
@@ -18100,9 +18107,6 @@ declare const VCombobox: {
18100
18107
  hideSelected?: boolean | undefined;
18101
18108
  menuIcon?: IconValue | undefined;
18102
18109
  openOnClear?: boolean | undefined;
18103
- filterMode?: FilterMode | undefined;
18104
- noFilter?: boolean | undefined;
18105
- filterKeys?: NonNullable<FilterKeys> | undefined;
18106
18110
  key?: string | number | symbol | undefined;
18107
18111
  id?: string | undefined;
18108
18112
  name?: string | undefined;
@@ -18171,6 +18175,8 @@ declare const VCombobox: {
18171
18175
  hint?: string | undefined;
18172
18176
  hideDetails?: boolean | "auto" | undefined;
18173
18177
  baseColor?: string | undefined;
18178
+ customFilter?: FilterFunction | undefined;
18179
+ customKeyFilter?: FilterKeyFunctions | undefined;
18174
18180
  suffix?: string | undefined;
18175
18181
  counterValue?: ((value: any) => number) | undefined;
18176
18182
  modelModifiers?: Record<string, boolean> | undefined;
@@ -18290,8 +18296,6 @@ declare const VCombobox: {
18290
18296
  } | undefined;
18291
18297
  itemColor?: string | undefined;
18292
18298
  "onUpdate:menu"?: ((val: boolean) => any) | undefined;
18293
- customFilter?: FilterFunction | undefined;
18294
- customKeyFilter?: FilterKeyFunctions | undefined;
18295
18299
  autoSelectFirst?: boolean | "exact" | undefined;
18296
18300
  "onUpdate:search"?: ((val: string) => any) | undefined;
18297
18301
  };
@@ -18394,6 +18398,9 @@ declare const VCombobox: {
18394
18398
  maxErrors: string | number;
18395
18399
  rules: readonly ValidationRule$1[];
18396
18400
  persistentHint: boolean;
18401
+ filterMode: FilterMode;
18402
+ noFilter: boolean;
18403
+ filterKeys: NonNullable<FilterKeys>;
18397
18404
  itemTitle: SelectItemKey;
18398
18405
  itemValue: SelectItemKey;
18399
18406
  itemChildren: NonNullable<SelectItemKey>;
@@ -18411,9 +18418,6 @@ declare const VCombobox: {
18411
18418
  hideSelected: boolean;
18412
18419
  menuIcon: IconValue;
18413
18420
  openOnClear: boolean;
18414
- filterMode: FilterMode;
18415
- noFilter: boolean;
18416
- filterKeys: NonNullable<FilterKeys>;
18417
18421
  } & {
18418
18422
  id?: string | undefined;
18419
18423
  name?: string | undefined;
@@ -18442,6 +18446,8 @@ declare const VCombobox: {
18442
18446
  hint?: string | undefined;
18443
18447
  hideDetails?: boolean | "auto" | undefined;
18444
18448
  baseColor?: string | undefined;
18449
+ customFilter?: FilterFunction | undefined;
18450
+ customKeyFilter?: FilterKeyFunctions | undefined;
18445
18451
  suffix?: string | undefined;
18446
18452
  counterValue?: ((value: any) => number) | undefined;
18447
18453
  modelModifiers?: Record<string, boolean> | undefined;
@@ -18560,8 +18566,6 @@ declare const VCombobox: {
18560
18566
  attach?: string | boolean | Element | undefined;
18561
18567
  } | undefined;
18562
18568
  itemColor?: string | undefined;
18563
- customFilter?: FilterFunction | undefined;
18564
- customKeyFilter?: FilterKeyFunctions | undefined;
18565
18569
  autoSelectFirst?: boolean | "exact" | undefined;
18566
18570
  } & {
18567
18571
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
@@ -18603,6 +18607,9 @@ declare const VCombobox: {
18603
18607
  rules: readonly ValidationRule$1[];
18604
18608
  centerAffix: boolean;
18605
18609
  persistentHint: boolean;
18610
+ filterMode: FilterMode;
18611
+ noFilter: boolean;
18612
+ filterKeys: NonNullable<FilterKeys>;
18606
18613
  itemTitle: SelectItemKey;
18607
18614
  itemValue: SelectItemKey;
18608
18615
  itemChildren: NonNullable<SelectItemKey>;
@@ -18620,9 +18627,6 @@ declare const VCombobox: {
18620
18627
  hideSelected: boolean;
18621
18628
  menuIcon: IconValue;
18622
18629
  openOnClear: boolean;
18623
- filterMode: FilterMode;
18624
- noFilter: boolean;
18625
- filterKeys: NonNullable<FilterKeys>;
18626
18630
  }, {}, string, vue.SlotsType<Partial<{
18627
18631
  message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
18628
18632
  [key: string]: any;
@@ -18731,6 +18735,9 @@ declare const VCombobox: {
18731
18735
  maxErrors: string | number;
18732
18736
  rules: readonly ValidationRule$1[];
18733
18737
  persistentHint: boolean;
18738
+ filterMode: FilterMode;
18739
+ noFilter: boolean;
18740
+ filterKeys: NonNullable<FilterKeys>;
18734
18741
  itemTitle: SelectItemKey;
18735
18742
  itemValue: SelectItemKey;
18736
18743
  itemChildren: NonNullable<SelectItemKey>;
@@ -18748,9 +18755,6 @@ declare const VCombobox: {
18748
18755
  hideSelected: boolean;
18749
18756
  menuIcon: IconValue;
18750
18757
  openOnClear: boolean;
18751
- filterMode: FilterMode;
18752
- noFilter: boolean;
18753
- filterKeys: NonNullable<FilterKeys>;
18754
18758
  } & {
18755
18759
  id?: string | undefined;
18756
18760
  name?: string | undefined;
@@ -18779,6 +18783,8 @@ declare const VCombobox: {
18779
18783
  hint?: string | undefined;
18780
18784
  hideDetails?: boolean | "auto" | undefined;
18781
18785
  baseColor?: string | undefined;
18786
+ customFilter?: FilterFunction | undefined;
18787
+ customKeyFilter?: FilterKeyFunctions | undefined;
18782
18788
  suffix?: string | undefined;
18783
18789
  counterValue?: ((value: any) => number) | undefined;
18784
18790
  modelModifiers?: Record<string, boolean> | undefined;
@@ -18897,8 +18903,6 @@ declare const VCombobox: {
18897
18903
  attach?: string | boolean | Element | undefined;
18898
18904
  } | undefined;
18899
18905
  itemColor?: string | undefined;
18900
- customFilter?: FilterFunction | undefined;
18901
- customKeyFilter?: FilterKeyFunctions | undefined;
18902
18906
  autoSelectFirst?: boolean | "exact" | undefined;
18903
18907
  } & {
18904
18908
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
@@ -18937,6 +18941,9 @@ declare const VCombobox: {
18937
18941
  maxErrors: string | number;
18938
18942
  rules: readonly ValidationRule$1[];
18939
18943
  persistentHint: boolean;
18944
+ filterMode: FilterMode;
18945
+ noFilter: boolean;
18946
+ filterKeys: NonNullable<FilterKeys>;
18940
18947
  itemTitle: SelectItemKey;
18941
18948
  itemValue: SelectItemKey;
18942
18949
  itemChildren: NonNullable<SelectItemKey>;
@@ -18954,9 +18961,6 @@ declare const VCombobox: {
18954
18961
  hideSelected: boolean;
18955
18962
  menuIcon: IconValue;
18956
18963
  openOnClear: boolean;
18957
- filterMode: FilterMode;
18958
- noFilter: boolean;
18959
- filterKeys: NonNullable<FilterKeys>;
18960
18964
  } & {
18961
18965
  id?: string | undefined;
18962
18966
  name?: string | undefined;
@@ -18985,6 +18989,8 @@ declare const VCombobox: {
18985
18989
  hint?: string | undefined;
18986
18990
  hideDetails?: boolean | "auto" | undefined;
18987
18991
  baseColor?: string | undefined;
18992
+ customFilter?: FilterFunction | undefined;
18993
+ customKeyFilter?: FilterKeyFunctions | undefined;
18988
18994
  suffix?: string | undefined;
18989
18995
  counterValue?: ((value: any) => number) | undefined;
18990
18996
  modelModifiers?: Record<string, boolean> | undefined;
@@ -19103,8 +19109,6 @@ declare const VCombobox: {
19103
19109
  attach?: string | boolean | Element | undefined;
19104
19110
  } | undefined;
19105
19111
  itemColor?: string | undefined;
19106
- customFilter?: FilterFunction | undefined;
19107
- customKeyFilter?: FilterKeyFunctions | undefined;
19108
19112
  autoSelectFirst?: boolean | "exact" | undefined;
19109
19113
  } & {
19110
19114
  "onUpdate:modelValue"?: ((val: any) => any) | undefined;
@@ -19146,6 +19150,9 @@ declare const VCombobox: {
19146
19150
  rules: readonly ValidationRule$1[];
19147
19151
  centerAffix: boolean;
19148
19152
  persistentHint: boolean;
19153
+ filterMode: FilterMode;
19154
+ noFilter: boolean;
19155
+ filterKeys: NonNullable<FilterKeys>;
19149
19156
  itemTitle: SelectItemKey;
19150
19157
  itemValue: SelectItemKey;
19151
19158
  itemChildren: NonNullable<SelectItemKey>;
@@ -19163,9 +19170,6 @@ declare const VCombobox: {
19163
19170
  hideSelected: boolean;
19164
19171
  menuIcon: IconValue;
19165
19172
  openOnClear: boolean;
19166
- filterMode: FilterMode;
19167
- noFilter: boolean;
19168
- filterKeys: NonNullable<FilterKeys>;
19169
19173
  }, {}, string, vue.SlotsType<Partial<{
19170
19174
  message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
19171
19175
  [key: string]: any;
@@ -19422,6 +19426,10 @@ declare const VCombobox: {
19422
19426
  type: PropType<boolean>;
19423
19427
  default: boolean;
19424
19428
  };
19429
+ valueComparator: {
19430
+ type: PropType<typeof deepEqual>;
19431
+ default: typeof deepEqual;
19432
+ };
19425
19433
  chips: BooleanConstructor;
19426
19434
  closableChips: BooleanConstructor;
19427
19435
  closeText: {
@@ -19565,10 +19573,6 @@ declare const VCombobox: {
19565
19573
  default: string;
19566
19574
  };
19567
19575
  openOnClear: BooleanConstructor;
19568
- valueComparator: {
19569
- type: PropType<typeof deepEqual>;
19570
- default: typeof deepEqual;
19571
- };
19572
19576
  itemColor: StringConstructor;
19573
19577
  customFilter: PropType<FilterFunction>;
19574
19578
  customKeyFilter: PropType<FilterKeyFunctions>;
@@ -19733,6 +19737,10 @@ declare const VCombobox: {
19733
19737
  type: PropType<boolean>;
19734
19738
  default: boolean;
19735
19739
  };
19740
+ valueComparator: {
19741
+ type: PropType<typeof deepEqual>;
19742
+ default: typeof deepEqual;
19743
+ };
19736
19744
  chips: BooleanConstructor;
19737
19745
  closableChips: BooleanConstructor;
19738
19746
  closeText: {
@@ -19876,10 +19884,6 @@ declare const VCombobox: {
19876
19884
  default: string;
19877
19885
  };
19878
19886
  openOnClear: BooleanConstructor;
19879
- valueComparator: {
19880
- type: PropType<typeof deepEqual>;
19881
- default: typeof deepEqual;
19882
- };
19883
19887
  itemColor: StringConstructor;
19884
19888
  customFilter: PropType<FilterFunction>;
19885
19889
  customKeyFilter: PropType<FilterKeyFunctions>;
@@ -30623,6 +30627,7 @@ declare const VList: {
30623
30627
  rounded?: string | number | boolean | undefined;
30624
30628
  density?: Density | undefined;
30625
30629
  variant?: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain"> | undefined;
30630
+ valueComparator?: typeof deepEqual | undefined;
30626
30631
  selectStrategy?: NonNullable<SelectStrategy> | undefined;
30627
30632
  openStrategy?: NonNullable<OpenStrategyProp> | undefined;
30628
30633
  lines?: false | "one" | "two" | "three" | undefined;
@@ -30801,6 +30806,7 @@ declare const VList: {
30801
30806
  mandatory: boolean;
30802
30807
  density: Density;
30803
30808
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
30809
+ valueComparator: typeof deepEqual;
30804
30810
  selectStrategy: NonNullable<SelectStrategy>;
30805
30811
  openStrategy: NonNullable<OpenStrategyProp>;
30806
30812
  lines: false | "one" | "two" | "three";
@@ -30868,6 +30874,7 @@ declare const VList: {
30868
30874
  rounded: string | number | boolean;
30869
30875
  density: Density;
30870
30876
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
30877
+ valueComparator: typeof deepEqual;
30871
30878
  selectStrategy: NonNullable<SelectStrategy>;
30872
30879
  openStrategy: NonNullable<OpenStrategyProp>;
30873
30880
  lines: false | "one" | "two" | "three";
@@ -30975,6 +30982,7 @@ declare const VList: {
30975
30982
  mandatory: boolean;
30976
30983
  density: Density;
30977
30984
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
30985
+ valueComparator: typeof deepEqual;
30978
30986
  selectStrategy: NonNullable<SelectStrategy>;
30979
30987
  openStrategy: NonNullable<OpenStrategyProp>;
30980
30988
  lines: false | "one" | "two" | "three";
@@ -31032,6 +31040,7 @@ declare const VList: {
31032
31040
  mandatory: boolean;
31033
31041
  density: Density;
31034
31042
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
31043
+ valueComparator: typeof deepEqual;
31035
31044
  selectStrategy: NonNullable<SelectStrategy>;
31036
31045
  openStrategy: NonNullable<OpenStrategyProp>;
31037
31046
  lines: false | "one" | "two" | "three";
@@ -31099,6 +31108,7 @@ declare const VList: {
31099
31108
  rounded: string | number | boolean;
31100
31109
  density: Density;
31101
31110
  variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
31111
+ valueComparator: typeof deepEqual;
31102
31112
  selectStrategy: NonNullable<SelectStrategy>;
31103
31113
  openStrategy: NonNullable<OpenStrategyProp>;
31104
31114
  lines: false | "one" | "two" | "three";
@@ -31222,6 +31232,10 @@ declare const VList: {
31222
31232
  default: string;
31223
31233
  };
31224
31234
  returnObject: BooleanConstructor;
31235
+ valueComparator: {
31236
+ type: PropType<typeof deepEqual>;
31237
+ default: typeof deepEqual;
31238
+ };
31225
31239
  itemType: {
31226
31240
  type: StringConstructor;
31227
31241
  default: string;
@@ -31308,6 +31322,10 @@ declare const VList: {
31308
31322
  default: string;
31309
31323
  };
31310
31324
  returnObject: BooleanConstructor;
31325
+ valueComparator: {
31326
+ type: PropType<typeof deepEqual>;
31327
+ default: typeof deepEqual;
31328
+ };
31311
31329
  itemType: {
31312
31330
  type: StringConstructor;
31313
31331
  default: string;
@@ -41830,6 +41848,10 @@ declare const VSelect: {
41830
41848
  default: string;
41831
41849
  };
41832
41850
  returnObject: BooleanConstructor;
41851
+ valueComparator: {
41852
+ type: PropType<typeof deepEqual>;
41853
+ default: typeof deepEqual;
41854
+ };
41833
41855
  chips: BooleanConstructor;
41834
41856
  closableChips: BooleanConstructor;
41835
41857
  closeText: {
@@ -41970,10 +41992,6 @@ declare const VSelect: {
41970
41992
  default: string;
41971
41993
  };
41972
41994
  openOnClear: BooleanConstructor;
41973
- valueComparator: {
41974
- type: PropType<typeof deepEqual>;
41975
- default: typeof deepEqual;
41976
- };
41977
41995
  itemColor: StringConstructor;
41978
41996
  }, vue.ExtractPropTypes<{
41979
41997
  transition: Omit<{
@@ -42124,6 +42142,10 @@ declare const VSelect: {
42124
42142
  default: string;
42125
42143
  };
42126
42144
  returnObject: BooleanConstructor;
42145
+ valueComparator: {
42146
+ type: PropType<typeof deepEqual>;
42147
+ default: typeof deepEqual;
42148
+ };
42127
42149
  chips: BooleanConstructor;
42128
42150
  closableChips: BooleanConstructor;
42129
42151
  closeText: {
@@ -42264,10 +42286,6 @@ declare const VSelect: {
42264
42286
  default: string;
42265
42287
  };
42266
42288
  openOnClear: BooleanConstructor;
42267
- valueComparator: {
42268
- type: PropType<typeof deepEqual>;
42269
- default: typeof deepEqual;
42270
- };
42271
42289
  itemColor: StringConstructor;
42272
42290
  }>>;
42273
42291
  type VSelect = InstanceType<typeof VSelect>;
@@ -60953,7 +60971,7 @@ type InternalDataTableHeader = DataTableHeader & {
60953
60971
  fixedOffset?: number;
60954
60972
  lastFixed?: boolean;
60955
60973
  };
60956
- interface DataTableItem<T = any> extends GroupableItem<T>, SelectableItem {
60974
+ interface DataTableItem<T = any> extends InternalItem<T>, GroupableItem<T>, SelectableItem {
60957
60975
  key: any;
60958
60976
  index: number;
60959
60977
  columns: {
@@ -61032,10 +61050,10 @@ declare const VDataIterator: {
61032
61050
  items?: any[] | undefined;
61033
61051
  modelValue?: readonly any[] | undefined;
61034
61052
  selectStrategy?: "all" | "page" | "single" | undefined;
61035
- itemValue?: SelectItemKey | undefined;
61036
- returnObject?: boolean | undefined;
61037
61053
  filterMode?: FilterMode | undefined;
61038
61054
  noFilter?: boolean | undefined;
61055
+ itemValue?: SelectItemKey | undefined;
61056
+ returnObject?: boolean | undefined;
61039
61057
  itemSelectable?: SelectItemKey | undefined;
61040
61058
  showSelect?: boolean | undefined;
61041
61059
  multiSort?: boolean | undefined;
@@ -61103,10 +61121,10 @@ declare const VDataIterator: {
61103
61121
  }>) => void)[] | undefined;
61104
61122
  "onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
61105
61123
  "v-slot:header"?: false | ((arg: VDataIteratorSlotProps) => vue.VNodeChild) | undefined;
61106
- "v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
61107
61124
  customFilter?: FilterFunction | undefined;
61108
61125
  customKeyFilter?: FilterKeyFunctions | undefined;
61109
61126
  filterKeys?: FilterKeys | undefined;
61127
+ "v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
61110
61128
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
61111
61129
  "onUpdate:sortBy"?: ((value: any) => any) | undefined;
61112
61130
  "onUpdate:groupBy"?: ((value: any) => any) | undefined;
@@ -61150,10 +61168,10 @@ declare const VDataIterator: {
61150
61168
  items: any[];
61151
61169
  modelValue: readonly any[];
61152
61170
  selectStrategy: "all" | "page" | "single";
61153
- itemValue: SelectItemKey;
61154
- returnObject: boolean;
61155
61171
  filterMode: FilterMode;
61156
61172
  noFilter: boolean;
61173
+ itemValue: SelectItemKey;
61174
+ returnObject: boolean;
61157
61175
  itemSelectable: SelectItemKey;
61158
61176
  showSelect: boolean;
61159
61177
  multiSort: boolean;
@@ -61213,10 +61231,10 @@ declare const VDataIterator: {
61213
61231
  items: any[];
61214
61232
  modelValue: readonly any[];
61215
61233
  selectStrategy: "all" | "page" | "single";
61216
- itemValue: SelectItemKey;
61217
- returnObject: boolean;
61218
61234
  filterMode: FilterMode;
61219
61235
  noFilter: boolean;
61236
+ itemValue: SelectItemKey;
61237
+ returnObject: boolean;
61220
61238
  itemSelectable: SelectItemKey;
61221
61239
  showSelect: boolean;
61222
61240
  multiSort: boolean;
@@ -61268,10 +61286,10 @@ declare const VDataIterator: {
61268
61286
  items: any[];
61269
61287
  modelValue: readonly any[];
61270
61288
  selectStrategy: "all" | "page" | "single";
61271
- itemValue: SelectItemKey;
61272
- returnObject: boolean;
61273
61289
  filterMode: FilterMode;
61274
61290
  noFilter: boolean;
61291
+ itemValue: SelectItemKey;
61292
+ returnObject: boolean;
61275
61293
  itemSelectable: SelectItemKey;
61276
61294
  showSelect: boolean;
61277
61295
  multiSort: boolean;
@@ -61327,10 +61345,10 @@ declare const VDataIterator: {
61327
61345
  items: any[];
61328
61346
  modelValue: readonly any[];
61329
61347
  selectStrategy: "all" | "page" | "single";
61330
- itemValue: SelectItemKey;
61331
- returnObject: boolean;
61332
61348
  filterMode: FilterMode;
61333
61349
  noFilter: boolean;
61350
+ itemValue: SelectItemKey;
61351
+ returnObject: boolean;
61334
61352
  itemSelectable: SelectItemKey;
61335
61353
  showSelect: boolean;
61336
61354
  multiSort: boolean;
@@ -61390,10 +61408,10 @@ declare const VDataIterator: {
61390
61408
  items: any[];
61391
61409
  modelValue: readonly any[];
61392
61410
  selectStrategy: "all" | "page" | "single";
61393
- itemValue: SelectItemKey;
61394
- returnObject: boolean;
61395
61411
  filterMode: FilterMode;
61396
61412
  noFilter: boolean;
61413
+ itemValue: SelectItemKey;
61414
+ returnObject: boolean;
61397
61415
  itemSelectable: SelectItemKey;
61398
61416
  showSelect: boolean;
61399
61417
  multiSort: boolean;
@@ -62183,11 +62201,11 @@ declare const VDataTable: {
62183
62201
  density?: Density | undefined;
62184
62202
  modelValue?: readonly any[] | undefined;
62185
62203
  selectStrategy?: "all" | "page" | "single" | undefined;
62204
+ filterMode?: FilterMode | undefined;
62205
+ noFilter?: boolean | undefined;
62186
62206
  itemValue?: SelectItemKey | undefined;
62187
62207
  returnObject?: boolean | undefined;
62188
62208
  hideNoData?: boolean | undefined;
62189
- filterMode?: FilterMode | undefined;
62190
- noFilter?: boolean | undefined;
62191
62209
  hover?: boolean | undefined;
62192
62210
  nextIcon?: string | undefined;
62193
62211
  prevIcon?: string | undefined;
@@ -62499,10 +62517,10 @@ declare const VDataTable: {
62499
62517
  } & {
62500
62518
  props: Record<string, any>;
62501
62519
  }) => vue.VNodeChild) | undefined;
62502
- "v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
62503
62520
  customFilter?: FilterFunction | undefined;
62504
62521
  customKeyFilter?: FilterKeyFunctions | undefined;
62505
62522
  filterKeys?: FilterKeys | undefined;
62523
+ "v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
62506
62524
  "v-slot:top"?: false | ((arg: VDataTableSlotProps) => vue.VNodeChild) | undefined;
62507
62525
  "v-slot:bottom"?: false | ((arg: VDataTableSlotProps) => vue.VNodeChild) | undefined;
62508
62526
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
@@ -62738,11 +62756,11 @@ declare const VDataTable: {
62738
62756
  density: Density;
62739
62757
  modelValue: readonly any[];
62740
62758
  selectStrategy: "all" | "page" | "single";
62759
+ filterMode: FilterMode;
62760
+ noFilter: boolean;
62741
62761
  itemValue: SelectItemKey;
62742
62762
  returnObject: boolean;
62743
62763
  hideNoData: boolean;
62744
- filterMode: FilterMode;
62745
- noFilter: boolean;
62746
62764
  hover: boolean;
62747
62765
  nextIcon: string;
62748
62766
  prevIcon: string;
@@ -63150,11 +63168,11 @@ declare const VDataTable: {
63150
63168
  density: Density;
63151
63169
  modelValue: readonly any[];
63152
63170
  selectStrategy: "all" | "page" | "single";
63171
+ filterMode: FilterMode;
63172
+ noFilter: boolean;
63153
63173
  itemValue: SelectItemKey;
63154
63174
  returnObject: boolean;
63155
63175
  hideNoData: boolean;
63156
- filterMode: FilterMode;
63157
- noFilter: boolean;
63158
63176
  hover: boolean;
63159
63177
  nextIcon: string;
63160
63178
  prevIcon: string;
@@ -63375,11 +63393,11 @@ declare const VDataTable: {
63375
63393
  density: Density;
63376
63394
  modelValue: readonly any[];
63377
63395
  selectStrategy: "all" | "page" | "single";
63396
+ filterMode: FilterMode;
63397
+ noFilter: boolean;
63378
63398
  itemValue: SelectItemKey;
63379
63399
  returnObject: boolean;
63380
63400
  hideNoData: boolean;
63381
- filterMode: FilterMode;
63382
- noFilter: boolean;
63383
63401
  hover: boolean;
63384
63402
  nextIcon: string;
63385
63403
  prevIcon: string;
@@ -63783,11 +63801,11 @@ declare const VDataTable: {
63783
63801
  density: Density;
63784
63802
  modelValue: readonly any[];
63785
63803
  selectStrategy: "all" | "page" | "single";
63804
+ filterMode: FilterMode;
63805
+ noFilter: boolean;
63786
63806
  itemValue: SelectItemKey;
63787
63807
  returnObject: boolean;
63788
63808
  hideNoData: boolean;
63789
- filterMode: FilterMode;
63790
- noFilter: boolean;
63791
63809
  hover: boolean;
63792
63810
  nextIcon: string;
63793
63811
  prevIcon: string;
@@ -64195,11 +64213,11 @@ declare const VDataTable: {
64195
64213
  density: Density;
64196
64214
  modelValue: readonly any[];
64197
64215
  selectStrategy: "all" | "page" | "single";
64216
+ filterMode: FilterMode;
64217
+ noFilter: boolean;
64198
64218
  itemValue: SelectItemKey;
64199
64219
  returnObject: boolean;
64200
64220
  hideNoData: boolean;
64201
- filterMode: FilterMode;
64202
- noFilter: boolean;
64203
64221
  hover: boolean;
64204
64222
  nextIcon: string;
64205
64223
  prevIcon: string;
@@ -65181,12 +65199,12 @@ declare const VDataTableVirtual: {
65181
65199
  density?: Density | undefined;
65182
65200
  modelValue?: readonly any[] | undefined;
65183
65201
  selectStrategy?: "all" | "page" | "single" | undefined;
65202
+ filterMode?: FilterMode | undefined;
65203
+ noFilter?: boolean | undefined;
65184
65204
  itemValue?: SelectItemKey | undefined;
65185
65205
  returnObject?: boolean | undefined;
65186
65206
  itemHeight?: string | number | undefined;
65187
65207
  hideNoData?: boolean | undefined;
65188
- filterMode?: FilterMode | undefined;
65189
- noFilter?: boolean | undefined;
65190
65208
  hover?: boolean | undefined;
65191
65209
  fixedHeader?: boolean | undefined;
65192
65210
  fixedFooter?: boolean | undefined;
@@ -65475,10 +65493,10 @@ declare const VDataTableVirtual: {
65475
65493
  } & {
65476
65494
  itemRef: Ref<HTMLElement | undefined>;
65477
65495
  }) => vue.VNodeChild) | undefined;
65478
- "v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
65479
65496
  customFilter?: FilterFunction | undefined;
65480
65497
  customKeyFilter?: FilterKeyFunctions | undefined;
65481
65498
  filterKeys?: FilterKeys | undefined;
65499
+ "v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
65482
65500
  "v-slot:top"?: false | ((arg: VDataTableVirtualSlotProps) => vue.VNodeChild) | undefined;
65483
65501
  "v-slot:bottom"?: false | ((arg: VDataTableVirtualSlotProps) => vue.VNodeChild) | undefined;
65484
65502
  customKeySort?: Record<string, DataTableCompareFunction> | undefined;
@@ -65688,12 +65706,12 @@ declare const VDataTableVirtual: {
65688
65706
  density: Density;
65689
65707
  modelValue: readonly any[];
65690
65708
  selectStrategy: "all" | "page" | "single";
65709
+ filterMode: FilterMode;
65710
+ noFilter: boolean;
65691
65711
  itemValue: SelectItemKey;
65692
65712
  returnObject: boolean;
65693
65713
  itemHeight: string | number;
65694
65714
  hideNoData: boolean;
65695
- filterMode: FilterMode;
65696
- noFilter: boolean;
65697
65715
  hover: boolean;
65698
65716
  fixedHeader: boolean;
65699
65717
  fixedFooter: boolean;
@@ -66071,12 +66089,12 @@ declare const VDataTableVirtual: {
66071
66089
  density: Density;
66072
66090
  modelValue: readonly any[];
66073
66091
  selectStrategy: "all" | "page" | "single";
66092
+ filterMode: FilterMode;
66093
+ noFilter: boolean;
66074
66094
  itemValue: SelectItemKey;
66075
66095
  returnObject: boolean;
66076
66096
  itemHeight: string | number;
66077
66097
  hideNoData: boolean;
66078
- filterMode: FilterMode;
66079
- noFilter: boolean;
66080
66098
  hover: boolean;
66081
66099
  fixedHeader: boolean;
66082
66100
  fixedFooter: boolean;
@@ -66261,12 +66279,12 @@ declare const VDataTableVirtual: {
66261
66279
  density: Density;
66262
66280
  modelValue: readonly any[];
66263
66281
  selectStrategy: "all" | "page" | "single";
66282
+ filterMode: FilterMode;
66283
+ noFilter: boolean;
66264
66284
  itemValue: SelectItemKey;
66265
66285
  returnObject: boolean;
66266
66286
  itemHeight: string | number;
66267
66287
  hideNoData: boolean;
66268
- filterMode: FilterMode;
66269
- noFilter: boolean;
66270
66288
  hover: boolean;
66271
66289
  fixedHeader: boolean;
66272
66290
  fixedFooter: boolean;
@@ -66639,12 +66657,12 @@ declare const VDataTableVirtual: {
66639
66657
  density: Density;
66640
66658
  modelValue: readonly any[];
66641
66659
  selectStrategy: "all" | "page" | "single";
66660
+ filterMode: FilterMode;
66661
+ noFilter: boolean;
66642
66662
  itemValue: SelectItemKey;
66643
66663
  returnObject: boolean;
66644
66664
  itemHeight: string | number;
66645
66665
  hideNoData: boolean;
66646
- filterMode: FilterMode;
66647
- noFilter: boolean;
66648
66666
  hover: boolean;
66649
66667
  fixedHeader: boolean;
66650
66668
  fixedFooter: boolean;
@@ -67022,12 +67040,12 @@ declare const VDataTableVirtual: {
67022
67040
  density: Density;
67023
67041
  modelValue: readonly any[];
67024
67042
  selectStrategy: "all" | "page" | "single";
67043
+ filterMode: FilterMode;
67044
+ noFilter: boolean;
67025
67045
  itemValue: SelectItemKey;
67026
67046
  returnObject: boolean;
67027
67047
  itemHeight: string | number;
67028
67048
  hideNoData: boolean;
67029
- filterMode: FilterMode;
67030
- noFilter: boolean;
67031
67049
  hover: boolean;
67032
67050
  fixedHeader: boolean;
67033
67051
  fixedFooter: boolean;
@@ -70146,7 +70164,7 @@ declare const VDateCard: {
70146
70164
  leaveAbsolute: boolean;
70147
70165
  } | undefined;
70148
70166
  inputMode?: "calendar" | "keyboard" | undefined;
70149
- disabled?: boolean | string[] | undefined;
70167
+ disabled?: string | boolean | string[] | undefined;
70150
70168
  multiple?: boolean | undefined;
70151
70169
  modelValue?: any[] | undefined;
70152
70170
  collapseIcon?: string | undefined;
@@ -70507,7 +70525,7 @@ declare const VDateCard: {
70507
70525
  leaveAbsolute: boolean;
70508
70526
  };
70509
70527
  inputMode: "calendar" | "keyboard";
70510
- disabled: boolean | string[];
70528
+ disabled: string | boolean | string[];
70511
70529
  multiple: boolean;
70512
70530
  modelValue: any[];
70513
70531
  collapseIcon: string;
@@ -70792,7 +70810,7 @@ declare const VDateCard: {
70792
70810
  leaveAbsolute: boolean;
70793
70811
  };
70794
70812
  inputMode: "calendar" | "keyboard";
70795
- disabled: boolean | string[];
70813
+ disabled: string | boolean | string[];
70796
70814
  multiple: boolean;
70797
70815
  modelValue: any[];
70798
70816
  collapseIcon: string;
@@ -71069,7 +71087,7 @@ declare const VDateCard: {
71069
71087
  leaveAbsolute: boolean;
71070
71088
  };
71071
71089
  inputMode: "calendar" | "keyboard";
71072
- disabled: boolean | string[];
71090
+ disabled: string | boolean | string[];
71073
71091
  multiple: boolean;
71074
71092
  modelValue: any[];
71075
71093
  collapseIcon: string;
@@ -71351,7 +71369,7 @@ declare const VDateCard: {
71351
71369
  leaveAbsolute: boolean;
71352
71370
  };
71353
71371
  inputMode: "calendar" | "keyboard";
71354
- disabled: boolean | string[];
71372
+ disabled: string | boolean | string[];
71355
71373
  multiple: boolean;
71356
71374
  modelValue: any[];
71357
71375
  collapseIcon: string;
@@ -71636,7 +71654,7 @@ declare const VDateCard: {
71636
71654
  leaveAbsolute: boolean;
71637
71655
  };
71638
71656
  inputMode: "calendar" | "keyboard";
71639
- disabled: boolean | string[];
71657
+ disabled: string | boolean | string[];
71640
71658
  multiple: boolean;
71641
71659
  modelValue: any[];
71642
71660
  collapseIcon: string;
@@ -72129,7 +72147,7 @@ declare const VDateCard: {
72129
72147
  type: StringConstructor;
72130
72148
  };
72131
72149
  disabled: {
72132
- type: PropType<boolean | string[]>;
72150
+ type: PropType<string | boolean | string[]>;
72133
72151
  default: boolean;
72134
72152
  };
72135
72153
  nextIcon: {
@@ -72613,7 +72631,7 @@ declare const VDateCard: {
72613
72631
  type: StringConstructor;
72614
72632
  };
72615
72633
  disabled: {
72616
- type: PropType<boolean | string[]>;
72634
+ type: PropType<string | boolean | string[]>;
72617
72635
  default: boolean;
72618
72636
  };
72619
72637
  nextIcon: {
@@ -72661,7 +72679,7 @@ declare const VDatePicker: {
72661
72679
  style?: vue.StyleValue | undefined;
72662
72680
  title?: string | undefined;
72663
72681
  inputMode?: "calendar" | "keyboard" | undefined;
72664
- disabled?: boolean | string[] | undefined;
72682
+ disabled?: string | boolean | string[] | undefined;
72665
72683
  multiple?: boolean | undefined;
72666
72684
  landscape?: boolean | undefined;
72667
72685
  tag?: string | undefined;
@@ -72794,7 +72812,7 @@ declare const VDatePicker: {
72794
72812
  style: vue.StyleValue;
72795
72813
  title: string;
72796
72814
  inputMode: "calendar" | "keyboard";
72797
- disabled: boolean | string[];
72815
+ disabled: string | boolean | string[];
72798
72816
  multiple: boolean;
72799
72817
  landscape: boolean;
72800
72818
  tag: string;
@@ -72877,7 +72895,7 @@ declare const VDatePicker: {
72877
72895
  style: vue.StyleValue;
72878
72896
  title: string;
72879
72897
  inputMode: "calendar" | "keyboard";
72880
- disabled: boolean | string[];
72898
+ disabled: string | boolean | string[];
72881
72899
  multiple: boolean;
72882
72900
  landscape: boolean;
72883
72901
  tag: string;
@@ -72931,7 +72949,7 @@ declare const VDatePicker: {
72931
72949
  style: vue.StyleValue;
72932
72950
  title: string;
72933
72951
  inputMode: "calendar" | "keyboard";
72934
- disabled: boolean | string[];
72952
+ disabled: string | boolean | string[];
72935
72953
  multiple: boolean;
72936
72954
  landscape: boolean;
72937
72955
  tag: string;
@@ -73010,7 +73028,7 @@ declare const VDatePicker: {
73010
73028
  style: vue.StyleValue;
73011
73029
  title: string;
73012
73030
  inputMode: "calendar" | "keyboard";
73013
- disabled: boolean | string[];
73031
+ disabled: string | boolean | string[];
73014
73032
  multiple: boolean;
73015
73033
  landscape: boolean;
73016
73034
  tag: string;
@@ -73093,7 +73111,7 @@ declare const VDatePicker: {
73093
73111
  style: vue.StyleValue;
73094
73112
  title: string;
73095
73113
  inputMode: "calendar" | "keyboard";
73096
- disabled: boolean | string[];
73114
+ disabled: string | boolean | string[];
73097
73115
  multiple: boolean;
73098
73116
  landscape: boolean;
73099
73117
  tag: string;
@@ -73176,7 +73194,7 @@ declare const VDatePicker: {
73176
73194
  type: StringConstructor;
73177
73195
  };
73178
73196
  disabled: {
73179
- type: vue.PropType<boolean | string[]>;
73197
+ type: vue.PropType<string | boolean | string[]>;
73180
73198
  default: boolean;
73181
73199
  };
73182
73200
  nextIcon: {
@@ -73286,7 +73304,7 @@ declare const VDatePicker: {
73286
73304
  type: StringConstructor;
73287
73305
  };
73288
73306
  disabled: {
73289
- type: vue.PropType<boolean | string[]>;
73307
+ type: vue.PropType<string | boolean | string[]>;
73290
73308
  default: boolean;
73291
73309
  };
73292
73310
  nextIcon: {
@@ -73350,7 +73368,7 @@ declare const VDatePickerControls: {
73350
73368
  $: vue.ComponentInternalInstance;
73351
73369
  $data: {};
73352
73370
  $props: {
73353
- disabled?: boolean | string[] | undefined;
73371
+ disabled?: string | boolean | string[] | undefined;
73354
73372
  collapseIcon?: string | undefined;
73355
73373
  expandIcon?: string | undefined;
73356
73374
  nextIcon?: string | undefined;
@@ -73428,7 +73446,7 @@ declare const VDatePickerControls: {
73428
73446
  $emit: ((event: "click:mode") => void) & ((event: "click:prev") => void) & ((event: "click:next") => void);
73429
73447
  $el: any;
73430
73448
  $options: vue.ComponentOptionsBase<{
73431
- disabled: boolean | string[];
73449
+ disabled: string | boolean | string[];
73432
73450
  collapseIcon: string;
73433
73451
  expandIcon: string;
73434
73452
  nextIcon: string;
@@ -73454,7 +73472,7 @@ declare const VDatePickerControls: {
73454
73472
  'click:prev': () => true;
73455
73473
  'click:next': () => true;
73456
73474
  }, string, {
73457
- disabled: boolean | string[];
73475
+ disabled: string | boolean | string[];
73458
73476
  collapseIcon: string;
73459
73477
  expandIcon: string;
73460
73478
  nextIcon: string;
@@ -73485,7 +73503,7 @@ declare const VDatePickerControls: {
73485
73503
  $nextTick: typeof vue.nextTick;
73486
73504
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
73487
73505
  } & {
73488
- disabled: boolean | string[];
73506
+ disabled: string | boolean | string[];
73489
73507
  collapseIcon: string;
73490
73508
  expandIcon: string;
73491
73509
  nextIcon: string;
@@ -73511,7 +73529,7 @@ declare const VDatePickerControls: {
73511
73529
  __isTeleport?: undefined;
73512
73530
  __isSuspense?: undefined;
73513
73531
  } & vue.ComponentOptionsBase<{
73514
- disabled: boolean | string[];
73532
+ disabled: string | boolean | string[];
73515
73533
  collapseIcon: string;
73516
73534
  expandIcon: string;
73517
73535
  nextIcon: string;
@@ -73537,7 +73555,7 @@ declare const VDatePickerControls: {
73537
73555
  'click:prev': () => true;
73538
73556
  'click:next': () => true;
73539
73557
  }, string, {
73540
- disabled: boolean | string[];
73558
+ disabled: string | boolean | string[];
73541
73559
  collapseIcon: string;
73542
73560
  expandIcon: string;
73543
73561
  nextIcon: string;
@@ -73550,7 +73568,7 @@ declare const VDatePickerControls: {
73550
73568
  }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
73551
73569
  displayDate: StringConstructor;
73552
73570
  disabled: {
73553
- type: PropType<boolean | string[]>;
73571
+ type: PropType<string | boolean | string[]>;
73554
73572
  default: boolean;
73555
73573
  };
73556
73574
  nextIcon: {
@@ -73576,7 +73594,7 @@ declare const VDatePickerControls: {
73576
73594
  }, vue.ExtractPropTypes<{
73577
73595
  displayDate: StringConstructor;
73578
73596
  disabled: {
73579
- type: PropType<boolean | string[]>;
73597
+ type: PropType<string | boolean | string[]>;
73580
73598
  default: boolean;
73581
73599
  };
73582
73600
  nextIcon: {