@vuetify/nightly 3.10.5-dev.2025-10-07 → 3.10.5-dev.2025-10-09

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 (73) hide show
  1. package/CHANGELOG.md +16 -3
  2. package/dist/json/attributes.json +3521 -3521
  3. package/dist/json/importMap-labs.json +14 -14
  4. package/dist/json/importMap.json +180 -180
  5. package/dist/json/tags.json +5 -5
  6. package/dist/json/web-types.json +6459 -6444
  7. package/dist/vuetify-labs.cjs +230 -166
  8. package/dist/vuetify-labs.css +3872 -3872
  9. package/dist/vuetify-labs.d.ts +1520 -1446
  10. package/dist/vuetify-labs.esm.js +230 -166
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +230 -166
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +156 -92
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +3682 -3682
  17. package/dist/vuetify.d.ts +2284 -2195
  18. package/dist/vuetify.esm.js +156 -92
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +156 -92
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +959 -955
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.d.ts +0 -61
  26. package/lib/components/VAutocomplete/VAutocomplete.js +13 -11
  27. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  28. package/lib/components/VCombobox/VCombobox.d.ts +6 -67
  29. package/lib/components/VCombobox/VCombobox.js +22 -23
  30. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  31. package/lib/components/VDataTable/VDataTable.d.ts +7 -7
  32. package/lib/components/VDataTable/VDataTableFooter.d.ts +16 -3
  33. package/lib/components/VDataTable/VDataTableFooter.js +4 -2
  34. package/lib/components/VDataTable/VDataTableFooter.js.map +1 -1
  35. package/lib/components/VDataTable/VDataTableHeaders.js +10 -7
  36. package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
  37. package/lib/components/VDataTable/VDataTableRow.d.ts +10 -0
  38. package/lib/components/VDataTable/VDataTableRow.js +3 -0
  39. package/lib/components/VDataTable/VDataTableRow.js.map +1 -1
  40. package/lib/components/VDataTable/VDataTableRows.d.ts +10 -0
  41. package/lib/components/VDataTable/VDataTableRows.js +2 -0
  42. package/lib/components/VDataTable/VDataTableRows.js.map +1 -1
  43. package/lib/components/VDataTable/VDataTableServer.d.ts +7 -7
  44. package/lib/components/VNumberInput/VNumberInput.js +23 -8
  45. package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
  46. package/lib/components/VSlideGroup/VSlideGroup.d.ts +1 -1
  47. package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
  48. package/lib/components/VTabs/VTabs.d.ts +16 -2
  49. package/lib/components/VTabs/VTabs.js +4 -2
  50. package/lib/components/VTabs/VTabs.js.map +1 -1
  51. package/lib/components/VTextarea/VTextarea.css +2 -2
  52. package/lib/components/VTextarea/VTextarea.js +20 -1
  53. package/lib/components/VTextarea/VTextarea.js.map +1 -1
  54. package/lib/components/VTextarea/VTextarea.sass +4 -2
  55. package/lib/components/VTreeview/VTreeview.d.ts +192 -5
  56. package/lib/components/VTreeview/VTreeview.js +16 -3
  57. package/lib/components/VTreeview/VTreeview.js.map +1 -1
  58. package/lib/composables/icons.d.ts +0 -2
  59. package/lib/composables/icons.js +3 -36
  60. package/lib/composables/icons.js.map +1 -1
  61. package/lib/composables/virtual.js +2 -2
  62. package/lib/composables/virtual.js.map +1 -1
  63. package/lib/entry-bundler.js +1 -1
  64. package/lib/framework.d.ts +60 -60
  65. package/lib/framework.js +3 -2
  66. package/lib/framework.js.map +1 -1
  67. package/lib/icons.d.ts +3 -0
  68. package/lib/icons.js +34 -0
  69. package/lib/icons.js.map +1 -0
  70. package/lib/labs/VDateInput/VDateInput.d.ts +0 -30
  71. package/lib/labs/VDateInput/VDateInput.js +2 -2
  72. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  73. package/package.json +1 -1
@@ -7770,9 +7770,6 @@ declare const VAutocomplete: {
7770
7770
  rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
7771
7771
  density: Density;
7772
7772
  tile: boolean;
7773
- transition: string | boolean | (vue.TransitionProps & {
7774
- component?: vue.Component | undefined;
7775
- }) | null;
7776
7773
  hideSpinButtons: boolean;
7777
7774
  persistentHint: boolean;
7778
7775
  messages: string | readonly string[];
@@ -10489,9 +10486,6 @@ declare const VAutocomplete: {
10489
10486
  density: Density;
10490
10487
  rounded: string | number | boolean;
10491
10488
  tile: boolean;
10492
- transition: string | boolean | (vue.TransitionProps & {
10493
- component?: vue.Component | undefined;
10494
- }) | null;
10495
10489
  hideSpinButtons: boolean;
10496
10490
  persistentHint: boolean;
10497
10491
  messages: string | readonly string[];
@@ -10622,9 +10616,6 @@ declare const VAutocomplete: {
10622
10616
  rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
10623
10617
  density: Density;
10624
10618
  tile: boolean;
10625
- transition: string | boolean | (vue.TransitionProps & {
10626
- component?: vue.Component | undefined;
10627
- }) | null;
10628
10619
  hideSpinButtons: boolean;
10629
10620
  persistentHint: boolean;
10630
10621
  messages: string | readonly string[];
@@ -13336,9 +13327,6 @@ declare const VAutocomplete: {
13336
13327
  density: Density;
13337
13328
  rounded: string | number | boolean;
13338
13329
  tile: boolean;
13339
- transition: string | boolean | (vue.TransitionProps & {
13340
- component?: vue.Component | undefined;
13341
- }) | null;
13342
13330
  hideSpinButtons: boolean;
13343
13331
  persistentHint: boolean;
13344
13332
  messages: string | readonly string[];
@@ -13392,9 +13380,6 @@ declare const VAutocomplete: {
13392
13380
  rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
13393
13381
  density: Density;
13394
13382
  tile: boolean;
13395
- transition: string | boolean | (vue.TransitionProps & {
13396
- component?: vue.Component | undefined;
13397
- }) | null;
13398
13383
  hideSpinButtons: boolean;
13399
13384
  persistentHint: boolean;
13400
13385
  messages: string | readonly string[];
@@ -16111,9 +16096,6 @@ declare const VAutocomplete: {
16111
16096
  density: Density;
16112
16097
  rounded: string | number | boolean;
16113
16098
  tile: boolean;
16114
- transition: string | boolean | (vue.TransitionProps & {
16115
- component?: vue.Component | undefined;
16116
- }) | null;
16117
16099
  hideSpinButtons: boolean;
16118
16100
  persistentHint: boolean;
16119
16101
  messages: string | readonly string[];
@@ -16351,14 +16333,6 @@ declare const VAutocomplete: {
16351
16333
  minWidth: (NumberConstructor | StringConstructor)[];
16352
16334
  width: (NumberConstructor | StringConstructor)[];
16353
16335
  loading: (BooleanConstructor | StringConstructor)[];
16354
- transition: {
16355
- type: PropType<string | boolean | (vue.TransitionProps & {
16356
- component?: vue.Component | undefined;
16357
- }) | null>;
16358
- default: NonNullable<string | boolean | (vue.TransitionProps & {
16359
- component?: vue.Component | undefined;
16360
- }) | null>;
16361
- };
16362
16336
  id: StringConstructor;
16363
16337
  appendIcon: PropType<IconValue>;
16364
16338
  prependIcon: PropType<IconValue>;
@@ -17002,14 +16976,6 @@ declare const VAutocomplete: {
17002
16976
  minWidth: (NumberConstructor | StringConstructor)[];
17003
16977
  width: (NumberConstructor | StringConstructor)[];
17004
16978
  loading: (BooleanConstructor | StringConstructor)[];
17005
- transition: {
17006
- type: PropType<string | boolean | (vue.TransitionProps & {
17007
- component?: vue.Component | undefined;
17008
- }) | null>;
17009
- default: NonNullable<string | boolean | (vue.TransitionProps & {
17010
- component?: vue.Component | undefined;
17011
- }) | null>;
17012
- };
17013
16979
  id: StringConstructor;
17014
16980
  appendIcon: PropType<IconValue>;
17015
16981
  prependIcon: PropType<IconValue>;
@@ -28419,9 +28385,6 @@ declare const VCombobox: {
28419
28385
  rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
28420
28386
  density: Density;
28421
28387
  tile: boolean;
28422
- transition: string | boolean | (vue.TransitionProps & {
28423
- component?: vue.Component | undefined;
28424
- }) | null;
28425
28388
  hideSpinButtons: boolean;
28426
28389
  persistentHint: boolean;
28427
28390
  messages: string | readonly string[];
@@ -28963,7 +28926,7 @@ declare const VCombobox: {
28963
28926
  search: vue.WritableComputedRef<string, string>;
28964
28927
  selectionIndex: vue.ShallowRef<number, number>;
28965
28928
  filteredItems: vue.ShallowRef<ListItem<any>[], ListItem<any>[]>;
28966
- select: (item: ListItem<any> | undefined, set?: boolean | null) => void;
28929
+ select: (item: ListItem<any> | undefined, set?: boolean | null, keepMenu?: boolean) => void;
28967
28930
  } & Omit<Omit<{
28968
28931
  $: vue.ComponentInternalInstance;
28969
28932
  $data: {};
@@ -30602,7 +30565,7 @@ declare const VCombobox: {
30602
30565
  search: vue.WritableComputedRef<string, string>;
30603
30566
  selectionIndex: vue.ShallowRef<number, number>;
30604
30567
  filteredItems: vue.ShallowRef<ListItem<any>[], ListItem<any>[]>;
30605
- select: (item: ListItem<any> | undefined, set?: boolean | null) => void;
30568
+ select: (item: ListItem<any> | undefined, set?: boolean | null, keepMenu?: boolean) => void;
30606
30569
  } | (HTMLInputElement & Omit<Omit<{
30607
30570
  $: vue.ComponentInternalInstance;
30608
30571
  $data: {};
@@ -31137,9 +31100,6 @@ declare const VCombobox: {
31137
31100
  density: Density;
31138
31101
  rounded: string | number | boolean;
31139
31102
  tile: boolean;
31140
- transition: string | boolean | (vue.TransitionProps & {
31141
- component?: vue.Component | undefined;
31142
- }) | null;
31143
31103
  hideSpinButtons: boolean;
31144
31104
  persistentHint: boolean;
31145
31105
  messages: string | readonly string[];
@@ -31271,9 +31231,6 @@ declare const VCombobox: {
31271
31231
  rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
31272
31232
  density: Density;
31273
31233
  tile: boolean;
31274
- transition: string | boolean | (vue.TransitionProps & {
31275
- component?: vue.Component | undefined;
31276
- }) | null;
31277
31234
  hideSpinButtons: boolean;
31278
31235
  persistentHint: boolean;
31279
31236
  messages: string | readonly string[];
@@ -31815,7 +31772,7 @@ declare const VCombobox: {
31815
31772
  search: vue.WritableComputedRef<string, string>;
31816
31773
  selectionIndex: vue.ShallowRef<number, number>;
31817
31774
  filteredItems: vue.ShallowRef<ListItem<any>[], ListItem<any>[]>;
31818
- select: (item: ListItem<any> | undefined, set?: boolean | null) => void;
31775
+ select: (item: ListItem<any> | undefined, set?: boolean | null, keepMenu?: boolean) => void;
31819
31776
  } & Omit<Omit<{
31820
31777
  $: vue.ComponentInternalInstance;
31821
31778
  $data: {};
@@ -33454,7 +33411,7 @@ declare const VCombobox: {
33454
33411
  search: vue.WritableComputedRef<string, string>;
33455
33412
  selectionIndex: vue.ShallowRef<number, number>;
33456
33413
  filteredItems: vue.ShallowRef<ListItem<any>[], ListItem<any>[]>;
33457
- select: (item: ListItem<any> | undefined, set?: boolean | null) => void;
33414
+ select: (item: ListItem<any> | undefined, set?: boolean | null, keepMenu?: boolean) => void;
33458
33415
  } | (HTMLInputElement & Omit<Omit<{
33459
33416
  $: vue.ComponentInternalInstance;
33460
33417
  $data: {};
@@ -33984,9 +33941,6 @@ declare const VCombobox: {
33984
33941
  density: Density;
33985
33942
  rounded: string | number | boolean;
33986
33943
  tile: boolean;
33987
- transition: string | boolean | (vue.TransitionProps & {
33988
- component?: vue.Component | undefined;
33989
- }) | null;
33990
33944
  hideSpinButtons: boolean;
33991
33945
  persistentHint: boolean;
33992
33946
  messages: string | readonly string[];
@@ -34041,9 +33995,6 @@ declare const VCombobox: {
34041
33995
  rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
34042
33996
  density: Density;
34043
33997
  tile: boolean;
34044
- transition: string | boolean | (vue.TransitionProps & {
34045
- component?: vue.Component | undefined;
34046
- }) | null;
34047
33998
  hideSpinButtons: boolean;
34048
33999
  persistentHint: boolean;
34049
34000
  messages: string | readonly string[];
@@ -34585,7 +34536,7 @@ declare const VCombobox: {
34585
34536
  search: vue.WritableComputedRef<string, string>;
34586
34537
  selectionIndex: vue.ShallowRef<number, number>;
34587
34538
  filteredItems: vue.ShallowRef<ListItem<any>[], ListItem<any>[]>;
34588
- select: (item: ListItem<any> | undefined, set?: boolean | null) => void;
34539
+ select: (item: ListItem<any> | undefined, set?: boolean | null, keepMenu?: boolean) => void;
34589
34540
  } & Omit<Omit<{
34590
34541
  $: vue.ComponentInternalInstance;
34591
34542
  $data: {};
@@ -36224,7 +36175,7 @@ declare const VCombobox: {
36224
36175
  search: vue.WritableComputedRef<string, string>;
36225
36176
  selectionIndex: vue.ShallowRef<number, number>;
36226
36177
  filteredItems: vue.ShallowRef<ListItem<any>[], ListItem<any>[]>;
36227
- select: (item: ListItem<any> | undefined, set?: boolean | null) => void;
36178
+ select: (item: ListItem<any> | undefined, set?: boolean | null, keepMenu?: boolean) => void;
36228
36179
  } | (HTMLInputElement & Omit<Omit<{
36229
36180
  $: vue.ComponentInternalInstance;
36230
36181
  $data: {};
@@ -36759,9 +36710,6 @@ declare const VCombobox: {
36759
36710
  density: Density;
36760
36711
  rounded: string | number | boolean;
36761
36712
  tile: boolean;
36762
- transition: string | boolean | (vue.TransitionProps & {
36763
- component?: vue.Component | undefined;
36764
- }) | null;
36765
36713
  hideSpinButtons: boolean;
36766
36714
  persistentHint: boolean;
36767
36715
  messages: string | readonly string[];
@@ -37000,14 +36948,6 @@ declare const VCombobox: {
37000
36948
  minWidth: (NumberConstructor | StringConstructor)[];
37001
36949
  width: (NumberConstructor | StringConstructor)[];
37002
36950
  loading: (BooleanConstructor | StringConstructor)[];
37003
- transition: {
37004
- type: PropType<string | boolean | (vue.TransitionProps & {
37005
- component?: vue.Component | undefined;
37006
- }) | null>;
37007
- default: NonNullable<string | boolean | (vue.TransitionProps & {
37008
- component?: vue.Component | undefined;
37009
- }) | null>;
37010
- };
37011
36951
  id: StringConstructor;
37012
36952
  appendIcon: PropType<IconValue>;
37013
36953
  prependIcon: PropType<IconValue>;
@@ -37661,14 +37601,6 @@ declare const VCombobox: {
37661
37601
  minWidth: (NumberConstructor | StringConstructor)[];
37662
37602
  width: (NumberConstructor | StringConstructor)[];
37663
37603
  loading: (BooleanConstructor | StringConstructor)[];
37664
- transition: {
37665
- type: PropType<string | boolean | (vue.TransitionProps & {
37666
- component?: vue.Component | undefined;
37667
- }) | null>;
37668
- default: NonNullable<string | boolean | (vue.TransitionProps & {
37669
- component?: vue.Component | undefined;
37670
- }) | null>;
37671
- };
37672
37604
  id: StringConstructor;
37673
37605
  appendIcon: PropType<IconValue>;
37674
37606
  prependIcon: PropType<IconValue>;
@@ -39242,6 +39174,7 @@ declare const VDataTableRow: {
39242
39174
  expandIcon: IconValue;
39243
39175
  } & {
39244
39176
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
39177
+ color?: string | undefined;
39245
39178
  index?: number | undefined;
39246
39179
  onClick?: ((args_0: MouseEvent) => void) | undefined;
39247
39180
  onContextmenu?: ((args_0: MouseEvent) => void) | undefined;
@@ -39284,6 +39217,7 @@ declare const VDataTableRow: {
39284
39217
  expandIcon: IconValue;
39285
39218
  } & {
39286
39219
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
39220
+ color?: string | undefined;
39287
39221
  index?: number | undefined;
39288
39222
  onClick?: ((args_0: MouseEvent) => void) | undefined;
39289
39223
  onContextmenu?: ((args_0: MouseEvent) => void) | undefined;
@@ -39304,6 +39238,7 @@ declare const VDataTableRow: {
39304
39238
  expandIcon: IconValue;
39305
39239
  } & {
39306
39240
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
39241
+ color?: string | undefined;
39307
39242
  index?: number | undefined;
39308
39243
  onClick?: ((args_0: MouseEvent) => void) | undefined;
39309
39244
  onContextmenu?: ((args_0: MouseEvent) => void) | undefined;
@@ -39349,6 +39284,7 @@ declare const VDataTableRow: {
39349
39284
  default: string;
39350
39285
  validator: (v: any) => boolean;
39351
39286
  };
39287
+ color: StringConstructor;
39352
39288
  index: NumberConstructor;
39353
39289
  item: PropType<DataTableItem<any>>;
39354
39290
  cellProps: PropType<CellProps<any>>;
@@ -39374,6 +39310,7 @@ declare const VDataTableRow: {
39374
39310
  default: string;
39375
39311
  validator: (v: any) => boolean;
39376
39312
  };
39313
+ color: StringConstructor;
39377
39314
  index: NumberConstructor;
39378
39315
  item: PropType<DataTableItem<any>>;
39379
39316
  cellProps: PropType<CellProps<any>>;
@@ -39637,6 +39574,7 @@ declare const VDataTableRows: {
39637
39574
  noDataText: string;
39638
39575
  } & {
39639
39576
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
39577
+ color?: string | undefined;
39640
39578
  loading?: string | boolean | undefined;
39641
39579
  rowProps?: RowProps<any> | undefined;
39642
39580
  cellProps?: CellProps<any> | undefined;
@@ -39730,6 +39668,7 @@ declare const VDataTableRows: {
39730
39668
  noDataText: string;
39731
39669
  } & {
39732
39670
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
39671
+ color?: string | undefined;
39733
39672
  loading?: string | boolean | undefined;
39734
39673
  rowProps?: RowProps<any> | undefined;
39735
39674
  cellProps?: CellProps<any> | undefined;
@@ -39759,6 +39698,7 @@ declare const VDataTableRows: {
39759
39698
  noDataText: string;
39760
39699
  } & {
39761
39700
  mobileBreakpoint?: number | DisplayBreakpoint | undefined;
39701
+ color?: string | undefined;
39762
39702
  loading?: string | boolean | undefined;
39763
39703
  rowProps?: RowProps<any> | undefined;
39764
39704
  cellProps?: CellProps<any> | undefined;
@@ -39864,6 +39804,7 @@ declare const VDataTableRows: {
39864
39804
  type: PropType<IconValue>;
39865
39805
  default: string;
39866
39806
  };
39807
+ color: StringConstructor;
39867
39808
  loading: (BooleanConstructor | StringConstructor)[];
39868
39809
  loadingText: {
39869
39810
  type: StringConstructor;
@@ -39907,6 +39848,7 @@ declare const VDataTableRows: {
39907
39848
  type: PropType<IconValue>;
39908
39849
  default: string;
39909
39850
  };
39851
+ color: StringConstructor;
39910
39852
  loading: (BooleanConstructor | StringConstructor)[];
39911
39853
  loadingText: {
39912
39854
  type: StringConstructor;
@@ -40736,246 +40678,7 @@ declare const VDataTable: {
40736
40678
  type: (NumberConstructor | StringConstructor)[];
40737
40679
  default: number;
40738
40680
  };
40739
- prevIcon: {
40740
- type: vue.PropType<IconValue>;
40741
- default: string;
40742
- };
40743
- nextIcon: {
40744
- type: vue.PropType<IconValue>;
40745
- default: string;
40746
- };
40747
- firstIcon: {
40748
- type: vue.PropType<IconValue>;
40749
- default: string;
40750
- };
40751
- lastIcon: {
40752
- type: vue.PropType<IconValue>;
40753
- default: string;
40754
- };
40755
- itemsPerPageText: {
40756
- type: StringConstructor;
40757
- default: string;
40758
- };
40759
- pageText: {
40760
- type: StringConstructor;
40761
- default: string;
40762
- };
40763
- firstPageLabel: {
40764
- type: StringConstructor;
40765
- default: string;
40766
- };
40767
- prevPageLabel: {
40768
- type: StringConstructor;
40769
- default: string;
40770
- };
40771
- nextPageLabel: {
40772
- type: StringConstructor;
40773
- default: string;
40774
- };
40775
- lastPageLabel: {
40776
- type: StringConstructor;
40777
- default: string;
40778
- };
40779
- itemsPerPageOptions: {
40780
- type: vue.PropType<readonly (number | {
40781
- title: string;
40782
- value: number;
40783
- })[]>;
40784
- default: () => {
40785
- value: number;
40786
- title: string;
40787
- }[];
40788
- };
40789
- showCurrentPage: BooleanConstructor;
40790
- headers: vue.PropType<readonly {
40791
- readonly key?: "data-table-expand" | "data-table-group" | "data-table-select" | (string & {}) | undefined;
40792
- readonly value?: SelectItemKey<Record<string, any>>;
40793
- readonly title?: string | undefined;
40794
- readonly fixed?: "end" | "start" | boolean | undefined;
40795
- readonly align?: "center" | "end" | "start" | undefined;
40796
- readonly width?: string | number | undefined;
40797
- readonly minWidth?: string | number | undefined;
40798
- readonly maxWidth?: string | number | undefined;
40799
- readonly nowrap?: boolean | undefined;
40800
- readonly intent?: number | undefined;
40801
- readonly headerProps?: {
40802
- readonly [x: string]: any;
40803
- } | undefined;
40804
- readonly cellProps?: HeaderCellPropsFunction | {
40805
- readonly [x: string]: any;
40806
- } | undefined;
40807
- readonly sortable?: boolean | undefined;
40808
- readonly sort?: DataTableCompareFunction<any> | undefined;
40809
- readonly sortRaw?: DataTableCompareFunction<any> | undefined;
40810
- readonly filter?: FilterFunction | undefined;
40811
- readonly children?: readonly {
40812
- readonly key?: "data-table-expand" | "data-table-group" | "data-table-select" | (string & {}) | undefined;
40813
- readonly value?: SelectItemKey<Record<string, any>>;
40814
- readonly title?: string | undefined;
40815
- readonly fixed?: "end" | "start" | boolean | undefined;
40816
- readonly align?: "center" | "end" | "start" | undefined;
40817
- readonly width?: string | number | undefined;
40818
- readonly minWidth?: string | number | undefined;
40819
- readonly maxWidth?: string | number | undefined;
40820
- readonly nowrap?: boolean | undefined;
40821
- readonly intent?: number | undefined;
40822
- readonly headerProps?: {
40823
- readonly [x: string]: any;
40824
- } | undefined;
40825
- readonly cellProps?: HeaderCellPropsFunction | {
40826
- readonly [x: string]: any;
40827
- } | undefined;
40828
- readonly sortable?: boolean | undefined;
40829
- readonly sort?: DataTableCompareFunction<any> | undefined;
40830
- readonly sortRaw?: DataTableCompareFunction<any> | undefined;
40831
- readonly filter?: FilterFunction | undefined;
40832
- readonly children?: readonly /*elided*/ any[] | undefined;
40833
- }[] | undefined;
40834
- }[]>;
40835
40681
  color: StringConstructor;
40836
- disableSort: BooleanConstructor;
40837
- sortAscIcon: {
40838
- type: vue.PropType<IconValue>;
40839
- default: string;
40840
- };
40841
- sortDescIcon: {
40842
- type: vue.PropType<IconValue>;
40843
- default: string;
40844
- };
40845
- headerProps: {
40846
- type: vue.PropType<Record<string, any>>;
40847
- };
40848
- sticky: BooleanConstructor;
40849
- groupCollapseIcon: {
40850
- type: vue.PropType<IconValue>;
40851
- default: string;
40852
- };
40853
- groupExpandIcon: {
40854
- type: vue.PropType<IconValue>;
40855
- default: string;
40856
- };
40857
- collapseIcon: {
40858
- type: vue.PropType<IconValue>;
40859
- default: string;
40860
- };
40861
- expandIcon: {
40862
- type: vue.PropType<IconValue>;
40863
- default: string;
40864
- };
40865
- loadingText: {
40866
- type: StringConstructor;
40867
- default: string;
40868
- };
40869
- hideNoData: BooleanConstructor;
40870
- noDataText: {
40871
- type: StringConstructor;
40872
- default: string;
40873
- };
40874
- fixedHeader: BooleanConstructor;
40875
- fixedFooter: BooleanConstructor;
40876
- height: (NumberConstructor | StringConstructor)[];
40877
- hover: BooleanConstructor;
40878
- striped: {
40879
- type: vue.PropType<Striped>;
40880
- default: null;
40881
- validator: (v: any) => boolean;
40882
- };
40883
- hideDefaultBody: BooleanConstructor;
40884
- hideDefaultFooter: BooleanConstructor;
40885
- hideDefaultHeader: BooleanConstructor;
40886
- width: (NumberConstructor | StringConstructor)[];
40887
- search: StringConstructor;
40888
- }, vue.ExtractPropTypes<{
40889
- theme: StringConstructor;
40890
- class: vue.PropType<any>;
40891
- style: {
40892
- type: vue.PropType<vue.StyleValue>;
40893
- default: null;
40894
- };
40895
- mobile: {
40896
- type: vue.PropType<boolean | null>;
40897
- default: boolean;
40898
- };
40899
- mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
40900
- customFilter: vue.PropType<FilterFunction>;
40901
- customKeyFilter: vue.PropType<FilterKeyFunctions>;
40902
- filterKeys: vue.PropType<FilterKeys>;
40903
- filterMode: {
40904
- type: vue.PropType<FilterMode>;
40905
- default: string;
40906
- };
40907
- noFilter: BooleanConstructor;
40908
- expandOnClick: BooleanConstructor;
40909
- showExpand: BooleanConstructor;
40910
- expanded: {
40911
- type: vue.PropType<readonly string[]>;
40912
- default: () => never[];
40913
- };
40914
- initialSortOrder: {
40915
- type: vue.PropType<"asc" | "desc">;
40916
- default: string;
40917
- validator: (v: any) => boolean;
40918
- };
40919
- sortBy: {
40920
- type: vue.PropType<readonly SortItem[]>;
40921
- default: () => never[];
40922
- };
40923
- customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
40924
- multiSort: {
40925
- type: vue.PropType<boolean | MultiSortProps>;
40926
- default: boolean;
40927
- };
40928
- mustSort: BooleanConstructor;
40929
- groupBy: {
40930
- type: vue.PropType<readonly SortItem[]>;
40931
- default: () => never[];
40932
- };
40933
- items: {
40934
- type: vue.PropType<any[]>;
40935
- default: () => never[];
40936
- };
40937
- itemValue: {
40938
- type: vue.PropType<SelectItemKey>;
40939
- default: string;
40940
- };
40941
- itemSelectable: {
40942
- type: vue.PropType<SelectItemKey>;
40943
- default: null;
40944
- };
40945
- rowProps: vue.PropType<RowProps<any>>;
40946
- cellProps: vue.PropType<CellProps<any>>;
40947
- returnObject: BooleanConstructor;
40948
- showSelect: BooleanConstructor;
40949
- selectStrategy: {
40950
- type: vue.PropType<"all" | "page" | "single">;
40951
- default: string;
40952
- };
40953
- modelValue: {
40954
- type: vue.PropType<readonly any[]>;
40955
- default: () => never[];
40956
- };
40957
- valueComparator: {
40958
- type: vue.PropType<typeof deepEqual>;
40959
- default: typeof deepEqual;
40960
- };
40961
- density: {
40962
- type: vue.PropType<Density>;
40963
- default: string;
40964
- validator: (v: any) => boolean;
40965
- };
40966
- tag: {
40967
- type: vue.PropType<string | JSXComponent>;
40968
- default: string;
40969
- };
40970
- loading: (BooleanConstructor | StringConstructor)[];
40971
- page: {
40972
- type: (NumberConstructor | StringConstructor)[];
40973
- default: number;
40974
- };
40975
- itemsPerPage: {
40976
- type: (NumberConstructor | StringConstructor)[];
40977
- default: number;
40978
- };
40979
40682
  prevIcon: {
40980
40683
  type: vue.PropType<IconValue>;
40981
40684
  default: string;
@@ -41069,10 +40772,249 @@ declare const VDataTable: {
41069
40772
  readonly sort?: DataTableCompareFunction<any> | undefined;
41070
40773
  readonly sortRaw?: DataTableCompareFunction<any> | undefined;
41071
40774
  readonly filter?: FilterFunction | undefined;
41072
- readonly children?: readonly any[] | undefined;
40775
+ readonly children?: readonly /*elided*/ any[] | undefined;
41073
40776
  }[] | undefined;
41074
40777
  }[]>;
40778
+ disableSort: BooleanConstructor;
40779
+ sortAscIcon: {
40780
+ type: vue.PropType<IconValue>;
40781
+ default: string;
40782
+ };
40783
+ sortDescIcon: {
40784
+ type: vue.PropType<IconValue>;
40785
+ default: string;
40786
+ };
40787
+ headerProps: {
40788
+ type: vue.PropType<Record<string, any>>;
40789
+ };
40790
+ sticky: BooleanConstructor;
40791
+ groupCollapseIcon: {
40792
+ type: vue.PropType<IconValue>;
40793
+ default: string;
40794
+ };
40795
+ groupExpandIcon: {
40796
+ type: vue.PropType<IconValue>;
40797
+ default: string;
40798
+ };
40799
+ collapseIcon: {
40800
+ type: vue.PropType<IconValue>;
40801
+ default: string;
40802
+ };
40803
+ expandIcon: {
40804
+ type: vue.PropType<IconValue>;
40805
+ default: string;
40806
+ };
40807
+ loadingText: {
40808
+ type: StringConstructor;
40809
+ default: string;
40810
+ };
40811
+ hideNoData: BooleanConstructor;
40812
+ noDataText: {
40813
+ type: StringConstructor;
40814
+ default: string;
40815
+ };
40816
+ fixedHeader: BooleanConstructor;
40817
+ fixedFooter: BooleanConstructor;
40818
+ height: (NumberConstructor | StringConstructor)[];
40819
+ hover: BooleanConstructor;
40820
+ striped: {
40821
+ type: vue.PropType<Striped>;
40822
+ default: null;
40823
+ validator: (v: any) => boolean;
40824
+ };
40825
+ hideDefaultBody: BooleanConstructor;
40826
+ hideDefaultFooter: BooleanConstructor;
40827
+ hideDefaultHeader: BooleanConstructor;
40828
+ width: (NumberConstructor | StringConstructor)[];
40829
+ search: StringConstructor;
40830
+ }, vue.ExtractPropTypes<{
40831
+ theme: StringConstructor;
40832
+ class: vue.PropType<any>;
40833
+ style: {
40834
+ type: vue.PropType<vue.StyleValue>;
40835
+ default: null;
40836
+ };
40837
+ mobile: {
40838
+ type: vue.PropType<boolean | null>;
40839
+ default: boolean;
40840
+ };
40841
+ mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
40842
+ customFilter: vue.PropType<FilterFunction>;
40843
+ customKeyFilter: vue.PropType<FilterKeyFunctions>;
40844
+ filterKeys: vue.PropType<FilterKeys>;
40845
+ filterMode: {
40846
+ type: vue.PropType<FilterMode>;
40847
+ default: string;
40848
+ };
40849
+ noFilter: BooleanConstructor;
40850
+ expandOnClick: BooleanConstructor;
40851
+ showExpand: BooleanConstructor;
40852
+ expanded: {
40853
+ type: vue.PropType<readonly string[]>;
40854
+ default: () => never[];
40855
+ };
40856
+ initialSortOrder: {
40857
+ type: vue.PropType<"asc" | "desc">;
40858
+ default: string;
40859
+ validator: (v: any) => boolean;
40860
+ };
40861
+ sortBy: {
40862
+ type: vue.PropType<readonly SortItem[]>;
40863
+ default: () => never[];
40864
+ };
40865
+ customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
40866
+ multiSort: {
40867
+ type: vue.PropType<boolean | MultiSortProps>;
40868
+ default: boolean;
40869
+ };
40870
+ mustSort: BooleanConstructor;
40871
+ groupBy: {
40872
+ type: vue.PropType<readonly SortItem[]>;
40873
+ default: () => never[];
40874
+ };
40875
+ items: {
40876
+ type: vue.PropType<any[]>;
40877
+ default: () => never[];
40878
+ };
40879
+ itemValue: {
40880
+ type: vue.PropType<SelectItemKey>;
40881
+ default: string;
40882
+ };
40883
+ itemSelectable: {
40884
+ type: vue.PropType<SelectItemKey>;
40885
+ default: null;
40886
+ };
40887
+ rowProps: vue.PropType<RowProps<any>>;
40888
+ cellProps: vue.PropType<CellProps<any>>;
40889
+ returnObject: BooleanConstructor;
40890
+ showSelect: BooleanConstructor;
40891
+ selectStrategy: {
40892
+ type: vue.PropType<"all" | "page" | "single">;
40893
+ default: string;
40894
+ };
40895
+ modelValue: {
40896
+ type: vue.PropType<readonly any[]>;
40897
+ default: () => never[];
40898
+ };
40899
+ valueComparator: {
40900
+ type: vue.PropType<typeof deepEqual>;
40901
+ default: typeof deepEqual;
40902
+ };
40903
+ density: {
40904
+ type: vue.PropType<Density>;
40905
+ default: string;
40906
+ validator: (v: any) => boolean;
40907
+ };
40908
+ tag: {
40909
+ type: vue.PropType<string | JSXComponent>;
40910
+ default: string;
40911
+ };
40912
+ loading: (BooleanConstructor | StringConstructor)[];
40913
+ page: {
40914
+ type: (NumberConstructor | StringConstructor)[];
40915
+ default: number;
40916
+ };
40917
+ itemsPerPage: {
40918
+ type: (NumberConstructor | StringConstructor)[];
40919
+ default: number;
40920
+ };
41075
40921
  color: StringConstructor;
40922
+ prevIcon: {
40923
+ type: vue.PropType<IconValue>;
40924
+ default: string;
40925
+ };
40926
+ nextIcon: {
40927
+ type: vue.PropType<IconValue>;
40928
+ default: string;
40929
+ };
40930
+ firstIcon: {
40931
+ type: vue.PropType<IconValue>;
40932
+ default: string;
40933
+ };
40934
+ lastIcon: {
40935
+ type: vue.PropType<IconValue>;
40936
+ default: string;
40937
+ };
40938
+ itemsPerPageText: {
40939
+ type: StringConstructor;
40940
+ default: string;
40941
+ };
40942
+ pageText: {
40943
+ type: StringConstructor;
40944
+ default: string;
40945
+ };
40946
+ firstPageLabel: {
40947
+ type: StringConstructor;
40948
+ default: string;
40949
+ };
40950
+ prevPageLabel: {
40951
+ type: StringConstructor;
40952
+ default: string;
40953
+ };
40954
+ nextPageLabel: {
40955
+ type: StringConstructor;
40956
+ default: string;
40957
+ };
40958
+ lastPageLabel: {
40959
+ type: StringConstructor;
40960
+ default: string;
40961
+ };
40962
+ itemsPerPageOptions: {
40963
+ type: vue.PropType<readonly (number | {
40964
+ title: string;
40965
+ value: number;
40966
+ })[]>;
40967
+ default: () => {
40968
+ value: number;
40969
+ title: string;
40970
+ }[];
40971
+ };
40972
+ showCurrentPage: BooleanConstructor;
40973
+ headers: vue.PropType<readonly {
40974
+ readonly key?: "data-table-expand" | "data-table-group" | "data-table-select" | (string & {}) | undefined;
40975
+ readonly value?: SelectItemKey<Record<string, any>>;
40976
+ readonly title?: string | undefined;
40977
+ readonly fixed?: "end" | "start" | boolean | undefined;
40978
+ readonly align?: "center" | "end" | "start" | undefined;
40979
+ readonly width?: string | number | undefined;
40980
+ readonly minWidth?: string | number | undefined;
40981
+ readonly maxWidth?: string | number | undefined;
40982
+ readonly nowrap?: boolean | undefined;
40983
+ readonly intent?: number | undefined;
40984
+ readonly headerProps?: {
40985
+ readonly [x: string]: any;
40986
+ } | undefined;
40987
+ readonly cellProps?: HeaderCellPropsFunction | {
40988
+ readonly [x: string]: any;
40989
+ } | undefined;
40990
+ readonly sortable?: boolean | undefined;
40991
+ readonly sort?: DataTableCompareFunction<any> | undefined;
40992
+ readonly sortRaw?: DataTableCompareFunction<any> | undefined;
40993
+ readonly filter?: FilterFunction | undefined;
40994
+ readonly children?: readonly {
40995
+ readonly key?: "data-table-expand" | "data-table-group" | "data-table-select" | (string & {}) | undefined;
40996
+ readonly value?: SelectItemKey<Record<string, any>>;
40997
+ readonly title?: string | undefined;
40998
+ readonly fixed?: "end" | "start" | boolean | undefined;
40999
+ readonly align?: "center" | "end" | "start" | undefined;
41000
+ readonly width?: string | number | undefined;
41001
+ readonly minWidth?: string | number | undefined;
41002
+ readonly maxWidth?: string | number | undefined;
41003
+ readonly nowrap?: boolean | undefined;
41004
+ readonly intent?: number | undefined;
41005
+ readonly headerProps?: {
41006
+ readonly [x: string]: any;
41007
+ } | undefined;
41008
+ readonly cellProps?: HeaderCellPropsFunction | {
41009
+ readonly [x: string]: any;
41010
+ } | undefined;
41011
+ readonly sortable?: boolean | undefined;
41012
+ readonly sort?: DataTableCompareFunction<any> | undefined;
41013
+ readonly sortRaw?: DataTableCompareFunction<any> | undefined;
41014
+ readonly filter?: FilterFunction | undefined;
41015
+ readonly children?: readonly any[] | undefined;
41016
+ }[] | undefined;
41017
+ }[]>;
41076
41018
  disableSort: BooleanConstructor;
41077
41019
  sortAscIcon: {
41078
41020
  type: vue.PropType<IconValue>;
@@ -41145,7 +41087,9 @@ declare const VDataTableFooter: {
41145
41087
  value: number;
41146
41088
  })[];
41147
41089
  showCurrentPage: boolean;
41148
- } & {} & {
41090
+ } & {
41091
+ color?: string | undefined;
41092
+ } & {
41149
41093
  $children?: {
41150
41094
  prepend?: (() => vue.VNodeChild) | undefined;
41151
41095
  } | {
@@ -41199,7 +41143,9 @@ declare const VDataTableFooter: {
41199
41143
  value: number;
41200
41144
  })[];
41201
41145
  showCurrentPage: boolean;
41202
- } & {} & {
41146
+ } & {
41147
+ color?: string | undefined;
41148
+ } & {
41203
41149
  $children?: {
41204
41150
  prepend?: (() => vue.VNodeChild) | undefined;
41205
41151
  } | {
@@ -41246,7 +41192,9 @@ declare const VDataTableFooter: {
41246
41192
  value: number;
41247
41193
  })[];
41248
41194
  showCurrentPage: boolean;
41249
- } & {} & {
41195
+ } & {
41196
+ color?: string | undefined;
41197
+ } & {
41250
41198
  $children?: {
41251
41199
  prepend?: (() => vue.VNodeChild) | undefined;
41252
41200
  } | {
@@ -41278,6 +41226,7 @@ declare const VDataTableFooter: {
41278
41226
  [key: string]: any;
41279
41227
  }>[];
41280
41228
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
41229
+ color: StringConstructor;
41281
41230
  prevIcon: {
41282
41231
  type: PropType<IconValue>;
41283
41232
  default: string;
@@ -41330,6 +41279,7 @@ declare const VDataTableFooter: {
41330
41279
  };
41331
41280
  showCurrentPage: BooleanConstructor;
41332
41281
  }, vue.ExtractPropTypes<{
41282
+ color: StringConstructor;
41333
41283
  prevIcon: {
41334
41284
  type: PropType<IconValue>;
41335
41285
  default: string;
@@ -43088,6 +43038,7 @@ declare const VDataTableServer: {
43088
43038
  type: (NumberConstructor | StringConstructor)[];
43089
43039
  default: number;
43090
43040
  };
43041
+ color: StringConstructor;
43091
43042
  prevIcon: {
43092
43043
  type: vue.PropType<IconValue>;
43093
43044
  default: string;
@@ -43184,7 +43135,6 @@ declare const VDataTableServer: {
43184
43135
  readonly children?: readonly /*elided*/ any[] | undefined;
43185
43136
  }[] | undefined;
43186
43137
  }[]>;
43187
- color: StringConstructor;
43188
43138
  disableSort: BooleanConstructor;
43189
43139
  sortAscIcon: {
43190
43140
  type: vue.PropType<IconValue>;
@@ -43324,6 +43274,7 @@ declare const VDataTableServer: {
43324
43274
  type: (NumberConstructor | StringConstructor)[];
43325
43275
  default: number;
43326
43276
  };
43277
+ color: StringConstructor;
43327
43278
  prevIcon: {
43328
43279
  type: vue.PropType<IconValue>;
43329
43280
  default: string;
@@ -43420,7 +43371,6 @@ declare const VDataTableServer: {
43420
43371
  readonly children?: readonly any[] | undefined;
43421
43372
  }[] | undefined;
43422
43373
  }[]>;
43423
- color: StringConstructor;
43424
43374
  disableSort: BooleanConstructor;
43425
43375
  sortAscIcon: {
43426
43376
  type: vue.PropType<IconValue>;
@@ -92386,6 +92336,8 @@ type VTabsSlots<T> = {
92386
92336
  tab: VTabsSlot<T>;
92387
92337
  item: VTabsSlot<T>;
92388
92338
  window: never;
92339
+ prev: never;
92340
+ next: never;
92389
92341
  } & {
92390
92342
  [key: `tab.${string}`]: VTabsSlot<T>;
92391
92343
  [key: `item.${string}`]: VTabsSlot<T>;
@@ -92426,7 +92378,7 @@ declare const VTabs: {
92426
92378
  "onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
92427
92379
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
92428
92380
  "update:modelValue": (v: unknown) => true;
92429
- }, "$children" | "items" | "v-slot:default" | "v-slot:item" | "v-slot:tab" | "v-slot:window" | "v-slots" | `v-slot:item.${string}` | `v-slot:tab.${string}`>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
92381
+ }, "$children" | "items" | "v-slot:default" | "v-slot:item" | "v-slot:next" | "v-slot:prev" | "v-slot:tab" | "v-slot:window" | "v-slots" | `v-slot:item.${string}` | `v-slot:tab.${string}`>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
92430
92382
  style: vue.StyleValue;
92431
92383
  mobile: boolean | null;
92432
92384
  density: Density;
@@ -92466,6 +92418,12 @@ declare const VTabs: {
92466
92418
  window: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
92467
92419
  [key: string]: any;
92468
92420
  }>[];
92421
+ prev: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
92422
+ [key: string]: any;
92423
+ }>[];
92424
+ next: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
92425
+ [key: string]: any;
92426
+ }>[];
92469
92427
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
92470
92428
  P: {};
92471
92429
  B: {};
@@ -92566,7 +92524,7 @@ declare const VTabs: {
92566
92524
  "onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
92567
92525
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
92568
92526
  "update:modelValue": (v: unknown) => true;
92569
- }, "$children" | "items" | "v-slot:default" | "v-slot:item" | "v-slot:tab" | "v-slot:window" | "v-slots" | `v-slot:item.${string}` | `v-slot:tab.${string}`>, string, {
92527
+ }, "$children" | "items" | "v-slot:default" | "v-slot:item" | "v-slot:next" | "v-slot:prev" | "v-slot:tab" | "v-slot:window" | "v-slots" | `v-slot:item.${string}` | `v-slot:tab.${string}`>, string, {
92570
92528
  style: vue.StyleValue;
92571
92529
  mobile: boolean | null;
92572
92530
  density: Density;
@@ -92606,6 +92564,12 @@ declare const VTabs: {
92606
92564
  window: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
92607
92565
  [key: string]: any;
92608
92566
  }>[];
92567
+ prev: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
92568
+ [key: string]: any;
92569
+ }>[];
92570
+ next: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
92571
+ [key: string]: any;
92572
+ }>[];
92609
92573
  }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T = TabItem>(props: {
92610
92574
  items?: T[] | undefined;
92611
92575
  }, slots: VTabsSlots<T>) => GenericProps<{
@@ -100517,19 +100481,1065 @@ declare const VTooltip: {
100517
100481
  }>>;
100518
100482
  type VTooltip = InstanceType<typeof VTooltip>;
100519
100483
 
100520
- // Types
100521
-
100522
- type ToggleListItemSlot = ListItemSlot & {
100523
- props: {
100524
- onClick: (e: PointerEvent) => void;
100484
+ declare const VTreeview: {
100485
+ new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
100486
+ style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
100487
+ filterKeys: FilterKeys;
100488
+ filterMode: FilterMode;
100489
+ noFilter: boolean;
100490
+ density: Density;
100491
+ tile: boolean;
100492
+ tag: string | JSXComponent;
100493
+ variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
100494
+ activatable: boolean;
100495
+ selectable: boolean;
100496
+ selectStrategy: SelectStrategyProp;
100497
+ mandatory: boolean;
100498
+ itemTitle: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
100499
+ itemValue: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
100500
+ itemChildren: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
100501
+ itemProps: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
100502
+ itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
100503
+ returnObject: boolean;
100504
+ disabled: boolean;
100505
+ filterable: boolean;
100506
+ expandIcon: IconValue;
100507
+ collapseIcon: IconValue;
100508
+ lines: "one" | "three" | "two" | false;
100509
+ slim: boolean;
100510
+ hideActions: boolean;
100511
+ fluid: boolean;
100512
+ loadingIcon: string;
100513
+ indeterminateIcon: IconValue;
100514
+ separateRoots: boolean;
100515
+ openAll: boolean;
100516
+ hideNoData: boolean;
100517
+ noDataText: string;
100518
+ } & {
100519
+ theme?: string | undefined;
100520
+ class?: any;
100521
+ customFilter?: FilterFunction | undefined;
100522
+ customKeyFilter?: FilterKeyFunctions | undefined;
100523
+ border?: string | number | boolean | undefined;
100524
+ elevation?: string | number | undefined;
100525
+ rounded?: string | number | boolean | undefined;
100526
+ color?: string | undefined;
100527
+ height?: string | number | undefined;
100528
+ maxHeight?: string | number | undefined;
100529
+ maxWidth?: string | number | undefined;
100530
+ minHeight?: string | number | undefined;
100531
+ minWidth?: string | number | undefined;
100532
+ width?: string | number | undefined;
100533
+ activeStrategy?: ActiveStrategyProp | undefined;
100534
+ opened?: any;
100535
+ activated?: any;
100536
+ selected?: any;
100537
+ valueComparator?: typeof deepEqual | undefined;
100538
+ baseColor?: string | undefined;
100539
+ activeColor?: string | undefined;
100540
+ activeClass?: string | undefined;
100541
+ bgColor?: string | undefined;
100542
+ "onClick:open"?: ((args_0: {
100543
+ id: unknown;
100544
+ value: boolean;
100545
+ path: unknown[];
100546
+ }) => void) | undefined;
100547
+ "onClick:select"?: ((args_0: {
100548
+ id: unknown;
100549
+ value: boolean;
100550
+ path: unknown[];
100551
+ }) => void) | undefined;
100552
+ "onUpdate:opened"?: ((args_0: unknown) => void) | undefined;
100553
+ loadChildren?: ((item: unknown) => Promise<void>) | undefined;
100554
+ openOnClick?: boolean | undefined;
100555
+ falseIcon?: IconValue | undefined;
100556
+ trueIcon?: IconValue | undefined;
100557
+ selectedColor?: string | undefined;
100558
+ indentLines?: boolean | IndentLinesVariant | undefined;
100559
+ search?: string | undefined;
100560
+ modelValue?: unknown[] | undefined;
100561
+ } & {
100562
+ "onClick:open"?: ((value: {
100563
+ id: unknown;
100564
+ value: boolean;
100565
+ path: unknown[];
100566
+ }) => any) | undefined;
100567
+ "onClick:select"?: ((value: {
100568
+ id: unknown;
100569
+ value: boolean;
100570
+ path: unknown[];
100571
+ }) => any) | undefined;
100572
+ "onUpdate:activated"?: ((val: unknown) => any) | undefined;
100573
+ "onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
100574
+ "onUpdate:opened"?: ((val: unknown) => any) | undefined;
100575
+ "onUpdate:selected"?: ((val: unknown) => any) | undefined;
100576
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
100577
+ "update:opened": (val: unknown) => true;
100578
+ "update:activated": (val: unknown) => true;
100579
+ "update:selected": (val: unknown) => true;
100580
+ "update:modelValue": (val: unknown) => true;
100581
+ "click:open": (value: {
100582
+ id: unknown;
100583
+ value: boolean;
100584
+ path: unknown[];
100585
+ }) => true;
100586
+ "click:select": (value: {
100587
+ id: unknown;
100588
+ value: boolean;
100589
+ path: unknown[];
100590
+ }) => true;
100591
+ }, "$children" | "items" | "v-slot:append" | "v-slot:default" | "v-slot:divider" | "v-slot:footer" | "v-slot:header" | "v-slot:item" | "v-slot:no-data" | "v-slot:prepend" | "v-slot:subheader" | "v-slot:subtitle" | "v-slot:title" | "v-slot:toggle" | "v-slots">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
100592
+ style: vue.StyleValue;
100593
+ filterKeys: FilterKeys;
100594
+ filterMode: FilterMode;
100595
+ noFilter: boolean;
100596
+ density: Density;
100597
+ rounded: string | number | boolean;
100598
+ tile: boolean;
100599
+ tag: string | JSXComponent;
100600
+ variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
100601
+ activatable: boolean;
100602
+ selectable: boolean;
100603
+ selectStrategy: SelectStrategyProp;
100604
+ mandatory: boolean;
100605
+ itemTitle: SelectItemKey;
100606
+ itemValue: SelectItemKey;
100607
+ itemChildren: SelectItemKey;
100608
+ itemProps: SelectItemKey;
100609
+ itemType: SelectItemKey;
100610
+ returnObject: boolean;
100611
+ disabled: boolean;
100612
+ filterable: boolean;
100613
+ expandIcon: IconValue;
100614
+ collapseIcon: IconValue;
100615
+ lines: "one" | "three" | "two" | false;
100616
+ slim: boolean;
100617
+ hideActions: boolean;
100618
+ fluid: boolean;
100619
+ loadingIcon: string;
100620
+ openOnClick: boolean;
100621
+ indeterminateIcon: IconValue;
100622
+ separateRoots: boolean;
100623
+ openAll: boolean;
100624
+ hideNoData: boolean;
100625
+ noDataText: string;
100626
+ }, true, {}, vue.SlotsType<Partial<{
100627
+ prepend: (arg: ListItemSlot & {
100628
+ item: unknown;
100629
+ internalItem: InternalListItem<unknown>;
100630
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
100631
+ [key: string]: any;
100632
+ }>[];
100633
+ append: (arg: ListItemSlot & {
100634
+ item: unknown;
100635
+ internalItem: InternalListItem<unknown>;
100636
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
100637
+ [key: string]: any;
100638
+ }>[];
100639
+ title: (arg: ListItemTitleSlot & {
100640
+ item: unknown;
100641
+ internalItem: InternalListItem<unknown>;
100642
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
100643
+ [key: string]: any;
100644
+ }>[];
100645
+ subtitle: (arg: ListItemSubtitleSlot & {
100646
+ item: unknown;
100647
+ internalItem: InternalListItem<unknown>;
100648
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
100649
+ [key: string]: any;
100650
+ }>[];
100651
+ toggle: (arg: ListItemSlot & {
100652
+ props: {
100653
+ onClick: (e: PointerEvent) => void;
100654
+ };
100655
+ } & {
100656
+ loading: boolean;
100657
+ } & {
100658
+ item: unknown;
100659
+ internalItem: InternalListItem<unknown>;
100660
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
100661
+ [key: string]: any;
100662
+ }>[];
100663
+ default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
100664
+ [key: string]: any;
100665
+ }>[];
100666
+ item: (arg: {
100667
+ props: {
100668
+ [key: string]: any;
100669
+ title: string;
100670
+ value: any;
100671
+ };
100672
+ item: unknown;
100673
+ internalItem: InternalListItem<unknown>;
100674
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
100675
+ [key: string]: any;
100676
+ }>[];
100677
+ header: (arg: {
100678
+ props: {
100679
+ [key: string]: any;
100680
+ title: string;
100681
+ value: any;
100682
+ };
100683
+ item: unknown;
100684
+ internalItem: InternalListItem<unknown>;
100685
+ loading: boolean;
100686
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
100687
+ [key: string]: any;
100688
+ }>[];
100689
+ footer: (arg: {
100690
+ props: {
100691
+ indentLines?: IndentLineType[] | undefined;
100692
+ };
100693
+ item: unknown;
100694
+ internalItem: InternalListItem<unknown>;
100695
+ loading: boolean;
100696
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
100697
+ [key: string]: any;
100698
+ }>[];
100699
+ divider: (arg: {
100700
+ props: {
100701
+ [key: string]: any;
100702
+ title: string;
100703
+ value: any;
100704
+ };
100705
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
100706
+ [key: string]: any;
100707
+ }>[];
100708
+ subheader: (arg: {
100709
+ props: {
100710
+ [key: string]: any;
100711
+ title: string;
100712
+ value: any;
100713
+ };
100714
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
100715
+ [key: string]: any;
100716
+ }>[];
100717
+ "no-data": () => vue.VNode<vue.RendererNode, vue.RendererElement, {
100718
+ [key: string]: any;
100719
+ }>[];
100720
+ }>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
100721
+ P: {};
100722
+ B: {};
100723
+ D: {};
100724
+ C: {};
100725
+ M: {};
100726
+ Defaults: {};
100727
+ }, {
100728
+ style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
100729
+ filterKeys: FilterKeys;
100730
+ filterMode: FilterMode;
100731
+ noFilter: boolean;
100732
+ density: Density;
100733
+ tile: boolean;
100734
+ tag: string | JSXComponent;
100735
+ variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
100736
+ activatable: boolean;
100737
+ selectable: boolean;
100738
+ selectStrategy: SelectStrategyProp;
100739
+ mandatory: boolean;
100740
+ itemTitle: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
100741
+ itemValue: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
100742
+ itemChildren: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
100743
+ itemProps: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
100744
+ itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
100745
+ returnObject: boolean;
100746
+ disabled: boolean;
100747
+ filterable: boolean;
100748
+ expandIcon: IconValue;
100749
+ collapseIcon: IconValue;
100750
+ lines: "one" | "three" | "two" | false;
100751
+ slim: boolean;
100752
+ hideActions: boolean;
100753
+ fluid: boolean;
100754
+ loadingIcon: string;
100755
+ indeterminateIcon: IconValue;
100756
+ separateRoots: boolean;
100757
+ openAll: boolean;
100758
+ hideNoData: boolean;
100759
+ noDataText: string;
100760
+ } & {
100761
+ theme?: string | undefined;
100762
+ class?: any;
100763
+ customFilter?: FilterFunction | undefined;
100764
+ customKeyFilter?: FilterKeyFunctions | undefined;
100765
+ border?: string | number | boolean | undefined;
100766
+ elevation?: string | number | undefined;
100767
+ rounded?: string | number | boolean | undefined;
100768
+ color?: string | undefined;
100769
+ height?: string | number | undefined;
100770
+ maxHeight?: string | number | undefined;
100771
+ maxWidth?: string | number | undefined;
100772
+ minHeight?: string | number | undefined;
100773
+ minWidth?: string | number | undefined;
100774
+ width?: string | number | undefined;
100775
+ activeStrategy?: ActiveStrategyProp | undefined;
100776
+ opened?: any;
100777
+ activated?: any;
100778
+ selected?: any;
100779
+ valueComparator?: typeof deepEqual | undefined;
100780
+ baseColor?: string | undefined;
100781
+ activeColor?: string | undefined;
100782
+ activeClass?: string | undefined;
100783
+ bgColor?: string | undefined;
100784
+ "onClick:open"?: ((args_0: {
100785
+ id: unknown;
100786
+ value: boolean;
100787
+ path: unknown[];
100788
+ }) => void) | undefined;
100789
+ "onClick:select"?: ((args_0: {
100790
+ id: unknown;
100791
+ value: boolean;
100792
+ path: unknown[];
100793
+ }) => void) | undefined;
100794
+ "onUpdate:opened"?: ((args_0: unknown) => void) | undefined;
100795
+ loadChildren?: ((item: unknown) => Promise<void>) | undefined;
100796
+ openOnClick?: boolean | undefined;
100797
+ falseIcon?: IconValue | undefined;
100798
+ trueIcon?: IconValue | undefined;
100799
+ selectedColor?: string | undefined;
100800
+ indentLines?: boolean | IndentLinesVariant | undefined;
100801
+ search?: string | undefined;
100802
+ modelValue?: unknown[] | undefined;
100803
+ } & {
100804
+ "onClick:open"?: ((value: {
100805
+ id: unknown;
100806
+ value: boolean;
100807
+ path: unknown[];
100808
+ }) => any) | undefined;
100809
+ "onClick:select"?: ((value: {
100810
+ id: unknown;
100811
+ value: boolean;
100812
+ path: unknown[];
100813
+ }) => any) | undefined;
100814
+ "onUpdate:activated"?: ((val: unknown) => any) | undefined;
100815
+ "onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
100816
+ "onUpdate:opened"?: ((val: unknown) => any) | undefined;
100817
+ "onUpdate:selected"?: ((val: unknown) => any) | undefined;
100818
+ }, {}, {}, {}, {}, {
100819
+ style: vue.StyleValue;
100820
+ filterKeys: FilterKeys;
100821
+ filterMode: FilterMode;
100822
+ noFilter: boolean;
100823
+ density: Density;
100824
+ rounded: string | number | boolean;
100825
+ tile: boolean;
100826
+ tag: string | JSXComponent;
100827
+ variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
100828
+ activatable: boolean;
100829
+ selectable: boolean;
100830
+ selectStrategy: SelectStrategyProp;
100831
+ mandatory: boolean;
100832
+ itemTitle: SelectItemKey;
100833
+ itemValue: SelectItemKey;
100834
+ itemChildren: SelectItemKey;
100835
+ itemProps: SelectItemKey;
100836
+ itemType: SelectItemKey;
100837
+ returnObject: boolean;
100838
+ disabled: boolean;
100839
+ filterable: boolean;
100840
+ expandIcon: IconValue;
100841
+ collapseIcon: IconValue;
100842
+ lines: "one" | "three" | "two" | false;
100843
+ slim: boolean;
100844
+ hideActions: boolean;
100845
+ fluid: boolean;
100846
+ loadingIcon: string;
100847
+ openOnClick: boolean;
100848
+ indeterminateIcon: IconValue;
100849
+ separateRoots: boolean;
100850
+ openAll: boolean;
100851
+ hideNoData: boolean;
100852
+ noDataText: string;
100853
+ }>;
100854
+ __isFragment?: undefined;
100855
+ __isTeleport?: undefined;
100856
+ __isSuspense?: undefined;
100857
+ } & vue.ComponentOptionsBase<{
100858
+ style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
100859
+ filterKeys: FilterKeys;
100860
+ filterMode: FilterMode;
100861
+ noFilter: boolean;
100862
+ density: Density;
100863
+ tile: boolean;
100864
+ tag: string | JSXComponent;
100865
+ variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
100866
+ activatable: boolean;
100867
+ selectable: boolean;
100868
+ selectStrategy: SelectStrategyProp;
100869
+ mandatory: boolean;
100870
+ itemTitle: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
100871
+ itemValue: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
100872
+ itemChildren: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
100873
+ itemProps: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
100874
+ itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
100875
+ returnObject: boolean;
100876
+ disabled: boolean;
100877
+ filterable: boolean;
100878
+ expandIcon: IconValue;
100879
+ collapseIcon: IconValue;
100880
+ lines: "one" | "three" | "two" | false;
100881
+ slim: boolean;
100882
+ hideActions: boolean;
100883
+ fluid: boolean;
100884
+ loadingIcon: string;
100885
+ indeterminateIcon: IconValue;
100886
+ separateRoots: boolean;
100887
+ openAll: boolean;
100888
+ hideNoData: boolean;
100889
+ noDataText: string;
100890
+ } & {
100891
+ theme?: string | undefined;
100892
+ class?: any;
100893
+ customFilter?: FilterFunction | undefined;
100894
+ customKeyFilter?: FilterKeyFunctions | undefined;
100895
+ border?: string | number | boolean | undefined;
100896
+ elevation?: string | number | undefined;
100897
+ rounded?: string | number | boolean | undefined;
100898
+ color?: string | undefined;
100899
+ height?: string | number | undefined;
100900
+ maxHeight?: string | number | undefined;
100901
+ maxWidth?: string | number | undefined;
100902
+ minHeight?: string | number | undefined;
100903
+ minWidth?: string | number | undefined;
100904
+ width?: string | number | undefined;
100905
+ activeStrategy?: ActiveStrategyProp | undefined;
100906
+ opened?: any;
100907
+ activated?: any;
100908
+ selected?: any;
100909
+ valueComparator?: typeof deepEqual | undefined;
100910
+ baseColor?: string | undefined;
100911
+ activeColor?: string | undefined;
100912
+ activeClass?: string | undefined;
100913
+ bgColor?: string | undefined;
100914
+ "onClick:open"?: ((args_0: {
100915
+ id: unknown;
100916
+ value: boolean;
100917
+ path: unknown[];
100918
+ }) => void) | undefined;
100919
+ "onClick:select"?: ((args_0: {
100920
+ id: unknown;
100921
+ value: boolean;
100922
+ path: unknown[];
100923
+ }) => void) | undefined;
100924
+ "onUpdate:opened"?: ((args_0: unknown) => void) | undefined;
100925
+ loadChildren?: ((item: unknown) => Promise<void>) | undefined;
100926
+ openOnClick?: boolean | undefined;
100927
+ falseIcon?: IconValue | undefined;
100928
+ trueIcon?: IconValue | undefined;
100929
+ selectedColor?: string | undefined;
100930
+ indentLines?: boolean | IndentLinesVariant | undefined;
100931
+ search?: string | undefined;
100932
+ modelValue?: unknown[] | undefined;
100933
+ } & {
100934
+ "onClick:open"?: ((value: {
100935
+ id: unknown;
100936
+ value: boolean;
100937
+ path: unknown[];
100938
+ }) => any) | undefined;
100939
+ "onClick:select"?: ((value: {
100940
+ id: unknown;
100941
+ value: boolean;
100942
+ path: unknown[];
100943
+ }) => any) | undefined;
100944
+ "onUpdate:activated"?: ((val: unknown) => any) | undefined;
100945
+ "onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
100946
+ "onUpdate:opened"?: ((val: unknown) => any) | undefined;
100947
+ "onUpdate:selected"?: ((val: unknown) => any) | undefined;
100948
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
100949
+ "update:opened": (val: unknown) => true;
100950
+ "update:activated": (val: unknown) => true;
100951
+ "update:selected": (val: unknown) => true;
100952
+ "update:modelValue": (val: unknown) => true;
100953
+ "click:open": (value: {
100954
+ id: unknown;
100955
+ value: boolean;
100956
+ path: unknown[];
100957
+ }) => true;
100958
+ "click:select": (value: {
100959
+ id: unknown;
100960
+ value: boolean;
100961
+ path: unknown[];
100962
+ }) => true;
100963
+ }, "$children" | "items" | "v-slot:append" | "v-slot:default" | "v-slot:divider" | "v-slot:footer" | "v-slot:header" | "v-slot:item" | "v-slot:no-data" | "v-slot:prepend" | "v-slot:subheader" | "v-slot:subtitle" | "v-slot:title" | "v-slot:toggle" | "v-slots">, string, {
100964
+ style: vue.StyleValue;
100965
+ filterKeys: FilterKeys;
100966
+ filterMode: FilterMode;
100967
+ noFilter: boolean;
100968
+ density: Density;
100969
+ rounded: string | number | boolean;
100970
+ tile: boolean;
100971
+ tag: string | JSXComponent;
100972
+ variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
100973
+ activatable: boolean;
100974
+ selectable: boolean;
100975
+ selectStrategy: SelectStrategyProp;
100976
+ mandatory: boolean;
100977
+ itemTitle: SelectItemKey;
100978
+ itemValue: SelectItemKey;
100979
+ itemChildren: SelectItemKey;
100980
+ itemProps: SelectItemKey;
100981
+ itemType: SelectItemKey;
100982
+ returnObject: boolean;
100983
+ disabled: boolean;
100984
+ filterable: boolean;
100985
+ expandIcon: IconValue;
100986
+ collapseIcon: IconValue;
100987
+ lines: "one" | "three" | "two" | false;
100988
+ slim: boolean;
100989
+ hideActions: boolean;
100990
+ fluid: boolean;
100991
+ loadingIcon: string;
100992
+ openOnClick: boolean;
100993
+ indeterminateIcon: IconValue;
100994
+ separateRoots: boolean;
100995
+ openAll: boolean;
100996
+ hideNoData: boolean;
100997
+ noDataText: string;
100998
+ }, {}, string, vue.SlotsType<Partial<{
100999
+ prepend: (arg: ListItemSlot & {
101000
+ item: unknown;
101001
+ internalItem: InternalListItem<unknown>;
101002
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
101003
+ [key: string]: any;
101004
+ }>[];
101005
+ append: (arg: ListItemSlot & {
101006
+ item: unknown;
101007
+ internalItem: InternalListItem<unknown>;
101008
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
101009
+ [key: string]: any;
101010
+ }>[];
101011
+ title: (arg: ListItemTitleSlot & {
101012
+ item: unknown;
101013
+ internalItem: InternalListItem<unknown>;
101014
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
101015
+ [key: string]: any;
101016
+ }>[];
101017
+ subtitle: (arg: ListItemSubtitleSlot & {
101018
+ item: unknown;
101019
+ internalItem: InternalListItem<unknown>;
101020
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
101021
+ [key: string]: any;
101022
+ }>[];
101023
+ toggle: (arg: ListItemSlot & {
101024
+ props: {
101025
+ onClick: (e: PointerEvent) => void;
101026
+ };
101027
+ } & {
101028
+ loading: boolean;
101029
+ } & {
101030
+ item: unknown;
101031
+ internalItem: InternalListItem<unknown>;
101032
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
101033
+ [key: string]: any;
101034
+ }>[];
101035
+ default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
101036
+ [key: string]: any;
101037
+ }>[];
101038
+ item: (arg: {
101039
+ props: {
101040
+ [key: string]: any;
101041
+ title: string;
101042
+ value: any;
101043
+ };
101044
+ item: unknown;
101045
+ internalItem: InternalListItem<unknown>;
101046
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
101047
+ [key: string]: any;
101048
+ }>[];
101049
+ header: (arg: {
101050
+ props: {
101051
+ [key: string]: any;
101052
+ title: string;
101053
+ value: any;
101054
+ };
101055
+ item: unknown;
101056
+ internalItem: InternalListItem<unknown>;
101057
+ loading: boolean;
101058
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
101059
+ [key: string]: any;
101060
+ }>[];
101061
+ footer: (arg: {
101062
+ props: {
101063
+ indentLines?: IndentLineType[] | undefined;
101064
+ };
101065
+ item: unknown;
101066
+ internalItem: InternalListItem<unknown>;
101067
+ loading: boolean;
101068
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
101069
+ [key: string]: any;
101070
+ }>[];
101071
+ divider: (arg: {
101072
+ props: {
101073
+ [key: string]: any;
101074
+ title: string;
101075
+ value: any;
101076
+ };
101077
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
101078
+ [key: string]: any;
101079
+ }>[];
101080
+ subheader: (arg: {
101081
+ props: {
101082
+ [key: string]: any;
101083
+ title: string;
101084
+ value: any;
101085
+ };
101086
+ }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
101087
+ [key: string]: any;
101088
+ }>[];
101089
+ "no-data": () => vue.VNode<vue.RendererNode, vue.RendererElement, {
101090
+ [key: string]: any;
101091
+ }>[];
101092
+ }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
101093
+ items?: T[] | undefined;
101094
+ }, slots: {
101095
+ prepend: ListItemSlot & {
101096
+ item: T;
101097
+ internalItem: InternalListItem<T>;
100525
101098
  };
100526
- };
100527
-
100528
- type VTreeviewItemSlots = VListItemSlots & {
100529
- toggle: ToggleListItemSlot & {
101099
+ append: ListItemSlot & {
101100
+ item: T;
101101
+ internalItem: InternalListItem<T>;
101102
+ };
101103
+ title: ListItemTitleSlot & {
101104
+ item: T;
101105
+ internalItem: InternalListItem<T>;
101106
+ };
101107
+ subtitle: ListItemSubtitleSlot & {
101108
+ item: T;
101109
+ internalItem: InternalListItem<T>;
101110
+ };
101111
+ toggle: ListItemSlot & {
101112
+ props: {
101113
+ onClick: (e: PointerEvent) => void;
101114
+ };
101115
+ } & {
100530
101116
  loading: boolean;
101117
+ } & {
101118
+ item: T;
101119
+ internalItem: InternalListItem<T>;
100531
101120
  };
100532
- };
101121
+ } & {
101122
+ default: never;
101123
+ item: {
101124
+ props: {
101125
+ [key: string]: any;
101126
+ title: string;
101127
+ value: any;
101128
+ };
101129
+ item: T;
101130
+ internalItem: InternalListItem<T>;
101131
+ };
101132
+ header: {
101133
+ props: {
101134
+ [key: string]: any;
101135
+ title: string;
101136
+ value: any;
101137
+ };
101138
+ item: T;
101139
+ internalItem: InternalListItem<T>;
101140
+ loading: boolean;
101141
+ };
101142
+ footer: {
101143
+ props: {
101144
+ indentLines?: IndentLineType[] | undefined;
101145
+ };
101146
+ item: T;
101147
+ internalItem: InternalListItem<T>;
101148
+ loading: boolean;
101149
+ };
101150
+ divider: {
101151
+ props: {
101152
+ [key: string]: any;
101153
+ title: string;
101154
+ value: any;
101155
+ };
101156
+ };
101157
+ subheader: {
101158
+ props: {
101159
+ [key: string]: any;
101160
+ title: string;
101161
+ value: any;
101162
+ };
101163
+ };
101164
+ } & {
101165
+ "no-data": never;
101166
+ }) => GenericProps<{
101167
+ items?: T[] | undefined;
101168
+ }, {
101169
+ prepend: ListItemSlot & {
101170
+ item: T;
101171
+ internalItem: InternalListItem<T>;
101172
+ };
101173
+ append: ListItemSlot & {
101174
+ item: T;
101175
+ internalItem: InternalListItem<T>;
101176
+ };
101177
+ title: ListItemTitleSlot & {
101178
+ item: T;
101179
+ internalItem: InternalListItem<T>;
101180
+ };
101181
+ subtitle: ListItemSubtitleSlot & {
101182
+ item: T;
101183
+ internalItem: InternalListItem<T>;
101184
+ };
101185
+ toggle: ListItemSlot & {
101186
+ props: {
101187
+ onClick: (e: PointerEvent) => void;
101188
+ };
101189
+ } & {
101190
+ loading: boolean;
101191
+ } & {
101192
+ item: T;
101193
+ internalItem: InternalListItem<T>;
101194
+ };
101195
+ } & {
101196
+ default: never;
101197
+ item: {
101198
+ props: {
101199
+ [key: string]: any;
101200
+ title: string;
101201
+ value: any;
101202
+ };
101203
+ item: T;
101204
+ internalItem: InternalListItem<T>;
101205
+ };
101206
+ header: {
101207
+ props: {
101208
+ [key: string]: any;
101209
+ title: string;
101210
+ value: any;
101211
+ };
101212
+ item: T;
101213
+ internalItem: InternalListItem<T>;
101214
+ loading: boolean;
101215
+ };
101216
+ footer: {
101217
+ props: {
101218
+ indentLines?: IndentLineType[] | undefined;
101219
+ };
101220
+ item: T;
101221
+ internalItem: InternalListItem<T>;
101222
+ loading: boolean;
101223
+ };
101224
+ divider: {
101225
+ props: {
101226
+ [key: string]: any;
101227
+ title: string;
101228
+ value: any;
101229
+ };
101230
+ };
101231
+ subheader: {
101232
+ props: {
101233
+ [key: string]: any;
101234
+ title: string;
101235
+ value: any;
101236
+ };
101237
+ };
101238
+ } & {
101239
+ "no-data": never;
101240
+ }>) & FilterPropsOptions<{
101241
+ theme: StringConstructor;
101242
+ class: PropType<any>;
101243
+ style: {
101244
+ type: PropType<vue.StyleValue>;
101245
+ default: null;
101246
+ };
101247
+ customFilter: PropType<FilterFunction>;
101248
+ customKeyFilter: PropType<FilterKeyFunctions>;
101249
+ filterKeys: {
101250
+ type: PropType<FilterKeys>;
101251
+ default: NonNullable<FilterKeys>;
101252
+ };
101253
+ filterMode: {
101254
+ type: PropType<FilterMode>;
101255
+ default: string;
101256
+ };
101257
+ noFilter: BooleanConstructor;
101258
+ border: (BooleanConstructor | NumberConstructor | StringConstructor)[];
101259
+ density: {
101260
+ type: PropType<Density>;
101261
+ default: string;
101262
+ validator: (v: any) => boolean;
101263
+ };
101264
+ elevation: {
101265
+ type: (NumberConstructor | StringConstructor)[];
101266
+ validator(v: any): boolean;
101267
+ };
101268
+ rounded: {
101269
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
101270
+ default: undefined;
101271
+ };
101272
+ tile: BooleanConstructor;
101273
+ tag: {
101274
+ type: PropType<string | JSXComponent>;
101275
+ default: string;
101276
+ };
101277
+ color: StringConstructor;
101278
+ variant: Omit<{
101279
+ type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
101280
+ default: string;
101281
+ validator: (v: any) => boolean;
101282
+ }, "default" | "type"> & {
101283
+ type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
101284
+ default: NonNullable<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
101285
+ };
101286
+ height: (NumberConstructor | StringConstructor)[];
101287
+ maxHeight: (NumberConstructor | StringConstructor)[];
101288
+ maxWidth: (NumberConstructor | StringConstructor)[];
101289
+ minHeight: (NumberConstructor | StringConstructor)[];
101290
+ minWidth: (NumberConstructor | StringConstructor)[];
101291
+ width: (NumberConstructor | StringConstructor)[];
101292
+ activatable: BooleanConstructor;
101293
+ selectable: BooleanConstructor;
101294
+ activeStrategy: PropType<ActiveStrategyProp>;
101295
+ selectStrategy: {
101296
+ type: PropType<SelectStrategyProp>;
101297
+ default: NonNullable<SelectStrategyProp>;
101298
+ };
101299
+ opened: null;
101300
+ activated: null;
101301
+ selected: null;
101302
+ mandatory: BooleanConstructor;
101303
+ items: {
101304
+ type: PropType<any[]>;
101305
+ default: () => never[];
101306
+ };
101307
+ itemTitle: {
101308
+ type: PropType<SelectItemKey>;
101309
+ default: string;
101310
+ };
101311
+ itemValue: {
101312
+ type: PropType<SelectItemKey>;
101313
+ default: string;
101314
+ };
101315
+ itemChildren: {
101316
+ type: PropType<SelectItemKey>;
101317
+ default: string;
101318
+ };
101319
+ itemProps: {
101320
+ type: PropType<SelectItemKey>;
101321
+ default: string;
101322
+ };
101323
+ itemType: {
101324
+ type: PropType<SelectItemKey>;
101325
+ default: string;
101326
+ };
101327
+ returnObject: BooleanConstructor;
101328
+ valueComparator: PropType<typeof deepEqual>;
101329
+ baseColor: StringConstructor;
101330
+ activeColor: StringConstructor;
101331
+ activeClass: StringConstructor;
101332
+ bgColor: StringConstructor;
101333
+ disabled: BooleanConstructor;
101334
+ filterable: BooleanConstructor;
101335
+ expandIcon: {
101336
+ type: PropType<IconValue>;
101337
+ default: NonNullable<IconValue>;
101338
+ };
101339
+ collapseIcon: {
101340
+ type: PropType<IconValue>;
101341
+ default: NonNullable<IconValue>;
101342
+ };
101343
+ lines: {
101344
+ type: PropType<"one" | "three" | "two" | false>;
101345
+ default: string;
101346
+ };
101347
+ slim: {
101348
+ type: PropType<boolean>;
101349
+ default: boolean;
101350
+ };
101351
+ "onClick:open": PropType<(args_0: {
101352
+ id: unknown;
101353
+ value: boolean;
101354
+ path: unknown[];
101355
+ }) => void>;
101356
+ "onClick:select": PropType<(args_0: {
101357
+ id: unknown;
101358
+ value: boolean;
101359
+ path: unknown[];
101360
+ }) => void>;
101361
+ "onUpdate:opened": PropType<(args_0: unknown) => void>;
101362
+ hideActions: BooleanConstructor;
101363
+ fluid: BooleanConstructor;
101364
+ loadChildren: PropType<(item: unknown) => Promise<void>>;
101365
+ loadingIcon: {
101366
+ type: StringConstructor;
101367
+ default: string;
101368
+ };
101369
+ openOnClick: {
101370
+ type: BooleanConstructor;
101371
+ default: undefined;
101372
+ };
101373
+ indeterminateIcon: {
101374
+ type: PropType<IconValue>;
101375
+ default: string;
101376
+ };
101377
+ falseIcon: PropType<IconValue>;
101378
+ trueIcon: PropType<IconValue>;
101379
+ selectedColor: StringConstructor;
101380
+ separateRoots: BooleanConstructor;
101381
+ openAll: BooleanConstructor;
101382
+ indentLines: PropType<boolean | IndentLinesVariant>;
101383
+ search: StringConstructor;
101384
+ hideNoData: BooleanConstructor;
101385
+ noDataText: {
101386
+ type: StringConstructor;
101387
+ default: string;
101388
+ };
101389
+ modelValue: ArrayConstructor;
101390
+ }, vue.ExtractPropTypes<{
101391
+ theme: StringConstructor;
101392
+ class: PropType<any>;
101393
+ style: {
101394
+ type: PropType<vue.StyleValue>;
101395
+ default: null;
101396
+ };
101397
+ customFilter: PropType<FilterFunction>;
101398
+ customKeyFilter: PropType<FilterKeyFunctions>;
101399
+ filterKeys: {
101400
+ type: PropType<FilterKeys>;
101401
+ default: NonNullable<FilterKeys>;
101402
+ };
101403
+ filterMode: {
101404
+ type: PropType<FilterMode>;
101405
+ default: string;
101406
+ };
101407
+ noFilter: BooleanConstructor;
101408
+ border: (BooleanConstructor | NumberConstructor | StringConstructor)[];
101409
+ density: {
101410
+ type: PropType<Density>;
101411
+ default: string;
101412
+ validator: (v: any) => boolean;
101413
+ };
101414
+ elevation: {
101415
+ type: (NumberConstructor | StringConstructor)[];
101416
+ validator(v: any): boolean;
101417
+ };
101418
+ rounded: {
101419
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
101420
+ default: undefined;
101421
+ };
101422
+ tile: BooleanConstructor;
101423
+ tag: {
101424
+ type: PropType<string | JSXComponent>;
101425
+ default: string;
101426
+ };
101427
+ color: StringConstructor;
101428
+ variant: Omit<{
101429
+ type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
101430
+ default: string;
101431
+ validator: (v: any) => boolean;
101432
+ }, "default" | "type"> & {
101433
+ type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
101434
+ default: NonNullable<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
101435
+ };
101436
+ height: (NumberConstructor | StringConstructor)[];
101437
+ maxHeight: (NumberConstructor | StringConstructor)[];
101438
+ maxWidth: (NumberConstructor | StringConstructor)[];
101439
+ minHeight: (NumberConstructor | StringConstructor)[];
101440
+ minWidth: (NumberConstructor | StringConstructor)[];
101441
+ width: (NumberConstructor | StringConstructor)[];
101442
+ activatable: BooleanConstructor;
101443
+ selectable: BooleanConstructor;
101444
+ activeStrategy: PropType<ActiveStrategyProp>;
101445
+ selectStrategy: {
101446
+ type: PropType<SelectStrategyProp>;
101447
+ default: NonNullable<SelectStrategyProp>;
101448
+ };
101449
+ opened: null;
101450
+ activated: null;
101451
+ selected: null;
101452
+ mandatory: BooleanConstructor;
101453
+ items: {
101454
+ type: PropType<any[]>;
101455
+ default: () => never[];
101456
+ };
101457
+ itemTitle: {
101458
+ type: PropType<SelectItemKey>;
101459
+ default: string;
101460
+ };
101461
+ itemValue: {
101462
+ type: PropType<SelectItemKey>;
101463
+ default: string;
101464
+ };
101465
+ itemChildren: {
101466
+ type: PropType<SelectItemKey>;
101467
+ default: string;
101468
+ };
101469
+ itemProps: {
101470
+ type: PropType<SelectItemKey>;
101471
+ default: string;
101472
+ };
101473
+ itemType: {
101474
+ type: PropType<SelectItemKey>;
101475
+ default: string;
101476
+ };
101477
+ returnObject: BooleanConstructor;
101478
+ valueComparator: PropType<typeof deepEqual>;
101479
+ baseColor: StringConstructor;
101480
+ activeColor: StringConstructor;
101481
+ activeClass: StringConstructor;
101482
+ bgColor: StringConstructor;
101483
+ disabled: BooleanConstructor;
101484
+ filterable: BooleanConstructor;
101485
+ expandIcon: {
101486
+ type: PropType<IconValue>;
101487
+ default: NonNullable<IconValue>;
101488
+ };
101489
+ collapseIcon: {
101490
+ type: PropType<IconValue>;
101491
+ default: NonNullable<IconValue>;
101492
+ };
101493
+ lines: {
101494
+ type: PropType<"one" | "three" | "two" | false>;
101495
+ default: string;
101496
+ };
101497
+ slim: {
101498
+ type: PropType<boolean>;
101499
+ default: boolean;
101500
+ };
101501
+ "onClick:open": PropType<(args_0: {
101502
+ id: unknown;
101503
+ value: boolean;
101504
+ path: unknown[];
101505
+ }) => void>;
101506
+ "onClick:select": PropType<(args_0: {
101507
+ id: unknown;
101508
+ value: boolean;
101509
+ path: unknown[];
101510
+ }) => void>;
101511
+ "onUpdate:opened": PropType<(args_0: unknown) => void>;
101512
+ hideActions: BooleanConstructor;
101513
+ fluid: BooleanConstructor;
101514
+ loadChildren: PropType<(item: unknown) => Promise<void>>;
101515
+ loadingIcon: {
101516
+ type: StringConstructor;
101517
+ default: string;
101518
+ };
101519
+ openOnClick: {
101520
+ type: BooleanConstructor;
101521
+ default: undefined;
101522
+ };
101523
+ indeterminateIcon: {
101524
+ type: PropType<IconValue>;
101525
+ default: string;
101526
+ };
101527
+ falseIcon: PropType<IconValue>;
101528
+ trueIcon: PropType<IconValue>;
101529
+ selectedColor: StringConstructor;
101530
+ separateRoots: BooleanConstructor;
101531
+ openAll: BooleanConstructor;
101532
+ indentLines: PropType<boolean | IndentLinesVariant>;
101533
+ search: StringConstructor;
101534
+ hideNoData: BooleanConstructor;
101535
+ noDataText: {
101536
+ type: StringConstructor;
101537
+ default: string;
101538
+ };
101539
+ modelValue: ArrayConstructor;
101540
+ }>>;
101541
+ type VTreeview = InstanceType<typeof VTreeview>;
101542
+
100533
101543
  declare const VTreeviewItem: {
100534
101544
  new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
100535
101545
  style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
@@ -102284,1068 +103294,147 @@ declare const VTreeviewItem: {
102284
103294
  minHeight: (NumberConstructor | StringConstructor)[];
102285
103295
  minWidth: (NumberConstructor | StringConstructor)[];
102286
103296
  width: (NumberConstructor | StringConstructor)[];
102287
- href: StringConstructor;
102288
- replace: BooleanConstructor;
102289
- to: PropType<string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric>;
102290
- exact: BooleanConstructor;
102291
- active: {
102292
- type: BooleanConstructor;
102293
- default: undefined;
102294
- };
102295
- activeClass: StringConstructor;
102296
- activeColor: StringConstructor;
102297
- appendAvatar: StringConstructor;
102298
- appendIcon: PropType<IconValue>;
102299
- baseColor: StringConstructor;
102300
- disabled: BooleanConstructor;
102301
- lines: PropType<"one" | "three" | "two" | false>;
102302
- link: {
102303
- type: BooleanConstructor;
102304
- default: undefined;
102305
- };
102306
- nav: BooleanConstructor;
102307
- prependAvatar: StringConstructor;
102308
- prependIcon: PropType<IconValue>;
102309
- ripple: {
102310
- type: PropType<boolean | {
102311
- class?: string | undefined;
102312
- keys?: string[] | undefined;
102313
- } | undefined>;
102314
- default: boolean;
102315
- };
102316
- slim: {
102317
- type: PropType<boolean>;
102318
- default: boolean;
102319
- };
102320
- subtitle: {
102321
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
102322
- default: undefined;
102323
- };
102324
- title: {
102325
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
102326
- default: undefined;
102327
- };
102328
- value: null;
102329
- onClick: PropType<(args_0: KeyboardEvent | MouseEvent) => void>;
102330
- onClickOnce: PropType<(args_0: MouseEvent) => void>;
102331
- loading: BooleanConstructor;
102332
- hideActions: BooleanConstructor;
102333
- hasCustomPrepend: BooleanConstructor;
102334
- indentLines: PropType<IndentLineType[]>;
102335
- toggleIcon: PropType<IconValue>;
102336
- }, vue.ExtractPropTypes<{
102337
- theme: StringConstructor;
102338
- class: PropType<any>;
102339
- style: {
102340
- type: PropType<vue.StyleValue>;
102341
- default: null;
102342
- };
102343
- border: (BooleanConstructor | NumberConstructor | StringConstructor)[];
102344
- density: {
102345
- type: PropType<Density>;
102346
- default: string;
102347
- validator: (v: any) => boolean;
102348
- };
102349
- elevation: {
102350
- type: (NumberConstructor | StringConstructor)[];
102351
- validator(v: any): boolean;
102352
- };
102353
- rounded: {
102354
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
102355
- default: undefined;
102356
- };
102357
- tile: BooleanConstructor;
102358
- tag: {
102359
- type: PropType<string | JSXComponent>;
102360
- default: string;
102361
- };
102362
- color: StringConstructor;
102363
- variant: Omit<{
102364
- type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
102365
- default: string;
102366
- validator: (v: any) => boolean;
102367
- }, "default" | "type"> & {
102368
- type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
102369
- default: NonNullable<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
102370
- };
102371
- height: (NumberConstructor | StringConstructor)[];
102372
- maxHeight: (NumberConstructor | StringConstructor)[];
102373
- maxWidth: (NumberConstructor | StringConstructor)[];
102374
- minHeight: (NumberConstructor | StringConstructor)[];
102375
- minWidth: (NumberConstructor | StringConstructor)[];
102376
- width: (NumberConstructor | StringConstructor)[];
102377
- href: StringConstructor;
102378
- replace: BooleanConstructor;
102379
- to: PropType<string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric>;
102380
- exact: BooleanConstructor;
102381
- active: {
102382
- type: BooleanConstructor;
102383
- default: undefined;
102384
- };
102385
- activeClass: StringConstructor;
102386
- activeColor: StringConstructor;
102387
- appendAvatar: StringConstructor;
102388
- appendIcon: PropType<IconValue>;
102389
- baseColor: StringConstructor;
102390
- disabled: BooleanConstructor;
102391
- lines: PropType<"one" | "three" | "two" | false>;
102392
- link: {
102393
- type: BooleanConstructor;
102394
- default: undefined;
102395
- };
102396
- nav: BooleanConstructor;
102397
- prependAvatar: StringConstructor;
102398
- prependIcon: PropType<IconValue>;
102399
- ripple: {
102400
- type: PropType<boolean | {
102401
- class?: string | undefined;
102402
- keys?: string[] | undefined;
102403
- } | undefined>;
102404
- default: boolean;
102405
- };
102406
- slim: {
102407
- type: PropType<boolean>;
102408
- default: boolean;
102409
- };
102410
- subtitle: {
102411
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
102412
- default: undefined;
102413
- };
102414
- title: {
102415
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
102416
- default: undefined;
102417
- };
102418
- value: null;
102419
- onClick: PropType<(args_0: KeyboardEvent | MouseEvent) => void>;
102420
- onClickOnce: PropType<(args_0: MouseEvent) => void>;
102421
- loading: BooleanConstructor;
102422
- hideActions: BooleanConstructor;
102423
- hasCustomPrepend: BooleanConstructor;
102424
- indentLines: PropType<IndentLineType[]>;
102425
- toggleIcon: PropType<IconValue>;
102426
- }>>;
102427
- type VTreeviewItem = InstanceType<typeof VTreeviewItem>;
102428
-
102429
- type VTreeviewChildrenSlots<T> = {
102430
- [K in keyof Omit<VTreeviewItemSlots, 'default'>]: VTreeviewItemSlots[K] & {
102431
- item: T;
102432
- internalItem: InternalListItem<T>;
102433
- };
102434
- } & {
102435
- default: never;
102436
- item: {
102437
- props: InternalListItem['props'];
102438
- item: T;
102439
- internalItem: InternalListItem<T>;
102440
- };
102441
- header: {
102442
- props: InternalListItem['props'];
102443
- item: T;
102444
- internalItem: InternalListItem<T>;
102445
- loading: boolean;
102446
- };
102447
- footer: {
102448
- props: {
102449
- indentLines?: IndentLineType[];
102450
- };
102451
- item: T;
102452
- internalItem: InternalListItem<T>;
102453
- loading: boolean;
102454
- };
102455
- divider: {
102456
- props: InternalListItem['props'];
102457
- };
102458
- subheader: {
102459
- props: InternalListItem['props'];
102460
- };
102461
- };
102462
-
102463
- declare const VTreeview: {
102464
- new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
102465
- style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
102466
- filterKeys: FilterKeys;
102467
- filterMode: FilterMode;
102468
- noFilter: boolean;
102469
- density: Density;
102470
- tile: boolean;
102471
- tag: string | JSXComponent;
102472
- variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
102473
- activatable: boolean;
102474
- selectable: boolean;
102475
- selectStrategy: SelectStrategyProp;
102476
- mandatory: boolean;
102477
- itemTitle: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
102478
- itemValue: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
102479
- itemChildren: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
102480
- itemProps: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
102481
- itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
102482
- returnObject: boolean;
102483
- disabled: boolean;
102484
- filterable: boolean;
102485
- expandIcon: IconValue;
102486
- collapseIcon: IconValue;
102487
- lines: "one" | "three" | "two" | false;
102488
- slim: boolean;
102489
- hideActions: boolean;
102490
- fluid: boolean;
102491
- loadingIcon: string;
102492
- indeterminateIcon: IconValue;
102493
- separateRoots: boolean;
102494
- openAll: boolean;
102495
- } & {
102496
- theme?: string | undefined;
102497
- class?: any;
102498
- customFilter?: FilterFunction | undefined;
102499
- customKeyFilter?: FilterKeyFunctions | undefined;
102500
- border?: string | number | boolean | undefined;
102501
- elevation?: string | number | undefined;
102502
- rounded?: string | number | boolean | undefined;
102503
- color?: string | undefined;
102504
- height?: string | number | undefined;
102505
- maxHeight?: string | number | undefined;
102506
- maxWidth?: string | number | undefined;
102507
- minHeight?: string | number | undefined;
102508
- minWidth?: string | number | undefined;
102509
- width?: string | number | undefined;
102510
- activeStrategy?: ActiveStrategyProp | undefined;
102511
- opened?: any;
102512
- activated?: any;
102513
- selected?: any;
102514
- valueComparator?: typeof deepEqual | undefined;
102515
- baseColor?: string | undefined;
102516
- activeColor?: string | undefined;
102517
- activeClass?: string | undefined;
102518
- bgColor?: string | undefined;
102519
- "onClick:open"?: ((args_0: {
102520
- id: unknown;
102521
- value: boolean;
102522
- path: unknown[];
102523
- }) => void) | undefined;
102524
- "onClick:select"?: ((args_0: {
102525
- id: unknown;
102526
- value: boolean;
102527
- path: unknown[];
102528
- }) => void) | undefined;
102529
- "onUpdate:opened"?: ((args_0: unknown) => void) | undefined;
102530
- loadChildren?: ((item: unknown) => Promise<void>) | undefined;
102531
- openOnClick?: boolean | undefined;
102532
- falseIcon?: IconValue | undefined;
102533
- trueIcon?: IconValue | undefined;
102534
- selectedColor?: string | undefined;
102535
- indentLines?: boolean | IndentLinesVariant | undefined;
102536
- search?: string | undefined;
102537
- modelValue?: unknown[] | undefined;
102538
- } & {
102539
- "onClick:open"?: ((value: {
102540
- id: unknown;
102541
- value: boolean;
102542
- path: unknown[];
102543
- }) => any) | undefined;
102544
- "onClick:select"?: ((value: {
102545
- id: unknown;
102546
- value: boolean;
102547
- path: unknown[];
102548
- }) => any) | undefined;
102549
- "onUpdate:activated"?: ((val: unknown) => any) | undefined;
102550
- "onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
102551
- "onUpdate:opened"?: ((val: unknown) => any) | undefined;
102552
- "onUpdate:selected"?: ((val: unknown) => any) | undefined;
102553
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
102554
- "update:opened": (val: unknown) => true;
102555
- "update:activated": (val: unknown) => true;
102556
- "update:selected": (val: unknown) => true;
102557
- "update:modelValue": (val: unknown) => true;
102558
- "click:open": (value: {
102559
- id: unknown;
102560
- value: boolean;
102561
- path: unknown[];
102562
- }) => true;
102563
- "click:select": (value: {
102564
- id: unknown;
102565
- value: boolean;
102566
- path: unknown[];
102567
- }) => true;
102568
- }, "$children" | "items" | "v-slot:append" | "v-slot:default" | "v-slot:divider" | "v-slot:footer" | "v-slot:header" | "v-slot:item" | "v-slot:prepend" | "v-slot:subheader" | "v-slot:subtitle" | "v-slot:title" | "v-slot:toggle" | "v-slots">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
102569
- style: vue.StyleValue;
102570
- filterKeys: FilterKeys;
102571
- filterMode: FilterMode;
102572
- noFilter: boolean;
102573
- density: Density;
102574
- rounded: string | number | boolean;
102575
- tile: boolean;
102576
- tag: string | JSXComponent;
102577
- variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
102578
- activatable: boolean;
102579
- selectable: boolean;
102580
- selectStrategy: SelectStrategyProp;
102581
- mandatory: boolean;
102582
- itemTitle: SelectItemKey;
102583
- itemValue: SelectItemKey;
102584
- itemChildren: SelectItemKey;
102585
- itemProps: SelectItemKey;
102586
- itemType: SelectItemKey;
102587
- returnObject: boolean;
102588
- disabled: boolean;
102589
- filterable: boolean;
102590
- expandIcon: IconValue;
102591
- collapseIcon: IconValue;
102592
- lines: "one" | "three" | "two" | false;
102593
- slim: boolean;
102594
- hideActions: boolean;
102595
- fluid: boolean;
102596
- loadingIcon: string;
102597
- openOnClick: boolean;
102598
- indeterminateIcon: IconValue;
102599
- separateRoots: boolean;
102600
- openAll: boolean;
102601
- }, true, {}, vue.SlotsType<Partial<{
102602
- prepend: (arg: ListItemSlot & {
102603
- item: unknown;
102604
- internalItem: InternalListItem<unknown>;
102605
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
102606
- [key: string]: any;
102607
- }>[];
102608
- append: (arg: ListItemSlot & {
102609
- item: unknown;
102610
- internalItem: InternalListItem<unknown>;
102611
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
102612
- [key: string]: any;
102613
- }>[];
102614
- title: (arg: ListItemTitleSlot & {
102615
- item: unknown;
102616
- internalItem: InternalListItem<unknown>;
102617
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
102618
- [key: string]: any;
102619
- }>[];
102620
- subtitle: (arg: ListItemSubtitleSlot & {
102621
- item: unknown;
102622
- internalItem: InternalListItem<unknown>;
102623
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
102624
- [key: string]: any;
102625
- }>[];
102626
- toggle: (arg: ListItemSlot & {
102627
- props: {
102628
- onClick: (e: PointerEvent) => void;
102629
- };
102630
- } & {
102631
- loading: boolean;
102632
- } & {
102633
- item: unknown;
102634
- internalItem: InternalListItem<unknown>;
102635
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
102636
- [key: string]: any;
102637
- }>[];
102638
- default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
102639
- [key: string]: any;
102640
- }>[];
102641
- item: (arg: {
102642
- props: {
102643
- [key: string]: any;
102644
- title: string;
102645
- value: any;
102646
- };
102647
- item: unknown;
102648
- internalItem: InternalListItem<unknown>;
102649
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
102650
- [key: string]: any;
102651
- }>[];
102652
- header: (arg: {
102653
- props: {
102654
- [key: string]: any;
102655
- title: string;
102656
- value: any;
102657
- };
102658
- item: unknown;
102659
- internalItem: InternalListItem<unknown>;
102660
- loading: boolean;
102661
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
102662
- [key: string]: any;
102663
- }>[];
102664
- footer: (arg: {
102665
- props: {
102666
- indentLines?: IndentLineType[] | undefined;
102667
- };
102668
- item: unknown;
102669
- internalItem: InternalListItem<unknown>;
102670
- loading: boolean;
102671
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
102672
- [key: string]: any;
102673
- }>[];
102674
- divider: (arg: {
102675
- props: {
102676
- [key: string]: any;
102677
- title: string;
102678
- value: any;
102679
- };
102680
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
102681
- [key: string]: any;
102682
- }>[];
102683
- subheader: (arg: {
102684
- props: {
102685
- [key: string]: any;
102686
- title: string;
102687
- value: any;
102688
- };
102689
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
102690
- [key: string]: any;
102691
- }>[];
102692
- }>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
102693
- P: {};
102694
- B: {};
102695
- D: {};
102696
- C: {};
102697
- M: {};
102698
- Defaults: {};
102699
- }, {
102700
- style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
102701
- filterKeys: FilterKeys;
102702
- filterMode: FilterMode;
102703
- noFilter: boolean;
102704
- density: Density;
102705
- tile: boolean;
102706
- tag: string | JSXComponent;
102707
- variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
102708
- activatable: boolean;
102709
- selectable: boolean;
102710
- selectStrategy: SelectStrategyProp;
102711
- mandatory: boolean;
102712
- itemTitle: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
102713
- itemValue: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
102714
- itemChildren: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
102715
- itemProps: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
102716
- itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
102717
- returnObject: boolean;
102718
- disabled: boolean;
102719
- filterable: boolean;
102720
- expandIcon: IconValue;
102721
- collapseIcon: IconValue;
102722
- lines: "one" | "three" | "two" | false;
102723
- slim: boolean;
102724
- hideActions: boolean;
102725
- fluid: boolean;
102726
- loadingIcon: string;
102727
- indeterminateIcon: IconValue;
102728
- separateRoots: boolean;
102729
- openAll: boolean;
102730
- } & {
102731
- theme?: string | undefined;
102732
- class?: any;
102733
- customFilter?: FilterFunction | undefined;
102734
- customKeyFilter?: FilterKeyFunctions | undefined;
102735
- border?: string | number | boolean | undefined;
102736
- elevation?: string | number | undefined;
102737
- rounded?: string | number | boolean | undefined;
102738
- color?: string | undefined;
102739
- height?: string | number | undefined;
102740
- maxHeight?: string | number | undefined;
102741
- maxWidth?: string | number | undefined;
102742
- minHeight?: string | number | undefined;
102743
- minWidth?: string | number | undefined;
102744
- width?: string | number | undefined;
102745
- activeStrategy?: ActiveStrategyProp | undefined;
102746
- opened?: any;
102747
- activated?: any;
102748
- selected?: any;
102749
- valueComparator?: typeof deepEqual | undefined;
102750
- baseColor?: string | undefined;
102751
- activeColor?: string | undefined;
102752
- activeClass?: string | undefined;
102753
- bgColor?: string | undefined;
102754
- "onClick:open"?: ((args_0: {
102755
- id: unknown;
102756
- value: boolean;
102757
- path: unknown[];
102758
- }) => void) | undefined;
102759
- "onClick:select"?: ((args_0: {
102760
- id: unknown;
102761
- value: boolean;
102762
- path: unknown[];
102763
- }) => void) | undefined;
102764
- "onUpdate:opened"?: ((args_0: unknown) => void) | undefined;
102765
- loadChildren?: ((item: unknown) => Promise<void>) | undefined;
102766
- openOnClick?: boolean | undefined;
102767
- falseIcon?: IconValue | undefined;
102768
- trueIcon?: IconValue | undefined;
102769
- selectedColor?: string | undefined;
102770
- indentLines?: boolean | IndentLinesVariant | undefined;
102771
- search?: string | undefined;
102772
- modelValue?: unknown[] | undefined;
102773
- } & {
102774
- "onClick:open"?: ((value: {
102775
- id: unknown;
102776
- value: boolean;
102777
- path: unknown[];
102778
- }) => any) | undefined;
102779
- "onClick:select"?: ((value: {
102780
- id: unknown;
102781
- value: boolean;
102782
- path: unknown[];
102783
- }) => any) | undefined;
102784
- "onUpdate:activated"?: ((val: unknown) => any) | undefined;
102785
- "onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
102786
- "onUpdate:opened"?: ((val: unknown) => any) | undefined;
102787
- "onUpdate:selected"?: ((val: unknown) => any) | undefined;
102788
- }, {}, {}, {}, {}, {
102789
- style: vue.StyleValue;
102790
- filterKeys: FilterKeys;
102791
- filterMode: FilterMode;
102792
- noFilter: boolean;
102793
- density: Density;
102794
- rounded: string | number | boolean;
102795
- tile: boolean;
102796
- tag: string | JSXComponent;
102797
- variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
102798
- activatable: boolean;
102799
- selectable: boolean;
102800
- selectStrategy: SelectStrategyProp;
102801
- mandatory: boolean;
102802
- itemTitle: SelectItemKey;
102803
- itemValue: SelectItemKey;
102804
- itemChildren: SelectItemKey;
102805
- itemProps: SelectItemKey;
102806
- itemType: SelectItemKey;
102807
- returnObject: boolean;
102808
- disabled: boolean;
102809
- filterable: boolean;
102810
- expandIcon: IconValue;
102811
- collapseIcon: IconValue;
102812
- lines: "one" | "three" | "two" | false;
102813
- slim: boolean;
102814
- hideActions: boolean;
102815
- fluid: boolean;
102816
- loadingIcon: string;
102817
- openOnClick: boolean;
102818
- indeterminateIcon: IconValue;
102819
- separateRoots: boolean;
102820
- openAll: boolean;
102821
- }>;
102822
- __isFragment?: undefined;
102823
- __isTeleport?: undefined;
102824
- __isSuspense?: undefined;
102825
- } & vue.ComponentOptionsBase<{
102826
- style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
102827
- filterKeys: FilterKeys;
102828
- filterMode: FilterMode;
102829
- noFilter: boolean;
102830
- density: Density;
102831
- tile: boolean;
102832
- tag: string | JSXComponent;
102833
- variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
102834
- activatable: boolean;
102835
- selectable: boolean;
102836
- selectStrategy: SelectStrategyProp;
102837
- mandatory: boolean;
102838
- itemTitle: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
102839
- itemValue: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
102840
- itemChildren: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
102841
- itemProps: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
102842
- itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
102843
- returnObject: boolean;
102844
- disabled: boolean;
102845
- filterable: boolean;
102846
- expandIcon: IconValue;
102847
- collapseIcon: IconValue;
102848
- lines: "one" | "three" | "two" | false;
102849
- slim: boolean;
102850
- hideActions: boolean;
102851
- fluid: boolean;
102852
- loadingIcon: string;
102853
- indeterminateIcon: IconValue;
102854
- separateRoots: boolean;
102855
- openAll: boolean;
102856
- } & {
102857
- theme?: string | undefined;
102858
- class?: any;
102859
- customFilter?: FilterFunction | undefined;
102860
- customKeyFilter?: FilterKeyFunctions | undefined;
102861
- border?: string | number | boolean | undefined;
102862
- elevation?: string | number | undefined;
102863
- rounded?: string | number | boolean | undefined;
102864
- color?: string | undefined;
102865
- height?: string | number | undefined;
102866
- maxHeight?: string | number | undefined;
102867
- maxWidth?: string | number | undefined;
102868
- minHeight?: string | number | undefined;
102869
- minWidth?: string | number | undefined;
102870
- width?: string | number | undefined;
102871
- activeStrategy?: ActiveStrategyProp | undefined;
102872
- opened?: any;
102873
- activated?: any;
102874
- selected?: any;
102875
- valueComparator?: typeof deepEqual | undefined;
102876
- baseColor?: string | undefined;
102877
- activeColor?: string | undefined;
102878
- activeClass?: string | undefined;
102879
- bgColor?: string | undefined;
102880
- "onClick:open"?: ((args_0: {
102881
- id: unknown;
102882
- value: boolean;
102883
- path: unknown[];
102884
- }) => void) | undefined;
102885
- "onClick:select"?: ((args_0: {
102886
- id: unknown;
102887
- value: boolean;
102888
- path: unknown[];
102889
- }) => void) | undefined;
102890
- "onUpdate:opened"?: ((args_0: unknown) => void) | undefined;
102891
- loadChildren?: ((item: unknown) => Promise<void>) | undefined;
102892
- openOnClick?: boolean | undefined;
102893
- falseIcon?: IconValue | undefined;
102894
- trueIcon?: IconValue | undefined;
102895
- selectedColor?: string | undefined;
102896
- indentLines?: boolean | IndentLinesVariant | undefined;
102897
- search?: string | undefined;
102898
- modelValue?: unknown[] | undefined;
102899
- } & {
102900
- "onClick:open"?: ((value: {
102901
- id: unknown;
102902
- value: boolean;
102903
- path: unknown[];
102904
- }) => any) | undefined;
102905
- "onClick:select"?: ((value: {
102906
- id: unknown;
102907
- value: boolean;
102908
- path: unknown[];
102909
- }) => any) | undefined;
102910
- "onUpdate:activated"?: ((val: unknown) => any) | undefined;
102911
- "onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
102912
- "onUpdate:opened"?: ((val: unknown) => any) | undefined;
102913
- "onUpdate:selected"?: ((val: unknown) => any) | undefined;
102914
- }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
102915
- "update:opened": (val: unknown) => true;
102916
- "update:activated": (val: unknown) => true;
102917
- "update:selected": (val: unknown) => true;
102918
- "update:modelValue": (val: unknown) => true;
102919
- "click:open": (value: {
102920
- id: unknown;
102921
- value: boolean;
102922
- path: unknown[];
102923
- }) => true;
102924
- "click:select": (value: {
102925
- id: unknown;
102926
- value: boolean;
102927
- path: unknown[];
102928
- }) => true;
102929
- }, "$children" | "items" | "v-slot:append" | "v-slot:default" | "v-slot:divider" | "v-slot:footer" | "v-slot:header" | "v-slot:item" | "v-slot:prepend" | "v-slot:subheader" | "v-slot:subtitle" | "v-slot:title" | "v-slot:toggle" | "v-slots">, string, {
102930
- style: vue.StyleValue;
102931
- filterKeys: FilterKeys;
102932
- filterMode: FilterMode;
102933
- noFilter: boolean;
102934
- density: Density;
102935
- rounded: string | number | boolean;
102936
- tile: boolean;
102937
- tag: string | JSXComponent;
102938
- variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
102939
- activatable: boolean;
102940
- selectable: boolean;
102941
- selectStrategy: SelectStrategyProp;
102942
- mandatory: boolean;
102943
- itemTitle: SelectItemKey;
102944
- itemValue: SelectItemKey;
102945
- itemChildren: SelectItemKey;
102946
- itemProps: SelectItemKey;
102947
- itemType: SelectItemKey;
102948
- returnObject: boolean;
102949
- disabled: boolean;
102950
- filterable: boolean;
102951
- expandIcon: IconValue;
102952
- collapseIcon: IconValue;
102953
- lines: "one" | "three" | "two" | false;
102954
- slim: boolean;
102955
- hideActions: boolean;
102956
- fluid: boolean;
102957
- loadingIcon: string;
102958
- openOnClick: boolean;
102959
- indeterminateIcon: IconValue;
102960
- separateRoots: boolean;
102961
- openAll: boolean;
102962
- }, {}, string, vue.SlotsType<Partial<{
102963
- prepend: (arg: ListItemSlot & {
102964
- item: unknown;
102965
- internalItem: InternalListItem<unknown>;
102966
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
102967
- [key: string]: any;
102968
- }>[];
102969
- append: (arg: ListItemSlot & {
102970
- item: unknown;
102971
- internalItem: InternalListItem<unknown>;
102972
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
102973
- [key: string]: any;
102974
- }>[];
102975
- title: (arg: ListItemTitleSlot & {
102976
- item: unknown;
102977
- internalItem: InternalListItem<unknown>;
102978
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
102979
- [key: string]: any;
102980
- }>[];
102981
- subtitle: (arg: ListItemSubtitleSlot & {
102982
- item: unknown;
102983
- internalItem: InternalListItem<unknown>;
102984
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
102985
- [key: string]: any;
102986
- }>[];
102987
- toggle: (arg: ListItemSlot & {
102988
- props: {
102989
- onClick: (e: PointerEvent) => void;
102990
- };
102991
- } & {
102992
- loading: boolean;
102993
- } & {
102994
- item: unknown;
102995
- internalItem: InternalListItem<unknown>;
102996
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
102997
- [key: string]: any;
102998
- }>[];
102999
- default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
103000
- [key: string]: any;
103001
- }>[];
103002
- item: (arg: {
103003
- props: {
103004
- [key: string]: any;
103005
- title: string;
103006
- value: any;
103007
- };
103008
- item: unknown;
103009
- internalItem: InternalListItem<unknown>;
103010
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
103011
- [key: string]: any;
103012
- }>[];
103013
- header: (arg: {
103014
- props: {
103015
- [key: string]: any;
103016
- title: string;
103017
- value: any;
103018
- };
103019
- item: unknown;
103020
- internalItem: InternalListItem<unknown>;
103021
- loading: boolean;
103022
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
103023
- [key: string]: any;
103024
- }>[];
103025
- footer: (arg: {
103026
- props: {
103027
- indentLines?: IndentLineType[] | undefined;
103028
- };
103029
- item: unknown;
103030
- internalItem: InternalListItem<unknown>;
103031
- loading: boolean;
103032
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
103033
- [key: string]: any;
103034
- }>[];
103035
- divider: (arg: {
103036
- props: {
103037
- [key: string]: any;
103038
- title: string;
103039
- value: any;
103040
- };
103041
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
103042
- [key: string]: any;
103043
- }>[];
103044
- subheader: (arg: {
103045
- props: {
103046
- [key: string]: any;
103047
- title: string;
103048
- value: any;
103049
- };
103050
- }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
103051
- [key: string]: any;
103052
- }>[];
103053
- }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
103054
- items?: T[] | undefined;
103055
- }, slots: VTreeviewChildrenSlots<T>) => GenericProps<{
103056
- items?: T[] | undefined;
103057
- }, VTreeviewChildrenSlots<T>>) & FilterPropsOptions<{
103058
- theme: StringConstructor;
103059
- class: PropType<any>;
103060
- style: {
103061
- type: PropType<vue.StyleValue>;
103062
- default: null;
103063
- };
103064
- customFilter: PropType<FilterFunction>;
103065
- customKeyFilter: PropType<FilterKeyFunctions>;
103066
- filterKeys: {
103067
- type: PropType<FilterKeys>;
103068
- default: NonNullable<FilterKeys>;
103069
- };
103070
- filterMode: {
103071
- type: PropType<FilterMode>;
103072
- default: string;
103073
- };
103074
- noFilter: BooleanConstructor;
103075
- border: (BooleanConstructor | NumberConstructor | StringConstructor)[];
103076
- density: {
103077
- type: PropType<Density>;
103078
- default: string;
103079
- validator: (v: any) => boolean;
103080
- };
103081
- elevation: {
103082
- type: (NumberConstructor | StringConstructor)[];
103083
- validator(v: any): boolean;
103084
- };
103085
- rounded: {
103086
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
103087
- default: undefined;
103088
- };
103089
- tile: BooleanConstructor;
103090
- tag: {
103091
- type: PropType<string | JSXComponent>;
103092
- default: string;
103093
- };
103094
- color: StringConstructor;
103095
- variant: Omit<{
103096
- type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
103097
- default: string;
103098
- validator: (v: any) => boolean;
103099
- }, "default" | "type"> & {
103100
- type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
103101
- default: NonNullable<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
103102
- };
103103
- height: (NumberConstructor | StringConstructor)[];
103104
- maxHeight: (NumberConstructor | StringConstructor)[];
103105
- maxWidth: (NumberConstructor | StringConstructor)[];
103106
- minHeight: (NumberConstructor | StringConstructor)[];
103107
- minWidth: (NumberConstructor | StringConstructor)[];
103108
- width: (NumberConstructor | StringConstructor)[];
103109
- activatable: BooleanConstructor;
103110
- selectable: BooleanConstructor;
103111
- activeStrategy: PropType<ActiveStrategyProp>;
103112
- selectStrategy: {
103113
- type: PropType<SelectStrategyProp>;
103114
- default: NonNullable<SelectStrategyProp>;
103115
- };
103116
- opened: null;
103117
- activated: null;
103118
- selected: null;
103119
- mandatory: BooleanConstructor;
103120
- items: {
103121
- type: PropType<any[]>;
103122
- default: () => never[];
103123
- };
103124
- itemTitle: {
103125
- type: PropType<SelectItemKey>;
103126
- default: string;
103127
- };
103128
- itemValue: {
103129
- type: PropType<SelectItemKey>;
103130
- default: string;
103131
- };
103132
- itemChildren: {
103133
- type: PropType<SelectItemKey>;
103134
- default: string;
103135
- };
103136
- itemProps: {
103137
- type: PropType<SelectItemKey>;
103138
- default: string;
103139
- };
103140
- itemType: {
103141
- type: PropType<SelectItemKey>;
103142
- default: string;
103143
- };
103144
- returnObject: BooleanConstructor;
103145
- valueComparator: PropType<typeof deepEqual>;
103146
- baseColor: StringConstructor;
103147
- activeColor: StringConstructor;
103148
- activeClass: StringConstructor;
103149
- bgColor: StringConstructor;
103150
- disabled: BooleanConstructor;
103151
- filterable: BooleanConstructor;
103152
- expandIcon: {
103153
- type: PropType<IconValue>;
103154
- default: NonNullable<IconValue>;
103155
- };
103156
- collapseIcon: {
103157
- type: PropType<IconValue>;
103158
- default: NonNullable<IconValue>;
103159
- };
103160
- lines: {
103161
- type: PropType<"one" | "three" | "two" | false>;
103162
- default: string;
103163
- };
103164
- slim: {
103165
- type: PropType<boolean>;
103166
- default: boolean;
103167
- };
103168
- "onClick:open": PropType<(args_0: {
103169
- id: unknown;
103170
- value: boolean;
103171
- path: unknown[];
103172
- }) => void>;
103173
- "onClick:select": PropType<(args_0: {
103174
- id: unknown;
103175
- value: boolean;
103176
- path: unknown[];
103177
- }) => void>;
103178
- "onUpdate:opened": PropType<(args_0: unknown) => void>;
103179
- hideActions: BooleanConstructor;
103180
- fluid: BooleanConstructor;
103181
- loadChildren: PropType<(item: unknown) => Promise<void>>;
103182
- loadingIcon: {
103183
- type: StringConstructor;
103184
- default: string;
103185
- };
103186
- openOnClick: {
103187
- type: BooleanConstructor;
103188
- default: undefined;
103189
- };
103190
- indeterminateIcon: {
103191
- type: PropType<IconValue>;
103192
- default: string;
103193
- };
103194
- falseIcon: PropType<IconValue>;
103195
- trueIcon: PropType<IconValue>;
103196
- selectedColor: StringConstructor;
103197
- separateRoots: BooleanConstructor;
103198
- openAll: BooleanConstructor;
103199
- indentLines: PropType<boolean | IndentLinesVariant>;
103200
- search: StringConstructor;
103201
- modelValue: ArrayConstructor;
103202
- }, vue.ExtractPropTypes<{
103203
- theme: StringConstructor;
103204
- class: PropType<any>;
103205
- style: {
103206
- type: PropType<vue.StyleValue>;
103207
- default: null;
103208
- };
103209
- customFilter: PropType<FilterFunction>;
103210
- customKeyFilter: PropType<FilterKeyFunctions>;
103211
- filterKeys: {
103212
- type: PropType<FilterKeys>;
103213
- default: NonNullable<FilterKeys>;
103214
- };
103215
- filterMode: {
103216
- type: PropType<FilterMode>;
103217
- default: string;
103218
- };
103219
- noFilter: BooleanConstructor;
103220
- border: (BooleanConstructor | NumberConstructor | StringConstructor)[];
103221
- density: {
103222
- type: PropType<Density>;
103223
- default: string;
103224
- validator: (v: any) => boolean;
103225
- };
103226
- elevation: {
103227
- type: (NumberConstructor | StringConstructor)[];
103228
- validator(v: any): boolean;
103229
- };
103230
- rounded: {
103231
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
103232
- default: undefined;
103233
- };
103234
- tile: BooleanConstructor;
103235
- tag: {
103236
- type: PropType<string | JSXComponent>;
103237
- default: string;
103238
- };
103239
- color: StringConstructor;
103240
- variant: Omit<{
103241
- type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
103242
- default: string;
103243
- validator: (v: any) => boolean;
103244
- }, "default" | "type"> & {
103245
- type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
103246
- default: NonNullable<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
103247
- };
103248
- height: (NumberConstructor | StringConstructor)[];
103249
- maxHeight: (NumberConstructor | StringConstructor)[];
103250
- maxWidth: (NumberConstructor | StringConstructor)[];
103251
- minHeight: (NumberConstructor | StringConstructor)[];
103252
- minWidth: (NumberConstructor | StringConstructor)[];
103253
- width: (NumberConstructor | StringConstructor)[];
103254
- activatable: BooleanConstructor;
103255
- selectable: BooleanConstructor;
103256
- activeStrategy: PropType<ActiveStrategyProp>;
103257
- selectStrategy: {
103258
- type: PropType<SelectStrategyProp>;
103259
- default: NonNullable<SelectStrategyProp>;
103297
+ href: StringConstructor;
103298
+ replace: BooleanConstructor;
103299
+ to: PropType<string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric>;
103300
+ exact: BooleanConstructor;
103301
+ active: {
103302
+ type: BooleanConstructor;
103303
+ default: undefined;
103260
103304
  };
103261
- opened: null;
103262
- activated: null;
103263
- selected: null;
103264
- mandatory: BooleanConstructor;
103265
- items: {
103266
- type: PropType<any[]>;
103267
- default: () => never[];
103305
+ activeClass: StringConstructor;
103306
+ activeColor: StringConstructor;
103307
+ appendAvatar: StringConstructor;
103308
+ appendIcon: PropType<IconValue>;
103309
+ baseColor: StringConstructor;
103310
+ disabled: BooleanConstructor;
103311
+ lines: PropType<"one" | "three" | "two" | false>;
103312
+ link: {
103313
+ type: BooleanConstructor;
103314
+ default: undefined;
103268
103315
  };
103269
- itemTitle: {
103270
- type: PropType<SelectItemKey>;
103271
- default: string;
103316
+ nav: BooleanConstructor;
103317
+ prependAvatar: StringConstructor;
103318
+ prependIcon: PropType<IconValue>;
103319
+ ripple: {
103320
+ type: PropType<boolean | {
103321
+ class?: string | undefined;
103322
+ keys?: string[] | undefined;
103323
+ } | undefined>;
103324
+ default: boolean;
103272
103325
  };
103273
- itemValue: {
103274
- type: PropType<SelectItemKey>;
103275
- default: string;
103326
+ slim: {
103327
+ type: PropType<boolean>;
103328
+ default: boolean;
103276
103329
  };
103277
- itemChildren: {
103278
- type: PropType<SelectItemKey>;
103330
+ subtitle: {
103331
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
103332
+ default: undefined;
103333
+ };
103334
+ title: {
103335
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
103336
+ default: undefined;
103337
+ };
103338
+ value: null;
103339
+ onClick: PropType<(args_0: KeyboardEvent | MouseEvent) => void>;
103340
+ onClickOnce: PropType<(args_0: MouseEvent) => void>;
103341
+ loading: BooleanConstructor;
103342
+ hideActions: BooleanConstructor;
103343
+ hasCustomPrepend: BooleanConstructor;
103344
+ indentLines: PropType<IndentLineType[]>;
103345
+ toggleIcon: PropType<IconValue>;
103346
+ }, vue.ExtractPropTypes<{
103347
+ theme: StringConstructor;
103348
+ class: PropType<any>;
103349
+ style: {
103350
+ type: PropType<vue.StyleValue>;
103351
+ default: null;
103352
+ };
103353
+ border: (BooleanConstructor | NumberConstructor | StringConstructor)[];
103354
+ density: {
103355
+ type: PropType<Density>;
103279
103356
  default: string;
103357
+ validator: (v: any) => boolean;
103280
103358
  };
103281
- itemProps: {
103282
- type: PropType<SelectItemKey>;
103359
+ elevation: {
103360
+ type: (NumberConstructor | StringConstructor)[];
103361
+ validator(v: any): boolean;
103362
+ };
103363
+ rounded: {
103364
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
103365
+ default: undefined;
103366
+ };
103367
+ tile: BooleanConstructor;
103368
+ tag: {
103369
+ type: PropType<string | JSXComponent>;
103283
103370
  default: string;
103284
103371
  };
103285
- itemType: {
103286
- type: PropType<SelectItemKey>;
103372
+ color: StringConstructor;
103373
+ variant: Omit<{
103374
+ type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
103287
103375
  default: string;
103376
+ validator: (v: any) => boolean;
103377
+ }, "default" | "type"> & {
103378
+ type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
103379
+ default: NonNullable<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
103380
+ };
103381
+ height: (NumberConstructor | StringConstructor)[];
103382
+ maxHeight: (NumberConstructor | StringConstructor)[];
103383
+ maxWidth: (NumberConstructor | StringConstructor)[];
103384
+ minHeight: (NumberConstructor | StringConstructor)[];
103385
+ minWidth: (NumberConstructor | StringConstructor)[];
103386
+ width: (NumberConstructor | StringConstructor)[];
103387
+ href: StringConstructor;
103388
+ replace: BooleanConstructor;
103389
+ to: PropType<string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric>;
103390
+ exact: BooleanConstructor;
103391
+ active: {
103392
+ type: BooleanConstructor;
103393
+ default: undefined;
103288
103394
  };
103289
- returnObject: BooleanConstructor;
103290
- valueComparator: PropType<typeof deepEqual>;
103291
- baseColor: StringConstructor;
103292
- activeColor: StringConstructor;
103293
103395
  activeClass: StringConstructor;
103294
- bgColor: StringConstructor;
103396
+ activeColor: StringConstructor;
103397
+ appendAvatar: StringConstructor;
103398
+ appendIcon: PropType<IconValue>;
103399
+ baseColor: StringConstructor;
103295
103400
  disabled: BooleanConstructor;
103296
- filterable: BooleanConstructor;
103297
- expandIcon: {
103298
- type: PropType<IconValue>;
103299
- default: NonNullable<IconValue>;
103300
- };
103301
- collapseIcon: {
103302
- type: PropType<IconValue>;
103303
- default: NonNullable<IconValue>;
103401
+ lines: PropType<"one" | "three" | "two" | false>;
103402
+ link: {
103403
+ type: BooleanConstructor;
103404
+ default: undefined;
103304
103405
  };
103305
- lines: {
103306
- type: PropType<"one" | "three" | "two" | false>;
103307
- default: string;
103406
+ nav: BooleanConstructor;
103407
+ prependAvatar: StringConstructor;
103408
+ prependIcon: PropType<IconValue>;
103409
+ ripple: {
103410
+ type: PropType<boolean | {
103411
+ class?: string | undefined;
103412
+ keys?: string[] | undefined;
103413
+ } | undefined>;
103414
+ default: boolean;
103308
103415
  };
103309
103416
  slim: {
103310
103417
  type: PropType<boolean>;
103311
103418
  default: boolean;
103312
103419
  };
103313
- "onClick:open": PropType<(args_0: {
103314
- id: unknown;
103315
- value: boolean;
103316
- path: unknown[];
103317
- }) => void>;
103318
- "onClick:select": PropType<(args_0: {
103319
- id: unknown;
103320
- value: boolean;
103321
- path: unknown[];
103322
- }) => void>;
103323
- "onUpdate:opened": PropType<(args_0: unknown) => void>;
103324
- hideActions: BooleanConstructor;
103325
- fluid: BooleanConstructor;
103326
- loadChildren: PropType<(item: unknown) => Promise<void>>;
103327
- loadingIcon: {
103328
- type: StringConstructor;
103329
- default: string;
103330
- };
103331
- openOnClick: {
103332
- type: BooleanConstructor;
103420
+ subtitle: {
103421
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
103333
103422
  default: undefined;
103334
103423
  };
103335
- indeterminateIcon: {
103336
- type: PropType<IconValue>;
103337
- default: string;
103424
+ title: {
103425
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
103426
+ default: undefined;
103338
103427
  };
103339
- falseIcon: PropType<IconValue>;
103340
- trueIcon: PropType<IconValue>;
103341
- selectedColor: StringConstructor;
103342
- separateRoots: BooleanConstructor;
103343
- openAll: BooleanConstructor;
103344
- indentLines: PropType<boolean | IndentLinesVariant>;
103345
- search: StringConstructor;
103346
- modelValue: ArrayConstructor;
103428
+ value: null;
103429
+ onClick: PropType<(args_0: KeyboardEvent | MouseEvent) => void>;
103430
+ onClickOnce: PropType<(args_0: MouseEvent) => void>;
103431
+ loading: BooleanConstructor;
103432
+ hideActions: BooleanConstructor;
103433
+ hasCustomPrepend: BooleanConstructor;
103434
+ indentLines: PropType<IndentLineType[]>;
103435
+ toggleIcon: PropType<IconValue>;
103347
103436
  }>>;
103348
- type VTreeview = InstanceType<typeof VTreeview>;
103437
+ type VTreeviewItem = InstanceType<typeof VTreeviewItem>;
103349
103438
 
103350
103439
  declare const VTreeviewGroup: {
103351
103440
  new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
@@ -114267,10 +114356,7 @@ declare const VDateInput: {
114267
114356
  border?: string | number | boolean | undefined;
114268
114357
  elevation?: string | number | undefined;
114269
114358
  rounded?: string | number | boolean | undefined;
114270
- height?: string | number | undefined;
114271
- maxHeight?: string | number | undefined;
114272
114359
  maxWidth?: string | number | undefined;
114273
- minHeight?: string | number | undefined;
114274
114360
  minWidth?: string | number | undefined;
114275
114361
  width?: string | number | undefined;
114276
114362
  loading?: string | boolean | undefined;
@@ -116696,10 +116782,7 @@ declare const VDateInput: {
116696
116782
  border?: string | number | boolean | undefined;
116697
116783
  elevation?: string | number | undefined;
116698
116784
  rounded?: string | number | boolean | undefined;
116699
- height?: string | number | undefined;
116700
- maxHeight?: string | number | undefined;
116701
116785
  maxWidth?: string | number | undefined;
116702
- minHeight?: string | number | undefined;
116703
116786
  minWidth?: string | number | undefined;
116704
116787
  width?: string | number | undefined;
116705
116788
  loading?: string | boolean | undefined;
@@ -119027,10 +119110,7 @@ declare const VDateInput: {
119027
119110
  border?: string | number | boolean | undefined;
119028
119111
  elevation?: string | number | undefined;
119029
119112
  rounded?: string | number | boolean | undefined;
119030
- height?: string | number | undefined;
119031
- maxHeight?: string | number | undefined;
119032
119113
  maxWidth?: string | number | undefined;
119033
- minHeight?: string | number | undefined;
119034
119114
  minWidth?: string | number | undefined;
119035
119115
  width?: string | number | undefined;
119036
119116
  loading?: string | boolean | undefined;
@@ -121447,10 +121527,7 @@ declare const VDateInput: {
121447
121527
  type: PropType<string | JSXComponent>;
121448
121528
  default: string;
121449
121529
  };
121450
- height: (NumberConstructor | StringConstructor)[];
121451
- maxHeight: (NumberConstructor | StringConstructor)[];
121452
121530
  maxWidth: (NumberConstructor | StringConstructor)[];
121453
- minHeight: (NumberConstructor | StringConstructor)[];
121454
121531
  minWidth: (NumberConstructor | StringConstructor)[];
121455
121532
  width: (NumberConstructor | StringConstructor)[];
121456
121533
  loading: (BooleanConstructor | StringConstructor)[];
@@ -121692,10 +121769,7 @@ declare const VDateInput: {
121692
121769
  type: PropType<string | JSXComponent>;
121693
121770
  default: string;
121694
121771
  };
121695
- height: (NumberConstructor | StringConstructor)[];
121696
- maxHeight: (NumberConstructor | StringConstructor)[];
121697
121772
  maxWidth: (NumberConstructor | StringConstructor)[];
121698
- minHeight: (NumberConstructor | StringConstructor)[];
121699
121773
  minWidth: (NumberConstructor | StringConstructor)[];
121700
121774
  width: (NumberConstructor | StringConstructor)[];
121701
121775
  loading: (BooleanConstructor | StringConstructor)[];
@@ -142842,44 +142916,38 @@ declare module 'vue' {
142842
142916
  VAppBar: VAppBar
142843
142917
  VAppBarNavIcon: VAppBarNavIcon
142844
142918
  VAppBarTitle: VAppBarTitle
142845
- VBadge: VBadge
142846
142919
  VAlert: VAlert
142847
142920
  VAlertTitle: VAlertTitle
142921
+ VAvatar: VAvatar
142848
142922
  VAutocomplete: VAutocomplete
142849
142923
  VBanner: VBanner
142850
142924
  VBannerActions: VBannerActions
142851
142925
  VBannerText: VBannerText
142926
+ VBadge: VBadge
142927
+ VBtn: VBtn
142928
+ VBottomSheet: VBottomSheet
142929
+ VBtnToggle: VBtnToggle
142852
142930
  VBottomNavigation: VBottomNavigation
142853
142931
  VBreadcrumbs: VBreadcrumbs
142854
142932
  VBreadcrumbsItem: VBreadcrumbsItem
142855
142933
  VBreadcrumbsDivider: VBreadcrumbsDivider
142856
- VAvatar: VAvatar
142934
+ VCheckbox: VCheckbox
142935
+ VCheckboxBtn: VCheckboxBtn
142936
+ VCarousel: VCarousel
142937
+ VCarouselItem: VCarouselItem
142938
+ VBtnGroup: VBtnGroup
142939
+ VChipGroup: VChipGroup
142857
142940
  VCard: VCard
142858
142941
  VCardActions: VCardActions
142859
142942
  VCardItem: VCardItem
142860
142943
  VCardSubtitle: VCardSubtitle
142861
142944
  VCardText: VCardText
142862
142945
  VCardTitle: VCardTitle
142863
- VCheckbox: VCheckbox
142864
- VCheckboxBtn: VCheckboxBtn
142865
- VBtn: VBtn
142866
- VCarousel: VCarousel
142867
- VCarouselItem: VCarouselItem
142868
- VBottomSheet: VBottomSheet
142869
- VBtnGroup: VBtnGroup
142870
142946
  VChip: VChip
142871
- VBtnToggle: VBtnToggle
142872
- VChipGroup: VChipGroup
142873
142947
  VCode: VCode
142874
- VColorPicker: VColorPicker
142875
142948
  VCombobox: VCombobox
142949
+ VColorPicker: VColorPicker
142876
142950
  VCounter: VCounter
142877
- VDatePicker: VDatePicker
142878
- VDatePickerControls: VDatePickerControls
142879
- VDatePickerHeader: VDatePickerHeader
142880
- VDatePickerMonth: VDatePickerMonth
142881
- VDatePickerMonths: VDatePickerMonths
142882
- VDatePickerYears: VDatePickerYears
142883
142951
  VDataTable: VDataTable
142884
142952
  VDataTableHeaders: VDataTableHeaders
142885
142953
  VDataTableFooter: VDataTableFooter
@@ -142887,30 +142955,36 @@ declare module 'vue' {
142887
142955
  VDataTableRow: VDataTableRow
142888
142956
  VDataTableVirtual: VDataTableVirtual
142889
142957
  VDataTableServer: VDataTableServer
142890
- VEmptyState: VEmptyState
142891
- VDialog: VDialog
142892
- VField: VField
142893
- VFieldLabel: VFieldLabel
142894
142958
  VDivider: VDivider
142959
+ VDialog: VDialog
142960
+ VDatePicker: VDatePicker
142961
+ VDatePickerControls: VDatePickerControls
142962
+ VDatePickerHeader: VDatePickerHeader
142963
+ VDatePickerMonth: VDatePickerMonth
142964
+ VDatePickerMonths: VDatePickerMonths
142965
+ VDatePickerYears: VDatePickerYears
142895
142966
  VFileInput: VFileInput
142967
+ VEmptyState: VEmptyState
142968
+ VFab: VFab
142896
142969
  VExpansionPanels: VExpansionPanels
142897
142970
  VExpansionPanel: VExpansionPanel
142898
142971
  VExpansionPanelText: VExpansionPanelText
142899
142972
  VExpansionPanelTitle: VExpansionPanelTitle
142900
- VFooter: VFooter
142901
- VFab: VFab
142902
- VImg: VImg
142903
- VLabel: VLabel
142973
+ VField: VField
142974
+ VFieldLabel: VFieldLabel
142975
+ VInput: VInput
142904
142976
  VIcon: VIcon
142905
142977
  VComponentIcon: VComponentIcon
142906
142978
  VSvgIcon: VSvgIcon
142907
142979
  VLigatureIcon: VLigatureIcon
142908
142980
  VClassIcon: VClassIcon
142981
+ VFooter: VFooter
142909
142982
  VInfiniteScroll: VInfiniteScroll
142910
- VInput: VInput
142911
142983
  VItemGroup: VItemGroup
142912
142984
  VItem: VItem
142913
142985
  VKbd: VKbd
142986
+ VImg: VImg
142987
+ VLabel: VLabel
142914
142988
  VList: VList
142915
142989
  VListGroup: VListGroup
142916
142990
  VListImg: VListImg
@@ -142920,26 +142994,27 @@ declare module 'vue' {
142920
142994
  VListItemSubtitle: VListItemSubtitle
142921
142995
  VListItemTitle: VListItemTitle
142922
142996
  VListSubheader: VListSubheader
142923
- VNavigationDrawer: VNavigationDrawer
142924
- VMenu: VMenu
142925
142997
  VMessages: VMessages
142926
- VOverlay: VOverlay
142927
- VPagination: VPagination
142928
142998
  VMain: VMain
142999
+ VMenu: VMenu
143000
+ VPagination: VPagination
142929
143001
  VOtpInput: VOtpInput
142930
- VProgressCircular: VProgressCircular
142931
143002
  VNumberInput: VNumberInput
143003
+ VNavigationDrawer: VNavigationDrawer
143004
+ VOverlay: VOverlay
143005
+ VProgressCircular: VProgressCircular
142932
143006
  VRadioGroup: VRadioGroup
142933
143007
  VProgressLinear: VProgressLinear
142934
143008
  VRating: VRating
142935
- VSkeletonLoader: VSkeletonLoader
142936
- VSelectionControlGroup: VSelectionControlGroup
143009
+ VSelectionControl: VSelectionControl
142937
143010
  VSelect: VSelect
143011
+ VSheet: VSheet
143012
+ VSkeletonLoader: VSkeletonLoader
142938
143013
  VSlideGroup: VSlideGroup
142939
143014
  VSlideGroupItem: VSlideGroupItem
142940
- VSelectionControl: VSelectionControl
142941
- VSheet: VSheet
142942
143015
  VSlider: VSlider
143016
+ VSelectionControlGroup: VSelectionControlGroup
143017
+ VSnackbar: VSnackbar
142943
143018
  VStepper: VStepper
142944
143019
  VStepperActions: VStepperActions
142945
143020
  VStepperHeader: VStepperHeader
@@ -142947,52 +143022,52 @@ declare module 'vue' {
142947
143022
  VStepperWindow: VStepperWindow
142948
143023
  VStepperWindowItem: VStepperWindowItem
142949
143024
  VSwitch: VSwitch
142950
- VSystemBar: VSystemBar
142951
- VSnackbar: VSnackbar
142952
143025
  VTab: VTab
142953
143026
  VTabs: VTabs
142954
143027
  VTabsWindow: VTabsWindow
142955
143028
  VTabsWindowItem: VTabsWindowItem
142956
- VTextField: VTextField
142957
143029
  VTextarea: VTextarea
142958
143030
  VTable: VTable
142959
- VTimePicker: VTimePicker
142960
- VTimePickerClock: VTimePickerClock
142961
- VTimePickerControls: VTimePickerControls
143031
+ VSystemBar: VSystemBar
143032
+ VTimeline: VTimeline
143033
+ VTimelineItem: VTimelineItem
143034
+ VTextField: VTextField
142962
143035
  VToolbar: VToolbar
142963
143036
  VToolbarTitle: VToolbarTitle
142964
143037
  VToolbarItems: VToolbarItems
142965
- VTimeline: VTimeline
142966
- VTimelineItem: VTimelineItem
143038
+ VTooltip: VTooltip
142967
143039
  VTreeview: VTreeview
142968
143040
  VTreeviewItem: VTreeviewItem
142969
143041
  VTreeviewGroup: VTreeviewGroup
142970
- VTooltip: VTooltip
143042
+ VTimePicker: VTimePicker
143043
+ VTimePickerClock: VTimePickerClock
143044
+ VTimePickerControls: VTimePickerControls
142971
143045
  VWindow: VWindow
142972
143046
  VWindowItem: VWindowItem
142973
143047
  VConfirmEdit: VConfirmEdit
142974
143048
  VDataIterator: VDataIterator
142975
143049
  VDefaultsProvider: VDefaultsProvider
142976
143050
  VForm: VForm
142977
- VContainer: VContainer
142978
- VCol: VCol
142979
- VRow: VRow
142980
- VSpacer: VSpacer
142981
143051
  VHover: VHover
142982
- VLazy: VLazy
142983
- VLocaleProvider: VLocaleProvider
142984
143052
  VLayout: VLayout
142985
143053
  VLayoutItem: VLayoutItem
142986
- VNoSsr: VNoSsr
143054
+ VLocaleProvider: VLocaleProvider
143055
+ VLazy: VLazy
142987
143056
  VParallax: VParallax
143057
+ VNoSsr: VNoSsr
143058
+ VContainer: VContainer
143059
+ VCol: VCol
143060
+ VRow: VRow
143061
+ VSpacer: VSpacer
143062
+ VRadio: VRadio
143063
+ VRangeSlider: VRangeSlider
142988
143064
  VResponsive: VResponsive
142989
143065
  VSnackbarQueue: VSnackbarQueue
142990
- VRangeSlider: VRangeSlider
142991
143066
  VSparkline: VSparkline
142992
- VThemeProvider: VThemeProvider
142993
143067
  VSpeedDial: VSpeedDial
142994
- VValidation: VValidation
143068
+ VThemeProvider: VThemeProvider
142995
143069
  VVirtualScroll: VVirtualScroll
143070
+ VValidation: VValidation
142996
143071
  VFabTransition: VFabTransition
142997
143072
  VDialogBottomTransition: VDialogBottomTransition
142998
143073
  VDialogTopTransition: VDialogTopTransition
@@ -143009,26 +143084,25 @@ declare module 'vue' {
143009
143084
  VExpandTransition: VExpandTransition
143010
143085
  VExpandXTransition: VExpandXTransition
143011
143086
  VDialogTransition: VDialogTransition
143012
- VRadio: VRadio
143013
143087
  VColorInput: VColorInput
143088
+ VCalendar: VCalendar
143014
143089
  VFileUpload: VFileUpload
143015
143090
  VFileUploadItem: VFileUploadItem
143016
- VIconBtn: VIconBtn
143017
143091
  VPie: VPie
143018
143092
  VPieSegment: VPieSegment
143019
143093
  VPieTooltip: VPieTooltip
143094
+ VIconBtn: VIconBtn
143020
143095
  VPicker: VPicker
143021
143096
  VPickerTitle: VPickerTitle
143022
- VHotkey: VHotkey
143023
143097
  VStepperVertical: VStepperVertical
143024
143098
  VStepperVerticalItem: VStepperVerticalItem
143025
143099
  VStepperVerticalActions: VStepperVerticalActions
143026
143100
  VVideo: VVideo
143027
143101
  VVideoControls: VVideoControls
143028
143102
  VVideoVolume: VVideoVolume
143029
- VCalendar: VCalendar
143030
- VMaskInput: VMaskInput
143103
+ VHotkey: VHotkey
143031
143104
  VDateInput: VDateInput
143105
+ VMaskInput: VMaskInput
143032
143106
  VPullToRefresh: VPullToRefresh
143033
143107
  }
143034
143108
  export interface GlobalDirectives {