@vuetify/nightly 3.6.7-master.2024-05-28 → 3.6.8-master.2024-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 (64) hide show
  1. package/CHANGELOG.md +2 -10
  2. package/dist/json/attributes.json +44 -12
  3. package/dist/json/importMap-labs.json +26 -26
  4. package/dist/json/importMap.json +118 -118
  5. package/dist/json/tags.json +8 -0
  6. package/dist/json/web-types.json +117 -45
  7. package/dist/vuetify-labs.css +1826 -1823
  8. package/dist/vuetify-labs.d.ts +528 -1392
  9. package/dist/vuetify-labs.esm.js +145 -43
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +145 -43
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +849 -846
  14. package/dist/vuetify.d.ts +423 -1127
  15. package/dist/vuetify.esm.js +41 -12
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +41 -12
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +16 -16
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAutocomplete/index.d.mts +102 -336
  23. package/lib/components/VCombobox/index.d.mts +102 -336
  24. package/lib/components/VDatePicker/VDatePickerMonth.mjs +3 -0
  25. package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
  26. package/lib/components/VDivider/VDivider.mjs +1 -1
  27. package/lib/components/VDivider/VDivider.mjs.map +1 -1
  28. package/lib/components/VList/VList.mjs +3 -1
  29. package/lib/components/VList/VList.mjs.map +1 -1
  30. package/lib/components/VList/VListGroup.mjs +1 -0
  31. package/lib/components/VList/VListGroup.mjs.map +1 -1
  32. package/lib/components/VList/VListItem.css +2 -2
  33. package/lib/components/VList/VListItem.mjs +2 -0
  34. package/lib/components/VList/VListItem.mjs.map +1 -1
  35. package/lib/components/VList/VListItem.sass +1 -1
  36. package/lib/components/VList/index.d.mts +52 -66
  37. package/lib/components/VSelect/index.d.mts +102 -336
  38. package/lib/components/VSelectionControl/VSelectionControl.mjs +9 -1
  39. package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
  40. package/lib/components/VSnackbar/VSnackbar.css +1 -1
  41. package/lib/components/VSnackbar/VSnackbar.sass +1 -1
  42. package/lib/components/VStepper/VStepper.mjs +18 -4
  43. package/lib/components/VStepper/VStepper.mjs.map +1 -1
  44. package/lib/components/VStepper/VStepperItem.css +3 -0
  45. package/lib/components/VStepper/VStepperItem.sass +3 -0
  46. package/lib/components/VStepper/index.d.mts +43 -9
  47. package/lib/components/VTabs/VTabs.mjs +2 -2
  48. package/lib/components/VTabs/VTabs.mjs.map +1 -1
  49. package/lib/components/index.d.mts +379 -1083
  50. package/lib/composables/filter.mjs +1 -1
  51. package/lib/composables/filter.mjs.map +1 -1
  52. package/lib/entry-bundler.mjs +1 -1
  53. package/lib/framework.mjs +1 -1
  54. package/lib/index.d.mts +44 -44
  55. package/lib/labs/VStepperVertical/index.d.mts +43 -9
  56. package/lib/labs/VTreeview/VTreeview.mjs +1 -1
  57. package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
  58. package/lib/labs/VTreeview/VTreeviewChildren.mjs +30 -25
  59. package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
  60. package/lib/labs/VTreeview/VTreeviewItem.mjs +81 -10
  61. package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
  62. package/lib/labs/VTreeview/index.d.mts +110 -300
  63. package/lib/labs/components.d.mts +3402 -3558
  64. package/package.json +1 -1
package/dist/vuetify.d.ts CHANGED
@@ -4294,6 +4294,8 @@ declare const VListItem: {
4294
4294
  } & {
4295
4295
  onClick?: ((e: KeyboardEvent | MouseEvent) => any) | undefined;
4296
4296
  }, {
4297
+ activate: (activated: boolean, e?: Event | undefined) => void;
4298
+ isActivated: vue.ComputedRef<boolean>;
4297
4299
  isGroupActivator: boolean | undefined;
4298
4300
  isSelected: vue.ComputedRef<boolean>;
4299
4301
  list: {
@@ -4478,6 +4480,8 @@ declare const VListItem: {
4478
4480
  } & {
4479
4481
  onClick?: ((e: KeyboardEvent | MouseEvent) => any) | undefined;
4480
4482
  }, {
4483
+ activate: (activated: boolean, e?: Event | undefined) => void;
4484
+ isActivated: vue.ComputedRef<boolean>;
4481
4485
  isGroupActivator: boolean | undefined;
4482
4486
  isSelected: vue.ComputedRef<boolean>;
4483
4487
  list: {
@@ -4574,6 +4578,8 @@ declare const VListItem: {
4574
4578
  } & {
4575
4579
  onClick?: ((e: KeyboardEvent | MouseEvent) => any) | undefined;
4576
4580
  }, {
4581
+ activate: (activated: boolean, e?: Event | undefined) => void;
4582
+ isActivated: vue.ComputedRef<boolean>;
4577
4583
  isGroupActivator: boolean | undefined;
4578
4584
  isSelected: vue.ComputedRef<boolean>;
4579
4585
  list: {
@@ -4984,16 +4990,6 @@ declare const VAutocomplete: {
4984
4990
  collapseIcon?: string | undefined;
4985
4991
  expandIcon?: string | undefined;
4986
4992
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
4987
- "onClick:open"?: ((value: {
4988
- id: unknown;
4989
- value: boolean;
4990
- path: unknown[];
4991
- }) => any) | undefined;
4992
- "onClick:select"?: ((value: {
4993
- id: unknown;
4994
- value: boolean;
4995
- path: unknown[];
4996
- }) => any) | undefined;
4997
4993
  "onClick:activate"?: ((value: {
4998
4994
  id: unknown;
4999
4995
  value: boolean;
@@ -5040,16 +5036,6 @@ declare const VAutocomplete: {
5040
5036
  expandIcon?: string | undefined;
5041
5037
  } & {
5042
5038
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
5043
- "onClick:open"?: ((value: {
5044
- id: unknown;
5045
- value: boolean;
5046
- path: unknown[];
5047
- }) => any) | undefined;
5048
- "onClick:select"?: ((value: {
5049
- id: unknown;
5050
- value: boolean;
5051
- path: unknown[];
5052
- }) => any) | undefined;
5053
5039
  "onClick:activate"?: ((value: {
5054
5040
  id: unknown;
5055
5041
  value: boolean;
@@ -5063,6 +5049,16 @@ declare const VAutocomplete: {
5063
5049
  itemProps?: SelectItemKey<any>;
5064
5050
  selected?: unknown;
5065
5051
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
5052
+ 'onClick:open'?: ((value: {
5053
+ id: unknown;
5054
+ value: boolean;
5055
+ path: unknown[];
5056
+ }) => void) | undefined;
5057
+ 'onClick:select'?: ((value: {
5058
+ id: unknown;
5059
+ value: boolean;
5060
+ path: unknown[];
5061
+ }) => void) | undefined;
5066
5062
  opened?: unknown;
5067
5063
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
5068
5064
  } & {
@@ -5070,20 +5066,10 @@ declare const VAutocomplete: {
5070
5066
  title?: ((arg: ListItemTitleSlot & {
5071
5067
  item: any;
5072
5068
  }) => vue.VNodeChild) | undefined;
5073
- prepend?: ((arg: {
5074
- isActive: boolean;
5075
- isSelected: boolean;
5076
- isIndeterminate: boolean;
5077
- select: (value: boolean) => void;
5078
- } & {
5069
+ prepend?: ((arg: ListItemSlot & {
5079
5070
  item: any;
5080
5071
  }) => vue.VNodeChild) | undefined;
5081
- append?: ((arg: {
5082
- isActive: boolean;
5083
- isSelected: boolean;
5084
- isIndeterminate: boolean;
5085
- select: (value: boolean) => void;
5086
- } & {
5072
+ append?: ((arg: ListItemSlot & {
5087
5073
  item: any;
5088
5074
  }) => vue.VNodeChild) | undefined;
5089
5075
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -5123,20 +5109,10 @@ declare const VAutocomplete: {
5123
5109
  title?: false | ((arg: ListItemTitleSlot & {
5124
5110
  item: any;
5125
5111
  }) => vue.VNodeChild) | undefined;
5126
- prepend?: false | ((arg: {
5127
- isActive: boolean;
5128
- isSelected: boolean;
5129
- isIndeterminate: boolean;
5130
- select: (value: boolean) => void;
5131
- } & {
5112
+ prepend?: false | ((arg: ListItemSlot & {
5132
5113
  item: any;
5133
5114
  }) => vue.VNodeChild) | undefined;
5134
- append?: false | ((arg: {
5135
- isActive: boolean;
5136
- isSelected: boolean;
5137
- isIndeterminate: boolean;
5138
- select: (value: boolean) => void;
5139
- } & {
5115
+ append?: false | ((arg: ListItemSlot & {
5140
5116
  item: any;
5141
5117
  }) => vue.VNodeChild) | undefined;
5142
5118
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -5176,20 +5152,10 @@ declare const VAutocomplete: {
5176
5152
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
5177
5153
  item: any;
5178
5154
  }) => vue.VNodeChild) | undefined;
5179
- "v-slot:prepend"?: false | ((arg: {
5180
- isActive: boolean;
5181
- isSelected: boolean;
5182
- isIndeterminate: boolean;
5183
- select: (value: boolean) => void;
5184
- } & {
5155
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
5185
5156
  item: any;
5186
5157
  }) => vue.VNodeChild) | undefined;
5187
- "v-slot:append"?: false | ((arg: {
5188
- isActive: boolean;
5189
- isSelected: boolean;
5190
- isIndeterminate: boolean;
5191
- select: (value: boolean) => void;
5192
- } & {
5158
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
5193
5159
  item: any;
5194
5160
  }) => vue.VNodeChild) | undefined;
5195
5161
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -5564,16 +5530,6 @@ declare const VAutocomplete: {
5564
5530
  collapseIcon?: string | undefined;
5565
5531
  expandIcon?: string | undefined;
5566
5532
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
5567
- "onClick:open"?: ((value: {
5568
- id: unknown;
5569
- value: boolean;
5570
- path: unknown[];
5571
- }) => any) | undefined;
5572
- "onClick:select"?: ((value: {
5573
- id: unknown;
5574
- value: boolean;
5575
- path: unknown[];
5576
- }) => any) | undefined;
5577
5533
  "onClick:activate"?: ((value: {
5578
5534
  id: unknown;
5579
5535
  value: boolean;
@@ -5620,16 +5576,6 @@ declare const VAutocomplete: {
5620
5576
  expandIcon?: string | undefined;
5621
5577
  } & {
5622
5578
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
5623
- "onClick:open"?: ((value: {
5624
- id: unknown;
5625
- value: boolean;
5626
- path: unknown[];
5627
- }) => any) | undefined;
5628
- "onClick:select"?: ((value: {
5629
- id: unknown;
5630
- value: boolean;
5631
- path: unknown[];
5632
- }) => any) | undefined;
5633
5579
  "onClick:activate"?: ((value: {
5634
5580
  id: unknown;
5635
5581
  value: boolean;
@@ -5643,6 +5589,16 @@ declare const VAutocomplete: {
5643
5589
  itemProps?: SelectItemKey<any>;
5644
5590
  selected?: unknown;
5645
5591
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
5592
+ 'onClick:open'?: ((value: {
5593
+ id: unknown;
5594
+ value: boolean;
5595
+ path: unknown[];
5596
+ }) => void) | undefined;
5597
+ 'onClick:select'?: ((value: {
5598
+ id: unknown;
5599
+ value: boolean;
5600
+ path: unknown[];
5601
+ }) => void) | undefined;
5646
5602
  opened?: unknown;
5647
5603
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
5648
5604
  } & {
@@ -5650,20 +5606,10 @@ declare const VAutocomplete: {
5650
5606
  title?: ((arg: ListItemTitleSlot & {
5651
5607
  item: any;
5652
5608
  }) => vue.VNodeChild) | undefined;
5653
- prepend?: ((arg: {
5654
- isActive: boolean;
5655
- isSelected: boolean;
5656
- isIndeterminate: boolean;
5657
- select: (value: boolean) => void;
5658
- } & {
5609
+ prepend?: ((arg: ListItemSlot & {
5659
5610
  item: any;
5660
5611
  }) => vue.VNodeChild) | undefined;
5661
- append?: ((arg: {
5662
- isActive: boolean;
5663
- isSelected: boolean;
5664
- isIndeterminate: boolean;
5665
- select: (value: boolean) => void;
5666
- } & {
5612
+ append?: ((arg: ListItemSlot & {
5667
5613
  item: any;
5668
5614
  }) => vue.VNodeChild) | undefined;
5669
5615
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -5703,20 +5649,10 @@ declare const VAutocomplete: {
5703
5649
  title?: false | ((arg: ListItemTitleSlot & {
5704
5650
  item: any;
5705
5651
  }) => vue.VNodeChild) | undefined;
5706
- prepend?: false | ((arg: {
5707
- isActive: boolean;
5708
- isSelected: boolean;
5709
- isIndeterminate: boolean;
5710
- select: (value: boolean) => void;
5711
- } & {
5652
+ prepend?: false | ((arg: ListItemSlot & {
5712
5653
  item: any;
5713
5654
  }) => vue.VNodeChild) | undefined;
5714
- append?: false | ((arg: {
5715
- isActive: boolean;
5716
- isSelected: boolean;
5717
- isIndeterminate: boolean;
5718
- select: (value: boolean) => void;
5719
- } & {
5655
+ append?: false | ((arg: ListItemSlot & {
5720
5656
  item: any;
5721
5657
  }) => vue.VNodeChild) | undefined;
5722
5658
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -5756,20 +5692,10 @@ declare const VAutocomplete: {
5756
5692
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
5757
5693
  item: any;
5758
5694
  }) => vue.VNodeChild) | undefined;
5759
- "v-slot:prepend"?: false | ((arg: {
5760
- isActive: boolean;
5761
- isSelected: boolean;
5762
- isIndeterminate: boolean;
5763
- select: (value: boolean) => void;
5764
- } & {
5695
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
5765
5696
  item: any;
5766
5697
  }) => vue.VNodeChild) | undefined;
5767
- "v-slot:append"?: false | ((arg: {
5768
- isActive: boolean;
5769
- isSelected: boolean;
5770
- isIndeterminate: boolean;
5771
- select: (value: boolean) => void;
5772
- } & {
5698
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
5773
5699
  item: any;
5774
5700
  }) => vue.VNodeChild) | undefined;
5775
5701
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -6258,16 +6184,6 @@ declare const VAutocomplete: {
6258
6184
  collapseIcon?: string | undefined;
6259
6185
  expandIcon?: string | undefined;
6260
6186
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
6261
- "onClick:open"?: ((value: {
6262
- id: unknown;
6263
- value: boolean;
6264
- path: unknown[];
6265
- }) => any) | undefined;
6266
- "onClick:select"?: ((value: {
6267
- id: unknown;
6268
- value: boolean;
6269
- path: unknown[];
6270
- }) => any) | undefined;
6271
6187
  "onClick:activate"?: ((value: {
6272
6188
  id: unknown;
6273
6189
  value: boolean;
@@ -6314,16 +6230,6 @@ declare const VAutocomplete: {
6314
6230
  expandIcon?: string | undefined;
6315
6231
  } & {
6316
6232
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
6317
- "onClick:open"?: ((value: {
6318
- id: unknown;
6319
- value: boolean;
6320
- path: unknown[];
6321
- }) => any) | undefined;
6322
- "onClick:select"?: ((value: {
6323
- id: unknown;
6324
- value: boolean;
6325
- path: unknown[];
6326
- }) => any) | undefined;
6327
6233
  "onClick:activate"?: ((value: {
6328
6234
  id: unknown;
6329
6235
  value: boolean;
@@ -6337,6 +6243,16 @@ declare const VAutocomplete: {
6337
6243
  itemProps?: SelectItemKey<any>;
6338
6244
  selected?: unknown;
6339
6245
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
6246
+ 'onClick:open'?: ((value: {
6247
+ id: unknown;
6248
+ value: boolean;
6249
+ path: unknown[];
6250
+ }) => void) | undefined;
6251
+ 'onClick:select'?: ((value: {
6252
+ id: unknown;
6253
+ value: boolean;
6254
+ path: unknown[];
6255
+ }) => void) | undefined;
6340
6256
  opened?: unknown;
6341
6257
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
6342
6258
  } & {
@@ -6344,20 +6260,10 @@ declare const VAutocomplete: {
6344
6260
  title?: ((arg: ListItemTitleSlot & {
6345
6261
  item: any;
6346
6262
  }) => vue.VNodeChild) | undefined;
6347
- prepend?: ((arg: {
6348
- isActive: boolean;
6349
- isSelected: boolean;
6350
- isIndeterminate: boolean;
6351
- select: (value: boolean) => void;
6352
- } & {
6263
+ prepend?: ((arg: ListItemSlot & {
6353
6264
  item: any;
6354
6265
  }) => vue.VNodeChild) | undefined;
6355
- append?: ((arg: {
6356
- isActive: boolean;
6357
- isSelected: boolean;
6358
- isIndeterminate: boolean;
6359
- select: (value: boolean) => void;
6360
- } & {
6266
+ append?: ((arg: ListItemSlot & {
6361
6267
  item: any;
6362
6268
  }) => vue.VNodeChild) | undefined;
6363
6269
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -6397,20 +6303,10 @@ declare const VAutocomplete: {
6397
6303
  title?: false | ((arg: ListItemTitleSlot & {
6398
6304
  item: any;
6399
6305
  }) => vue.VNodeChild) | undefined;
6400
- prepend?: false | ((arg: {
6401
- isActive: boolean;
6402
- isSelected: boolean;
6403
- isIndeterminate: boolean;
6404
- select: (value: boolean) => void;
6405
- } & {
6306
+ prepend?: false | ((arg: ListItemSlot & {
6406
6307
  item: any;
6407
6308
  }) => vue.VNodeChild) | undefined;
6408
- append?: false | ((arg: {
6409
- isActive: boolean;
6410
- isSelected: boolean;
6411
- isIndeterminate: boolean;
6412
- select: (value: boolean) => void;
6413
- } & {
6309
+ append?: false | ((arg: ListItemSlot & {
6414
6310
  item: any;
6415
6311
  }) => vue.VNodeChild) | undefined;
6416
6312
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -6450,20 +6346,10 @@ declare const VAutocomplete: {
6450
6346
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
6451
6347
  item: any;
6452
6348
  }) => vue.VNodeChild) | undefined;
6453
- "v-slot:prepend"?: false | ((arg: {
6454
- isActive: boolean;
6455
- isSelected: boolean;
6456
- isIndeterminate: boolean;
6457
- select: (value: boolean) => void;
6458
- } & {
6349
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
6459
6350
  item: any;
6460
6351
  }) => vue.VNodeChild) | undefined;
6461
- "v-slot:append"?: false | ((arg: {
6462
- isActive: boolean;
6463
- isSelected: boolean;
6464
- isIndeterminate: boolean;
6465
- select: (value: boolean) => void;
6466
- } & {
6352
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
6467
6353
  item: any;
6468
6354
  }) => vue.VNodeChild) | undefined;
6469
6355
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -6887,16 +6773,6 @@ declare const VAutocomplete: {
6887
6773
  collapseIcon?: string | undefined;
6888
6774
  expandIcon?: string | undefined;
6889
6775
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
6890
- "onClick:open"?: ((value: {
6891
- id: unknown;
6892
- value: boolean;
6893
- path: unknown[];
6894
- }) => any) | undefined;
6895
- "onClick:select"?: ((value: {
6896
- id: unknown;
6897
- value: boolean;
6898
- path: unknown[];
6899
- }) => any) | undefined;
6900
6776
  "onClick:activate"?: ((value: {
6901
6777
  id: unknown;
6902
6778
  value: boolean;
@@ -6943,16 +6819,6 @@ declare const VAutocomplete: {
6943
6819
  expandIcon?: string | undefined;
6944
6820
  } & {
6945
6821
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
6946
- "onClick:open"?: ((value: {
6947
- id: unknown;
6948
- value: boolean;
6949
- path: unknown[];
6950
- }) => any) | undefined;
6951
- "onClick:select"?: ((value: {
6952
- id: unknown;
6953
- value: boolean;
6954
- path: unknown[];
6955
- }) => any) | undefined;
6956
6822
  "onClick:activate"?: ((value: {
6957
6823
  id: unknown;
6958
6824
  value: boolean;
@@ -6966,6 +6832,16 @@ declare const VAutocomplete: {
6966
6832
  itemProps?: SelectItemKey<any>;
6967
6833
  selected?: unknown;
6968
6834
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
6835
+ 'onClick:open'?: ((value: {
6836
+ id: unknown;
6837
+ value: boolean;
6838
+ path: unknown[];
6839
+ }) => void) | undefined;
6840
+ 'onClick:select'?: ((value: {
6841
+ id: unknown;
6842
+ value: boolean;
6843
+ path: unknown[];
6844
+ }) => void) | undefined;
6969
6845
  opened?: unknown;
6970
6846
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
6971
6847
  } & {
@@ -6973,20 +6849,10 @@ declare const VAutocomplete: {
6973
6849
  title?: ((arg: ListItemTitleSlot & {
6974
6850
  item: any;
6975
6851
  }) => vue.VNodeChild) | undefined;
6976
- prepend?: ((arg: {
6977
- isActive: boolean;
6978
- isSelected: boolean;
6979
- isIndeterminate: boolean;
6980
- select: (value: boolean) => void;
6981
- } & {
6852
+ prepend?: ((arg: ListItemSlot & {
6982
6853
  item: any;
6983
6854
  }) => vue.VNodeChild) | undefined;
6984
- append?: ((arg: {
6985
- isActive: boolean;
6986
- isSelected: boolean;
6987
- isIndeterminate: boolean;
6988
- select: (value: boolean) => void;
6989
- } & {
6855
+ append?: ((arg: ListItemSlot & {
6990
6856
  item: any;
6991
6857
  }) => vue.VNodeChild) | undefined;
6992
6858
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -7026,20 +6892,10 @@ declare const VAutocomplete: {
7026
6892
  title?: false | ((arg: ListItemTitleSlot & {
7027
6893
  item: any;
7028
6894
  }) => vue.VNodeChild) | undefined;
7029
- prepend?: false | ((arg: {
7030
- isActive: boolean;
7031
- isSelected: boolean;
7032
- isIndeterminate: boolean;
7033
- select: (value: boolean) => void;
7034
- } & {
6895
+ prepend?: false | ((arg: ListItemSlot & {
7035
6896
  item: any;
7036
6897
  }) => vue.VNodeChild) | undefined;
7037
- append?: false | ((arg: {
7038
- isActive: boolean;
7039
- isSelected: boolean;
7040
- isIndeterminate: boolean;
7041
- select: (value: boolean) => void;
7042
- } & {
6898
+ append?: false | ((arg: ListItemSlot & {
7043
6899
  item: any;
7044
6900
  }) => vue.VNodeChild) | undefined;
7045
6901
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -7079,20 +6935,10 @@ declare const VAutocomplete: {
7079
6935
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
7080
6936
  item: any;
7081
6937
  }) => vue.VNodeChild) | undefined;
7082
- "v-slot:prepend"?: false | ((arg: {
7083
- isActive: boolean;
7084
- isSelected: boolean;
7085
- isIndeterminate: boolean;
7086
- select: (value: boolean) => void;
7087
- } & {
6938
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
7088
6939
  item: any;
7089
6940
  }) => vue.VNodeChild) | undefined;
7090
- "v-slot:append"?: false | ((arg: {
7091
- isActive: boolean;
7092
- isSelected: boolean;
7093
- isIndeterminate: boolean;
7094
- select: (value: boolean) => void;
7095
- } & {
6941
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
7096
6942
  item: any;
7097
6943
  }) => vue.VNodeChild) | undefined;
7098
6944
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -7717,16 +7563,6 @@ declare const VAutocomplete: {
7717
7563
  collapseIcon?: string | undefined;
7718
7564
  expandIcon?: string | undefined;
7719
7565
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
7720
- "onClick:open"?: ((value: {
7721
- id: unknown;
7722
- value: boolean;
7723
- path: unknown[];
7724
- }) => any) | undefined;
7725
- "onClick:select"?: ((value: {
7726
- id: unknown;
7727
- value: boolean;
7728
- path: unknown[];
7729
- }) => any) | undefined;
7730
7566
  "onClick:activate"?: ((value: {
7731
7567
  id: unknown;
7732
7568
  value: boolean;
@@ -7773,16 +7609,6 @@ declare const VAutocomplete: {
7773
7609
  expandIcon?: string | undefined;
7774
7610
  } & {
7775
7611
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
7776
- "onClick:open"?: ((value: {
7777
- id: unknown;
7778
- value: boolean;
7779
- path: unknown[];
7780
- }) => any) | undefined;
7781
- "onClick:select"?: ((value: {
7782
- id: unknown;
7783
- value: boolean;
7784
- path: unknown[];
7785
- }) => any) | undefined;
7786
7612
  "onClick:activate"?: ((value: {
7787
7613
  id: unknown;
7788
7614
  value: boolean;
@@ -7796,6 +7622,16 @@ declare const VAutocomplete: {
7796
7622
  itemProps?: SelectItemKey<any>;
7797
7623
  selected?: unknown;
7798
7624
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
7625
+ 'onClick:open'?: ((value: {
7626
+ id: unknown;
7627
+ value: boolean;
7628
+ path: unknown[];
7629
+ }) => void) | undefined;
7630
+ 'onClick:select'?: ((value: {
7631
+ id: unknown;
7632
+ value: boolean;
7633
+ path: unknown[];
7634
+ }) => void) | undefined;
7799
7635
  opened?: unknown;
7800
7636
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
7801
7637
  } & {
@@ -7803,20 +7639,10 @@ declare const VAutocomplete: {
7803
7639
  title?: ((arg: ListItemTitleSlot & {
7804
7640
  item: any;
7805
7641
  }) => vue.VNodeChild) | undefined;
7806
- prepend?: ((arg: {
7807
- isActive: boolean;
7808
- isSelected: boolean;
7809
- isIndeterminate: boolean;
7810
- select: (value: boolean) => void;
7811
- } & {
7642
+ prepend?: ((arg: ListItemSlot & {
7812
7643
  item: any;
7813
7644
  }) => vue.VNodeChild) | undefined;
7814
- append?: ((arg: {
7815
- isActive: boolean;
7816
- isSelected: boolean;
7817
- isIndeterminate: boolean;
7818
- select: (value: boolean) => void;
7819
- } & {
7645
+ append?: ((arg: ListItemSlot & {
7820
7646
  item: any;
7821
7647
  }) => vue.VNodeChild) | undefined;
7822
7648
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -7856,20 +7682,10 @@ declare const VAutocomplete: {
7856
7682
  title?: false | ((arg: ListItemTitleSlot & {
7857
7683
  item: any;
7858
7684
  }) => vue.VNodeChild) | undefined;
7859
- prepend?: false | ((arg: {
7860
- isActive: boolean;
7861
- isSelected: boolean;
7862
- isIndeterminate: boolean;
7863
- select: (value: boolean) => void;
7864
- } & {
7685
+ prepend?: false | ((arg: ListItemSlot & {
7865
7686
  item: any;
7866
7687
  }) => vue.VNodeChild) | undefined;
7867
- append?: false | ((arg: {
7868
- isActive: boolean;
7869
- isSelected: boolean;
7870
- isIndeterminate: boolean;
7871
- select: (value: boolean) => void;
7872
- } & {
7688
+ append?: false | ((arg: ListItemSlot & {
7873
7689
  item: any;
7874
7690
  }) => vue.VNodeChild) | undefined;
7875
7691
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -7909,20 +7725,10 @@ declare const VAutocomplete: {
7909
7725
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
7910
7726
  item: any;
7911
7727
  }) => vue.VNodeChild) | undefined;
7912
- "v-slot:prepend"?: false | ((arg: {
7913
- isActive: boolean;
7914
- isSelected: boolean;
7915
- isIndeterminate: boolean;
7916
- select: (value: boolean) => void;
7917
- } & {
7728
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
7918
7729
  item: any;
7919
7730
  }) => vue.VNodeChild) | undefined;
7920
- "v-slot:append"?: false | ((arg: {
7921
- isActive: boolean;
7922
- isSelected: boolean;
7923
- isIndeterminate: boolean;
7924
- select: (value: boolean) => void;
7925
- } & {
7731
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
7926
7732
  item: any;
7927
7733
  }) => vue.VNodeChild) | undefined;
7928
7734
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -8401,16 +8207,6 @@ declare const VAutocomplete: {
8401
8207
  collapseIcon?: string | undefined;
8402
8208
  expandIcon?: string | undefined;
8403
8209
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
8404
- "onClick:open"?: ((value: {
8405
- id: unknown;
8406
- value: boolean;
8407
- path: unknown[];
8408
- }) => any) | undefined;
8409
- "onClick:select"?: ((value: {
8410
- id: unknown;
8411
- value: boolean;
8412
- path: unknown[];
8413
- }) => any) | undefined;
8414
8210
  "onClick:activate"?: ((value: {
8415
8211
  id: unknown;
8416
8212
  value: boolean;
@@ -8457,16 +8253,6 @@ declare const VAutocomplete: {
8457
8253
  expandIcon?: string | undefined;
8458
8254
  } & {
8459
8255
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
8460
- "onClick:open"?: ((value: {
8461
- id: unknown;
8462
- value: boolean;
8463
- path: unknown[];
8464
- }) => any) | undefined;
8465
- "onClick:select"?: ((value: {
8466
- id: unknown;
8467
- value: boolean;
8468
- path: unknown[];
8469
- }) => any) | undefined;
8470
8256
  "onClick:activate"?: ((value: {
8471
8257
  id: unknown;
8472
8258
  value: boolean;
@@ -8480,6 +8266,16 @@ declare const VAutocomplete: {
8480
8266
  itemProps?: SelectItemKey<any>;
8481
8267
  selected?: unknown;
8482
8268
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
8269
+ 'onClick:open'?: ((value: {
8270
+ id: unknown;
8271
+ value: boolean;
8272
+ path: unknown[];
8273
+ }) => void) | undefined;
8274
+ 'onClick:select'?: ((value: {
8275
+ id: unknown;
8276
+ value: boolean;
8277
+ path: unknown[];
8278
+ }) => void) | undefined;
8483
8279
  opened?: unknown;
8484
8280
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
8485
8281
  } & {
@@ -8487,20 +8283,10 @@ declare const VAutocomplete: {
8487
8283
  title?: ((arg: ListItemTitleSlot & {
8488
8284
  item: any;
8489
8285
  }) => vue.VNodeChild) | undefined;
8490
- prepend?: ((arg: {
8491
- isActive: boolean;
8492
- isSelected: boolean;
8493
- isIndeterminate: boolean;
8494
- select: (value: boolean) => void;
8495
- } & {
8286
+ prepend?: ((arg: ListItemSlot & {
8496
8287
  item: any;
8497
8288
  }) => vue.VNodeChild) | undefined;
8498
- append?: ((arg: {
8499
- isActive: boolean;
8500
- isSelected: boolean;
8501
- isIndeterminate: boolean;
8502
- select: (value: boolean) => void;
8503
- } & {
8289
+ append?: ((arg: ListItemSlot & {
8504
8290
  item: any;
8505
8291
  }) => vue.VNodeChild) | undefined;
8506
8292
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -8540,20 +8326,10 @@ declare const VAutocomplete: {
8540
8326
  title?: false | ((arg: ListItemTitleSlot & {
8541
8327
  item: any;
8542
8328
  }) => vue.VNodeChild) | undefined;
8543
- prepend?: false | ((arg: {
8544
- isActive: boolean;
8545
- isSelected: boolean;
8546
- isIndeterminate: boolean;
8547
- select: (value: boolean) => void;
8548
- } & {
8329
+ prepend?: false | ((arg: ListItemSlot & {
8549
8330
  item: any;
8550
8331
  }) => vue.VNodeChild) | undefined;
8551
- append?: false | ((arg: {
8552
- isActive: boolean;
8553
- isSelected: boolean;
8554
- isIndeterminate: boolean;
8555
- select: (value: boolean) => void;
8556
- } & {
8332
+ append?: false | ((arg: ListItemSlot & {
8557
8333
  item: any;
8558
8334
  }) => vue.VNodeChild) | undefined;
8559
8335
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -8593,20 +8369,10 @@ declare const VAutocomplete: {
8593
8369
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
8594
8370
  item: any;
8595
8371
  }) => vue.VNodeChild) | undefined;
8596
- "v-slot:prepend"?: false | ((arg: {
8597
- isActive: boolean;
8598
- isSelected: boolean;
8599
- isIndeterminate: boolean;
8600
- select: (value: boolean) => void;
8601
- } & {
8372
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
8602
8373
  item: any;
8603
8374
  }) => vue.VNodeChild) | undefined;
8604
- "v-slot:append"?: false | ((arg: {
8605
- isActive: boolean;
8606
- isSelected: boolean;
8607
- isIndeterminate: boolean;
8608
- select: (value: boolean) => void;
8609
- } & {
8375
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
8610
8376
  item: any;
8611
8377
  }) => vue.VNodeChild) | undefined;
8612
8378
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -18836,16 +18602,6 @@ declare const VCombobox: {
18836
18602
  collapseIcon?: string | undefined;
18837
18603
  expandIcon?: string | undefined;
18838
18604
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
18839
- "onClick:open"?: ((value: {
18840
- id: unknown;
18841
- value: boolean;
18842
- path: unknown[];
18843
- }) => any) | undefined;
18844
- "onClick:select"?: ((value: {
18845
- id: unknown;
18846
- value: boolean;
18847
- path: unknown[];
18848
- }) => any) | undefined;
18849
18605
  "onClick:activate"?: ((value: {
18850
18606
  id: unknown;
18851
18607
  value: boolean;
@@ -18892,16 +18648,6 @@ declare const VCombobox: {
18892
18648
  expandIcon?: string | undefined;
18893
18649
  } & {
18894
18650
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
18895
- "onClick:open"?: ((value: {
18896
- id: unknown;
18897
- value: boolean;
18898
- path: unknown[];
18899
- }) => any) | undefined;
18900
- "onClick:select"?: ((value: {
18901
- id: unknown;
18902
- value: boolean;
18903
- path: unknown[];
18904
- }) => any) | undefined;
18905
18651
  "onClick:activate"?: ((value: {
18906
18652
  id: unknown;
18907
18653
  value: boolean;
@@ -18915,6 +18661,16 @@ declare const VCombobox: {
18915
18661
  itemProps?: SelectItemKey<any>;
18916
18662
  selected?: unknown;
18917
18663
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
18664
+ 'onClick:open'?: ((value: {
18665
+ id: unknown;
18666
+ value: boolean;
18667
+ path: unknown[];
18668
+ }) => void) | undefined;
18669
+ 'onClick:select'?: ((value: {
18670
+ id: unknown;
18671
+ value: boolean;
18672
+ path: unknown[];
18673
+ }) => void) | undefined;
18918
18674
  opened?: unknown;
18919
18675
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
18920
18676
  } & {
@@ -18922,20 +18678,10 @@ declare const VCombobox: {
18922
18678
  title?: ((arg: ListItemTitleSlot & {
18923
18679
  item: any;
18924
18680
  }) => vue.VNodeChild) | undefined;
18925
- prepend?: ((arg: {
18926
- isActive: boolean;
18927
- isSelected: boolean;
18928
- isIndeterminate: boolean;
18929
- select: (value: boolean) => void;
18930
- } & {
18681
+ prepend?: ((arg: ListItemSlot & {
18931
18682
  item: any;
18932
18683
  }) => vue.VNodeChild) | undefined;
18933
- append?: ((arg: {
18934
- isActive: boolean;
18935
- isSelected: boolean;
18936
- isIndeterminate: boolean;
18937
- select: (value: boolean) => void;
18938
- } & {
18684
+ append?: ((arg: ListItemSlot & {
18939
18685
  item: any;
18940
18686
  }) => vue.VNodeChild) | undefined;
18941
18687
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -18975,20 +18721,10 @@ declare const VCombobox: {
18975
18721
  title?: false | ((arg: ListItemTitleSlot & {
18976
18722
  item: any;
18977
18723
  }) => vue.VNodeChild) | undefined;
18978
- prepend?: false | ((arg: {
18979
- isActive: boolean;
18980
- isSelected: boolean;
18981
- isIndeterminate: boolean;
18982
- select: (value: boolean) => void;
18983
- } & {
18724
+ prepend?: false | ((arg: ListItemSlot & {
18984
18725
  item: any;
18985
18726
  }) => vue.VNodeChild) | undefined;
18986
- append?: false | ((arg: {
18987
- isActive: boolean;
18988
- isSelected: boolean;
18989
- isIndeterminate: boolean;
18990
- select: (value: boolean) => void;
18991
- } & {
18727
+ append?: false | ((arg: ListItemSlot & {
18992
18728
  item: any;
18993
18729
  }) => vue.VNodeChild) | undefined;
18994
18730
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -19028,20 +18764,10 @@ declare const VCombobox: {
19028
18764
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
19029
18765
  item: any;
19030
18766
  }) => vue.VNodeChild) | undefined;
19031
- "v-slot:prepend"?: false | ((arg: {
19032
- isActive: boolean;
19033
- isSelected: boolean;
19034
- isIndeterminate: boolean;
19035
- select: (value: boolean) => void;
19036
- } & {
18767
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
19037
18768
  item: any;
19038
18769
  }) => vue.VNodeChild) | undefined;
19039
- "v-slot:append"?: false | ((arg: {
19040
- isActive: boolean;
19041
- isSelected: boolean;
19042
- isIndeterminate: boolean;
19043
- select: (value: boolean) => void;
19044
- } & {
18770
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
19045
18771
  item: any;
19046
18772
  }) => vue.VNodeChild) | undefined;
19047
18773
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -19416,16 +19142,6 @@ declare const VCombobox: {
19416
19142
  collapseIcon?: string | undefined;
19417
19143
  expandIcon?: string | undefined;
19418
19144
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
19419
- "onClick:open"?: ((value: {
19420
- id: unknown;
19421
- value: boolean;
19422
- path: unknown[];
19423
- }) => any) | undefined;
19424
- "onClick:select"?: ((value: {
19425
- id: unknown;
19426
- value: boolean;
19427
- path: unknown[];
19428
- }) => any) | undefined;
19429
19145
  "onClick:activate"?: ((value: {
19430
19146
  id: unknown;
19431
19147
  value: boolean;
@@ -19472,16 +19188,6 @@ declare const VCombobox: {
19472
19188
  expandIcon?: string | undefined;
19473
19189
  } & {
19474
19190
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
19475
- "onClick:open"?: ((value: {
19476
- id: unknown;
19477
- value: boolean;
19478
- path: unknown[];
19479
- }) => any) | undefined;
19480
- "onClick:select"?: ((value: {
19481
- id: unknown;
19482
- value: boolean;
19483
- path: unknown[];
19484
- }) => any) | undefined;
19485
19191
  "onClick:activate"?: ((value: {
19486
19192
  id: unknown;
19487
19193
  value: boolean;
@@ -19495,6 +19201,16 @@ declare const VCombobox: {
19495
19201
  itemProps?: SelectItemKey<any>;
19496
19202
  selected?: unknown;
19497
19203
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
19204
+ 'onClick:open'?: ((value: {
19205
+ id: unknown;
19206
+ value: boolean;
19207
+ path: unknown[];
19208
+ }) => void) | undefined;
19209
+ 'onClick:select'?: ((value: {
19210
+ id: unknown;
19211
+ value: boolean;
19212
+ path: unknown[];
19213
+ }) => void) | undefined;
19498
19214
  opened?: unknown;
19499
19215
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
19500
19216
  } & {
@@ -19502,20 +19218,10 @@ declare const VCombobox: {
19502
19218
  title?: ((arg: ListItemTitleSlot & {
19503
19219
  item: any;
19504
19220
  }) => vue.VNodeChild) | undefined;
19505
- prepend?: ((arg: {
19506
- isActive: boolean;
19507
- isSelected: boolean;
19508
- isIndeterminate: boolean;
19509
- select: (value: boolean) => void;
19510
- } & {
19221
+ prepend?: ((arg: ListItemSlot & {
19511
19222
  item: any;
19512
19223
  }) => vue.VNodeChild) | undefined;
19513
- append?: ((arg: {
19514
- isActive: boolean;
19515
- isSelected: boolean;
19516
- isIndeterminate: boolean;
19517
- select: (value: boolean) => void;
19518
- } & {
19224
+ append?: ((arg: ListItemSlot & {
19519
19225
  item: any;
19520
19226
  }) => vue.VNodeChild) | undefined;
19521
19227
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -19555,20 +19261,10 @@ declare const VCombobox: {
19555
19261
  title?: false | ((arg: ListItemTitleSlot & {
19556
19262
  item: any;
19557
19263
  }) => vue.VNodeChild) | undefined;
19558
- prepend?: false | ((arg: {
19559
- isActive: boolean;
19560
- isSelected: boolean;
19561
- isIndeterminate: boolean;
19562
- select: (value: boolean) => void;
19563
- } & {
19264
+ prepend?: false | ((arg: ListItemSlot & {
19564
19265
  item: any;
19565
19266
  }) => vue.VNodeChild) | undefined;
19566
- append?: false | ((arg: {
19567
- isActive: boolean;
19568
- isSelected: boolean;
19569
- isIndeterminate: boolean;
19570
- select: (value: boolean) => void;
19571
- } & {
19267
+ append?: false | ((arg: ListItemSlot & {
19572
19268
  item: any;
19573
19269
  }) => vue.VNodeChild) | undefined;
19574
19270
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -19608,20 +19304,10 @@ declare const VCombobox: {
19608
19304
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
19609
19305
  item: any;
19610
19306
  }) => vue.VNodeChild) | undefined;
19611
- "v-slot:prepend"?: false | ((arg: {
19612
- isActive: boolean;
19613
- isSelected: boolean;
19614
- isIndeterminate: boolean;
19615
- select: (value: boolean) => void;
19616
- } & {
19307
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
19617
19308
  item: any;
19618
19309
  }) => vue.VNodeChild) | undefined;
19619
- "v-slot:append"?: false | ((arg: {
19620
- isActive: boolean;
19621
- isSelected: boolean;
19622
- isIndeterminate: boolean;
19623
- select: (value: boolean) => void;
19624
- } & {
19310
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
19625
19311
  item: any;
19626
19312
  }) => vue.VNodeChild) | undefined;
19627
19313
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -20110,16 +19796,6 @@ declare const VCombobox: {
20110
19796
  collapseIcon?: string | undefined;
20111
19797
  expandIcon?: string | undefined;
20112
19798
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
20113
- "onClick:open"?: ((value: {
20114
- id: unknown;
20115
- value: boolean;
20116
- path: unknown[];
20117
- }) => any) | undefined;
20118
- "onClick:select"?: ((value: {
20119
- id: unknown;
20120
- value: boolean;
20121
- path: unknown[];
20122
- }) => any) | undefined;
20123
19799
  "onClick:activate"?: ((value: {
20124
19800
  id: unknown;
20125
19801
  value: boolean;
@@ -20166,16 +19842,6 @@ declare const VCombobox: {
20166
19842
  expandIcon?: string | undefined;
20167
19843
  } & {
20168
19844
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
20169
- "onClick:open"?: ((value: {
20170
- id: unknown;
20171
- value: boolean;
20172
- path: unknown[];
20173
- }) => any) | undefined;
20174
- "onClick:select"?: ((value: {
20175
- id: unknown;
20176
- value: boolean;
20177
- path: unknown[];
20178
- }) => any) | undefined;
20179
19845
  "onClick:activate"?: ((value: {
20180
19846
  id: unknown;
20181
19847
  value: boolean;
@@ -20189,6 +19855,16 @@ declare const VCombobox: {
20189
19855
  itemProps?: SelectItemKey<any>;
20190
19856
  selected?: unknown;
20191
19857
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
19858
+ 'onClick:open'?: ((value: {
19859
+ id: unknown;
19860
+ value: boolean;
19861
+ path: unknown[];
19862
+ }) => void) | undefined;
19863
+ 'onClick:select'?: ((value: {
19864
+ id: unknown;
19865
+ value: boolean;
19866
+ path: unknown[];
19867
+ }) => void) | undefined;
20192
19868
  opened?: unknown;
20193
19869
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
20194
19870
  } & {
@@ -20196,20 +19872,10 @@ declare const VCombobox: {
20196
19872
  title?: ((arg: ListItemTitleSlot & {
20197
19873
  item: any;
20198
19874
  }) => vue.VNodeChild) | undefined;
20199
- prepend?: ((arg: {
20200
- isActive: boolean;
20201
- isSelected: boolean;
20202
- isIndeterminate: boolean;
20203
- select: (value: boolean) => void;
20204
- } & {
19875
+ prepend?: ((arg: ListItemSlot & {
20205
19876
  item: any;
20206
19877
  }) => vue.VNodeChild) | undefined;
20207
- append?: ((arg: {
20208
- isActive: boolean;
20209
- isSelected: boolean;
20210
- isIndeterminate: boolean;
20211
- select: (value: boolean) => void;
20212
- } & {
19878
+ append?: ((arg: ListItemSlot & {
20213
19879
  item: any;
20214
19880
  }) => vue.VNodeChild) | undefined;
20215
19881
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -20249,20 +19915,10 @@ declare const VCombobox: {
20249
19915
  title?: false | ((arg: ListItemTitleSlot & {
20250
19916
  item: any;
20251
19917
  }) => vue.VNodeChild) | undefined;
20252
- prepend?: false | ((arg: {
20253
- isActive: boolean;
20254
- isSelected: boolean;
20255
- isIndeterminate: boolean;
20256
- select: (value: boolean) => void;
20257
- } & {
19918
+ prepend?: false | ((arg: ListItemSlot & {
20258
19919
  item: any;
20259
19920
  }) => vue.VNodeChild) | undefined;
20260
- append?: false | ((arg: {
20261
- isActive: boolean;
20262
- isSelected: boolean;
20263
- isIndeterminate: boolean;
20264
- select: (value: boolean) => void;
20265
- } & {
19921
+ append?: false | ((arg: ListItemSlot & {
20266
19922
  item: any;
20267
19923
  }) => vue.VNodeChild) | undefined;
20268
19924
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -20302,20 +19958,10 @@ declare const VCombobox: {
20302
19958
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
20303
19959
  item: any;
20304
19960
  }) => vue.VNodeChild) | undefined;
20305
- "v-slot:prepend"?: false | ((arg: {
20306
- isActive: boolean;
20307
- isSelected: boolean;
20308
- isIndeterminate: boolean;
20309
- select: (value: boolean) => void;
20310
- } & {
19961
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
20311
19962
  item: any;
20312
19963
  }) => vue.VNodeChild) | undefined;
20313
- "v-slot:append"?: false | ((arg: {
20314
- isActive: boolean;
20315
- isSelected: boolean;
20316
- isIndeterminate: boolean;
20317
- select: (value: boolean) => void;
20318
- } & {
19964
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
20319
19965
  item: any;
20320
19966
  }) => vue.VNodeChild) | undefined;
20321
19967
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -20739,16 +20385,6 @@ declare const VCombobox: {
20739
20385
  collapseIcon?: string | undefined;
20740
20386
  expandIcon?: string | undefined;
20741
20387
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
20742
- "onClick:open"?: ((value: {
20743
- id: unknown;
20744
- value: boolean;
20745
- path: unknown[];
20746
- }) => any) | undefined;
20747
- "onClick:select"?: ((value: {
20748
- id: unknown;
20749
- value: boolean;
20750
- path: unknown[];
20751
- }) => any) | undefined;
20752
20388
  "onClick:activate"?: ((value: {
20753
20389
  id: unknown;
20754
20390
  value: boolean;
@@ -20795,16 +20431,6 @@ declare const VCombobox: {
20795
20431
  expandIcon?: string | undefined;
20796
20432
  } & {
20797
20433
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
20798
- "onClick:open"?: ((value: {
20799
- id: unknown;
20800
- value: boolean;
20801
- path: unknown[];
20802
- }) => any) | undefined;
20803
- "onClick:select"?: ((value: {
20804
- id: unknown;
20805
- value: boolean;
20806
- path: unknown[];
20807
- }) => any) | undefined;
20808
20434
  "onClick:activate"?: ((value: {
20809
20435
  id: unknown;
20810
20436
  value: boolean;
@@ -20818,6 +20444,16 @@ declare const VCombobox: {
20818
20444
  itemProps?: SelectItemKey<any>;
20819
20445
  selected?: unknown;
20820
20446
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
20447
+ 'onClick:open'?: ((value: {
20448
+ id: unknown;
20449
+ value: boolean;
20450
+ path: unknown[];
20451
+ }) => void) | undefined;
20452
+ 'onClick:select'?: ((value: {
20453
+ id: unknown;
20454
+ value: boolean;
20455
+ path: unknown[];
20456
+ }) => void) | undefined;
20821
20457
  opened?: unknown;
20822
20458
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
20823
20459
  } & {
@@ -20825,20 +20461,10 @@ declare const VCombobox: {
20825
20461
  title?: ((arg: ListItemTitleSlot & {
20826
20462
  item: any;
20827
20463
  }) => vue.VNodeChild) | undefined;
20828
- prepend?: ((arg: {
20829
- isActive: boolean;
20830
- isSelected: boolean;
20831
- isIndeterminate: boolean;
20832
- select: (value: boolean) => void;
20833
- } & {
20464
+ prepend?: ((arg: ListItemSlot & {
20834
20465
  item: any;
20835
20466
  }) => vue.VNodeChild) | undefined;
20836
- append?: ((arg: {
20837
- isActive: boolean;
20838
- isSelected: boolean;
20839
- isIndeterminate: boolean;
20840
- select: (value: boolean) => void;
20841
- } & {
20467
+ append?: ((arg: ListItemSlot & {
20842
20468
  item: any;
20843
20469
  }) => vue.VNodeChild) | undefined;
20844
20470
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -20878,20 +20504,10 @@ declare const VCombobox: {
20878
20504
  title?: false | ((arg: ListItemTitleSlot & {
20879
20505
  item: any;
20880
20506
  }) => vue.VNodeChild) | undefined;
20881
- prepend?: false | ((arg: {
20882
- isActive: boolean;
20883
- isSelected: boolean;
20884
- isIndeterminate: boolean;
20885
- select: (value: boolean) => void;
20886
- } & {
20507
+ prepend?: false | ((arg: ListItemSlot & {
20887
20508
  item: any;
20888
20509
  }) => vue.VNodeChild) | undefined;
20889
- append?: false | ((arg: {
20890
- isActive: boolean;
20891
- isSelected: boolean;
20892
- isIndeterminate: boolean;
20893
- select: (value: boolean) => void;
20894
- } & {
20510
+ append?: false | ((arg: ListItemSlot & {
20895
20511
  item: any;
20896
20512
  }) => vue.VNodeChild) | undefined;
20897
20513
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -20931,20 +20547,10 @@ declare const VCombobox: {
20931
20547
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
20932
20548
  item: any;
20933
20549
  }) => vue.VNodeChild) | undefined;
20934
- "v-slot:prepend"?: false | ((arg: {
20935
- isActive: boolean;
20936
- isSelected: boolean;
20937
- isIndeterminate: boolean;
20938
- select: (value: boolean) => void;
20939
- } & {
20550
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
20940
20551
  item: any;
20941
20552
  }) => vue.VNodeChild) | undefined;
20942
- "v-slot:append"?: false | ((arg: {
20943
- isActive: boolean;
20944
- isSelected: boolean;
20945
- isIndeterminate: boolean;
20946
- select: (value: boolean) => void;
20947
- } & {
20553
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
20948
20554
  item: any;
20949
20555
  }) => vue.VNodeChild) | undefined;
20950
20556
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -21575,16 +21181,6 @@ declare const VCombobox: {
21575
21181
  collapseIcon?: string | undefined;
21576
21182
  expandIcon?: string | undefined;
21577
21183
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
21578
- "onClick:open"?: ((value: {
21579
- id: unknown;
21580
- value: boolean;
21581
- path: unknown[];
21582
- }) => any) | undefined;
21583
- "onClick:select"?: ((value: {
21584
- id: unknown;
21585
- value: boolean;
21586
- path: unknown[];
21587
- }) => any) | undefined;
21588
21184
  "onClick:activate"?: ((value: {
21589
21185
  id: unknown;
21590
21186
  value: boolean;
@@ -21631,16 +21227,6 @@ declare const VCombobox: {
21631
21227
  expandIcon?: string | undefined;
21632
21228
  } & {
21633
21229
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
21634
- "onClick:open"?: ((value: {
21635
- id: unknown;
21636
- value: boolean;
21637
- path: unknown[];
21638
- }) => any) | undefined;
21639
- "onClick:select"?: ((value: {
21640
- id: unknown;
21641
- value: boolean;
21642
- path: unknown[];
21643
- }) => any) | undefined;
21644
21230
  "onClick:activate"?: ((value: {
21645
21231
  id: unknown;
21646
21232
  value: boolean;
@@ -21654,6 +21240,16 @@ declare const VCombobox: {
21654
21240
  itemProps?: SelectItemKey<any>;
21655
21241
  selected?: unknown;
21656
21242
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
21243
+ 'onClick:open'?: ((value: {
21244
+ id: unknown;
21245
+ value: boolean;
21246
+ path: unknown[];
21247
+ }) => void) | undefined;
21248
+ 'onClick:select'?: ((value: {
21249
+ id: unknown;
21250
+ value: boolean;
21251
+ path: unknown[];
21252
+ }) => void) | undefined;
21657
21253
  opened?: unknown;
21658
21254
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
21659
21255
  } & {
@@ -21661,20 +21257,10 @@ declare const VCombobox: {
21661
21257
  title?: ((arg: ListItemTitleSlot & {
21662
21258
  item: any;
21663
21259
  }) => vue.VNodeChild) | undefined;
21664
- prepend?: ((arg: {
21665
- isActive: boolean;
21666
- isSelected: boolean;
21667
- isIndeterminate: boolean;
21668
- select: (value: boolean) => void;
21669
- } & {
21260
+ prepend?: ((arg: ListItemSlot & {
21670
21261
  item: any;
21671
21262
  }) => vue.VNodeChild) | undefined;
21672
- append?: ((arg: {
21673
- isActive: boolean;
21674
- isSelected: boolean;
21675
- isIndeterminate: boolean;
21676
- select: (value: boolean) => void;
21677
- } & {
21263
+ append?: ((arg: ListItemSlot & {
21678
21264
  item: any;
21679
21265
  }) => vue.VNodeChild) | undefined;
21680
21266
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -21714,20 +21300,10 @@ declare const VCombobox: {
21714
21300
  title?: false | ((arg: ListItemTitleSlot & {
21715
21301
  item: any;
21716
21302
  }) => vue.VNodeChild) | undefined;
21717
- prepend?: false | ((arg: {
21718
- isActive: boolean;
21719
- isSelected: boolean;
21720
- isIndeterminate: boolean;
21721
- select: (value: boolean) => void;
21722
- } & {
21303
+ prepend?: false | ((arg: ListItemSlot & {
21723
21304
  item: any;
21724
21305
  }) => vue.VNodeChild) | undefined;
21725
- append?: false | ((arg: {
21726
- isActive: boolean;
21727
- isSelected: boolean;
21728
- isIndeterminate: boolean;
21729
- select: (value: boolean) => void;
21730
- } & {
21306
+ append?: false | ((arg: ListItemSlot & {
21731
21307
  item: any;
21732
21308
  }) => vue.VNodeChild) | undefined;
21733
21309
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -21767,20 +21343,10 @@ declare const VCombobox: {
21767
21343
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
21768
21344
  item: any;
21769
21345
  }) => vue.VNodeChild) | undefined;
21770
- "v-slot:prepend"?: false | ((arg: {
21771
- isActive: boolean;
21772
- isSelected: boolean;
21773
- isIndeterminate: boolean;
21774
- select: (value: boolean) => void;
21775
- } & {
21346
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
21776
21347
  item: any;
21777
21348
  }) => vue.VNodeChild) | undefined;
21778
- "v-slot:append"?: false | ((arg: {
21779
- isActive: boolean;
21780
- isSelected: boolean;
21781
- isIndeterminate: boolean;
21782
- select: (value: boolean) => void;
21783
- } & {
21349
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
21784
21350
  item: any;
21785
21351
  }) => vue.VNodeChild) | undefined;
21786
21352
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -22268,16 +21834,6 @@ declare const VCombobox: {
22268
21834
  collapseIcon?: string | undefined;
22269
21835
  expandIcon?: string | undefined;
22270
21836
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
22271
- "onClick:open"?: ((value: {
22272
- id: unknown;
22273
- value: boolean;
22274
- path: unknown[];
22275
- }) => any) | undefined;
22276
- "onClick:select"?: ((value: {
22277
- id: unknown;
22278
- value: boolean;
22279
- path: unknown[];
22280
- }) => any) | undefined;
22281
21837
  "onClick:activate"?: ((value: {
22282
21838
  id: unknown;
22283
21839
  value: boolean;
@@ -22324,16 +21880,6 @@ declare const VCombobox: {
22324
21880
  expandIcon?: string | undefined;
22325
21881
  } & {
22326
21882
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
22327
- "onClick:open"?: ((value: {
22328
- id: unknown;
22329
- value: boolean;
22330
- path: unknown[];
22331
- }) => any) | undefined;
22332
- "onClick:select"?: ((value: {
22333
- id: unknown;
22334
- value: boolean;
22335
- path: unknown[];
22336
- }) => any) | undefined;
22337
21883
  "onClick:activate"?: ((value: {
22338
21884
  id: unknown;
22339
21885
  value: boolean;
@@ -22347,6 +21893,16 @@ declare const VCombobox: {
22347
21893
  itemProps?: SelectItemKey<any>;
22348
21894
  selected?: unknown;
22349
21895
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
21896
+ 'onClick:open'?: ((value: {
21897
+ id: unknown;
21898
+ value: boolean;
21899
+ path: unknown[];
21900
+ }) => void) | undefined;
21901
+ 'onClick:select'?: ((value: {
21902
+ id: unknown;
21903
+ value: boolean;
21904
+ path: unknown[];
21905
+ }) => void) | undefined;
22350
21906
  opened?: unknown;
22351
21907
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
22352
21908
  } & {
@@ -22354,20 +21910,10 @@ declare const VCombobox: {
22354
21910
  title?: ((arg: ListItemTitleSlot & {
22355
21911
  item: any;
22356
21912
  }) => vue.VNodeChild) | undefined;
22357
- prepend?: ((arg: {
22358
- isActive: boolean;
22359
- isSelected: boolean;
22360
- isIndeterminate: boolean;
22361
- select: (value: boolean) => void;
22362
- } & {
21913
+ prepend?: ((arg: ListItemSlot & {
22363
21914
  item: any;
22364
21915
  }) => vue.VNodeChild) | undefined;
22365
- append?: ((arg: {
22366
- isActive: boolean;
22367
- isSelected: boolean;
22368
- isIndeterminate: boolean;
22369
- select: (value: boolean) => void;
22370
- } & {
21916
+ append?: ((arg: ListItemSlot & {
22371
21917
  item: any;
22372
21918
  }) => vue.VNodeChild) | undefined;
22373
21919
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -22407,20 +21953,10 @@ declare const VCombobox: {
22407
21953
  title?: false | ((arg: ListItemTitleSlot & {
22408
21954
  item: any;
22409
21955
  }) => vue.VNodeChild) | undefined;
22410
- prepend?: false | ((arg: {
22411
- isActive: boolean;
22412
- isSelected: boolean;
22413
- isIndeterminate: boolean;
22414
- select: (value: boolean) => void;
22415
- } & {
21956
+ prepend?: false | ((arg: ListItemSlot & {
22416
21957
  item: any;
22417
21958
  }) => vue.VNodeChild) | undefined;
22418
- append?: false | ((arg: {
22419
- isActive: boolean;
22420
- isSelected: boolean;
22421
- isIndeterminate: boolean;
22422
- select: (value: boolean) => void;
22423
- } & {
21959
+ append?: false | ((arg: ListItemSlot & {
22424
21960
  item: any;
22425
21961
  }) => vue.VNodeChild) | undefined;
22426
21962
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -22460,20 +21996,10 @@ declare const VCombobox: {
22460
21996
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
22461
21997
  item: any;
22462
21998
  }) => vue.VNodeChild) | undefined;
22463
- "v-slot:prepend"?: false | ((arg: {
22464
- isActive: boolean;
22465
- isSelected: boolean;
22466
- isIndeterminate: boolean;
22467
- select: (value: boolean) => void;
22468
- } & {
21999
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
22469
22000
  item: any;
22470
22001
  }) => vue.VNodeChild) | undefined;
22471
- "v-slot:append"?: false | ((arg: {
22472
- isActive: boolean;
22473
- isSelected: boolean;
22474
- isIndeterminate: boolean;
22475
- select: (value: boolean) => void;
22476
- } & {
22002
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
22477
22003
  item: any;
22478
22004
  }) => vue.VNodeChild) | undefined;
22479
22005
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -40007,16 +39533,6 @@ declare const VList: {
40007
39533
  expandIcon?: string | undefined;
40008
39534
  } & {
40009
39535
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
40010
- "onClick:open"?: ((value: {
40011
- id: unknown;
40012
- value: boolean;
40013
- path: unknown[];
40014
- }) => any) | undefined;
40015
- "onClick:select"?: ((value: {
40016
- id: unknown;
40017
- value: boolean;
40018
- path: unknown[];
40019
- }) => any) | undefined;
40020
39536
  "onClick:activate"?: ((value: {
40021
39537
  id: unknown;
40022
39538
  value: boolean;
@@ -40047,7 +39563,7 @@ declare const VList: {
40047
39563
  value: boolean;
40048
39564
  path: unknown[];
40049
39565
  }) => boolean;
40050
- }, "v-slot:default" | "$children" | "v-slots" | "items" | "v-slot:title" | "v-slot:prepend" | "v-slot:append" | "selected" | "opened" | "v-slot:subtitle" | "v-slot:header" | "v-slot:divider" | "v-slot:item" | "v-slot:subheader" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "update:selected" | "update:opened">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
39566
+ }, "v-slot:default" | "$children" | "v-slots" | "items" | "v-slot:title" | "v-slot:prepend" | "v-slot:append" | "selected" | "opened" | "click:open" | "click:select" | "v-slot:subtitle" | "v-slot:header" | "v-slot:divider" | "v-slot:item" | "v-slot:subheader" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "update:selected" | "update:opened">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
40051
39567
  style: vue.StyleValue;
40052
39568
  nav: boolean;
40053
39569
  disabled: boolean;
@@ -40088,16 +39604,6 @@ declare const VList: {
40088
39604
  expandIcon?: string | undefined;
40089
39605
  } & {
40090
39606
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
40091
- "onClick:open"?: ((value: {
40092
- id: unknown;
40093
- value: boolean;
40094
- path: unknown[];
40095
- }) => any) | undefined;
40096
- "onClick:select"?: ((value: {
40097
- id: unknown;
40098
- value: boolean;
40099
- path: unknown[];
40100
- }) => any) | undefined;
40101
39607
  "onClick:activate"?: ((value: {
40102
39608
  id: unknown;
40103
39609
  value: boolean;
@@ -40128,22 +39634,12 @@ declare const VList: {
40128
39634
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
40129
39635
  [key: string]: any;
40130
39636
  }>[];
40131
- prepend: (arg: {
40132
- isActive: boolean;
40133
- isSelected: boolean;
40134
- isIndeterminate: boolean;
40135
- select: (value: boolean) => void;
40136
- } & {
39637
+ prepend: (arg: ListItemSlot & {
40137
39638
  item: any;
40138
39639
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
40139
39640
  [key: string]: any;
40140
39641
  }>[];
40141
- append: (arg: {
40142
- isActive: boolean;
40143
- isSelected: boolean;
40144
- isIndeterminate: boolean;
40145
- select: (value: boolean) => void;
40146
- } & {
39642
+ append: (arg: ListItemSlot & {
40147
39643
  item: any;
40148
39644
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
40149
39645
  [key: string]: any;
@@ -40240,16 +39736,6 @@ declare const VList: {
40240
39736
  expandIcon?: string | undefined;
40241
39737
  } & {
40242
39738
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
40243
- "onClick:open"?: ((value: {
40244
- id: unknown;
40245
- value: boolean;
40246
- path: unknown[];
40247
- }) => any) | undefined;
40248
- "onClick:select"?: ((value: {
40249
- id: unknown;
40250
- value: boolean;
40251
- path: unknown[];
40252
- }) => any) | undefined;
40253
39739
  "onClick:activate"?: ((value: {
40254
39740
  id: unknown;
40255
39741
  value: boolean;
@@ -40325,16 +39811,6 @@ declare const VList: {
40325
39811
  expandIcon?: string | undefined;
40326
39812
  } & {
40327
39813
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
40328
- "onClick:open"?: ((value: {
40329
- id: unknown;
40330
- value: boolean;
40331
- path: unknown[];
40332
- }) => any) | undefined;
40333
- "onClick:select"?: ((value: {
40334
- id: unknown;
40335
- value: boolean;
40336
- path: unknown[];
40337
- }) => any) | undefined;
40338
39814
  "onClick:activate"?: ((value: {
40339
39815
  id: unknown;
40340
39816
  value: boolean;
@@ -40365,7 +39841,7 @@ declare const VList: {
40365
39841
  value: boolean;
40366
39842
  path: unknown[];
40367
39843
  }) => boolean;
40368
- }, "v-slot:default" | "$children" | "v-slots" | "items" | "v-slot:title" | "v-slot:prepend" | "v-slot:append" | "selected" | "opened" | "v-slot:subtitle" | "v-slot:header" | "v-slot:divider" | "v-slot:item" | "v-slot:subheader" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "update:selected" | "update:opened">, string, {
39844
+ }, "v-slot:default" | "$children" | "v-slots" | "items" | "v-slot:title" | "v-slot:prepend" | "v-slot:append" | "selected" | "opened" | "click:open" | "click:select" | "v-slot:subtitle" | "v-slot:header" | "v-slot:divider" | "v-slot:item" | "v-slot:subheader" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "update:selected" | "update:opened">, string, {
40369
39845
  style: vue.StyleValue;
40370
39846
  nav: boolean;
40371
39847
  disabled: boolean;
@@ -40390,22 +39866,12 @@ declare const VList: {
40390
39866
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
40391
39867
  [key: string]: any;
40392
39868
  }>[];
40393
- prepend: (arg: {
40394
- isActive: boolean;
40395
- isSelected: boolean;
40396
- isIndeterminate: boolean;
40397
- select: (value: boolean) => void;
40398
- } & {
39869
+ prepend: (arg: ListItemSlot & {
40399
39870
  item: any;
40400
39871
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
40401
39872
  [key: string]: any;
40402
39873
  }>[];
40403
- append: (arg: {
40404
- isActive: boolean;
40405
- isSelected: boolean;
40406
- isIndeterminate: boolean;
40407
- select: (value: boolean) => void;
40408
- } & {
39874
+ append: (arg: ListItemSlot & {
40409
39875
  item: any;
40410
39876
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
40411
39877
  [key: string]: any;
@@ -40462,6 +39928,16 @@ declare const VList: {
40462
39928
  itemProps?: SelectItemKey<ItemType$1<T>>;
40463
39929
  selected?: S | undefined;
40464
39930
  'onUpdate:selected'?: ((value: S) => void) | undefined;
39931
+ 'onClick:open'?: ((value: {
39932
+ id: unknown;
39933
+ value: boolean;
39934
+ path: unknown[];
39935
+ }) => void) | undefined;
39936
+ 'onClick:select'?: ((value: {
39937
+ id: unknown;
39938
+ value: boolean;
39939
+ path: unknown[];
39940
+ }) => void) | undefined;
40465
39941
  opened?: O | undefined;
40466
39942
  'onUpdate:opened'?: ((value: O) => void) | undefined;
40467
39943
  }, slots: VListChildrenSlots<ItemType$1<T>>) => GenericProps<{
@@ -40472,6 +39948,16 @@ declare const VList: {
40472
39948
  itemProps?: SelectItemKey<ItemType$1<T>>;
40473
39949
  selected?: S | undefined;
40474
39950
  'onUpdate:selected'?: ((value: S) => void) | undefined;
39951
+ 'onClick:open'?: ((value: {
39952
+ id: unknown;
39953
+ value: boolean;
39954
+ path: unknown[];
39955
+ }) => void) | undefined;
39956
+ 'onClick:select'?: ((value: {
39957
+ id: unknown;
39958
+ value: boolean;
39959
+ path: unknown[];
39960
+ }) => void) | undefined;
40475
39961
  opened?: O | undefined;
40476
39962
  'onUpdate:opened'?: ((value: O) => void) | undefined;
40477
39963
  }, VListChildrenSlots<ItemType$1<T>>>) & FilterPropsOptions<{
@@ -40572,6 +40058,16 @@ declare const VList: {
40572
40058
  };
40573
40059
  slim: BooleanConstructor;
40574
40060
  nav: BooleanConstructor;
40061
+ 'onClick:open': PropType<(args_0: {
40062
+ id: unknown;
40063
+ value: boolean;
40064
+ path: unknown[];
40065
+ }) => void>;
40066
+ 'onClick:select': PropType<(args_0: {
40067
+ id: unknown;
40068
+ value: boolean;
40069
+ path: unknown[];
40070
+ }) => void>;
40575
40071
  }, vue.ExtractPropTypes<{
40576
40072
  color: StringConstructor;
40577
40073
  variant: Omit<{
@@ -40670,6 +40166,16 @@ declare const VList: {
40670
40166
  };
40671
40167
  slim: BooleanConstructor;
40672
40168
  nav: BooleanConstructor;
40169
+ 'onClick:open': PropType<(args_0: {
40170
+ id: unknown;
40171
+ value: boolean;
40172
+ path: unknown[];
40173
+ }) => void>;
40174
+ 'onClick:select': PropType<(args_0: {
40175
+ id: unknown;
40176
+ value: boolean;
40177
+ path: unknown[];
40178
+ }) => void>;
40673
40179
  }>>;
40674
40180
  type VList = InstanceType<typeof VList>;
40675
40181
 
@@ -49454,16 +48960,6 @@ declare const VSelect: {
49454
48960
  collapseIcon?: string | undefined;
49455
48961
  expandIcon?: string | undefined;
49456
48962
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
49457
- "onClick:open"?: ((value: {
49458
- id: unknown;
49459
- value: boolean;
49460
- path: unknown[];
49461
- }) => any) | undefined;
49462
- "onClick:select"?: ((value: {
49463
- id: unknown;
49464
- value: boolean;
49465
- path: unknown[];
49466
- }) => any) | undefined;
49467
48963
  "onClick:activate"?: ((value: {
49468
48964
  id: unknown;
49469
48965
  value: boolean;
@@ -49510,16 +49006,6 @@ declare const VSelect: {
49510
49006
  expandIcon?: string | undefined;
49511
49007
  } & {
49512
49008
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
49513
- "onClick:open"?: ((value: {
49514
- id: unknown;
49515
- value: boolean;
49516
- path: unknown[];
49517
- }) => any) | undefined;
49518
- "onClick:select"?: ((value: {
49519
- id: unknown;
49520
- value: boolean;
49521
- path: unknown[];
49522
- }) => any) | undefined;
49523
49009
  "onClick:activate"?: ((value: {
49524
49010
  id: unknown;
49525
49011
  value: boolean;
@@ -49533,6 +49019,16 @@ declare const VSelect: {
49533
49019
  itemProps?: SelectItemKey<any>;
49534
49020
  selected?: unknown;
49535
49021
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
49022
+ 'onClick:open'?: ((value: {
49023
+ id: unknown;
49024
+ value: boolean;
49025
+ path: unknown[];
49026
+ }) => void) | undefined;
49027
+ 'onClick:select'?: ((value: {
49028
+ id: unknown;
49029
+ value: boolean;
49030
+ path: unknown[];
49031
+ }) => void) | undefined;
49536
49032
  opened?: unknown;
49537
49033
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
49538
49034
  } & {
@@ -49540,20 +49036,10 @@ declare const VSelect: {
49540
49036
  title?: ((arg: ListItemTitleSlot & {
49541
49037
  item: any;
49542
49038
  }) => vue.VNodeChild) | undefined;
49543
- prepend?: ((arg: {
49544
- isActive: boolean;
49545
- isSelected: boolean;
49546
- isIndeterminate: boolean;
49547
- select: (value: boolean) => void;
49548
- } & {
49039
+ prepend?: ((arg: ListItemSlot & {
49549
49040
  item: any;
49550
49041
  }) => vue.VNodeChild) | undefined;
49551
- append?: ((arg: {
49552
- isActive: boolean;
49553
- isSelected: boolean;
49554
- isIndeterminate: boolean;
49555
- select: (value: boolean) => void;
49556
- } & {
49042
+ append?: ((arg: ListItemSlot & {
49557
49043
  item: any;
49558
49044
  }) => vue.VNodeChild) | undefined;
49559
49045
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -49593,20 +49079,10 @@ declare const VSelect: {
49593
49079
  title?: false | ((arg: ListItemTitleSlot & {
49594
49080
  item: any;
49595
49081
  }) => vue.VNodeChild) | undefined;
49596
- prepend?: false | ((arg: {
49597
- isActive: boolean;
49598
- isSelected: boolean;
49599
- isIndeterminate: boolean;
49600
- select: (value: boolean) => void;
49601
- } & {
49082
+ prepend?: false | ((arg: ListItemSlot & {
49602
49083
  item: any;
49603
49084
  }) => vue.VNodeChild) | undefined;
49604
- append?: false | ((arg: {
49605
- isActive: boolean;
49606
- isSelected: boolean;
49607
- isIndeterminate: boolean;
49608
- select: (value: boolean) => void;
49609
- } & {
49085
+ append?: false | ((arg: ListItemSlot & {
49610
49086
  item: any;
49611
49087
  }) => vue.VNodeChild) | undefined;
49612
49088
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -49646,20 +49122,10 @@ declare const VSelect: {
49646
49122
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
49647
49123
  item: any;
49648
49124
  }) => vue.VNodeChild) | undefined;
49649
- "v-slot:prepend"?: false | ((arg: {
49650
- isActive: boolean;
49651
- isSelected: boolean;
49652
- isIndeterminate: boolean;
49653
- select: (value: boolean) => void;
49654
- } & {
49125
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
49655
49126
  item: any;
49656
49127
  }) => vue.VNodeChild) | undefined;
49657
- "v-slot:append"?: false | ((arg: {
49658
- isActive: boolean;
49659
- isSelected: boolean;
49660
- isIndeterminate: boolean;
49661
- select: (value: boolean) => void;
49662
- } & {
49128
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
49663
49129
  item: any;
49664
49130
  }) => vue.VNodeChild) | undefined;
49665
49131
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -50026,16 +49492,6 @@ declare const VSelect: {
50026
49492
  collapseIcon?: string | undefined;
50027
49493
  expandIcon?: string | undefined;
50028
49494
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
50029
- "onClick:open"?: ((value: {
50030
- id: unknown;
50031
- value: boolean;
50032
- path: unknown[];
50033
- }) => any) | undefined;
50034
- "onClick:select"?: ((value: {
50035
- id: unknown;
50036
- value: boolean;
50037
- path: unknown[];
50038
- }) => any) | undefined;
50039
49495
  "onClick:activate"?: ((value: {
50040
49496
  id: unknown;
50041
49497
  value: boolean;
@@ -50082,16 +49538,6 @@ declare const VSelect: {
50082
49538
  expandIcon?: string | undefined;
50083
49539
  } & {
50084
49540
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
50085
- "onClick:open"?: ((value: {
50086
- id: unknown;
50087
- value: boolean;
50088
- path: unknown[];
50089
- }) => any) | undefined;
50090
- "onClick:select"?: ((value: {
50091
- id: unknown;
50092
- value: boolean;
50093
- path: unknown[];
50094
- }) => any) | undefined;
50095
49541
  "onClick:activate"?: ((value: {
50096
49542
  id: unknown;
50097
49543
  value: boolean;
@@ -50105,6 +49551,16 @@ declare const VSelect: {
50105
49551
  itemProps?: SelectItemKey<any>;
50106
49552
  selected?: unknown;
50107
49553
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
49554
+ 'onClick:open'?: ((value: {
49555
+ id: unknown;
49556
+ value: boolean;
49557
+ path: unknown[];
49558
+ }) => void) | undefined;
49559
+ 'onClick:select'?: ((value: {
49560
+ id: unknown;
49561
+ value: boolean;
49562
+ path: unknown[];
49563
+ }) => void) | undefined;
50108
49564
  opened?: unknown;
50109
49565
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
50110
49566
  } & {
@@ -50112,20 +49568,10 @@ declare const VSelect: {
50112
49568
  title?: ((arg: ListItemTitleSlot & {
50113
49569
  item: any;
50114
49570
  }) => vue.VNodeChild) | undefined;
50115
- prepend?: ((arg: {
50116
- isActive: boolean;
50117
- isSelected: boolean;
50118
- isIndeterminate: boolean;
50119
- select: (value: boolean) => void;
50120
- } & {
49571
+ prepend?: ((arg: ListItemSlot & {
50121
49572
  item: any;
50122
49573
  }) => vue.VNodeChild) | undefined;
50123
- append?: ((arg: {
50124
- isActive: boolean;
50125
- isSelected: boolean;
50126
- isIndeterminate: boolean;
50127
- select: (value: boolean) => void;
50128
- } & {
49574
+ append?: ((arg: ListItemSlot & {
50129
49575
  item: any;
50130
49576
  }) => vue.VNodeChild) | undefined;
50131
49577
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -50165,20 +49611,10 @@ declare const VSelect: {
50165
49611
  title?: false | ((arg: ListItemTitleSlot & {
50166
49612
  item: any;
50167
49613
  }) => vue.VNodeChild) | undefined;
50168
- prepend?: false | ((arg: {
50169
- isActive: boolean;
50170
- isSelected: boolean;
50171
- isIndeterminate: boolean;
50172
- select: (value: boolean) => void;
50173
- } & {
49614
+ prepend?: false | ((arg: ListItemSlot & {
50174
49615
  item: any;
50175
49616
  }) => vue.VNodeChild) | undefined;
50176
- append?: false | ((arg: {
50177
- isActive: boolean;
50178
- isSelected: boolean;
50179
- isIndeterminate: boolean;
50180
- select: (value: boolean) => void;
50181
- } & {
49617
+ append?: false | ((arg: ListItemSlot & {
50182
49618
  item: any;
50183
49619
  }) => vue.VNodeChild) | undefined;
50184
49620
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -50218,20 +49654,10 @@ declare const VSelect: {
50218
49654
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
50219
49655
  item: any;
50220
49656
  }) => vue.VNodeChild) | undefined;
50221
- "v-slot:prepend"?: false | ((arg: {
50222
- isActive: boolean;
50223
- isSelected: boolean;
50224
- isIndeterminate: boolean;
50225
- select: (value: boolean) => void;
50226
- } & {
49657
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
50227
49658
  item: any;
50228
49659
  }) => vue.VNodeChild) | undefined;
50229
- "v-slot:append"?: false | ((arg: {
50230
- isActive: boolean;
50231
- isSelected: boolean;
50232
- isIndeterminate: boolean;
50233
- select: (value: boolean) => void;
50234
- } & {
49660
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
50235
49661
  item: any;
50236
49662
  }) => vue.VNodeChild) | undefined;
50237
49663
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -50711,16 +50137,6 @@ declare const VSelect: {
50711
50137
  collapseIcon?: string | undefined;
50712
50138
  expandIcon?: string | undefined;
50713
50139
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
50714
- "onClick:open"?: ((value: {
50715
- id: unknown;
50716
- value: boolean;
50717
- path: unknown[];
50718
- }) => any) | undefined;
50719
- "onClick:select"?: ((value: {
50720
- id: unknown;
50721
- value: boolean;
50722
- path: unknown[];
50723
- }) => any) | undefined;
50724
50140
  "onClick:activate"?: ((value: {
50725
50141
  id: unknown;
50726
50142
  value: boolean;
@@ -50767,16 +50183,6 @@ declare const VSelect: {
50767
50183
  expandIcon?: string | undefined;
50768
50184
  } & {
50769
50185
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
50770
- "onClick:open"?: ((value: {
50771
- id: unknown;
50772
- value: boolean;
50773
- path: unknown[];
50774
- }) => any) | undefined;
50775
- "onClick:select"?: ((value: {
50776
- id: unknown;
50777
- value: boolean;
50778
- path: unknown[];
50779
- }) => any) | undefined;
50780
50186
  "onClick:activate"?: ((value: {
50781
50187
  id: unknown;
50782
50188
  value: boolean;
@@ -50790,6 +50196,16 @@ declare const VSelect: {
50790
50196
  itemProps?: SelectItemKey<any>;
50791
50197
  selected?: unknown;
50792
50198
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
50199
+ 'onClick:open'?: ((value: {
50200
+ id: unknown;
50201
+ value: boolean;
50202
+ path: unknown[];
50203
+ }) => void) | undefined;
50204
+ 'onClick:select'?: ((value: {
50205
+ id: unknown;
50206
+ value: boolean;
50207
+ path: unknown[];
50208
+ }) => void) | undefined;
50793
50209
  opened?: unknown;
50794
50210
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
50795
50211
  } & {
@@ -50797,20 +50213,10 @@ declare const VSelect: {
50797
50213
  title?: ((arg: ListItemTitleSlot & {
50798
50214
  item: any;
50799
50215
  }) => vue.VNodeChild) | undefined;
50800
- prepend?: ((arg: {
50801
- isActive: boolean;
50802
- isSelected: boolean;
50803
- isIndeterminate: boolean;
50804
- select: (value: boolean) => void;
50805
- } & {
50216
+ prepend?: ((arg: ListItemSlot & {
50806
50217
  item: any;
50807
50218
  }) => vue.VNodeChild) | undefined;
50808
- append?: ((arg: {
50809
- isActive: boolean;
50810
- isSelected: boolean;
50811
- isIndeterminate: boolean;
50812
- select: (value: boolean) => void;
50813
- } & {
50219
+ append?: ((arg: ListItemSlot & {
50814
50220
  item: any;
50815
50221
  }) => vue.VNodeChild) | undefined;
50816
50222
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -50850,20 +50256,10 @@ declare const VSelect: {
50850
50256
  title?: false | ((arg: ListItemTitleSlot & {
50851
50257
  item: any;
50852
50258
  }) => vue.VNodeChild) | undefined;
50853
- prepend?: false | ((arg: {
50854
- isActive: boolean;
50855
- isSelected: boolean;
50856
- isIndeterminate: boolean;
50857
- select: (value: boolean) => void;
50858
- } & {
50259
+ prepend?: false | ((arg: ListItemSlot & {
50859
50260
  item: any;
50860
50261
  }) => vue.VNodeChild) | undefined;
50861
- append?: false | ((arg: {
50862
- isActive: boolean;
50863
- isSelected: boolean;
50864
- isIndeterminate: boolean;
50865
- select: (value: boolean) => void;
50866
- } & {
50262
+ append?: false | ((arg: ListItemSlot & {
50867
50263
  item: any;
50868
50264
  }) => vue.VNodeChild) | undefined;
50869
50265
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -50903,20 +50299,10 @@ declare const VSelect: {
50903
50299
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
50904
50300
  item: any;
50905
50301
  }) => vue.VNodeChild) | undefined;
50906
- "v-slot:prepend"?: false | ((arg: {
50907
- isActive: boolean;
50908
- isSelected: boolean;
50909
- isIndeterminate: boolean;
50910
- select: (value: boolean) => void;
50911
- } & {
50302
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
50912
50303
  item: any;
50913
50304
  }) => vue.VNodeChild) | undefined;
50914
- "v-slot:append"?: false | ((arg: {
50915
- isActive: boolean;
50916
- isSelected: boolean;
50917
- isIndeterminate: boolean;
50918
- select: (value: boolean) => void;
50919
- } & {
50305
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
50920
50306
  item: any;
50921
50307
  }) => vue.VNodeChild) | undefined;
50922
50308
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -51331,16 +50717,6 @@ declare const VSelect: {
51331
50717
  collapseIcon?: string | undefined;
51332
50718
  expandIcon?: string | undefined;
51333
50719
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
51334
- "onClick:open"?: ((value: {
51335
- id: unknown;
51336
- value: boolean;
51337
- path: unknown[];
51338
- }) => any) | undefined;
51339
- "onClick:select"?: ((value: {
51340
- id: unknown;
51341
- value: boolean;
51342
- path: unknown[];
51343
- }) => any) | undefined;
51344
50720
  "onClick:activate"?: ((value: {
51345
50721
  id: unknown;
51346
50722
  value: boolean;
@@ -51387,16 +50763,6 @@ declare const VSelect: {
51387
50763
  expandIcon?: string | undefined;
51388
50764
  } & {
51389
50765
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
51390
- "onClick:open"?: ((value: {
51391
- id: unknown;
51392
- value: boolean;
51393
- path: unknown[];
51394
- }) => any) | undefined;
51395
- "onClick:select"?: ((value: {
51396
- id: unknown;
51397
- value: boolean;
51398
- path: unknown[];
51399
- }) => any) | undefined;
51400
50766
  "onClick:activate"?: ((value: {
51401
50767
  id: unknown;
51402
50768
  value: boolean;
@@ -51410,6 +50776,16 @@ declare const VSelect: {
51410
50776
  itemProps?: SelectItemKey<any>;
51411
50777
  selected?: unknown;
51412
50778
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
50779
+ 'onClick:open'?: ((value: {
50780
+ id: unknown;
50781
+ value: boolean;
50782
+ path: unknown[];
50783
+ }) => void) | undefined;
50784
+ 'onClick:select'?: ((value: {
50785
+ id: unknown;
50786
+ value: boolean;
50787
+ path: unknown[];
50788
+ }) => void) | undefined;
51413
50789
  opened?: unknown;
51414
50790
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
51415
50791
  } & {
@@ -51417,20 +50793,10 @@ declare const VSelect: {
51417
50793
  title?: ((arg: ListItemTitleSlot & {
51418
50794
  item: any;
51419
50795
  }) => vue.VNodeChild) | undefined;
51420
- prepend?: ((arg: {
51421
- isActive: boolean;
51422
- isSelected: boolean;
51423
- isIndeterminate: boolean;
51424
- select: (value: boolean) => void;
51425
- } & {
50796
+ prepend?: ((arg: ListItemSlot & {
51426
50797
  item: any;
51427
50798
  }) => vue.VNodeChild) | undefined;
51428
- append?: ((arg: {
51429
- isActive: boolean;
51430
- isSelected: boolean;
51431
- isIndeterminate: boolean;
51432
- select: (value: boolean) => void;
51433
- } & {
50799
+ append?: ((arg: ListItemSlot & {
51434
50800
  item: any;
51435
50801
  }) => vue.VNodeChild) | undefined;
51436
50802
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -51470,20 +50836,10 @@ declare const VSelect: {
51470
50836
  title?: false | ((arg: ListItemTitleSlot & {
51471
50837
  item: any;
51472
50838
  }) => vue.VNodeChild) | undefined;
51473
- prepend?: false | ((arg: {
51474
- isActive: boolean;
51475
- isSelected: boolean;
51476
- isIndeterminate: boolean;
51477
- select: (value: boolean) => void;
51478
- } & {
50839
+ prepend?: false | ((arg: ListItemSlot & {
51479
50840
  item: any;
51480
50841
  }) => vue.VNodeChild) | undefined;
51481
- append?: false | ((arg: {
51482
- isActive: boolean;
51483
- isSelected: boolean;
51484
- isIndeterminate: boolean;
51485
- select: (value: boolean) => void;
51486
- } & {
50842
+ append?: false | ((arg: ListItemSlot & {
51487
50843
  item: any;
51488
50844
  }) => vue.VNodeChild) | undefined;
51489
50845
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -51523,20 +50879,10 @@ declare const VSelect: {
51523
50879
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
51524
50880
  item: any;
51525
50881
  }) => vue.VNodeChild) | undefined;
51526
- "v-slot:prepend"?: false | ((arg: {
51527
- isActive: boolean;
51528
- isSelected: boolean;
51529
- isIndeterminate: boolean;
51530
- select: (value: boolean) => void;
51531
- } & {
50882
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
51532
50883
  item: any;
51533
50884
  }) => vue.VNodeChild) | undefined;
51534
- "v-slot:append"?: false | ((arg: {
51535
- isActive: boolean;
51536
- isSelected: boolean;
51537
- isIndeterminate: boolean;
51538
- select: (value: boolean) => void;
51539
- } & {
50885
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
51540
50886
  item: any;
51541
50887
  }) => vue.VNodeChild) | undefined;
51542
50888
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -52160,16 +51506,6 @@ declare const VSelect: {
52160
51506
  collapseIcon?: string | undefined;
52161
51507
  expandIcon?: string | undefined;
52162
51508
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
52163
- "onClick:open"?: ((value: {
52164
- id: unknown;
52165
- value: boolean;
52166
- path: unknown[];
52167
- }) => any) | undefined;
52168
- "onClick:select"?: ((value: {
52169
- id: unknown;
52170
- value: boolean;
52171
- path: unknown[];
52172
- }) => any) | undefined;
52173
51509
  "onClick:activate"?: ((value: {
52174
51510
  id: unknown;
52175
51511
  value: boolean;
@@ -52216,16 +51552,6 @@ declare const VSelect: {
52216
51552
  expandIcon?: string | undefined;
52217
51553
  } & {
52218
51554
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
52219
- "onClick:open"?: ((value: {
52220
- id: unknown;
52221
- value: boolean;
52222
- path: unknown[];
52223
- }) => any) | undefined;
52224
- "onClick:select"?: ((value: {
52225
- id: unknown;
52226
- value: boolean;
52227
- path: unknown[];
52228
- }) => any) | undefined;
52229
51555
  "onClick:activate"?: ((value: {
52230
51556
  id: unknown;
52231
51557
  value: boolean;
@@ -52239,6 +51565,16 @@ declare const VSelect: {
52239
51565
  itemProps?: SelectItemKey<any>;
52240
51566
  selected?: unknown;
52241
51567
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
51568
+ 'onClick:open'?: ((value: {
51569
+ id: unknown;
51570
+ value: boolean;
51571
+ path: unknown[];
51572
+ }) => void) | undefined;
51573
+ 'onClick:select'?: ((value: {
51574
+ id: unknown;
51575
+ value: boolean;
51576
+ path: unknown[];
51577
+ }) => void) | undefined;
52242
51578
  opened?: unknown;
52243
51579
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
52244
51580
  } & {
@@ -52246,20 +51582,10 @@ declare const VSelect: {
52246
51582
  title?: ((arg: ListItemTitleSlot & {
52247
51583
  item: any;
52248
51584
  }) => vue.VNodeChild) | undefined;
52249
- prepend?: ((arg: {
52250
- isActive: boolean;
52251
- isSelected: boolean;
52252
- isIndeterminate: boolean;
52253
- select: (value: boolean) => void;
52254
- } & {
51585
+ prepend?: ((arg: ListItemSlot & {
52255
51586
  item: any;
52256
51587
  }) => vue.VNodeChild) | undefined;
52257
- append?: ((arg: {
52258
- isActive: boolean;
52259
- isSelected: boolean;
52260
- isIndeterminate: boolean;
52261
- select: (value: boolean) => void;
52262
- } & {
51588
+ append?: ((arg: ListItemSlot & {
52263
51589
  item: any;
52264
51590
  }) => vue.VNodeChild) | undefined;
52265
51591
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -52299,20 +51625,10 @@ declare const VSelect: {
52299
51625
  title?: false | ((arg: ListItemTitleSlot & {
52300
51626
  item: any;
52301
51627
  }) => vue.VNodeChild) | undefined;
52302
- prepend?: false | ((arg: {
52303
- isActive: boolean;
52304
- isSelected: boolean;
52305
- isIndeterminate: boolean;
52306
- select: (value: boolean) => void;
52307
- } & {
51628
+ prepend?: false | ((arg: ListItemSlot & {
52308
51629
  item: any;
52309
51630
  }) => vue.VNodeChild) | undefined;
52310
- append?: false | ((arg: {
52311
- isActive: boolean;
52312
- isSelected: boolean;
52313
- isIndeterminate: boolean;
52314
- select: (value: boolean) => void;
52315
- } & {
51631
+ append?: false | ((arg: ListItemSlot & {
52316
51632
  item: any;
52317
51633
  }) => vue.VNodeChild) | undefined;
52318
51634
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -52352,20 +51668,10 @@ declare const VSelect: {
52352
51668
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
52353
51669
  item: any;
52354
51670
  }) => vue.VNodeChild) | undefined;
52355
- "v-slot:prepend"?: false | ((arg: {
52356
- isActive: boolean;
52357
- isSelected: boolean;
52358
- isIndeterminate: boolean;
52359
- select: (value: boolean) => void;
52360
- } & {
51671
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
52361
51672
  item: any;
52362
51673
  }) => vue.VNodeChild) | undefined;
52363
- "v-slot:append"?: false | ((arg: {
52364
- isActive: boolean;
52365
- isSelected: boolean;
52366
- isIndeterminate: boolean;
52367
- select: (value: boolean) => void;
52368
- } & {
51674
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
52369
51675
  item: any;
52370
51676
  }) => vue.VNodeChild) | undefined;
52371
51677
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -52832,16 +52138,6 @@ declare const VSelect: {
52832
52138
  collapseIcon?: string | undefined;
52833
52139
  expandIcon?: string | undefined;
52834
52140
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
52835
- "onClick:open"?: ((value: {
52836
- id: unknown;
52837
- value: boolean;
52838
- path: unknown[];
52839
- }) => any) | undefined;
52840
- "onClick:select"?: ((value: {
52841
- id: unknown;
52842
- value: boolean;
52843
- path: unknown[];
52844
- }) => any) | undefined;
52845
52141
  "onClick:activate"?: ((value: {
52846
52142
  id: unknown;
52847
52143
  value: boolean;
@@ -52888,16 +52184,6 @@ declare const VSelect: {
52888
52184
  expandIcon?: string | undefined;
52889
52185
  } & {
52890
52186
  "onUpdate:activated"?: ((value: unknown) => any) | undefined;
52891
- "onClick:open"?: ((value: {
52892
- id: unknown;
52893
- value: boolean;
52894
- path: unknown[];
52895
- }) => any) | undefined;
52896
- "onClick:select"?: ((value: {
52897
- id: unknown;
52898
- value: boolean;
52899
- path: unknown[];
52900
- }) => any) | undefined;
52901
52187
  "onClick:activate"?: ((value: {
52902
52188
  id: unknown;
52903
52189
  value: boolean;
@@ -52911,6 +52197,16 @@ declare const VSelect: {
52911
52197
  itemProps?: SelectItemKey<any>;
52912
52198
  selected?: unknown;
52913
52199
  'onUpdate:selected'?: ((value: unknown) => void) | undefined;
52200
+ 'onClick:open'?: ((value: {
52201
+ id: unknown;
52202
+ value: boolean;
52203
+ path: unknown[];
52204
+ }) => void) | undefined;
52205
+ 'onClick:select'?: ((value: {
52206
+ id: unknown;
52207
+ value: boolean;
52208
+ path: unknown[];
52209
+ }) => void) | undefined;
52914
52210
  opened?: unknown;
52915
52211
  'onUpdate:opened'?: ((value: unknown) => void) | undefined;
52916
52212
  } & {
@@ -52918,20 +52214,10 @@ declare const VSelect: {
52918
52214
  title?: ((arg: ListItemTitleSlot & {
52919
52215
  item: any;
52920
52216
  }) => vue.VNodeChild) | undefined;
52921
- prepend?: ((arg: {
52922
- isActive: boolean;
52923
- isSelected: boolean;
52924
- isIndeterminate: boolean;
52925
- select: (value: boolean) => void;
52926
- } & {
52217
+ prepend?: ((arg: ListItemSlot & {
52927
52218
  item: any;
52928
52219
  }) => vue.VNodeChild) | undefined;
52929
- append?: ((arg: {
52930
- isActive: boolean;
52931
- isSelected: boolean;
52932
- isIndeterminate: boolean;
52933
- select: (value: boolean) => void;
52934
- } & {
52220
+ append?: ((arg: ListItemSlot & {
52935
52221
  item: any;
52936
52222
  }) => vue.VNodeChild) | undefined;
52937
52223
  subtitle?: ((arg: ListItemSubtitleSlot & {
@@ -52971,20 +52257,10 @@ declare const VSelect: {
52971
52257
  title?: false | ((arg: ListItemTitleSlot & {
52972
52258
  item: any;
52973
52259
  }) => vue.VNodeChild) | undefined;
52974
- prepend?: false | ((arg: {
52975
- isActive: boolean;
52976
- isSelected: boolean;
52977
- isIndeterminate: boolean;
52978
- select: (value: boolean) => void;
52979
- } & {
52260
+ prepend?: false | ((arg: ListItemSlot & {
52980
52261
  item: any;
52981
52262
  }) => vue.VNodeChild) | undefined;
52982
- append?: false | ((arg: {
52983
- isActive: boolean;
52984
- isSelected: boolean;
52985
- isIndeterminate: boolean;
52986
- select: (value: boolean) => void;
52987
- } & {
52263
+ append?: false | ((arg: ListItemSlot & {
52988
52264
  item: any;
52989
52265
  }) => vue.VNodeChild) | undefined;
52990
52266
  subtitle?: false | ((arg: ListItemSubtitleSlot & {
@@ -53024,20 +52300,10 @@ declare const VSelect: {
53024
52300
  "v-slot:title"?: false | ((arg: ListItemTitleSlot & {
53025
52301
  item: any;
53026
52302
  }) => vue.VNodeChild) | undefined;
53027
- "v-slot:prepend"?: false | ((arg: {
53028
- isActive: boolean;
53029
- isSelected: boolean;
53030
- isIndeterminate: boolean;
53031
- select: (value: boolean) => void;
53032
- } & {
52303
+ "v-slot:prepend"?: false | ((arg: ListItemSlot & {
53033
52304
  item: any;
53034
52305
  }) => vue.VNodeChild) | undefined;
53035
- "v-slot:append"?: false | ((arg: {
53036
- isActive: boolean;
53037
- isSelected: boolean;
53038
- isIndeterminate: boolean;
53039
- select: (value: boolean) => void;
53040
- } & {
52306
+ "v-slot:append"?: false | ((arg: ListItemSlot & {
53041
52307
  item: any;
53042
52308
  }) => vue.VNodeChild) | undefined;
53043
52309
  "v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot & {
@@ -58534,7 +57800,7 @@ declare const VStepper: {
58534
57800
  style: vue.StyleValue;
58535
57801
  disabled: boolean;
58536
57802
  tag: string;
58537
- mobile: boolean;
57803
+ mobile: boolean | null;
58538
57804
  items: readonly StepperItem[];
58539
57805
  mandatory: NonNullable<boolean | "force">;
58540
57806
  multiple: boolean;
@@ -58554,6 +57820,7 @@ declare const VStepper: {
58554
57820
  height?: string | number | undefined;
58555
57821
  theme?: string | undefined;
58556
57822
  color?: string | undefined;
57823
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
58557
57824
  border?: string | number | boolean | undefined;
58558
57825
  position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
58559
57826
  modelValue?: any;
@@ -58566,6 +57833,9 @@ declare const VStepper: {
58566
57833
  location?: Anchor | undefined;
58567
57834
  max?: number | undefined;
58568
57835
  bgColor?: string | undefined;
57836
+ completeIcon?: string | undefined;
57837
+ editIcon?: string | undefined;
57838
+ errorIcon?: string | undefined;
58569
57839
  } & {
58570
57840
  $children?: vue.VNodeChild | {
58571
57841
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -58620,7 +57890,7 @@ declare const VStepper: {
58620
57890
  style: vue.StyleValue;
58621
57891
  disabled: boolean;
58622
57892
  tag: string;
58623
- mobile: boolean;
57893
+ mobile: boolean | null;
58624
57894
  items: readonly StepperItem[];
58625
57895
  mandatory: NonNullable<boolean | "force">;
58626
57896
  multiple: boolean;
@@ -58640,6 +57910,7 @@ declare const VStepper: {
58640
57910
  height?: string | number | undefined;
58641
57911
  theme?: string | undefined;
58642
57912
  color?: string | undefined;
57913
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
58643
57914
  border?: string | number | boolean | undefined;
58644
57915
  position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
58645
57916
  modelValue?: any;
@@ -58652,6 +57923,9 @@ declare const VStepper: {
58652
57923
  location?: Anchor | undefined;
58653
57924
  max?: number | undefined;
58654
57925
  bgColor?: string | undefined;
57926
+ completeIcon?: string | undefined;
57927
+ editIcon?: string | undefined;
57928
+ errorIcon?: string | undefined;
58655
57929
  } & {
58656
57930
  $children?: vue.VNodeChild | {
58657
57931
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -58701,7 +57975,7 @@ declare const VStepper: {
58701
57975
  style: vue.StyleValue;
58702
57976
  disabled: boolean;
58703
57977
  tag: string;
58704
- mobile: boolean;
57978
+ mobile: boolean | null;
58705
57979
  modelValue: any;
58706
57980
  rounded: string | number | boolean;
58707
57981
  items: readonly StepperItem[];
@@ -58766,7 +58040,7 @@ declare const VStepper: {
58766
58040
  style: vue.StyleValue;
58767
58041
  disabled: boolean;
58768
58042
  tag: string;
58769
- mobile: boolean;
58043
+ mobile: boolean | null;
58770
58044
  items: readonly StepperItem[];
58771
58045
  mandatory: NonNullable<boolean | "force">;
58772
58046
  multiple: boolean;
@@ -58786,6 +58060,7 @@ declare const VStepper: {
58786
58060
  height?: string | number | undefined;
58787
58061
  theme?: string | undefined;
58788
58062
  color?: string | undefined;
58063
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
58789
58064
  border?: string | number | boolean | undefined;
58790
58065
  position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
58791
58066
  modelValue?: any;
@@ -58798,6 +58073,9 @@ declare const VStepper: {
58798
58073
  location?: Anchor | undefined;
58799
58074
  max?: number | undefined;
58800
58075
  bgColor?: string | undefined;
58076
+ completeIcon?: string | undefined;
58077
+ editIcon?: string | undefined;
58078
+ errorIcon?: string | undefined;
58801
58079
  } & {
58802
58080
  $children?: vue.VNodeChild | {
58803
58081
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -58850,7 +58128,7 @@ declare const VStepper: {
58850
58128
  style: vue.StyleValue;
58851
58129
  disabled: boolean;
58852
58130
  tag: string;
58853
- mobile: boolean;
58131
+ mobile: boolean | null;
58854
58132
  modelValue: any;
58855
58133
  rounded: string | number | boolean;
58856
58134
  items: readonly StepperItem[];
@@ -58875,7 +58153,7 @@ declare const VStepper: {
58875
58153
  style: vue.StyleValue;
58876
58154
  disabled: boolean;
58877
58155
  tag: string;
58878
- mobile: boolean;
58156
+ mobile: boolean | null;
58879
58157
  items: readonly StepperItem[];
58880
58158
  mandatory: NonNullable<boolean | "force">;
58881
58159
  multiple: boolean;
@@ -58895,6 +58173,7 @@ declare const VStepper: {
58895
58173
  height?: string | number | undefined;
58896
58174
  theme?: string | undefined;
58897
58175
  color?: string | undefined;
58176
+ mobileBreakpoint?: number | DisplayBreakpoint | undefined;
58898
58177
  border?: string | number | boolean | undefined;
58899
58178
  position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
58900
58179
  modelValue?: any;
@@ -58907,6 +58186,9 @@ declare const VStepper: {
58907
58186
  location?: Anchor | undefined;
58908
58187
  max?: number | undefined;
58909
58188
  bgColor?: string | undefined;
58189
+ completeIcon?: string | undefined;
58190
+ editIcon?: string | undefined;
58191
+ errorIcon?: string | undefined;
58910
58192
  } & {
58911
58193
  $children?: vue.VNodeChild | {
58912
58194
  [x: `header-item.${string}`]: ((arg: StepperItemSlot) => vue.VNodeChild) | undefined;
@@ -58961,7 +58243,7 @@ declare const VStepper: {
58961
58243
  style: vue.StyleValue;
58962
58244
  disabled: boolean;
58963
58245
  tag: string;
58964
- mobile: boolean;
58246
+ mobile: boolean | null;
58965
58247
  modelValue: any;
58966
58248
  rounded: string | number | boolean;
58967
58249
  items: readonly StepperItem[];
@@ -59070,9 +58352,17 @@ declare const VStepper: {
59070
58352
  default: string;
59071
58353
  };
59072
58354
  disabled: BooleanConstructor;
58355
+ mobile: {
58356
+ type: PropType<boolean | null>;
58357
+ default: boolean;
58358
+ };
58359
+ mobileBreakpoint: PropType<number | DisplayBreakpoint>;
59073
58360
  altLabels: BooleanConstructor;
59074
58361
  bgColor: StringConstructor;
58362
+ completeIcon: StringConstructor;
58363
+ editIcon: StringConstructor;
59075
58364
  editable: BooleanConstructor;
58365
+ errorIcon: StringConstructor;
59076
58366
  hideActions: BooleanConstructor;
59077
58367
  items: {
59078
58368
  type: PropType<readonly StepperItem[]>;
@@ -59086,7 +58376,6 @@ declare const VStepper: {
59086
58376
  type: StringConstructor;
59087
58377
  default: string;
59088
58378
  };
59089
- mobile: BooleanConstructor;
59090
58379
  nonLinear: BooleanConstructor;
59091
58380
  flat: BooleanConstructor;
59092
58381
  }, vue.ExtractPropTypes<{
@@ -59145,9 +58434,17 @@ declare const VStepper: {
59145
58434
  default: string;
59146
58435
  };
59147
58436
  disabled: BooleanConstructor;
58437
+ mobile: {
58438
+ type: PropType<boolean | null>;
58439
+ default: boolean;
58440
+ };
58441
+ mobileBreakpoint: PropType<number | DisplayBreakpoint>;
59148
58442
  altLabels: BooleanConstructor;
59149
58443
  bgColor: StringConstructor;
58444
+ completeIcon: StringConstructor;
58445
+ editIcon: StringConstructor;
59150
58446
  editable: BooleanConstructor;
58447
+ errorIcon: StringConstructor;
59151
58448
  hideActions: BooleanConstructor;
59152
58449
  items: {
59153
58450
  type: PropType<readonly StepperItem[]>;
@@ -59161,7 +58458,6 @@ declare const VStepper: {
59161
58458
  type: StringConstructor;
59162
58459
  default: string;
59163
58460
  };
59164
- mobile: BooleanConstructor;
59165
58461
  nonLinear: BooleanConstructor;
59166
58462
  flat: BooleanConstructor;
59167
58463
  }>>;
@@ -73559,42 +72855,42 @@ declare module '@vue/runtime-core' {
73559
72855
  }
73560
72856
 
73561
72857
  export interface GlobalComponents {
73562
- VAlert: typeof import('vuetify/components')['VAlert']
73563
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
72858
+ VApp: typeof import('vuetify/components')['VApp']
73564
72859
  VAppBar: typeof import('vuetify/components')['VAppBar']
73565
72860
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
73566
72861
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
73567
- VApp: typeof import('vuetify/components')['VApp']
73568
- VBadge: typeof import('vuetify/components')['VBadge']
73569
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
72862
+ VAlert: typeof import('vuetify/components')['VAlert']
72863
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
73570
72864
  VAvatar: typeof import('vuetify/components')['VAvatar']
72865
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
72866
+ VBadge: typeof import('vuetify/components')['VBadge']
72867
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
72868
+ VBtn: typeof import('vuetify/components')['VBtn']
73571
72869
  VBanner: typeof import('vuetify/components')['VBanner']
73572
72870
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
73573
72871
  VBannerText: typeof import('vuetify/components')['VBannerText']
73574
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
73575
72872
  VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
73576
72873
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
73577
- VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
73578
- VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
73579
- VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
73580
- VBtn: typeof import('vuetify/components')['VBtn']
73581
72874
  VCard: typeof import('vuetify/components')['VCard']
73582
72875
  VCardActions: typeof import('vuetify/components')['VCardActions']
73583
72876
  VCardItem: typeof import('vuetify/components')['VCardItem']
73584
72877
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
73585
72878
  VCardText: typeof import('vuetify/components')['VCardText']
73586
72879
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
72880
+ VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
72881
+ VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
72882
+ VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
73587
72883
  VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
73588
72884
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
73589
72885
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
72886
+ VChip: typeof import('vuetify/components')['VChip']
72887
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
72888
+ VCombobox: typeof import('vuetify/components')['VCombobox']
73590
72889
  VCarousel: typeof import('vuetify/components')['VCarousel']
73591
72890
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
73592
- VChip: typeof import('vuetify/components')['VChip']
73593
72891
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
73594
- VCombobox: typeof import('vuetify/components')['VCombobox']
73595
- VCode: typeof import('vuetify/components')['VCode']
73596
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
73597
72892
  VCounter: typeof import('vuetify/components')['VCounter']
72893
+ VCode: typeof import('vuetify/components')['VCode']
73598
72894
  VDataTable: typeof import('vuetify/components')['VDataTable']
73599
72895
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
73600
72896
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -73602,6 +72898,7 @@ declare module '@vue/runtime-core' {
73602
72898
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
73603
72899
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
73604
72900
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
72901
+ VDialog: typeof import('vuetify/components')['VDialog']
73605
72902
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
73606
72903
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
73607
72904
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
@@ -73609,28 +72906,29 @@ declare module '@vue/runtime-core' {
73609
72906
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
73610
72907
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
73611
72908
  VDivider: typeof import('vuetify/components')['VDivider']
73612
- VDialog: typeof import('vuetify/components')['VDialog']
73613
- VFooter: typeof import('vuetify/components')['VFooter']
73614
- VEmptyState: typeof import('vuetify/components')['VEmptyState']
73615
72909
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
73616
72910
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
73617
72911
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
73618
72912
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
73619
- VFileInput: typeof import('vuetify/components')['VFileInput']
72913
+ VEmptyState: typeof import('vuetify/components')['VEmptyState']
72914
+ VFab: typeof import('vuetify/components')['VFab']
73620
72915
  VField: typeof import('vuetify/components')['VField']
73621
72916
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
73622
- VFab: typeof import('vuetify/components')['VFab']
72917
+ VFileInput: typeof import('vuetify/components')['VFileInput']
72918
+ VFooter: typeof import('vuetify/components')['VFooter']
73623
72919
  VImg: typeof import('vuetify/components')['VImg']
73624
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
72920
+ VKbd: typeof import('vuetify/components')['VKbd']
73625
72921
  VIcon: typeof import('vuetify/components')['VIcon']
73626
72922
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
73627
72923
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
73628
72924
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
73629
72925
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
72926
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
73630
72927
  VInput: typeof import('vuetify/components')['VInput']
73631
72928
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
73632
72929
  VItem: typeof import('vuetify/components')['VItem']
73633
72930
  VLabel: typeof import('vuetify/components')['VLabel']
72931
+ VMain: typeof import('vuetify/components')['VMain']
73634
72932
  VList: typeof import('vuetify/components')['VList']
73635
72933
  VListGroup: typeof import('vuetify/components')['VListGroup']
73636
72934
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -73640,44 +72938,42 @@ declare module '@vue/runtime-core' {
73640
72938
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
73641
72939
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
73642
72940
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
73643
- VKbd: typeof import('vuetify/components')['VKbd']
73644
- VMessages: typeof import('vuetify/components')['VMessages']
73645
- VMain: typeof import('vuetify/components')['VMain']
72941
+ VMenu: typeof import('vuetify/components')['VMenu']
73646
72942
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
72943
+ VMessages: typeof import('vuetify/components')['VMessages']
73647
72944
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
73648
- VOverlay: typeof import('vuetify/components')['VOverlay']
73649
- VMenu: typeof import('vuetify/components')['VMenu']
73650
- VPagination: typeof import('vuetify/components')['VPagination']
73651
72945
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
73652
72946
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
72947
+ VPagination: typeof import('vuetify/components')['VPagination']
72948
+ VOverlay: typeof import('vuetify/components')['VOverlay']
73653
72949
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
73654
72950
  VRating: typeof import('vuetify/components')['VRating']
73655
72951
  VSelect: typeof import('vuetify/components')['VSelect']
73656
72952
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
73657
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
73658
72953
  VSheet: typeof import('vuetify/components')['VSheet']
73659
- VSlider: typeof import('vuetify/components')['VSlider']
72954
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
73660
72955
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
72956
+ VSlider: typeof import('vuetify/components')['VSlider']
72957
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
73661
72958
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
73662
72959
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
73663
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
73664
72960
  VSwitch: typeof import('vuetify/components')['VSwitch']
73665
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
73666
72961
  VStepper: typeof import('vuetify/components')['VStepper']
73667
72962
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
73668
72963
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
73669
72964
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
73670
72965
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
73671
72966
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
72967
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
72968
+ VTextField: typeof import('vuetify/components')['VTextField']
73672
72969
  VTab: typeof import('vuetify/components')['VTab']
73673
72970
  VTabs: typeof import('vuetify/components')['VTabs']
73674
72971
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
73675
72972
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
73676
- VTable: typeof import('vuetify/components')['VTable']
73677
- VTextarea: typeof import('vuetify/components')['VTextarea']
73678
72973
  VTimeline: typeof import('vuetify/components')['VTimeline']
73679
72974
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
73680
- VTextField: typeof import('vuetify/components')['VTextField']
72975
+ VTable: typeof import('vuetify/components')['VTable']
72976
+ VTextarea: typeof import('vuetify/components')['VTextarea']
73681
72977
  VTooltip: typeof import('vuetify/components')['VTooltip']
73682
72978
  VWindow: typeof import('vuetify/components')['VWindow']
73683
72979
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
@@ -73688,11 +72984,11 @@ declare module '@vue/runtime-core' {
73688
72984
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
73689
72985
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
73690
72986
  VForm: typeof import('vuetify/components')['VForm']
73691
- VHover: typeof import('vuetify/components')['VHover']
73692
72987
  VContainer: typeof import('vuetify/components')['VContainer']
73693
72988
  VCol: typeof import('vuetify/components')['VCol']
73694
72989
  VRow: typeof import('vuetify/components')['VRow']
73695
72990
  VSpacer: typeof import('vuetify/components')['VSpacer']
72991
+ VHover: typeof import('vuetify/components')['VHover']
73696
72992
  VLayout: typeof import('vuetify/components')['VLayout']
73697
72993
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
73698
72994
  VLazy: typeof import('vuetify/components')['VLazy']
@@ -73700,13 +72996,13 @@ declare module '@vue/runtime-core' {
73700
72996
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
73701
72997
  VParallax: typeof import('vuetify/components')['VParallax']
73702
72998
  VRadio: typeof import('vuetify/components')['VRadio']
73703
- VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
73704
72999
  VResponsive: typeof import('vuetify/components')['VResponsive']
73705
- VSparkline: typeof import('vuetify/components')['VSparkline']
73000
+ VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
73706
73001
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
73002
+ VSparkline: typeof import('vuetify/components')['VSparkline']
73003
+ VValidation: typeof import('vuetify/components')['VValidation']
73707
73004
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
73708
73005
  VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
73709
- VValidation: typeof import('vuetify/components')['VValidation']
73710
73006
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
73711
73007
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
73712
73008
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -73723,26 +73019,26 @@ declare module '@vue/runtime-core' {
73723
73019
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
73724
73020
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
73725
73021
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
73022
+ VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
73726
73023
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
73727
73024
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
73728
73025
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
73729
73026
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
73730
73027
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
73731
73028
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
73029
+ VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
73030
+ VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
73031
+ VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
73032
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
73033
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
73732
73034
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
73733
73035
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
73734
73036
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
73735
- VPicker: typeof import('vuetify/labs/components')['VPicker']
73736
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
73737
73037
  VTreeview: typeof import('vuetify/labs/components')['VTreeview']
73738
73038
  VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
73739
73039
  VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
73740
- VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
73741
- VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
73742
- VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
73743
- VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
73744
73040
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
73745
- VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
73746
73041
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
73042
+ VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
73747
73043
  }
73748
73044
  }