@vuetify/nightly 3.9.0-beta.1-dev.2025-07-05 → 3.9.0-master.2025-07-08

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 (77) hide show
  1. package/CHANGELOG.md +3 -117
  2. package/dist/json/attributes.json +3556 -3520
  3. package/dist/json/importMap-labs.json +32 -32
  4. package/dist/json/importMap.json +140 -140
  5. package/dist/json/tags.json +9 -0
  6. package/dist/json/web-types.json +6422 -6333
  7. package/dist/vuetify-labs.cjs +124 -32
  8. package/dist/vuetify-labs.css +5401 -5344
  9. package/dist/vuetify-labs.d.ts +271 -176
  10. package/dist/vuetify-labs.esm.js +124 -32
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +124 -32
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +123 -31
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +4117 -4060
  17. package/dist/vuetify.d.ts +271 -176
  18. package/dist/vuetify.esm.js +123 -31
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +123 -31
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +1083 -1079
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.d.ts +39 -14
  26. package/lib/components/VAutocomplete/VAutocomplete.js +2 -2
  27. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  28. package/lib/components/VCombobox/VCombobox.d.ts +39 -14
  29. package/lib/components/VCombobox/VCombobox.js +2 -2
  30. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  31. package/lib/components/VDataIterator/composables/items.d.ts +2 -1
  32. package/lib/components/VDataIterator/composables/items.js.map +1 -1
  33. package/lib/components/VDataTable/types.d.ts +1 -1
  34. package/lib/components/VDataTable/types.js.map +1 -1
  35. package/lib/components/VDatePicker/VDatePicker.js +2 -1
  36. package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
  37. package/lib/components/VList/VList.d.ts +24 -27
  38. package/lib/components/VList/VList.js +0 -4
  39. package/lib/components/VList/VList.js.map +1 -1
  40. package/lib/components/VSelect/VSelect.d.ts +58 -22
  41. package/lib/components/VSelect/VSelect.js +2 -2
  42. package/lib/components/VSelect/VSelect.js.map +1 -1
  43. package/lib/components/VTreeview/VTreeview.d.ts +229 -167
  44. package/lib/components/VTreeview/VTreeview.js +7 -3
  45. package/lib/components/VTreeview/VTreeview.js.map +1 -1
  46. package/lib/components/VTreeview/VTreeviewChildren.d.ts +81 -10
  47. package/lib/components/VTreeview/VTreeviewChildren.js +50 -11
  48. package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
  49. package/lib/components/VTreeview/VTreeviewItem.css +57 -0
  50. package/lib/components/VTreeview/VTreeviewItem.d.ts +119 -94
  51. package/lib/components/VTreeview/VTreeviewItem.js +13 -3
  52. package/lib/components/VTreeview/VTreeviewItem.js.map +1 -1
  53. package/lib/components/VTreeview/VTreeviewItem.sass +60 -0
  54. package/lib/components/VTreeview/_variables.scss +15 -0
  55. package/lib/composables/filter.d.ts +1 -0
  56. package/lib/composables/filter.js +1 -1
  57. package/lib/composables/filter.js.map +1 -1
  58. package/lib/composables/list-items.d.ts +14 -1
  59. package/lib/composables/list-items.js +9 -3
  60. package/lib/composables/list-items.js.map +1 -1
  61. package/lib/entry-bundler.js +1 -1
  62. package/lib/entry-bundler.js.map +1 -1
  63. package/lib/framework.d.ts +56 -55
  64. package/lib/framework.js +1 -1
  65. package/lib/framework.js.map +1 -1
  66. package/lib/labs/VCalendar/VCalendar.js +1 -1
  67. package/lib/labs/VCalendar/VCalendar.js.map +1 -1
  68. package/lib/util/helpers.d.ts +3 -0
  69. package/lib/util/helpers.js +4 -0
  70. package/lib/util/helpers.js.map +1 -1
  71. package/lib/util/indentLines.d.ts +17 -0
  72. package/lib/util/indentLines.js +34 -0
  73. package/lib/util/indentLines.js.map +1 -0
  74. package/lib/util/index.d.ts +1 -0
  75. package/lib/util/index.js +1 -0
  76. package/lib/util/index.js.map +1 -1
  77. package/package.json +1 -1
@@ -260,6 +260,9 @@ type TemplateRef = {
260
260
  readonly el: HTMLElement | undefined;
261
261
  };
262
262
 
263
+ type IndentLinesVariant = 'default' | 'simple';
264
+ type IndentLineType = 'leaf' | 'last-leaf' | 'line' | 'leaf-link' | 'none';
265
+
263
266
  type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
264
267
  declare const IconValue: PropType<IconValue>;
265
268
  interface IconAliases {
@@ -726,6 +729,7 @@ type FilterMode = 'some' | 'every' | 'union' | 'intersection';
726
729
  interface InternalItem<T = any> {
727
730
  value: any;
728
731
  raw: T;
732
+ type?: string;
729
733
  }
730
734
 
731
735
  type ValidationRuleParams = [any, string?];
@@ -987,7 +991,7 @@ type InternalDataTableHeader = Omit<DataTableHeader, 'key' | 'value' | 'children
987
991
  rowspan?: number;
988
992
  children?: InternalDataTableHeader[];
989
993
  };
990
- interface DataTableItem<T = any> extends InternalItem<T>, GroupableItem<T>, SelectableItem {
994
+ interface DataTableItem<T = any> extends Omit<InternalItem<T>, 'type'>, GroupableItem<T>, SelectableItem {
991
995
  key: any;
992
996
  index: number;
993
997
  columns: {
@@ -7411,7 +7415,8 @@ interface ListItem<T = any> extends InternalItem<T> {
7411
7415
  title: string;
7412
7416
  value: any;
7413
7417
  };
7414
- children?: ListItem<T>[];
7418
+ children: ListItem<T>[] | undefined;
7419
+ type: string;
7415
7420
  }
7416
7421
  interface ItemProps {
7417
7422
  items: any[];
@@ -7419,12 +7424,12 @@ interface ItemProps {
7419
7424
  itemValue: SelectItemKey;
7420
7425
  itemChildren: SelectItemKey;
7421
7426
  itemProps: SelectItemKey;
7427
+ itemType: SelectItemKey;
7422
7428
  returnObject: boolean;
7423
7429
  valueComparator: typeof deepEqual | undefined;
7424
7430
  }
7425
7431
 
7426
7432
  interface InternalListItem<T = any> extends ListItem<T> {
7427
- type?: 'item' | 'subheader' | 'divider';
7428
7433
  }
7429
7434
  type ItemType$6<T> = T extends readonly (infer U)[] ? U : never;
7430
7435
  declare const VList: {
@@ -7445,7 +7450,7 @@ declare const VList: {
7445
7450
  activatable: boolean;
7446
7451
  selectable: boolean;
7447
7452
  openStrategy: OpenStrategyProp;
7448
- itemType: string;
7453
+ itemType: SelectItemKey;
7449
7454
  } & {
7450
7455
  height?: string | number | undefined;
7451
7456
  width?: string | number | undefined;
@@ -7519,7 +7524,7 @@ declare const VList: {
7519
7524
  activatable: boolean;
7520
7525
  selectable: boolean;
7521
7526
  openStrategy: OpenStrategyProp;
7522
- itemType: string;
7527
+ itemType: SelectItemKey;
7523
7528
  }, true, {}, vue.SlotsType<Partial<{
7524
7529
  title: (arg: ListItemTitleSlot & {
7525
7530
  item: any;
@@ -7570,7 +7575,7 @@ declare const VList: {
7570
7575
  activatable: boolean;
7571
7576
  selectable: boolean;
7572
7577
  openStrategy: OpenStrategyProp;
7573
- itemType: string;
7578
+ itemType: SelectItemKey;
7574
7579
  } & {
7575
7580
  height?: string | number | undefined;
7576
7581
  width?: string | number | undefined;
@@ -7625,7 +7630,7 @@ declare const VList: {
7625
7630
  activatable: boolean;
7626
7631
  selectable: boolean;
7627
7632
  openStrategy: OpenStrategyProp;
7628
- itemType: string;
7633
+ itemType: SelectItemKey;
7629
7634
  }>;
7630
7635
  __isFragment?: never;
7631
7636
  __isTeleport?: never;
@@ -7647,7 +7652,7 @@ declare const VList: {
7647
7652
  activatable: boolean;
7648
7653
  selectable: boolean;
7649
7654
  openStrategy: OpenStrategyProp;
7650
- itemType: string;
7655
+ itemType: SelectItemKey;
7651
7656
  } & {
7652
7657
  height?: string | number | undefined;
7653
7658
  width?: string | number | undefined;
@@ -7721,7 +7726,7 @@ declare const VList: {
7721
7726
  activatable: boolean;
7722
7727
  selectable: boolean;
7723
7728
  openStrategy: OpenStrategyProp;
7724
- itemType: string;
7729
+ itemType: SelectItemKey;
7725
7730
  }, {}, string, vue.SlotsType<Partial<{
7726
7731
  title: (arg: ListItemTitleSlot & {
7727
7732
  item: any;
@@ -7808,12 +7813,12 @@ declare const VList: {
7808
7813
  type: PropType<SelectItemKey>;
7809
7814
  default: string;
7810
7815
  };
7811
- returnObject: BooleanConstructor;
7812
- valueComparator: PropType<typeof deepEqual>;
7813
7816
  itemType: {
7814
- type: StringConstructor;
7817
+ type: PropType<SelectItemKey>;
7815
7818
  default: string;
7816
7819
  };
7820
+ returnObject: BooleanConstructor;
7821
+ valueComparator: PropType<typeof deepEqual>;
7817
7822
  elevation: {
7818
7823
  type: (StringConstructor | NumberConstructor)[];
7819
7824
  validator(v: any): boolean;
@@ -7915,12 +7920,12 @@ declare const VList: {
7915
7920
  type: PropType<SelectItemKey>;
7916
7921
  default: string;
7917
7922
  };
7918
- returnObject: BooleanConstructor;
7919
- valueComparator: PropType<typeof deepEqual>;
7920
7923
  itemType: {
7921
- type: StringConstructor;
7924
+ type: PropType<SelectItemKey>;
7922
7925
  default: string;
7923
7926
  };
7927
+ returnObject: BooleanConstructor;
7928
+ valueComparator: PropType<typeof deepEqual>;
7924
7929
  elevation: {
7925
7930
  type: (StringConstructor | NumberConstructor)[];
7926
7931
  validator(v: any): boolean;
@@ -11182,6 +11187,7 @@ declare const VAutocomplete: {
11182
11187
  hideSpinButtons: boolean;
11183
11188
  persistentHint: boolean;
11184
11189
  itemChildren: SelectItemKey;
11190
+ itemType: SelectItemKey;
11185
11191
  clearable: boolean;
11186
11192
  persistentClear: boolean;
11187
11193
  singleLine: boolean;
@@ -11252,7 +11258,7 @@ declare const VAutocomplete: {
11252
11258
  activatable: boolean;
11253
11259
  selectable: boolean;
11254
11260
  openStrategy: OpenStrategyProp;
11255
- itemType: string;
11261
+ itemType: SelectItemKey;
11256
11262
  }> & Omit<{
11257
11263
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
11258
11264
  nav: boolean;
@@ -11270,7 +11276,7 @@ declare const VAutocomplete: {
11270
11276
  activatable: boolean;
11271
11277
  selectable: boolean;
11272
11278
  openStrategy: OpenStrategyProp;
11273
- itemType: string;
11279
+ itemType: SelectItemKey;
11274
11280
  height?: string | number | undefined;
11275
11281
  width?: string | number | undefined;
11276
11282
  border?: string | number | boolean | undefined;
@@ -13616,6 +13622,7 @@ declare const VAutocomplete: {
13616
13622
  hideSpinButtons: boolean;
13617
13623
  persistentHint: boolean;
13618
13624
  itemChildren: SelectItemKey;
13625
+ itemType: SelectItemKey;
13619
13626
  clearable: boolean;
13620
13627
  persistentClear: boolean;
13621
13628
  singleLine: boolean;
@@ -13712,6 +13719,7 @@ declare const VAutocomplete: {
13712
13719
  hideSpinButtons: boolean;
13713
13720
  persistentHint: boolean;
13714
13721
  itemChildren: SelectItemKey;
13722
+ itemType: SelectItemKey;
13715
13723
  clearable: boolean;
13716
13724
  persistentClear: boolean;
13717
13725
  singleLine: boolean;
@@ -13782,7 +13790,7 @@ declare const VAutocomplete: {
13782
13790
  activatable: boolean;
13783
13791
  selectable: boolean;
13784
13792
  openStrategy: OpenStrategyProp;
13785
- itemType: string;
13793
+ itemType: SelectItemKey;
13786
13794
  }> & Omit<{
13787
13795
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
13788
13796
  nav: boolean;
@@ -13800,7 +13808,7 @@ declare const VAutocomplete: {
13800
13808
  activatable: boolean;
13801
13809
  selectable: boolean;
13802
13810
  openStrategy: OpenStrategyProp;
13803
- itemType: string;
13811
+ itemType: SelectItemKey;
13804
13812
  height?: string | number | undefined;
13805
13813
  width?: string | number | undefined;
13806
13814
  border?: string | number | boolean | undefined;
@@ -16141,6 +16149,7 @@ declare const VAutocomplete: {
16141
16149
  hideSpinButtons: boolean;
16142
16150
  persistentHint: boolean;
16143
16151
  itemChildren: SelectItemKey;
16152
+ itemType: SelectItemKey;
16144
16153
  clearable: boolean;
16145
16154
  persistentClear: boolean;
16146
16155
  singleLine: boolean;
@@ -16194,6 +16203,7 @@ declare const VAutocomplete: {
16194
16203
  hideSpinButtons: boolean;
16195
16204
  persistentHint: boolean;
16196
16205
  itemChildren: SelectItemKey;
16206
+ itemType: SelectItemKey;
16197
16207
  clearable: boolean;
16198
16208
  persistentClear: boolean;
16199
16209
  singleLine: boolean;
@@ -16264,7 +16274,7 @@ declare const VAutocomplete: {
16264
16274
  activatable: boolean;
16265
16275
  selectable: boolean;
16266
16276
  openStrategy: OpenStrategyProp;
16267
- itemType: string;
16277
+ itemType: SelectItemKey;
16268
16278
  }> & Omit<{
16269
16279
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
16270
16280
  nav: boolean;
@@ -16282,7 +16292,7 @@ declare const VAutocomplete: {
16282
16292
  activatable: boolean;
16283
16293
  selectable: boolean;
16284
16294
  openStrategy: OpenStrategyProp;
16285
- itemType: string;
16295
+ itemType: SelectItemKey;
16286
16296
  height?: string | number | undefined;
16287
16297
  width?: string | number | undefined;
16288
16298
  border?: string | number | boolean | undefined;
@@ -18628,6 +18638,7 @@ declare const VAutocomplete: {
18628
18638
  hideSpinButtons: boolean;
18629
18639
  persistentHint: boolean;
18630
18640
  itemChildren: SelectItemKey;
18641
+ itemType: SelectItemKey;
18631
18642
  clearable: boolean;
18632
18643
  persistentClear: boolean;
18633
18644
  singleLine: boolean;
@@ -18862,6 +18873,10 @@ declare const VAutocomplete: {
18862
18873
  type: PropType<SelectItemKey>;
18863
18874
  default: string;
18864
18875
  };
18876
+ itemType: {
18877
+ type: PropType<SelectItemKey>;
18878
+ default: string;
18879
+ };
18865
18880
  returnObject: BooleanConstructor;
18866
18881
  valueComparator: PropType<typeof deepEqual>;
18867
18882
  chips: BooleanConstructor;
@@ -19057,6 +19072,10 @@ declare const VAutocomplete: {
19057
19072
  type: PropType<SelectItemKey>;
19058
19073
  default: string;
19059
19074
  };
19075
+ itemType: {
19076
+ type: PropType<SelectItemKey>;
19077
+ default: string;
19078
+ };
19060
19079
  returnObject: BooleanConstructor;
19061
19080
  valueComparator: PropType<typeof deepEqual>;
19062
19081
  chips: BooleanConstructor;
@@ -29076,6 +29095,7 @@ declare const VCombobox: {
29076
29095
  hideSpinButtons: boolean;
29077
29096
  persistentHint: boolean;
29078
29097
  itemChildren: SelectItemKey;
29098
+ itemType: SelectItemKey;
29079
29099
  clearable: boolean;
29080
29100
  persistentClear: boolean;
29081
29101
  singleLine: boolean;
@@ -29146,7 +29166,7 @@ declare const VCombobox: {
29146
29166
  activatable: boolean;
29147
29167
  selectable: boolean;
29148
29168
  openStrategy: OpenStrategyProp;
29149
- itemType: string;
29169
+ itemType: SelectItemKey;
29150
29170
  }> & Omit<{
29151
29171
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
29152
29172
  nav: boolean;
@@ -29164,7 +29184,7 @@ declare const VCombobox: {
29164
29184
  activatable: boolean;
29165
29185
  selectable: boolean;
29166
29186
  openStrategy: OpenStrategyProp;
29167
- itemType: string;
29187
+ itemType: SelectItemKey;
29168
29188
  height?: string | number | undefined;
29169
29189
  width?: string | number | undefined;
29170
29190
  border?: string | number | boolean | undefined;
@@ -31508,6 +31528,7 @@ declare const VCombobox: {
31508
31528
  hideSpinButtons: boolean;
31509
31529
  persistentHint: boolean;
31510
31530
  itemChildren: SelectItemKey;
31531
+ itemType: SelectItemKey;
31511
31532
  clearable: boolean;
31512
31533
  persistentClear: boolean;
31513
31534
  singleLine: boolean;
@@ -31604,6 +31625,7 @@ declare const VCombobox: {
31604
31625
  hideSpinButtons: boolean;
31605
31626
  persistentHint: boolean;
31606
31627
  itemChildren: SelectItemKey;
31628
+ itemType: SelectItemKey;
31607
31629
  clearable: boolean;
31608
31630
  persistentClear: boolean;
31609
31631
  singleLine: boolean;
@@ -31674,7 +31696,7 @@ declare const VCombobox: {
31674
31696
  activatable: boolean;
31675
31697
  selectable: boolean;
31676
31698
  openStrategy: OpenStrategyProp;
31677
- itemType: string;
31699
+ itemType: SelectItemKey;
31678
31700
  }> & Omit<{
31679
31701
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
31680
31702
  nav: boolean;
@@ -31692,7 +31714,7 @@ declare const VCombobox: {
31692
31714
  activatable: boolean;
31693
31715
  selectable: boolean;
31694
31716
  openStrategy: OpenStrategyProp;
31695
- itemType: string;
31717
+ itemType: SelectItemKey;
31696
31718
  height?: string | number | undefined;
31697
31719
  width?: string | number | undefined;
31698
31720
  border?: string | number | boolean | undefined;
@@ -34031,6 +34053,7 @@ declare const VCombobox: {
34031
34053
  hideSpinButtons: boolean;
34032
34054
  persistentHint: boolean;
34033
34055
  itemChildren: SelectItemKey;
34056
+ itemType: SelectItemKey;
34034
34057
  clearable: boolean;
34035
34058
  persistentClear: boolean;
34036
34059
  singleLine: boolean;
@@ -34084,6 +34107,7 @@ declare const VCombobox: {
34084
34107
  hideSpinButtons: boolean;
34085
34108
  persistentHint: boolean;
34086
34109
  itemChildren: SelectItemKey;
34110
+ itemType: SelectItemKey;
34087
34111
  clearable: boolean;
34088
34112
  persistentClear: boolean;
34089
34113
  singleLine: boolean;
@@ -34154,7 +34178,7 @@ declare const VCombobox: {
34154
34178
  activatable: boolean;
34155
34179
  selectable: boolean;
34156
34180
  openStrategy: OpenStrategyProp;
34157
- itemType: string;
34181
+ itemType: SelectItemKey;
34158
34182
  }> & Omit<{
34159
34183
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
34160
34184
  nav: boolean;
@@ -34172,7 +34196,7 @@ declare const VCombobox: {
34172
34196
  activatable: boolean;
34173
34197
  selectable: boolean;
34174
34198
  openStrategy: OpenStrategyProp;
34175
- itemType: string;
34199
+ itemType: SelectItemKey;
34176
34200
  height?: string | number | undefined;
34177
34201
  width?: string | number | undefined;
34178
34202
  border?: string | number | boolean | undefined;
@@ -36516,6 +36540,7 @@ declare const VCombobox: {
36516
36540
  hideSpinButtons: boolean;
36517
36541
  persistentHint: boolean;
36518
36542
  itemChildren: SelectItemKey;
36543
+ itemType: SelectItemKey;
36519
36544
  clearable: boolean;
36520
36545
  persistentClear: boolean;
36521
36546
  singleLine: boolean;
@@ -36750,6 +36775,10 @@ declare const VCombobox: {
36750
36775
  type: PropType<SelectItemKey>;
36751
36776
  default: string;
36752
36777
  };
36778
+ itemType: {
36779
+ type: PropType<SelectItemKey>;
36780
+ default: string;
36781
+ };
36753
36782
  returnObject: {
36754
36783
  type: PropType<boolean>;
36755
36784
  default: boolean;
@@ -36954,6 +36983,10 @@ declare const VCombobox: {
36954
36983
  type: PropType<SelectItemKey>;
36955
36984
  default: string;
36956
36985
  };
36986
+ itemType: {
36987
+ type: PropType<SelectItemKey>;
36988
+ default: string;
36989
+ };
36957
36990
  returnObject: {
36958
36991
  type: PropType<boolean>;
36959
36992
  default: boolean;
@@ -37160,7 +37193,7 @@ interface DataIteratorItemProps {
37160
37193
  itemSelectable: SelectItemKey;
37161
37194
  returnObject: boolean;
37162
37195
  }
37163
- interface DataIteratorItem<T = any> extends GroupableItem<T>, SelectableItem {
37196
+ interface DataIteratorItem<T = any> extends Omit<InternalItem<T>, 'type'>, GroupableItem<T>, SelectableItem {
37164
37197
  value: unknown;
37165
37198
  }
37166
37199
 
@@ -65186,6 +65219,7 @@ declare const VSelect: {
65186
65219
  hideSpinButtons: boolean;
65187
65220
  persistentHint: boolean;
65188
65221
  itemChildren: SelectItemKey;
65222
+ itemType: SelectItemKey;
65189
65223
  clearable: boolean;
65190
65224
  persistentClear: boolean;
65191
65225
  singleLine: boolean;
@@ -65252,7 +65286,7 @@ declare const VSelect: {
65252
65286
  activatable: boolean;
65253
65287
  selectable: boolean;
65254
65288
  openStrategy: OpenStrategyProp;
65255
- itemType: string;
65289
+ itemType: SelectItemKey;
65256
65290
  }> & Omit<{
65257
65291
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
65258
65292
  nav: boolean;
@@ -65270,7 +65304,7 @@ declare const VSelect: {
65270
65304
  activatable: boolean;
65271
65305
  selectable: boolean;
65272
65306
  openStrategy: OpenStrategyProp;
65273
- itemType: string;
65307
+ itemType: SelectItemKey;
65274
65308
  height?: string | number | undefined;
65275
65309
  width?: string | number | undefined;
65276
65310
  border?: string | number | boolean | undefined;
@@ -67602,6 +67636,7 @@ declare const VSelect: {
67602
67636
  hideSpinButtons: boolean;
67603
67637
  persistentHint: boolean;
67604
67638
  itemChildren: SelectItemKey;
67639
+ itemType: SelectItemKey;
67605
67640
  clearable: boolean;
67606
67641
  persistentClear: boolean;
67607
67642
  singleLine: boolean;
@@ -67696,6 +67731,7 @@ declare const VSelect: {
67696
67731
  hideSpinButtons: boolean;
67697
67732
  persistentHint: boolean;
67698
67733
  itemChildren: SelectItemKey;
67734
+ itemType: SelectItemKey;
67699
67735
  clearable: boolean;
67700
67736
  persistentClear: boolean;
67701
67737
  singleLine: boolean;
@@ -67762,7 +67798,7 @@ declare const VSelect: {
67762
67798
  activatable: boolean;
67763
67799
  selectable: boolean;
67764
67800
  openStrategy: OpenStrategyProp;
67765
- itemType: string;
67801
+ itemType: SelectItemKey;
67766
67802
  }> & Omit<{
67767
67803
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
67768
67804
  nav: boolean;
@@ -67780,7 +67816,7 @@ declare const VSelect: {
67780
67816
  activatable: boolean;
67781
67817
  selectable: boolean;
67782
67818
  openStrategy: OpenStrategyProp;
67783
- itemType: string;
67819
+ itemType: SelectItemKey;
67784
67820
  height?: string | number | undefined;
67785
67821
  width?: string | number | undefined;
67786
67822
  border?: string | number | boolean | undefined;
@@ -70108,6 +70144,7 @@ declare const VSelect: {
70108
70144
  hideSpinButtons: boolean;
70109
70145
  persistentHint: boolean;
70110
70146
  itemChildren: SelectItemKey;
70147
+ itemType: SelectItemKey;
70111
70148
  clearable: boolean;
70112
70149
  persistentClear: boolean;
70113
70150
  singleLine: boolean;
@@ -70159,6 +70196,7 @@ declare const VSelect: {
70159
70196
  hideSpinButtons: boolean;
70160
70197
  persistentHint: boolean;
70161
70198
  itemChildren: SelectItemKey;
70199
+ itemType: SelectItemKey;
70162
70200
  clearable: boolean;
70163
70201
  persistentClear: boolean;
70164
70202
  singleLine: boolean;
@@ -70225,7 +70263,7 @@ declare const VSelect: {
70225
70263
  activatable: boolean;
70226
70264
  selectable: boolean;
70227
70265
  openStrategy: OpenStrategyProp;
70228
- itemType: string;
70266
+ itemType: SelectItemKey;
70229
70267
  }> & Omit<{
70230
70268
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
70231
70269
  nav: boolean;
@@ -70243,7 +70281,7 @@ declare const VSelect: {
70243
70281
  activatable: boolean;
70244
70282
  selectable: boolean;
70245
70283
  openStrategy: OpenStrategyProp;
70246
- itemType: string;
70284
+ itemType: SelectItemKey;
70247
70285
  height?: string | number | undefined;
70248
70286
  width?: string | number | undefined;
70249
70287
  border?: string | number | boolean | undefined;
@@ -72575,6 +72613,7 @@ declare const VSelect: {
72575
72613
  hideSpinButtons: boolean;
72576
72614
  persistentHint: boolean;
72577
72615
  itemChildren: SelectItemKey;
72616
+ itemType: SelectItemKey;
72578
72617
  clearable: boolean;
72579
72618
  persistentClear: boolean;
72580
72619
  singleLine: boolean;
@@ -72812,6 +72851,10 @@ declare const VSelect: {
72812
72851
  type: PropType<SelectItemKey>;
72813
72852
  default: string;
72814
72853
  };
72854
+ itemType: {
72855
+ type: PropType<SelectItemKey>;
72856
+ default: string;
72857
+ };
72815
72858
  returnObject: BooleanConstructor;
72816
72859
  valueComparator: PropType<typeof deepEqual>;
72817
72860
  chips: BooleanConstructor;
@@ -72995,6 +73038,10 @@ declare const VSelect: {
72995
73038
  type: PropType<SelectItemKey>;
72996
73039
  default: string;
72997
73040
  };
73041
+ itemType: {
73042
+ type: PropType<SelectItemKey>;
73043
+ default: string;
73044
+ };
72998
73045
  returnObject: BooleanConstructor;
72999
73046
  valueComparator: PropType<typeof deepEqual>;
73000
73047
  chips: BooleanConstructor;
@@ -88768,6 +88815,7 @@ declare const VTreeview: {
88768
88815
  tag: string | JSXComponent;
88769
88816
  lines: false | "one" | "two" | "three";
88770
88817
  mandatory: boolean;
88818
+ separateRoots: boolean;
88771
88819
  filterMode: FilterMode;
88772
88820
  noFilter: boolean;
88773
88821
  filterKeys: FilterKeys;
@@ -88787,6 +88835,8 @@ declare const VTreeview: {
88787
88835
  itemTitle: SelectItemKey;
88788
88836
  itemChildren: SelectItemKey;
88789
88837
  itemProps: SelectItemKey;
88838
+ itemType: SelectItemKey;
88839
+ hideActions: boolean;
88790
88840
  loadingIcon: string;
88791
88841
  openAll: boolean;
88792
88842
  } & {
@@ -88829,6 +88879,7 @@ declare const VTreeview: {
88829
88879
  value: boolean;
88830
88880
  path: unknown[];
88831
88881
  }) => void) | undefined;
88882
+ indentLines?: boolean | IndentLinesVariant | undefined;
88832
88883
  selectedColor?: string | undefined;
88833
88884
  loadChildren?: ((item: unknown) => Promise<void>) | undefined;
88834
88885
  } & {
@@ -88868,6 +88919,7 @@ declare const VTreeview: {
88868
88919
  tag: string | JSXComponent;
88869
88920
  lines: false | "one" | "two" | "three";
88870
88921
  mandatory: boolean;
88922
+ separateRoots: boolean;
88871
88923
  filterMode: FilterMode;
88872
88924
  noFilter: boolean;
88873
88925
  filterKeys: FilterKeys;
@@ -88889,6 +88941,8 @@ declare const VTreeview: {
88889
88941
  itemTitle: SelectItemKey;
88890
88942
  itemChildren: SelectItemKey;
88891
88943
  itemProps: SelectItemKey;
88944
+ itemType: SelectItemKey;
88945
+ hideActions: boolean;
88892
88946
  loadingIcon: string;
88893
88947
  openAll: boolean;
88894
88948
  }, true, {}, vue.SlotsType<Partial<{
@@ -88931,6 +88985,7 @@ declare const VTreeview: {
88931
88985
  tag: string | JSXComponent;
88932
88986
  lines: false | "one" | "two" | "three";
88933
88987
  mandatory: boolean;
88988
+ separateRoots: boolean;
88934
88989
  filterMode: FilterMode;
88935
88990
  noFilter: boolean;
88936
88991
  filterKeys: FilterKeys;
@@ -88950,6 +89005,8 @@ declare const VTreeview: {
88950
89005
  itemTitle: SelectItemKey;
88951
89006
  itemChildren: SelectItemKey;
88952
89007
  itemProps: SelectItemKey;
89008
+ itemType: SelectItemKey;
89009
+ hideActions: boolean;
88953
89010
  loadingIcon: string;
88954
89011
  openAll: boolean;
88955
89012
  } & {
@@ -88992,6 +89049,7 @@ declare const VTreeview: {
88992
89049
  value: boolean;
88993
89050
  path: unknown[];
88994
89051
  }) => void) | undefined;
89052
+ indentLines?: boolean | IndentLinesVariant | undefined;
88995
89053
  selectedColor?: string | undefined;
88996
89054
  loadChildren?: ((item: unknown) => Promise<void>) | undefined;
88997
89055
  } & {
@@ -89016,6 +89074,7 @@ declare const VTreeview: {
89016
89074
  tag: string | JSXComponent;
89017
89075
  lines: false | "one" | "two" | "three";
89018
89076
  mandatory: boolean;
89077
+ separateRoots: boolean;
89019
89078
  filterMode: FilterMode;
89020
89079
  noFilter: boolean;
89021
89080
  filterKeys: FilterKeys;
@@ -89037,6 +89096,8 @@ declare const VTreeview: {
89037
89096
  itemTitle: SelectItemKey;
89038
89097
  itemChildren: SelectItemKey;
89039
89098
  itemProps: SelectItemKey;
89099
+ itemType: SelectItemKey;
89100
+ hideActions: boolean;
89040
89101
  loadingIcon: string;
89041
89102
  openAll: boolean;
89042
89103
  }>;
@@ -89050,6 +89111,7 @@ declare const VTreeview: {
89050
89111
  tag: string | JSXComponent;
89051
89112
  lines: false | "one" | "two" | "three";
89052
89113
  mandatory: boolean;
89114
+ separateRoots: boolean;
89053
89115
  filterMode: FilterMode;
89054
89116
  noFilter: boolean;
89055
89117
  filterKeys: FilterKeys;
@@ -89069,6 +89131,8 @@ declare const VTreeview: {
89069
89131
  itemTitle: SelectItemKey;
89070
89132
  itemChildren: SelectItemKey;
89071
89133
  itemProps: SelectItemKey;
89134
+ itemType: SelectItemKey;
89135
+ hideActions: boolean;
89072
89136
  loadingIcon: string;
89073
89137
  openAll: boolean;
89074
89138
  } & {
@@ -89111,6 +89175,7 @@ declare const VTreeview: {
89111
89175
  value: boolean;
89112
89176
  path: unknown[];
89113
89177
  }) => void) | undefined;
89178
+ indentLines?: boolean | IndentLinesVariant | undefined;
89114
89179
  selectedColor?: string | undefined;
89115
89180
  loadChildren?: ((item: unknown) => Promise<void>) | undefined;
89116
89181
  } & {
@@ -89150,6 +89215,7 @@ declare const VTreeview: {
89150
89215
  tag: string | JSXComponent;
89151
89216
  lines: false | "one" | "two" | "three";
89152
89217
  mandatory: boolean;
89218
+ separateRoots: boolean;
89153
89219
  filterMode: FilterMode;
89154
89220
  noFilter: boolean;
89155
89221
  filterKeys: FilterKeys;
@@ -89171,6 +89237,8 @@ declare const VTreeview: {
89171
89237
  itemTitle: SelectItemKey;
89172
89238
  itemChildren: SelectItemKey;
89173
89239
  itemProps: SelectItemKey;
89240
+ itemType: SelectItemKey;
89241
+ hideActions: boolean;
89174
89242
  loadingIcon: string;
89175
89243
  openAll: boolean;
89176
89244
  }, {}, string, vue.SlotsType<Partial<{
@@ -89204,11 +89272,11 @@ declare const VTreeview: {
89204
89272
  }, slots: VListChildrenSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
89205
89273
  modelValue: ArrayConstructor;
89206
89274
  variant: Omit<{
89207
- type: vue.PropType<Variant$2>;
89275
+ type: PropType<Variant$2>;
89208
89276
  default: string;
89209
89277
  validator: (v: any) => boolean;
89210
89278
  }, "type" | "default"> & {
89211
- type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
89279
+ type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
89212
89280
  default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
89213
89281
  };
89214
89282
  height: (StringConstructor | NumberConstructor)[];
@@ -89220,19 +89288,19 @@ declare const VTreeview: {
89220
89288
  minHeight: (StringConstructor | NumberConstructor)[];
89221
89289
  minWidth: (StringConstructor | NumberConstructor)[];
89222
89290
  style: {
89223
- type: vue.PropType<vue.StyleValue>;
89291
+ type: PropType<vue.StyleValue>;
89224
89292
  default: null;
89225
89293
  };
89226
89294
  disabled: BooleanConstructor;
89227
89295
  activated: null;
89228
- class: vue.PropType<ClassValue>;
89296
+ class: PropType<ClassValue>;
89229
89297
  theme: StringConstructor;
89230
89298
  tag: {
89231
- type: vue.PropType<string | JSXComponent>;
89299
+ type: PropType<string | JSXComponent>;
89232
89300
  default: string;
89233
89301
  };
89234
89302
  lines: {
89235
- type: vue.PropType<"one" | "two" | "three" | false>;
89303
+ type: PropType<"one" | "two" | "three" | false>;
89236
89304
  default: string;
89237
89305
  };
89238
89306
  mandatory: BooleanConstructor;
@@ -89243,21 +89311,21 @@ declare const VTreeview: {
89243
89311
  };
89244
89312
  opened: null;
89245
89313
  items: {
89246
- type: vue.PropType<ItemProps["items"]>;
89314
+ type: PropType<ItemProps["items"]>;
89247
89315
  default: () => never[];
89248
89316
  };
89249
89317
  itemValue: {
89250
- type: vue.PropType<SelectItemKey>;
89318
+ type: PropType<SelectItemKey>;
89251
89319
  default: string;
89252
89320
  };
89253
89321
  returnObject: BooleanConstructor;
89254
89322
  selectStrategy: {
89255
- type: vue.PropType<SelectStrategyProp>;
89323
+ type: PropType<SelectStrategyProp>;
89256
89324
  default: NonNullable<SelectStrategyProp>;
89257
89325
  };
89258
- valueComparator: vue.PropType<typeof deepEqual>;
89326
+ valueComparator: PropType<typeof deepEqual>;
89259
89327
  density: {
89260
- type: vue.PropType<Density>;
89328
+ type: PropType<Density>;
89261
89329
  default: string;
89262
89330
  validator: (v: any) => boolean;
89263
89331
  };
@@ -89270,83 +89338,90 @@ declare const VTreeview: {
89270
89338
  bgColor: StringConstructor;
89271
89339
  activeColor: StringConstructor;
89272
89340
  slim: {
89273
- type: vue.PropType<boolean>;
89341
+ type: PropType<boolean>;
89274
89342
  default: boolean;
89275
89343
  };
89276
89344
  activeClass: StringConstructor;
89277
89345
  filterable: BooleanConstructor;
89278
89346
  activatable: BooleanConstructor;
89279
89347
  selectable: BooleanConstructor;
89280
- activeStrategy: vue.PropType<ActiveStrategyProp>;
89281
- 'onUpdate:opened': vue.PropType<() => void>;
89348
+ activeStrategy: PropType<ActiveStrategyProp>;
89349
+ 'onUpdate:opened': PropType<() => void>;
89282
89350
  collapseIcon: {
89283
- type: vue.PropType<IconValue>;
89351
+ type: PropType<IconValue>;
89284
89352
  default: NonNullable<IconValue>;
89285
89353
  };
89286
89354
  expandIcon: {
89287
- type: vue.PropType<IconValue>;
89355
+ type: PropType<IconValue>;
89288
89356
  default: NonNullable<IconValue>;
89289
89357
  };
89290
89358
  itemTitle: {
89291
- type: vue.PropType<SelectItemKey>;
89359
+ type: PropType<SelectItemKey>;
89292
89360
  default: string;
89293
89361
  };
89294
89362
  itemChildren: {
89295
- type: vue.PropType<SelectItemKey>;
89363
+ type: PropType<SelectItemKey>;
89296
89364
  default: string;
89297
89365
  };
89298
89366
  itemProps: {
89299
- type: vue.PropType<SelectItemKey>;
89367
+ type: PropType<SelectItemKey>;
89300
89368
  default: string;
89301
89369
  };
89302
- 'onClick:open': vue.PropType<(args_0: {
89370
+ itemType: {
89371
+ type: PropType<SelectItemKey>;
89372
+ default: string;
89373
+ };
89374
+ 'onClick:open': PropType<(args_0: {
89303
89375
  id: unknown;
89304
89376
  value: boolean;
89305
89377
  path: unknown[];
89306
89378
  }) => void>;
89307
- 'onClick:select': vue.PropType<(args_0: {
89379
+ 'onClick:select': PropType<(args_0: {
89308
89380
  id: unknown;
89309
89381
  value: boolean;
89310
89382
  path: unknown[];
89311
89383
  }) => void>;
89384
+ separateRoots: BooleanConstructor;
89312
89385
  openOnClick: {
89313
89386
  type: BooleanConstructor;
89314
89387
  default: undefined;
89315
89388
  };
89316
- falseIcon: vue.PropType<IconValue>;
89317
- trueIcon: vue.PropType<IconValue>;
89389
+ falseIcon: PropType<IconValue>;
89390
+ trueIcon: PropType<IconValue>;
89318
89391
  indeterminateIcon: {
89319
- type: vue.PropType<IconValue>;
89392
+ type: PropType<IconValue>;
89320
89393
  default: string;
89321
89394
  };
89395
+ hideActions: BooleanConstructor;
89322
89396
  loadingIcon: {
89323
89397
  type: StringConstructor;
89324
89398
  default: string;
89325
89399
  };
89326
89400
  selectedColor: StringConstructor;
89327
- loadChildren: vue.PropType<(item: unknown) => Promise<void>>;
89328
- customFilter: vue.PropType<FilterFunction>;
89329
- customKeyFilter: vue.PropType<FilterKeyFunctions>;
89401
+ loadChildren: PropType<(item: unknown) => Promise<void>>;
89402
+ customFilter: PropType<FilterFunction>;
89403
+ customKeyFilter: PropType<FilterKeyFunctions>;
89330
89404
  filterKeys: {
89331
- type: vue.PropType<FilterKeys>;
89405
+ type: PropType<FilterKeys>;
89332
89406
  default: NonNullable<FilterKeys>;
89333
89407
  };
89334
89408
  filterMode: {
89335
- type: vue.PropType<FilterMode>;
89409
+ type: PropType<FilterMode>;
89336
89410
  default: string;
89337
89411
  };
89338
89412
  noFilter: BooleanConstructor;
89339
89413
  fluid: BooleanConstructor;
89340
89414
  openAll: BooleanConstructor;
89415
+ indentLines: PropType<boolean | IndentLinesVariant>;
89341
89416
  search: StringConstructor;
89342
89417
  }, vue.ExtractPropTypes<{
89343
89418
  modelValue: ArrayConstructor;
89344
89419
  variant: Omit<{
89345
- type: vue.PropType<Variant$2>;
89420
+ type: PropType<Variant$2>;
89346
89421
  default: string;
89347
89422
  validator: (v: any) => boolean;
89348
89423
  }, "type" | "default"> & {
89349
- type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
89424
+ type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
89350
89425
  default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
89351
89426
  };
89352
89427
  height: (StringConstructor | NumberConstructor)[];
@@ -89358,19 +89433,19 @@ declare const VTreeview: {
89358
89433
  minHeight: (StringConstructor | NumberConstructor)[];
89359
89434
  minWidth: (StringConstructor | NumberConstructor)[];
89360
89435
  style: {
89361
- type: vue.PropType<vue.StyleValue>;
89436
+ type: PropType<vue.StyleValue>;
89362
89437
  default: null;
89363
89438
  };
89364
89439
  disabled: BooleanConstructor;
89365
89440
  activated: null;
89366
- class: vue.PropType<ClassValue>;
89441
+ class: PropType<ClassValue>;
89367
89442
  theme: StringConstructor;
89368
89443
  tag: {
89369
- type: vue.PropType<string | JSXComponent>;
89444
+ type: PropType<string | JSXComponent>;
89370
89445
  default: string;
89371
89446
  };
89372
89447
  lines: {
89373
- type: vue.PropType<"one" | "two" | "three" | false>;
89448
+ type: PropType<"one" | "two" | "three" | false>;
89374
89449
  default: string;
89375
89450
  };
89376
89451
  mandatory: BooleanConstructor;
@@ -89381,21 +89456,21 @@ declare const VTreeview: {
89381
89456
  };
89382
89457
  opened: null;
89383
89458
  items: {
89384
- type: vue.PropType<ItemProps["items"]>;
89459
+ type: PropType<ItemProps["items"]>;
89385
89460
  default: () => never[];
89386
89461
  };
89387
89462
  itemValue: {
89388
- type: vue.PropType<SelectItemKey>;
89463
+ type: PropType<SelectItemKey>;
89389
89464
  default: string;
89390
89465
  };
89391
89466
  returnObject: BooleanConstructor;
89392
89467
  selectStrategy: {
89393
- type: vue.PropType<SelectStrategyProp>;
89468
+ type: PropType<SelectStrategyProp>;
89394
89469
  default: NonNullable<SelectStrategyProp>;
89395
89470
  };
89396
- valueComparator: vue.PropType<typeof deepEqual>;
89471
+ valueComparator: PropType<typeof deepEqual>;
89397
89472
  density: {
89398
- type: vue.PropType<Density>;
89473
+ type: PropType<Density>;
89399
89474
  default: string;
89400
89475
  validator: (v: any) => boolean;
89401
89476
  };
@@ -89408,74 +89483,81 @@ declare const VTreeview: {
89408
89483
  bgColor: StringConstructor;
89409
89484
  activeColor: StringConstructor;
89410
89485
  slim: {
89411
- type: vue.PropType<boolean>;
89486
+ type: PropType<boolean>;
89412
89487
  default: boolean;
89413
89488
  };
89414
89489
  activeClass: StringConstructor;
89415
89490
  filterable: BooleanConstructor;
89416
89491
  activatable: BooleanConstructor;
89417
89492
  selectable: BooleanConstructor;
89418
- activeStrategy: vue.PropType<ActiveStrategyProp>;
89419
- 'onUpdate:opened': vue.PropType<() => void>;
89493
+ activeStrategy: PropType<ActiveStrategyProp>;
89494
+ 'onUpdate:opened': PropType<() => void>;
89420
89495
  collapseIcon: {
89421
- type: vue.PropType<IconValue>;
89496
+ type: PropType<IconValue>;
89422
89497
  default: NonNullable<IconValue>;
89423
89498
  };
89424
89499
  expandIcon: {
89425
- type: vue.PropType<IconValue>;
89500
+ type: PropType<IconValue>;
89426
89501
  default: NonNullable<IconValue>;
89427
89502
  };
89428
89503
  itemTitle: {
89429
- type: vue.PropType<SelectItemKey>;
89504
+ type: PropType<SelectItemKey>;
89430
89505
  default: string;
89431
89506
  };
89432
89507
  itemChildren: {
89433
- type: vue.PropType<SelectItemKey>;
89508
+ type: PropType<SelectItemKey>;
89434
89509
  default: string;
89435
89510
  };
89436
89511
  itemProps: {
89437
- type: vue.PropType<SelectItemKey>;
89512
+ type: PropType<SelectItemKey>;
89438
89513
  default: string;
89439
89514
  };
89440
- 'onClick:open': vue.PropType<(args_0: {
89515
+ itemType: {
89516
+ type: PropType<SelectItemKey>;
89517
+ default: string;
89518
+ };
89519
+ 'onClick:open': PropType<(args_0: {
89441
89520
  id: unknown;
89442
89521
  value: boolean;
89443
89522
  path: unknown[];
89444
89523
  }) => void>;
89445
- 'onClick:select': vue.PropType<(args_0: {
89524
+ 'onClick:select': PropType<(args_0: {
89446
89525
  id: unknown;
89447
89526
  value: boolean;
89448
89527
  path: unknown[];
89449
89528
  }) => void>;
89529
+ separateRoots: BooleanConstructor;
89450
89530
  openOnClick: {
89451
89531
  type: BooleanConstructor;
89452
89532
  default: undefined;
89453
89533
  };
89454
- falseIcon: vue.PropType<IconValue>;
89455
- trueIcon: vue.PropType<IconValue>;
89534
+ falseIcon: PropType<IconValue>;
89535
+ trueIcon: PropType<IconValue>;
89456
89536
  indeterminateIcon: {
89457
- type: vue.PropType<IconValue>;
89537
+ type: PropType<IconValue>;
89458
89538
  default: string;
89459
89539
  };
89540
+ hideActions: BooleanConstructor;
89460
89541
  loadingIcon: {
89461
89542
  type: StringConstructor;
89462
89543
  default: string;
89463
89544
  };
89464
89545
  selectedColor: StringConstructor;
89465
- loadChildren: vue.PropType<(item: unknown) => Promise<void>>;
89466
- customFilter: vue.PropType<FilterFunction>;
89467
- customKeyFilter: vue.PropType<FilterKeyFunctions>;
89546
+ loadChildren: PropType<(item: unknown) => Promise<void>>;
89547
+ customFilter: PropType<FilterFunction>;
89548
+ customKeyFilter: PropType<FilterKeyFunctions>;
89468
89549
  filterKeys: {
89469
- type: vue.PropType<FilterKeys>;
89550
+ type: PropType<FilterKeys>;
89470
89551
  default: NonNullable<FilterKeys>;
89471
89552
  };
89472
89553
  filterMode: {
89473
- type: vue.PropType<FilterMode>;
89554
+ type: PropType<FilterMode>;
89474
89555
  default: string;
89475
89556
  };
89476
89557
  noFilter: BooleanConstructor;
89477
89558
  fluid: BooleanConstructor;
89478
89559
  openAll: BooleanConstructor;
89560
+ indentLines: PropType<boolean | IndentLinesVariant>;
89479
89561
  search: StringConstructor;
89480
89562
  }>>;
89481
89563
  type VTreeview = InstanceType<typeof VTreeview>;
@@ -89497,6 +89579,7 @@ declare const VTreeviewItem: {
89497
89579
  class?: string;
89498
89580
  keys?: number[];
89499
89581
  } | undefined;
89582
+ hideActions: boolean;
89500
89583
  } & {
89501
89584
  link?: boolean | undefined;
89502
89585
  height?: string | number | undefined;
@@ -89528,6 +89611,7 @@ declare const VTreeviewItem: {
89528
89611
  prependAvatar?: string | undefined;
89529
89612
  subtitle?: string | number | boolean | undefined;
89530
89613
  toggleIcon?: IconValue | undefined;
89614
+ indentLines?: IndentLineType[] | undefined;
89531
89615
  } & {
89532
89616
  $children?: vue.VNodeChild | ((arg: ListItemSlot) => vue.VNodeChild) | {
89533
89617
  prepend?: ((arg: ListItemSlot) => vue.VNodeChild) | undefined;
@@ -89978,6 +90062,7 @@ declare const VTreeviewItem: {
89978
90062
  keys?: number[];
89979
90063
  } | undefined;
89980
90064
  subtitle: string | number | boolean;
90065
+ hideActions: boolean;
89981
90066
  }, true, {}, vue.SlotsType<Partial<{
89982
90067
  prepend: (arg: ListItemSlot) => vue.VNode[];
89983
90068
  append: (arg: ListItemSlot) => vue.VNode[];
@@ -90007,6 +90092,7 @@ declare const VTreeviewItem: {
90007
90092
  class?: string;
90008
90093
  keys?: number[];
90009
90094
  } | undefined;
90095
+ hideActions: boolean;
90010
90096
  } & {
90011
90097
  link?: boolean | undefined;
90012
90098
  height?: string | number | undefined;
@@ -90038,6 +90124,7 @@ declare const VTreeviewItem: {
90038
90124
  prependAvatar?: string | undefined;
90039
90125
  subtitle?: string | number | boolean | undefined;
90040
90126
  toggleIcon?: IconValue | undefined;
90127
+ indentLines?: IndentLineType[] | undefined;
90041
90128
  } & {
90042
90129
  $children?: vue.VNodeChild | ((arg: ListItemSlot) => vue.VNodeChild) | {
90043
90130
  prepend?: ((arg: ListItemSlot) => vue.VNodeChild) | undefined;
@@ -90486,6 +90573,7 @@ declare const VTreeviewItem: {
90486
90573
  keys?: number[];
90487
90574
  } | undefined;
90488
90575
  subtitle: string | number | boolean;
90576
+ hideActions: boolean;
90489
90577
  }>;
90490
90578
  __isFragment?: never;
90491
90579
  __isTeleport?: never;
@@ -90506,6 +90594,7 @@ declare const VTreeviewItem: {
90506
90594
  class?: string;
90507
90595
  keys?: number[];
90508
90596
  } | undefined;
90597
+ hideActions: boolean;
90509
90598
  } & {
90510
90599
  link?: boolean | undefined;
90511
90600
  height?: string | number | undefined;
@@ -90537,6 +90626,7 @@ declare const VTreeviewItem: {
90537
90626
  prependAvatar?: string | undefined;
90538
90627
  subtitle?: string | number | boolean | undefined;
90539
90628
  toggleIcon?: IconValue | undefined;
90629
+ indentLines?: IndentLineType[] | undefined;
90540
90630
  } & {
90541
90631
  $children?: vue.VNodeChild | ((arg: ListItemSlot) => vue.VNodeChild) | {
90542
90632
  prepend?: ((arg: ListItemSlot) => vue.VNodeChild) | undefined;
@@ -90987,6 +91077,7 @@ declare const VTreeviewItem: {
90987
91077
  keys?: number[];
90988
91078
  } | undefined;
90989
91079
  subtitle: string | number | boolean;
91080
+ hideActions: boolean;
90990
91081
  }, {}, string, vue.SlotsType<Partial<{
90991
91082
  prepend: (arg: ListItemSlot) => vue.VNode[];
90992
91083
  append: (arg: ListItemSlot) => vue.VNode[];
@@ -90996,21 +91087,21 @@ declare const VTreeviewItem: {
90996
91087
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
90997
91088
  color: StringConstructor;
90998
91089
  variant: Omit<{
90999
- type: vue.PropType<Variant$2>;
91090
+ type: PropType<Variant$2>;
91000
91091
  default: string;
91001
91092
  validator: (v: any) => boolean;
91002
91093
  }, "type" | "default"> & {
91003
- type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
91094
+ type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
91004
91095
  default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
91005
91096
  };
91006
91097
  theme: StringConstructor;
91007
91098
  tag: {
91008
- type: vue.PropType<string | JSXComponent>;
91099
+ type: PropType<string | JSXComponent>;
91009
91100
  default: string;
91010
91101
  };
91011
91102
  href: StringConstructor;
91012
91103
  replace: BooleanConstructor;
91013
- to: vue.PropType<vue_router.RouteLocationRaw>;
91104
+ to: PropType<vue_router.RouteLocationRaw>;
91014
91105
  exact: BooleanConstructor;
91015
91106
  rounded: {
91016
91107
  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
@@ -91028,13 +91119,13 @@ declare const VTreeviewItem: {
91028
91119
  minWidth: (StringConstructor | NumberConstructor)[];
91029
91120
  width: (StringConstructor | NumberConstructor)[];
91030
91121
  density: {
91031
- type: vue.PropType<Density>;
91122
+ type: PropType<Density>;
91032
91123
  default: string;
91033
91124
  validator: (v: any) => boolean;
91034
91125
  };
91035
- class: vue.PropType<ClassValue>;
91126
+ class: PropType<ClassValue>;
91036
91127
  style: {
91037
- type: vue.PropType<vue.StyleValue>;
91128
+ type: PropType<vue.StyleValue>;
91038
91129
  default: null;
91039
91130
  };
91040
91131
  border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
@@ -91045,23 +91136,23 @@ declare const VTreeviewItem: {
91045
91136
  activeClass: StringConstructor;
91046
91137
  activeColor: StringConstructor;
91047
91138
  appendAvatar: StringConstructor;
91048
- appendIcon: vue.PropType<IconValue>;
91139
+ appendIcon: PropType<IconValue>;
91049
91140
  baseColor: StringConstructor;
91050
91141
  disabled: BooleanConstructor;
91051
- lines: vue.PropType<"one" | "two" | "three" | false>;
91142
+ lines: PropType<"one" | "two" | "three" | false>;
91052
91143
  link: {
91053
91144
  type: BooleanConstructor;
91054
91145
  default: undefined;
91055
91146
  };
91056
91147
  nav: BooleanConstructor;
91057
91148
  prependAvatar: StringConstructor;
91058
- prependIcon: vue.PropType<IconValue>;
91149
+ prependIcon: PropType<IconValue>;
91059
91150
  ripple: {
91060
- type: vue.PropType<RippleDirectiveBinding["value"]>;
91151
+ type: PropType<RippleDirectiveBinding["value"]>;
91061
91152
  default: boolean;
91062
91153
  };
91063
91154
  slim: {
91064
- type: vue.PropType<boolean>;
91155
+ type: PropType<boolean>;
91065
91156
  default: boolean;
91066
91157
  };
91067
91158
  subtitle: {
@@ -91073,28 +91164,30 @@ declare const VTreeviewItem: {
91073
91164
  default: undefined;
91074
91165
  };
91075
91166
  value: null;
91076
- onClick: vue.PropType<(args_0: MouseEvent | KeyboardEvent) => void>;
91077
- onClickOnce: vue.PropType<(args_0: MouseEvent) => void>;
91167
+ onClick: PropType<(args_0: MouseEvent | KeyboardEvent) => void>;
91168
+ onClickOnce: PropType<(args_0: MouseEvent) => void>;
91078
91169
  loading: BooleanConstructor;
91079
- toggleIcon: vue.PropType<IconValue>;
91170
+ hideActions: BooleanConstructor;
91171
+ indentLines: PropType<IndentLineType[]>;
91172
+ toggleIcon: PropType<IconValue>;
91080
91173
  }, vue.ExtractPropTypes<{
91081
91174
  color: StringConstructor;
91082
91175
  variant: Omit<{
91083
- type: vue.PropType<Variant$2>;
91176
+ type: PropType<Variant$2>;
91084
91177
  default: string;
91085
91178
  validator: (v: any) => boolean;
91086
91179
  }, "type" | "default"> & {
91087
- type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
91180
+ type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
91088
91181
  default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
91089
91182
  };
91090
91183
  theme: StringConstructor;
91091
91184
  tag: {
91092
- type: vue.PropType<string | JSXComponent>;
91185
+ type: PropType<string | JSXComponent>;
91093
91186
  default: string;
91094
91187
  };
91095
91188
  href: StringConstructor;
91096
91189
  replace: BooleanConstructor;
91097
- to: vue.PropType<vue_router.RouteLocationRaw>;
91190
+ to: PropType<vue_router.RouteLocationRaw>;
91098
91191
  exact: BooleanConstructor;
91099
91192
  rounded: {
91100
91193
  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
@@ -91112,13 +91205,13 @@ declare const VTreeviewItem: {
91112
91205
  minWidth: (StringConstructor | NumberConstructor)[];
91113
91206
  width: (StringConstructor | NumberConstructor)[];
91114
91207
  density: {
91115
- type: vue.PropType<Density>;
91208
+ type: PropType<Density>;
91116
91209
  default: string;
91117
91210
  validator: (v: any) => boolean;
91118
91211
  };
91119
- class: vue.PropType<ClassValue>;
91212
+ class: PropType<ClassValue>;
91120
91213
  style: {
91121
- type: vue.PropType<vue.StyleValue>;
91214
+ type: PropType<vue.StyleValue>;
91122
91215
  default: null;
91123
91216
  };
91124
91217
  border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
@@ -91129,23 +91222,23 @@ declare const VTreeviewItem: {
91129
91222
  activeClass: StringConstructor;
91130
91223
  activeColor: StringConstructor;
91131
91224
  appendAvatar: StringConstructor;
91132
- appendIcon: vue.PropType<IconValue>;
91225
+ appendIcon: PropType<IconValue>;
91133
91226
  baseColor: StringConstructor;
91134
91227
  disabled: BooleanConstructor;
91135
- lines: vue.PropType<"one" | "two" | "three" | false>;
91228
+ lines: PropType<"one" | "two" | "three" | false>;
91136
91229
  link: {
91137
91230
  type: BooleanConstructor;
91138
91231
  default: undefined;
91139
91232
  };
91140
91233
  nav: BooleanConstructor;
91141
91234
  prependAvatar: StringConstructor;
91142
- prependIcon: vue.PropType<IconValue>;
91235
+ prependIcon: PropType<IconValue>;
91143
91236
  ripple: {
91144
- type: vue.PropType<RippleDirectiveBinding["value"]>;
91237
+ type: PropType<RippleDirectiveBinding["value"]>;
91145
91238
  default: boolean;
91146
91239
  };
91147
91240
  slim: {
91148
- type: vue.PropType<boolean>;
91241
+ type: PropType<boolean>;
91149
91242
  default: boolean;
91150
91243
  };
91151
91244
  subtitle: {
@@ -91157,10 +91250,12 @@ declare const VTreeviewItem: {
91157
91250
  default: undefined;
91158
91251
  };
91159
91252
  value: null;
91160
- onClick: vue.PropType<(args_0: MouseEvent | KeyboardEvent) => void>;
91161
- onClickOnce: vue.PropType<(args_0: MouseEvent) => void>;
91253
+ onClick: PropType<(args_0: MouseEvent | KeyboardEvent) => void>;
91254
+ onClickOnce: PropType<(args_0: MouseEvent) => void>;
91162
91255
  loading: BooleanConstructor;
91163
- toggleIcon: vue.PropType<IconValue>;
91256
+ hideActions: BooleanConstructor;
91257
+ indentLines: PropType<IndentLineType[]>;
91258
+ toggleIcon: PropType<IconValue>;
91164
91259
  }>>;
91165
91260
  type VTreeviewItem = InstanceType<typeof VTreeviewItem>;
91166
91261
 
@@ -114052,24 +114147,26 @@ declare module 'vue' {
114052
114147
  $children?: VNodeChild
114053
114148
  }
114054
114149
  export interface GlobalComponents {
114150
+ VApp: VApp
114055
114151
  VAppBar: VAppBar
114056
114152
  VAppBarNavIcon: VAppBarNavIcon
114057
114153
  VAppBarTitle: VAppBarTitle
114058
- VApp: VApp
114154
+ VAutocomplete: VAutocomplete
114059
114155
  VAlert: VAlert
114060
114156
  VAlertTitle: VAlertTitle
114061
- VAutocomplete: VAutocomplete
114062
- VAvatar: VAvatar
114063
- VBadge: VBadge
114064
- VBanner: VBanner
114065
- VBannerActions: VBannerActions
114066
- VBannerText: VBannerText
114067
- VBtnGroup: VBtnGroup
114068
114157
  VBreadcrumbs: VBreadcrumbs
114069
114158
  VBreadcrumbsItem: VBreadcrumbsItem
114070
114159
  VBreadcrumbsDivider: VBreadcrumbsDivider
114160
+ VBadge: VBadge
114161
+ VAvatar: VAvatar
114162
+ VBottomNavigation: VBottomNavigation
114071
114163
  VBtn: VBtn
114164
+ VBtnGroup: VBtnGroup
114165
+ VBanner: VBanner
114166
+ VBannerActions: VBannerActions
114167
+ VBannerText: VBannerText
114072
114168
  VBottomSheet: VBottomSheet
114169
+ VChip: VChip
114073
114170
  VCard: VCard
114074
114171
  VCardActions: VCardActions
114075
114172
  VCardItem: VCardItem
@@ -114077,22 +114174,23 @@ declare module 'vue' {
114077
114174
  VCardText: VCardText
114078
114175
  VCardTitle: VCardTitle
114079
114176
  VBtnToggle: VBtnToggle
114080
- VChip: VChip
114081
- VChipGroup: VChipGroup
114082
114177
  VCarousel: VCarousel
114083
114178
  VCarouselItem: VCarouselItem
114179
+ VChipGroup: VChipGroup
114084
114180
  VCheckbox: VCheckbox
114085
114181
  VCheckboxBtn: VCheckboxBtn
114182
+ VColorPicker: VColorPicker
114086
114183
  VCode: VCode
114087
114184
  VCombobox: VCombobox
114088
114185
  VCounter: VCounter
114089
- VColorPicker: VColorPicker
114186
+ VDialog: VDialog
114090
114187
  VDatePicker: VDatePicker
114091
114188
  VDatePickerControls: VDatePickerControls
114092
114189
  VDatePickerHeader: VDatePickerHeader
114093
114190
  VDatePickerMonth: VDatePickerMonth
114094
114191
  VDatePickerMonths: VDatePickerMonths
114095
114192
  VDatePickerYears: VDatePickerYears
114193
+ VDivider: VDivider
114096
114194
  VDataTable: VDataTable
114097
114195
  VDataTableHeaders: VDataTableHeaders
114098
114196
  VDataTableFooter: VDataTableFooter
@@ -114100,9 +114198,8 @@ declare module 'vue' {
114100
114198
  VDataTableRow: VDataTableRow
114101
114199
  VDataTableVirtual: VDataTableVirtual
114102
114200
  VDataTableServer: VDataTableServer
114103
- VBottomNavigation: VBottomNavigation
114104
- VDialog: VDialog
114105
114201
  VEmptyState: VEmptyState
114202
+ VFab: VFab
114106
114203
  VExpansionPanels: VExpansionPanels
114107
114204
  VExpansionPanel: VExpansionPanel
114108
114205
  VExpansionPanelText: VExpansionPanelText
@@ -114110,20 +114207,16 @@ declare module 'vue' {
114110
114207
  VFileInput: VFileInput
114111
114208
  VField: VField
114112
114209
  VFieldLabel: VFieldLabel
114113
- VDivider: VDivider
114114
- VFab: VFab
114115
- VItemGroup: VItemGroup
114116
- VItem: VItem
114117
- VInfiniteScroll: VInfiniteScroll
114210
+ VFooter: VFooter
114211
+ VImg: VImg
114118
114212
  VIcon: VIcon
114119
114213
  VComponentIcon: VComponentIcon
114120
114214
  VSvgIcon: VSvgIcon
114121
114215
  VLigatureIcon: VLigatureIcon
114122
114216
  VClassIcon: VClassIcon
114123
- VImg: VImg
114124
- VInput: VInput
114125
- VLabel: VLabel
114217
+ VInfiniteScroll: VInfiniteScroll
114126
114218
  VKbd: VKbd
114219
+ VInput: VInput
114127
114220
  VList: VList
114128
114221
  VListGroup: VListGroup
114129
114222
  VListImg: VListImg
@@ -114133,25 +114226,30 @@ declare module 'vue' {
114133
114226
  VListItemSubtitle: VListItemSubtitle
114134
114227
  VListItemTitle: VListItemTitle
114135
114228
  VListSubheader: VListSubheader
114136
- VMenu: VMenu
114229
+ VItemGroup: VItemGroup
114230
+ VItem: VItem
114231
+ VLabel: VLabel
114137
114232
  VMain: VMain
114138
- VNavigationDrawer: VNavigationDrawer
114233
+ VNumberInput: VNumberInput
114234
+ VMenu: VMenu
114139
114235
  VMessages: VMessages
114236
+ VNavigationDrawer: VNavigationDrawer
114237
+ VPagination: VPagination
114140
114238
  VOtpInput: VOtpInput
114141
- VProgressCircular: VProgressCircular
114142
114239
  VOverlay: VOverlay
114143
- VNumberInput: VNumberInput
114144
- VSelect: VSelect
114145
- VSelectionControlGroup: VSelectionControlGroup
114146
- VPagination: VPagination
114147
114240
  VRadioGroup: VRadioGroup
114241
+ VProgressLinear: VProgressLinear
114242
+ VProgressCircular: VProgressCircular
114148
114243
  VRating: VRating
114149
- VSkeletonLoader: VSkeletonLoader
114244
+ VSelect: VSelect
114245
+ VSheet: VSheet
114150
114246
  VSelectionControl: VSelectionControl
114247
+ VSkeletonLoader: VSkeletonLoader
114248
+ VSelectionControlGroup: VSelectionControlGroup
114151
114249
  VSlider: VSlider
114152
- VSheet: VSheet
114153
114250
  VSlideGroup: VSlideGroup
114154
114251
  VSlideGroupItem: VSlideGroupItem
114252
+ VSnackbar: VSnackbar
114155
114253
  VStepper: VStepper
114156
114254
  VStepperActions: VStepperActions
114157
114255
  VStepperHeader: VStepperHeader
@@ -114160,23 +114258,22 @@ declare module 'vue' {
114160
114258
  VStepperWindowItem: VStepperWindowItem
114161
114259
  VSwitch: VSwitch
114162
114260
  VSystemBar: VSystemBar
114163
- VSnackbar: VSnackbar
114164
- VTimePicker: VTimePicker
114165
- VTimePickerClock: VTimePickerClock
114166
- VTimePickerControls: VTimePickerControls
114167
- VTextField: VTextField
114168
114261
  VTab: VTab
114169
114262
  VTabs: VTabs
114170
114263
  VTabsWindow: VTabsWindow
114171
114264
  VTabsWindowItem: VTabsWindowItem
114172
- VTextarea: VTextarea
114265
+ VTextField: VTextField
114173
114266
  VTable: VTable
114267
+ VTimePicker: VTimePicker
114268
+ VTimePickerClock: VTimePickerClock
114269
+ VTimePickerControls: VTimePickerControls
114174
114270
  VTimeline: VTimeline
114175
114271
  VTimelineItem: VTimelineItem
114272
+ VTextarea: VTextarea
114273
+ VTooltip: VTooltip
114176
114274
  VToolbar: VToolbar
114177
114275
  VToolbarTitle: VToolbarTitle
114178
114276
  VToolbarItems: VToolbarItems
114179
- VTooltip: VTooltip
114180
114277
  VTreeview: VTreeview
114181
114278
  VTreeviewItem: VTreeviewItem
114182
114279
  VTreeviewGroup: VTreeviewGroup
@@ -114190,20 +114287,20 @@ declare module 'vue' {
114190
114287
  VRow: VRow
114191
114288
  VSpacer: VSpacer
114192
114289
  VForm: VForm
114290
+ VHover: VHover
114193
114291
  VLayout: VLayout
114194
114292
  VLayoutItem: VLayoutItem
114195
- VHover: VHover
114196
114293
  VLazy: VLazy
114197
114294
  VLocaleProvider: VLocaleProvider
114198
114295
  VNoSsr: VNoSsr
114199
- VRadio: VRadio
114200
- VRangeSlider: VRangeSlider
114201
114296
  VParallax: VParallax
114202
- VSparkline: VSparkline
114297
+ VRangeSlider: VRangeSlider
114298
+ VRadio: VRadio
114203
114299
  VResponsive: VResponsive
114204
114300
  VSnackbarQueue: VSnackbarQueue
114205
- VThemeProvider: VThemeProvider
114301
+ VSparkline: VSparkline
114206
114302
  VSpeedDial: VSpeedDial
114303
+ VThemeProvider: VThemeProvider
114207
114304
  VValidation: VValidation
114208
114305
  VVirtualScroll: VVirtualScroll
114209
114306
  VFabTransition: VFabTransition
@@ -114222,27 +114319,25 @@ declare module 'vue' {
114222
114319
  VExpandTransition: VExpandTransition
114223
114320
  VExpandXTransition: VExpandXTransition
114224
114321
  VDialogTransition: VDialogTransition
114225
- VProgressLinear: VProgressLinear
114226
- VFooter: VFooter
114322
+ VColorInput: VColorInput
114227
114323
  VFileUpload: VFileUpload
114228
114324
  VFileUploadItem: VFileUploadItem
114229
- VCalendar: VCalendar
114230
- VCalendarDay: VCalendarDay
114231
- VCalendarHeader: VCalendarHeader
114232
- VCalendarInterval: VCalendarInterval
114233
- VCalendarIntervalEvent: VCalendarIntervalEvent
114234
- VCalendarMonthDay: VCalendarMonthDay
114325
+ VIconBtn: VIconBtn
114235
114326
  VPicker: VPicker
114236
114327
  VPickerTitle: VPickerTitle
114237
114328
  VStepperVertical: VStepperVertical
114238
114329
  VStepperVerticalItem: VStepperVerticalItem
114239
114330
  VStepperVerticalActions: VStepperVerticalActions
114240
- VColorInput: VColorInput
114241
- VIconBtn: VIconBtn
114242
- VDateInput: VDateInput
114243
114331
  VHotkey: VHotkey
114244
- VPullToRefresh: VPullToRefresh
114332
+ VDateInput: VDateInput
114245
114333
  VMaskInput: VMaskInput
114334
+ VPullToRefresh: VPullToRefresh
114335
+ VCalendar: VCalendar
114336
+ VCalendarDay: VCalendarDay
114337
+ VCalendarHeader: VCalendarHeader
114338
+ VCalendarInterval: VCalendarInterval
114339
+ VCalendarIntervalEvent: VCalendarIntervalEvent
114340
+ VCalendarMonthDay: VCalendarMonthDay
114246
114341
  }
114247
114342
  export interface GlobalDirectives {
114248
114343
  vClickOutside: typeof import('vuetify/directives')['ClickOutside']