@vuetify/nightly 3.10.4-dev.2025-10-02 → 3.10.4-dev.2025-10-06

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 (45) hide show
  1. package/CHANGELOG.md +5 -3
  2. package/dist/json/attributes.json +3641 -3625
  3. package/dist/json/importMap-labs.json +30 -30
  4. package/dist/json/importMap.json +178 -178
  5. package/dist/json/tags.json +4 -0
  6. package/dist/json/web-types.json +6554 -6514
  7. package/dist/vuetify-labs.cjs +80 -25
  8. package/dist/vuetify-labs.css +4520 -4520
  9. package/dist/vuetify-labs.d.ts +194 -99
  10. package/dist/vuetify-labs.esm.js +80 -25
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +80 -25
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +80 -25
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +6205 -6205
  17. package/dist/vuetify.d.ts +194 -99
  18. package/dist/vuetify.esm.js +80 -25
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +80 -25
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +37 -32
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VDataIterator/VDataIterator.d.ts +52 -11
  26. package/lib/components/VDataIterator/VDataIterator.js +2 -0
  27. package/lib/components/VDataIterator/VDataIterator.js.map +1 -1
  28. package/lib/components/VDataTable/VDataTable.d.ts +78 -18
  29. package/lib/components/VDataTable/VDataTable.js +9 -5
  30. package/lib/components/VDataTable/VDataTable.js.map +1 -1
  31. package/lib/components/VDataTable/VDataTableHeaders.js +2 -2
  32. package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
  33. package/lib/components/VDataTable/VDataTableServer.d.ts +54 -13
  34. package/lib/components/VDataTable/VDataTableServer.js +8 -4
  35. package/lib/components/VDataTable/VDataTableServer.js.map +1 -1
  36. package/lib/components/VDataTable/VDataTableVirtual.d.ts +54 -13
  37. package/lib/components/VDataTable/VDataTableVirtual.js +7 -3
  38. package/lib/components/VDataTable/VDataTableVirtual.js.map +1 -1
  39. package/lib/components/VDataTable/composables/sort.d.ts +36 -8
  40. package/lib/components/VDataTable/composables/sort.js +55 -14
  41. package/lib/components/VDataTable/composables/sort.js.map +1 -1
  42. package/lib/entry-bundler.js +1 -1
  43. package/lib/framework.d.ts +65 -65
  44. package/lib/framework.js +1 -1
  45. package/package.json +1 -1
@@ -856,14 +856,21 @@ type SortItem = {
856
856
  key: string;
857
857
  order?: boolean | 'asc' | 'desc';
858
858
  };
859
+ type MultiSortProps = {
860
+ key?: 'ctrl';
861
+ mode?: MultiSortMode;
862
+ modifier?: 'alt' | 'shift';
863
+ };
864
+ type MultiSortMode = 'append' | 'prepend';
859
865
  declare function provideSort(options: {
866
+ initialSortOrder: Ref<'asc' | 'desc'>;
860
867
  sortBy: Ref<readonly SortItem[]>;
868
+ multiSort: Ref<boolean | MultiSortProps>;
861
869
  mustSort: Ref<boolean>;
862
- multiSort: Ref<boolean>;
863
870
  page?: Ref<number>;
864
871
  }): {
865
872
  sortBy: Ref<readonly SortItem[], readonly SortItem[]>;
866
- toggleSort: (column: InternalDataTableHeader) => void;
873
+ toggleSort: (column: InternalDataTableHeader, event?: KeyboardEvent | PointerEvent | undefined) => void;
867
874
  isSorted: (column: InternalDataTableHeader) => boolean;
868
875
  };
869
876
 
@@ -38470,8 +38477,9 @@ declare const VDataIterator: {
38470
38477
  expandOnClick: boolean;
38471
38478
  showExpand: boolean;
38472
38479
  expanded: readonly string[];
38480
+ initialSortOrder: "asc" | "desc";
38473
38481
  sortBy: readonly SortItem[];
38474
- multiSort: boolean;
38482
+ multiSort: boolean | MultiSortProps;
38475
38483
  mustSort: boolean;
38476
38484
  groupBy: readonly SortItem[];
38477
38485
  showSelect: boolean;
@@ -38523,8 +38531,9 @@ declare const VDataIterator: {
38523
38531
  expandOnClick: boolean;
38524
38532
  showExpand: boolean;
38525
38533
  expanded: readonly string[];
38534
+ initialSortOrder: "asc" | "desc";
38526
38535
  sortBy: readonly SortItem[];
38527
- multiSort: boolean;
38536
+ multiSort: boolean | MultiSortProps;
38528
38537
  mustSort: boolean;
38529
38538
  groupBy: readonly SortItem[];
38530
38539
  showSelect: boolean;
@@ -38574,8 +38583,9 @@ declare const VDataIterator: {
38574
38583
  expandOnClick: boolean;
38575
38584
  showExpand: boolean;
38576
38585
  expanded: readonly string[];
38586
+ initialSortOrder: "asc" | "desc";
38577
38587
  sortBy: readonly SortItem[];
38578
- multiSort: boolean;
38588
+ multiSort: boolean | MultiSortProps;
38579
38589
  mustSort: boolean;
38580
38590
  groupBy: readonly SortItem[];
38581
38591
  showSelect: boolean;
@@ -38618,8 +38628,9 @@ declare const VDataIterator: {
38618
38628
  expandOnClick: boolean;
38619
38629
  showExpand: boolean;
38620
38630
  expanded: readonly string[];
38631
+ initialSortOrder: "asc" | "desc";
38621
38632
  sortBy: readonly SortItem[];
38622
- multiSort: boolean;
38633
+ multiSort: boolean | MultiSortProps;
38623
38634
  mustSort: boolean;
38624
38635
  groupBy: readonly SortItem[];
38625
38636
  showSelect: boolean;
@@ -38650,8 +38661,9 @@ declare const VDataIterator: {
38650
38661
  expandOnClick: boolean;
38651
38662
  showExpand: boolean;
38652
38663
  expanded: readonly string[];
38664
+ initialSortOrder: "asc" | "desc";
38653
38665
  sortBy: readonly SortItem[];
38654
- multiSort: boolean;
38666
+ multiSort: boolean | MultiSortProps;
38655
38667
  mustSort: boolean;
38656
38668
  groupBy: readonly SortItem[];
38657
38669
  showSelect: boolean;
@@ -38703,8 +38715,9 @@ declare const VDataIterator: {
38703
38715
  expandOnClick: boolean;
38704
38716
  showExpand: boolean;
38705
38717
  expanded: readonly string[];
38718
+ initialSortOrder: "asc" | "desc";
38706
38719
  sortBy: readonly SortItem[];
38707
- multiSort: boolean;
38720
+ multiSort: boolean | MultiSortProps;
38708
38721
  mustSort: boolean;
38709
38722
  groupBy: readonly SortItem[];
38710
38723
  showSelect: boolean;
@@ -38764,12 +38777,20 @@ declare const VDataIterator: {
38764
38777
  type: vue.PropType<readonly string[]>;
38765
38778
  default: () => never[];
38766
38779
  };
38780
+ initialSortOrder: {
38781
+ type: vue.PropType<"asc" | "desc">;
38782
+ default: string;
38783
+ validator: (v: any) => boolean;
38784
+ };
38767
38785
  sortBy: {
38768
38786
  type: vue.PropType<readonly SortItem[]>;
38769
38787
  default: () => never[];
38770
38788
  };
38771
38789
  customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
38772
- multiSort: BooleanConstructor;
38790
+ multiSort: {
38791
+ type: vue.PropType<boolean | MultiSortProps>;
38792
+ default: boolean;
38793
+ };
38773
38794
  mustSort: BooleanConstructor;
38774
38795
  groupBy: {
38775
38796
  type: vue.PropType<readonly SortItem[]>;
@@ -38852,12 +38873,20 @@ declare const VDataIterator: {
38852
38873
  type: vue.PropType<readonly string[]>;
38853
38874
  default: () => never[];
38854
38875
  };
38876
+ initialSortOrder: {
38877
+ type: vue.PropType<"asc" | "desc">;
38878
+ default: string;
38879
+ validator: (v: any) => boolean;
38880
+ };
38855
38881
  sortBy: {
38856
38882
  type: vue.PropType<readonly SortItem[]>;
38857
38883
  default: () => never[];
38858
38884
  };
38859
38885
  customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
38860
- multiSort: BooleanConstructor;
38886
+ multiSort: {
38887
+ type: vue.PropType<boolean | MultiSortProps>;
38888
+ default: boolean;
38889
+ };
38861
38890
  mustSort: BooleanConstructor;
38862
38891
  groupBy: {
38863
38892
  type: vue.PropType<readonly SortItem[]>;
@@ -39895,7 +39924,9 @@ declare const VDataTable: {
39895
39924
  expandOnClick: boolean;
39896
39925
  showExpand: boolean;
39897
39926
  expanded: readonly string[];
39927
+ initialSortOrder: "asc" | "desc";
39898
39928
  sortBy: readonly SortItem[];
39929
+ multiSort: boolean | MultiSortProps;
39899
39930
  mustSort: boolean;
39900
39931
  groupBy: readonly SortItem[];
39901
39932
  returnObject: boolean;
@@ -39922,7 +39953,6 @@ declare const VDataTable: {
39922
39953
  })[];
39923
39954
  showCurrentPage: boolean;
39924
39955
  disableSort: boolean;
39925
- multiSort: boolean;
39926
39956
  sortAscIcon: IconValue;
39927
39957
  sortDescIcon: IconValue;
39928
39958
  sticky: boolean;
@@ -39979,7 +40009,9 @@ declare const VDataTable: {
39979
40009
  expandOnClick: boolean;
39980
40010
  showExpand: boolean;
39981
40011
  expanded: readonly string[];
40012
+ initialSortOrder: "asc" | "desc";
39982
40013
  sortBy: readonly SortItem[];
40014
+ multiSort: boolean | MultiSortProps;
39983
40015
  mustSort: boolean;
39984
40016
  groupBy: readonly SortItem[];
39985
40017
  returnObject: boolean;
@@ -40006,7 +40038,6 @@ declare const VDataTable: {
40006
40038
  })[];
40007
40039
  showCurrentPage: boolean;
40008
40040
  disableSort: boolean;
40009
- multiSort: boolean;
40010
40041
  sortAscIcon: IconValue;
40011
40042
  sortDescIcon: IconValue;
40012
40043
  sticky: boolean;
@@ -40139,7 +40170,9 @@ declare const VDataTable: {
40139
40170
  expandOnClick: boolean;
40140
40171
  showExpand: boolean;
40141
40172
  expanded: readonly string[];
40173
+ initialSortOrder: "asc" | "desc";
40142
40174
  sortBy: readonly SortItem[];
40175
+ multiSort: boolean | MultiSortProps;
40143
40176
  mustSort: boolean;
40144
40177
  groupBy: readonly SortItem[];
40145
40178
  returnObject: boolean;
@@ -40166,7 +40199,6 @@ declare const VDataTable: {
40166
40199
  })[];
40167
40200
  showCurrentPage: boolean;
40168
40201
  disableSort: boolean;
40169
- multiSort: boolean;
40170
40202
  sortAscIcon: IconValue;
40171
40203
  sortDescIcon: IconValue;
40172
40204
  sticky: boolean;
@@ -40214,7 +40246,9 @@ declare const VDataTable: {
40214
40246
  expandOnClick: boolean;
40215
40247
  showExpand: boolean;
40216
40248
  expanded: readonly string[];
40249
+ initialSortOrder: "asc" | "desc";
40217
40250
  sortBy: readonly SortItem[];
40251
+ multiSort: boolean | MultiSortProps;
40218
40252
  mustSort: boolean;
40219
40253
  groupBy: readonly SortItem[];
40220
40254
  returnObject: boolean;
@@ -40241,7 +40275,6 @@ declare const VDataTable: {
40241
40275
  })[];
40242
40276
  showCurrentPage: boolean;
40243
40277
  disableSort: boolean;
40244
- multiSort: boolean;
40245
40278
  sortAscIcon: IconValue;
40246
40279
  sortDescIcon: IconValue;
40247
40280
  sticky: boolean;
@@ -40271,7 +40304,9 @@ declare const VDataTable: {
40271
40304
  expandOnClick: boolean;
40272
40305
  showExpand: boolean;
40273
40306
  expanded: readonly string[];
40307
+ initialSortOrder: "asc" | "desc";
40274
40308
  sortBy: readonly SortItem[];
40309
+ multiSort: boolean | MultiSortProps;
40275
40310
  mustSort: boolean;
40276
40311
  groupBy: readonly SortItem[];
40277
40312
  returnObject: boolean;
@@ -40298,7 +40333,6 @@ declare const VDataTable: {
40298
40333
  })[];
40299
40334
  showCurrentPage: boolean;
40300
40335
  disableSort: boolean;
40301
- multiSort: boolean;
40302
40336
  sortAscIcon: IconValue;
40303
40337
  sortDescIcon: IconValue;
40304
40338
  sticky: boolean;
@@ -40355,7 +40389,9 @@ declare const VDataTable: {
40355
40389
  expandOnClick: boolean;
40356
40390
  showExpand: boolean;
40357
40391
  expanded: readonly string[];
40392
+ initialSortOrder: "asc" | "desc";
40358
40393
  sortBy: readonly SortItem[];
40394
+ multiSort: boolean | MultiSortProps;
40359
40395
  mustSort: boolean;
40360
40396
  groupBy: readonly SortItem[];
40361
40397
  returnObject: boolean;
@@ -40382,7 +40418,6 @@ declare const VDataTable: {
40382
40418
  })[];
40383
40419
  showCurrentPage: boolean;
40384
40420
  disableSort: boolean;
40385
- multiSort: boolean;
40386
40421
  sortAscIcon: IconValue;
40387
40422
  sortDescIcon: IconValue;
40388
40423
  sticky: boolean;
@@ -40588,11 +40623,20 @@ declare const VDataTable: {
40588
40623
  type: vue.PropType<readonly string[]>;
40589
40624
  default: () => never[];
40590
40625
  };
40626
+ initialSortOrder: {
40627
+ type: vue.PropType<"asc" | "desc">;
40628
+ default: string;
40629
+ validator: (v: any) => boolean;
40630
+ };
40591
40631
  sortBy: {
40592
40632
  type: vue.PropType<readonly SortItem[]>;
40593
40633
  default: () => never[];
40594
40634
  };
40595
40635
  customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
40636
+ multiSort: {
40637
+ type: vue.PropType<boolean | MultiSortProps>;
40638
+ default: boolean;
40639
+ };
40596
40640
  mustSort: BooleanConstructor;
40597
40641
  groupBy: {
40598
40642
  type: vue.PropType<readonly SortItem[]>;
@@ -40742,7 +40786,6 @@ declare const VDataTable: {
40742
40786
  }[]>;
40743
40787
  color: StringConstructor;
40744
40788
  disableSort: BooleanConstructor;
40745
- multiSort: BooleanConstructor;
40746
40789
  sortAscIcon: {
40747
40790
  type: vue.PropType<IconValue>;
40748
40791
  default: string;
@@ -40820,11 +40863,20 @@ declare const VDataTable: {
40820
40863
  type: vue.PropType<readonly string[]>;
40821
40864
  default: () => never[];
40822
40865
  };
40866
+ initialSortOrder: {
40867
+ type: vue.PropType<"asc" | "desc">;
40868
+ default: string;
40869
+ validator: (v: any) => boolean;
40870
+ };
40823
40871
  sortBy: {
40824
40872
  type: vue.PropType<readonly SortItem[]>;
40825
40873
  default: () => never[];
40826
40874
  };
40827
40875
  customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
40876
+ multiSort: {
40877
+ type: vue.PropType<boolean | MultiSortProps>;
40878
+ default: boolean;
40879
+ };
40828
40880
  mustSort: BooleanConstructor;
40829
40881
  groupBy: {
40830
40882
  type: vue.PropType<readonly SortItem[]>;
@@ -40974,7 +41026,6 @@ declare const VDataTable: {
40974
41026
  }[]>;
40975
41027
  color: StringConstructor;
40976
41028
  disableSort: BooleanConstructor;
40977
- multiSort: BooleanConstructor;
40978
41029
  sortAscIcon: {
40979
41030
  type: vue.PropType<IconValue>;
40980
41031
  default: string;
@@ -41310,7 +41361,9 @@ declare const VDataTableVirtual: {
41310
41361
  expandOnClick: boolean;
41311
41362
  showExpand: boolean;
41312
41363
  expanded: readonly string[];
41364
+ initialSortOrder: "asc" | "desc";
41313
41365
  sortBy: readonly SortItem[];
41366
+ multiSort: boolean | MultiSortProps;
41314
41367
  mustSort: boolean;
41315
41368
  groupBy: readonly SortItem[];
41316
41369
  returnObject: boolean;
@@ -41322,7 +41375,6 @@ declare const VDataTableVirtual: {
41322
41375
  itemHeight: string | number;
41323
41376
  itemKey: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
41324
41377
  disableSort: boolean;
41325
- multiSort: boolean;
41326
41378
  sortAscIcon: IconValue;
41327
41379
  sortDescIcon: IconValue;
41328
41380
  sticky: boolean;
@@ -41375,7 +41427,9 @@ declare const VDataTableVirtual: {
41375
41427
  expandOnClick: boolean;
41376
41428
  showExpand: boolean;
41377
41429
  expanded: readonly string[];
41430
+ initialSortOrder: "asc" | "desc";
41378
41431
  sortBy: readonly SortItem[];
41432
+ multiSort: boolean | MultiSortProps;
41379
41433
  mustSort: boolean;
41380
41434
  groupBy: readonly SortItem[];
41381
41435
  returnObject: boolean;
@@ -41387,7 +41441,6 @@ declare const VDataTableVirtual: {
41387
41441
  itemHeight: string | number;
41388
41442
  itemKey: SelectItemKey;
41389
41443
  disableSort: boolean;
41390
- multiSort: boolean;
41391
41444
  sortAscIcon: IconValue;
41392
41445
  sortDescIcon: IconValue;
41393
41446
  sticky: boolean;
@@ -41512,7 +41565,9 @@ declare const VDataTableVirtual: {
41512
41565
  expandOnClick: boolean;
41513
41566
  showExpand: boolean;
41514
41567
  expanded: readonly string[];
41568
+ initialSortOrder: "asc" | "desc";
41515
41569
  sortBy: readonly SortItem[];
41570
+ multiSort: boolean | MultiSortProps;
41516
41571
  mustSort: boolean;
41517
41572
  groupBy: readonly SortItem[];
41518
41573
  returnObject: boolean;
@@ -41524,7 +41579,6 @@ declare const VDataTableVirtual: {
41524
41579
  itemHeight: string | number;
41525
41580
  itemKey: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
41526
41581
  disableSort: boolean;
41527
- multiSort: boolean;
41528
41582
  sortAscIcon: IconValue;
41529
41583
  sortDescIcon: IconValue;
41530
41584
  sticky: boolean;
@@ -41571,7 +41625,9 @@ declare const VDataTableVirtual: {
41571
41625
  expandOnClick: boolean;
41572
41626
  showExpand: boolean;
41573
41627
  expanded: readonly string[];
41628
+ initialSortOrder: "asc" | "desc";
41574
41629
  sortBy: readonly SortItem[];
41630
+ multiSort: boolean | MultiSortProps;
41575
41631
  mustSort: boolean;
41576
41632
  groupBy: readonly SortItem[];
41577
41633
  returnObject: boolean;
@@ -41583,7 +41639,6 @@ declare const VDataTableVirtual: {
41583
41639
  itemHeight: string | number;
41584
41640
  itemKey: SelectItemKey;
41585
41641
  disableSort: boolean;
41586
- multiSort: boolean;
41587
41642
  sortAscIcon: IconValue;
41588
41643
  sortDescIcon: IconValue;
41589
41644
  sticky: boolean;
@@ -41612,7 +41667,9 @@ declare const VDataTableVirtual: {
41612
41667
  expandOnClick: boolean;
41613
41668
  showExpand: boolean;
41614
41669
  expanded: readonly string[];
41670
+ initialSortOrder: "asc" | "desc";
41615
41671
  sortBy: readonly SortItem[];
41672
+ multiSort: boolean | MultiSortProps;
41616
41673
  mustSort: boolean;
41617
41674
  groupBy: readonly SortItem[];
41618
41675
  returnObject: boolean;
@@ -41624,7 +41681,6 @@ declare const VDataTableVirtual: {
41624
41681
  itemHeight: string | number;
41625
41682
  itemKey: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
41626
41683
  disableSort: boolean;
41627
- multiSort: boolean;
41628
41684
  sortAscIcon: IconValue;
41629
41685
  sortDescIcon: IconValue;
41630
41686
  sticky: boolean;
@@ -41677,7 +41733,9 @@ declare const VDataTableVirtual: {
41677
41733
  expandOnClick: boolean;
41678
41734
  showExpand: boolean;
41679
41735
  expanded: readonly string[];
41736
+ initialSortOrder: "asc" | "desc";
41680
41737
  sortBy: readonly SortItem[];
41738
+ multiSort: boolean | MultiSortProps;
41681
41739
  mustSort: boolean;
41682
41740
  groupBy: readonly SortItem[];
41683
41741
  returnObject: boolean;
@@ -41689,7 +41747,6 @@ declare const VDataTableVirtual: {
41689
41747
  itemHeight: string | number;
41690
41748
  itemKey: SelectItemKey;
41691
41749
  disableSort: boolean;
41692
- multiSort: boolean;
41693
41750
  sortAscIcon: IconValue;
41694
41751
  sortDescIcon: IconValue;
41695
41752
  sticky: boolean;
@@ -41887,11 +41944,20 @@ declare const VDataTableVirtual: {
41887
41944
  type: vue.PropType<readonly string[]>;
41888
41945
  default: () => never[];
41889
41946
  };
41947
+ initialSortOrder: {
41948
+ type: vue.PropType<"asc" | "desc">;
41949
+ default: string;
41950
+ validator: (v: any) => boolean;
41951
+ };
41890
41952
  sortBy: {
41891
41953
  type: vue.PropType<readonly SortItem[]>;
41892
41954
  default: () => never[];
41893
41955
  };
41894
41956
  customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
41957
+ multiSort: {
41958
+ type: vue.PropType<boolean | MultiSortProps>;
41959
+ default: boolean;
41960
+ };
41895
41961
  mustSort: BooleanConstructor;
41896
41962
  groupBy: {
41897
41963
  type: vue.PropType<readonly SortItem[]>;
@@ -41991,7 +42057,6 @@ declare const VDataTableVirtual: {
41991
42057
  }[]>;
41992
42058
  color: StringConstructor;
41993
42059
  disableSort: BooleanConstructor;
41994
- multiSort: BooleanConstructor;
41995
42060
  sortAscIcon: {
41996
42061
  type: vue.PropType<IconValue>;
41997
42062
  default: string;
@@ -42067,11 +42132,20 @@ declare const VDataTableVirtual: {
42067
42132
  type: vue.PropType<readonly string[]>;
42068
42133
  default: () => never[];
42069
42134
  };
42135
+ initialSortOrder: {
42136
+ type: vue.PropType<"asc" | "desc">;
42137
+ default: string;
42138
+ validator: (v: any) => boolean;
42139
+ };
42070
42140
  sortBy: {
42071
42141
  type: vue.PropType<readonly SortItem[]>;
42072
42142
  default: () => never[];
42073
42143
  };
42074
42144
  customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
42145
+ multiSort: {
42146
+ type: vue.PropType<boolean | MultiSortProps>;
42147
+ default: boolean;
42148
+ };
42075
42149
  mustSort: BooleanConstructor;
42076
42150
  groupBy: {
42077
42151
  type: vue.PropType<readonly SortItem[]>;
@@ -42171,7 +42245,6 @@ declare const VDataTableVirtual: {
42171
42245
  }[]>;
42172
42246
  color: StringConstructor;
42173
42247
  disableSort: BooleanConstructor;
42174
- multiSort: BooleanConstructor;
42175
42248
  sortAscIcon: {
42176
42249
  type: vue.PropType<IconValue>;
42177
42250
  default: string;
@@ -42232,7 +42305,9 @@ declare const VDataTableServer: {
42232
42305
  expandOnClick: boolean;
42233
42306
  showExpand: boolean;
42234
42307
  expanded: readonly string[];
42308
+ initialSortOrder: "asc" | "desc";
42235
42309
  sortBy: readonly SortItem[];
42310
+ multiSort: boolean | MultiSortProps;
42236
42311
  mustSort: boolean;
42237
42312
  groupBy: readonly SortItem[];
42238
42313
  returnObject: boolean;
@@ -42259,7 +42334,6 @@ declare const VDataTableServer: {
42259
42334
  })[];
42260
42335
  showCurrentPage: boolean;
42261
42336
  disableSort: boolean;
42262
- multiSort: boolean;
42263
42337
  sortAscIcon: IconValue;
42264
42338
  sortDescIcon: IconValue;
42265
42339
  sticky: boolean;
@@ -42310,7 +42384,9 @@ declare const VDataTableServer: {
42310
42384
  expandOnClick: boolean;
42311
42385
  showExpand: boolean;
42312
42386
  expanded: readonly string[];
42387
+ initialSortOrder: "asc" | "desc";
42313
42388
  sortBy: readonly SortItem[];
42389
+ multiSort: boolean | MultiSortProps;
42314
42390
  mustSort: boolean;
42315
42391
  groupBy: readonly SortItem[];
42316
42392
  returnObject: boolean;
@@ -42337,7 +42413,6 @@ declare const VDataTableServer: {
42337
42413
  })[];
42338
42414
  showCurrentPage: boolean;
42339
42415
  disableSort: boolean;
42340
- multiSort: boolean;
42341
42416
  sortAscIcon: IconValue;
42342
42417
  sortDescIcon: IconValue;
42343
42418
  sticky: boolean;
@@ -42468,7 +42543,9 @@ declare const VDataTableServer: {
42468
42543
  expandOnClick: boolean;
42469
42544
  showExpand: boolean;
42470
42545
  expanded: readonly string[];
42546
+ initialSortOrder: "asc" | "desc";
42471
42547
  sortBy: readonly SortItem[];
42548
+ multiSort: boolean | MultiSortProps;
42472
42549
  mustSort: boolean;
42473
42550
  groupBy: readonly SortItem[];
42474
42551
  returnObject: boolean;
@@ -42495,7 +42572,6 @@ declare const VDataTableServer: {
42495
42572
  })[];
42496
42573
  showCurrentPage: boolean;
42497
42574
  disableSort: boolean;
42498
- multiSort: boolean;
42499
42575
  sortAscIcon: IconValue;
42500
42576
  sortDescIcon: IconValue;
42501
42577
  sticky: boolean;
@@ -42538,7 +42614,9 @@ declare const VDataTableServer: {
42538
42614
  expandOnClick: boolean;
42539
42615
  showExpand: boolean;
42540
42616
  expanded: readonly string[];
42617
+ initialSortOrder: "asc" | "desc";
42541
42618
  sortBy: readonly SortItem[];
42619
+ multiSort: boolean | MultiSortProps;
42542
42620
  mustSort: boolean;
42543
42621
  groupBy: readonly SortItem[];
42544
42622
  returnObject: boolean;
@@ -42565,7 +42643,6 @@ declare const VDataTableServer: {
42565
42643
  })[];
42566
42644
  showCurrentPage: boolean;
42567
42645
  disableSort: boolean;
42568
- multiSort: boolean;
42569
42646
  sortAscIcon: IconValue;
42570
42647
  sortDescIcon: IconValue;
42571
42648
  sticky: boolean;
@@ -42593,7 +42670,9 @@ declare const VDataTableServer: {
42593
42670
  expandOnClick: boolean;
42594
42671
  showExpand: boolean;
42595
42672
  expanded: readonly string[];
42673
+ initialSortOrder: "asc" | "desc";
42596
42674
  sortBy: readonly SortItem[];
42675
+ multiSort: boolean | MultiSortProps;
42597
42676
  mustSort: boolean;
42598
42677
  groupBy: readonly SortItem[];
42599
42678
  returnObject: boolean;
@@ -42620,7 +42699,6 @@ declare const VDataTableServer: {
42620
42699
  })[];
42621
42700
  showCurrentPage: boolean;
42622
42701
  disableSort: boolean;
42623
- multiSort: boolean;
42624
42702
  sortAscIcon: IconValue;
42625
42703
  sortDescIcon: IconValue;
42626
42704
  sticky: boolean;
@@ -42671,7 +42749,9 @@ declare const VDataTableServer: {
42671
42749
  expandOnClick: boolean;
42672
42750
  showExpand: boolean;
42673
42751
  expanded: readonly string[];
42752
+ initialSortOrder: "asc" | "desc";
42674
42753
  sortBy: readonly SortItem[];
42754
+ multiSort: boolean | MultiSortProps;
42675
42755
  mustSort: boolean;
42676
42756
  groupBy: readonly SortItem[];
42677
42757
  returnObject: boolean;
@@ -42698,7 +42778,6 @@ declare const VDataTableServer: {
42698
42778
  })[];
42699
42779
  showCurrentPage: boolean;
42700
42780
  disableSort: boolean;
42701
- multiSort: boolean;
42702
42781
  sortAscIcon: IconValue;
42703
42782
  sortDescIcon: IconValue;
42704
42783
  sticky: boolean;
@@ -42896,11 +42975,20 @@ declare const VDataTableServer: {
42896
42975
  type: vue.PropType<readonly string[]>;
42897
42976
  default: () => never[];
42898
42977
  };
42978
+ initialSortOrder: {
42979
+ type: vue.PropType<"asc" | "desc">;
42980
+ default: string;
42981
+ validator: (v: any) => boolean;
42982
+ };
42899
42983
  sortBy: {
42900
42984
  type: vue.PropType<readonly SortItem[]>;
42901
42985
  default: () => never[];
42902
42986
  };
42903
42987
  customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
42988
+ multiSort: {
42989
+ type: vue.PropType<boolean | MultiSortProps>;
42990
+ default: boolean;
42991
+ };
42904
42992
  mustSort: BooleanConstructor;
42905
42993
  groupBy: {
42906
42994
  type: vue.PropType<readonly SortItem[]>;
@@ -43050,7 +43138,6 @@ declare const VDataTableServer: {
43050
43138
  }[]>;
43051
43139
  color: StringConstructor;
43052
43140
  disableSort: BooleanConstructor;
43053
- multiSort: BooleanConstructor;
43054
43141
  sortAscIcon: {
43055
43142
  type: vue.PropType<IconValue>;
43056
43143
  default: string;
@@ -43124,11 +43211,20 @@ declare const VDataTableServer: {
43124
43211
  type: vue.PropType<readonly string[]>;
43125
43212
  default: () => never[];
43126
43213
  };
43214
+ initialSortOrder: {
43215
+ type: vue.PropType<"asc" | "desc">;
43216
+ default: string;
43217
+ validator: (v: any) => boolean;
43218
+ };
43127
43219
  sortBy: {
43128
43220
  type: vue.PropType<readonly SortItem[]>;
43129
43221
  default: () => never[];
43130
43222
  };
43131
43223
  customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
43224
+ multiSort: {
43225
+ type: vue.PropType<boolean | MultiSortProps>;
43226
+ default: boolean;
43227
+ };
43132
43228
  mustSort: BooleanConstructor;
43133
43229
  groupBy: {
43134
43230
  type: vue.PropType<readonly SortItem[]>;
@@ -43278,7 +43374,6 @@ declare const VDataTableServer: {
43278
43374
  }[]>;
43279
43375
  color: StringConstructor;
43280
43376
  disableSort: BooleanConstructor;
43281
- multiSort: BooleanConstructor;
43282
43377
  sortAscIcon: {
43283
43378
  type: vue.PropType<IconValue>;
43284
43379
  default: string;
@@ -142669,47 +142764,41 @@ declare module 'vue' {
142669
142764
  VAppBar: VAppBar
142670
142765
  VAppBarNavIcon: VAppBarNavIcon
142671
142766
  VAppBarTitle: VAppBarTitle
142672
- VBadge: VBadge
142673
- VApp: VApp
142674
142767
  VAlert: VAlert
142675
142768
  VAlertTitle: VAlertTitle
142676
142769
  VAvatar: VAvatar
142770
+ VApp: VApp
142771
+ VBadge: VBadge
142772
+ VAutocomplete: VAutocomplete
142773
+ VBtnGroup: VBtnGroup
142774
+ VBtn: VBtn
142775
+ VBtnToggle: VBtnToggle
142677
142776
  VBanner: VBanner
142678
142777
  VBannerActions: VBannerActions
142679
142778
  VBannerText: VBannerText
142680
- VAutocomplete: VAutocomplete
142681
- VBottomSheet: VBottomSheet
142779
+ VBottomNavigation: VBottomNavigation
142682
142780
  VBreadcrumbs: VBreadcrumbs
142683
142781
  VBreadcrumbsItem: VBreadcrumbsItem
142684
142782
  VBreadcrumbsDivider: VBreadcrumbsDivider
142685
- VBtnGroup: VBtnGroup
142686
- VBottomNavigation: VBottomNavigation
142687
- VBtn: VBtn
142688
- VCheckbox: VCheckbox
142689
- VCheckboxBtn: VCheckboxBtn
142690
- VBtnToggle: VBtnToggle
142691
- VCarousel: VCarousel
142692
- VCarouselItem: VCarouselItem
142783
+ VBottomSheet: VBottomSheet
142693
142784
  VCard: VCard
142694
142785
  VCardActions: VCardActions
142695
142786
  VCardItem: VCardItem
142696
142787
  VCardSubtitle: VCardSubtitle
142697
142788
  VCardText: VCardText
142698
142789
  VCardTitle: VCardTitle
142699
- VCode: VCode
142700
- VChipGroup: VChipGroup
142701
142790
  VChip: VChip
142702
- VDialog: VDialog
142703
- VCounter: VCounter
142791
+ VChipGroup: VChipGroup
142792
+ VCheckbox: VCheckbox
142793
+ VCheckboxBtn: VCheckboxBtn
142704
142794
  VCombobox: VCombobox
142705
- VDatePicker: VDatePicker
142706
- VDatePickerControls: VDatePickerControls
142707
- VDatePickerHeader: VDatePickerHeader
142708
- VDatePickerMonth: VDatePickerMonth
142709
- VDatePickerMonths: VDatePickerMonths
142710
- VDatePickerYears: VDatePickerYears
142795
+ VCode: VCode
142711
142796
  VColorPicker: VColorPicker
142797
+ VCounter: VCounter
142712
142798
  VDivider: VDivider
142799
+ VCarousel: VCarousel
142800
+ VCarouselItem: VCarouselItem
142801
+ VDialog: VDialog
142713
142802
  VDataTable: VDataTable
142714
142803
  VDataTableHeaders: VDataTableHeaders
142715
142804
  VDataTableFooter: VDataTableFooter
@@ -142717,29 +142806,34 @@ declare module 'vue' {
142717
142806
  VDataTableRow: VDataTableRow
142718
142807
  VDataTableVirtual: VDataTableVirtual
142719
142808
  VDataTableServer: VDataTableServer
142720
- VFab: VFab
142809
+ VEmptyState: VEmptyState
142810
+ VDatePicker: VDatePicker
142811
+ VDatePickerControls: VDatePickerControls
142812
+ VDatePickerHeader: VDatePickerHeader
142813
+ VDatePickerMonth: VDatePickerMonth
142814
+ VDatePickerMonths: VDatePickerMonths
142815
+ VDatePickerYears: VDatePickerYears
142721
142816
  VField: VField
142722
142817
  VFieldLabel: VFieldLabel
142723
- VEmptyState: VEmptyState
142724
142818
  VExpansionPanels: VExpansionPanels
142725
142819
  VExpansionPanel: VExpansionPanel
142726
142820
  VExpansionPanelText: VExpansionPanelText
142727
142821
  VExpansionPanelTitle: VExpansionPanelTitle
142822
+ VFab: VFab
142728
142823
  VFileInput: VFileInput
142729
- VImg: VImg
142730
142824
  VFooter: VFooter
142731
142825
  VIcon: VIcon
142732
142826
  VComponentIcon: VComponentIcon
142733
142827
  VSvgIcon: VSvgIcon
142734
142828
  VLigatureIcon: VLigatureIcon
142735
142829
  VClassIcon: VClassIcon
142736
- VInfiniteScroll: VInfiniteScroll
142737
- VKbd: VKbd
142830
+ VImg: VImg
142738
142831
  VInput: VInput
142739
142832
  VItemGroup: VItemGroup
142740
142833
  VItem: VItem
142741
- VLabel: VLabel
142742
- VMain: VMain
142834
+ VKbd: VKbd
142835
+ VInfiniteScroll: VInfiniteScroll
142836
+ VMenu: VMenu
142743
142837
  VList: VList
142744
142838
  VListGroup: VListGroup
142745
142839
  VListImg: VListImg
@@ -142749,79 +142843,79 @@ declare module 'vue' {
142749
142843
  VListItemSubtitle: VListItemSubtitle
142750
142844
  VListItemTitle: VListItemTitle
142751
142845
  VListSubheader: VListSubheader
142752
- VMenu: VMenu
142753
- VMessages: VMessages
142846
+ VLabel: VLabel
142754
142847
  VNumberInput: VNumberInput
142755
142848
  VNavigationDrawer: VNavigationDrawer
142849
+ VMessages: VMessages
142756
142850
  VOverlay: VOverlay
142757
- VOtpInput: VOtpInput
142851
+ VMain: VMain
142852
+ VRadioGroup: VRadioGroup
142758
142853
  VPagination: VPagination
142759
- VRating: VRating
142760
- VProgressLinear: VProgressLinear
142761
142854
  VProgressCircular: VProgressCircular
142762
- VRadioGroup: VRadioGroup
142855
+ VOtpInput: VOtpInput
142856
+ VProgressLinear: VProgressLinear
142763
142857
  VSelect: VSelect
142858
+ VRating: VRating
142764
142859
  VSheet: VSheet
142765
142860
  VSelectionControlGroup: VSelectionControlGroup
142766
- VSelectionControl: VSelectionControl
142767
142861
  VSkeletonLoader: VSkeletonLoader
142768
142862
  VSlider: VSlider
142769
- VSnackbar: VSnackbar
142770
- VTable: VTable
142771
142863
  VSlideGroup: VSlideGroup
142772
142864
  VSlideGroupItem: VSlideGroupItem
142865
+ VSnackbar: VSnackbar
142866
+ VTab: VTab
142867
+ VTabs: VTabs
142868
+ VTabsWindow: VTabsWindow
142869
+ VTabsWindowItem: VTabsWindowItem
142870
+ VTextarea: VTextarea
142871
+ VTable: VTable
142872
+ VSystemBar: VSystemBar
142773
142873
  VStepper: VStepper
142774
142874
  VStepperActions: VStepperActions
142775
142875
  VStepperHeader: VStepperHeader
142776
142876
  VStepperItem: VStepperItem
142777
142877
  VStepperWindow: VStepperWindow
142778
142878
  VStepperWindowItem: VStepperWindowItem
142779
- VSystemBar: VSystemBar
142780
- VSwitch: VSwitch
142781
- VTextarea: VTextarea
142782
142879
  VTextField: VTextField
142783
- VTab: VTab
142784
- VTabs: VTabs
142785
- VTabsWindow: VTabsWindow
142786
- VTabsWindowItem: VTabsWindowItem
142787
- VToolbar: VToolbar
142788
- VToolbarTitle: VToolbarTitle
142789
- VToolbarItems: VToolbarItems
142880
+ VTimeline: VTimeline
142881
+ VTimelineItem: VTimelineItem
142882
+ VSwitch: VSwitch
142790
142883
  VTimePicker: VTimePicker
142791
142884
  VTimePickerClock: VTimePickerClock
142792
142885
  VTimePickerControls: VTimePickerControls
142886
+ VToolbar: VToolbar
142887
+ VToolbarTitle: VToolbarTitle
142888
+ VToolbarItems: VToolbarItems
142793
142889
  VTooltip: VTooltip
142794
- VTimeline: VTimeline
142795
- VTimelineItem: VTimelineItem
142796
142890
  VWindow: VWindow
142797
142891
  VWindowItem: VWindowItem
142798
142892
  VTreeview: VTreeview
142799
142893
  VTreeviewItem: VTreeviewItem
142800
142894
  VTreeviewGroup: VTreeviewGroup
142801
- VConfirmEdit: VConfirmEdit
142895
+ VSelectionControl: VSelectionControl
142802
142896
  VDataIterator: VDataIterator
142897
+ VConfirmEdit: VConfirmEdit
142803
142898
  VDefaultsProvider: VDefaultsProvider
142804
- VForm: VForm
142805
142899
  VContainer: VContainer
142806
142900
  VCol: VCol
142807
142901
  VRow: VRow
142808
142902
  VSpacer: VSpacer
142903
+ VForm: VForm
142809
142904
  VHover: VHover
142810
142905
  VLayout: VLayout
142811
142906
  VLayoutItem: VLayoutItem
142812
- VLocaleProvider: VLocaleProvider
142813
142907
  VLazy: VLazy
142814
- VRadio: VRadio
142815
142908
  VNoSsr: VNoSsr
142909
+ VLocaleProvider: VLocaleProvider
142816
142910
  VParallax: VParallax
142817
- VRangeSlider: VRangeSlider
142911
+ VRadio: VRadio
142818
142912
  VResponsive: VResponsive
142913
+ VRangeSlider: VRangeSlider
142819
142914
  VSnackbarQueue: VSnackbarQueue
142820
142915
  VSparkline: VSparkline
142821
142916
  VSpeedDial: VSpeedDial
142822
- VValidation: VValidation
142823
142917
  VThemeProvider: VThemeProvider
142824
- VVirtualScroll: VVirtualScroll
142918
+ VValidation: VValidation
142825
142919
  VFabTransition: VFabTransition
142826
142920
  VDialogBottomTransition: VDialogBottomTransition
142827
142921
  VDialogTopTransition: VDialogTopTransition
@@ -142838,23 +142932,24 @@ declare module 'vue' {
142838
142932
  VExpandTransition: VExpandTransition
142839
142933
  VExpandXTransition: VExpandXTransition
142840
142934
  VDialogTransition: VDialogTransition
142935
+ VVirtualScroll: VVirtualScroll
142936
+ VCalendar: VCalendar
142841
142937
  VColorInput: VColorInput
142842
- VIconBtn: VIconBtn
142843
142938
  VFileUpload: VFileUpload
142844
142939
  VFileUploadItem: VFileUploadItem
142845
- VPicker: VPicker
142846
- VPickerTitle: VPickerTitle
142847
- VCalendar: VCalendar
142848
- VPie: VPie
142849
- VPieSegment: VPieSegment
142850
- VPieTooltip: VPieTooltip
142940
+ VIconBtn: VIconBtn
142851
142941
  VStepperVertical: VStepperVertical
142852
142942
  VStepperVerticalItem: VStepperVerticalItem
142853
142943
  VStepperVerticalActions: VStepperVerticalActions
142854
- VHotkey: VHotkey
142855
142944
  VVideo: VVideo
142856
142945
  VVideoControls: VVideoControls
142857
142946
  VVideoVolume: VVideoVolume
142947
+ VHotkey: VHotkey
142948
+ VPicker: VPicker
142949
+ VPickerTitle: VPickerTitle
142950
+ VPie: VPie
142951
+ VPieSegment: VPieSegment
142952
+ VPieTooltip: VPieTooltip
142858
142953
  VDateInput: VDateInput
142859
142954
  VMaskInput: VMaskInput
142860
142955
  VPullToRefresh: VPullToRefresh