@vuetify/nightly 3.10.4-dev.2025-10-01 → 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.
- package/CHANGELOG.md +10 -3
- package/dist/json/attributes.json +1626 -1610
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +208 -208
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +3135 -3091
- package/dist/vuetify-labs.cjs +93 -30
- package/dist/vuetify-labs.css +4262 -4262
- package/dist/vuetify-labs.d.ts +209 -105
- package/dist/vuetify-labs.esm.js +93 -30
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +93 -30
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +93 -30
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3923 -3923
- package/dist/vuetify.d.ts +209 -105
- package/dist/vuetify.esm.js +93 -30
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +93 -30
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +40 -37
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataIterator/VDataIterator.d.ts +52 -11
- package/lib/components/VDataIterator/VDataIterator.js +2 -0
- package/lib/components/VDataIterator/VDataIterator.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.d.ts +78 -18
- package/lib/components/VDataTable/VDataTable.js +9 -5
- package/lib/components/VDataTable/VDataTable.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.js +2 -2
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +54 -13
- package/lib/components/VDataTable/VDataTableServer.js +8 -4
- package/lib/components/VDataTable/VDataTableServer.js.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +54 -13
- package/lib/components/VDataTable/VDataTableVirtual.js +7 -3
- package/lib/components/VDataTable/VDataTableVirtual.js.map +1 -1
- package/lib/components/VDataTable/composables/sort.d.ts +36 -8
- package/lib/components/VDataTable/composables/sort.js +55 -14
- package/lib/components/VDataTable/composables/sort.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.d.ts +6 -0
- package/lib/components/VTreeview/VTreeviewChildren.d.ts +9 -0
- package/lib/components/VTreeview/VTreeviewChildren.js +6 -1
- package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +71 -71
- package/lib/framework.js +1 -1
- package/lib/util/indentLines.d.ts +1 -0
- package/lib/util/indentLines.js +7 -4
- package/lib/util/indentLines.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -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:
|
|
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:
|
|
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;
|
|
@@ -102273,6 +102368,9 @@ type VTreeviewChildrenSlots<T> = {
|
|
|
102273
102368
|
loading: boolean;
|
|
102274
102369
|
};
|
|
102275
102370
|
footer: {
|
|
102371
|
+
props: {
|
|
102372
|
+
indentLines?: IndentLineType[];
|
|
102373
|
+
};
|
|
102276
102374
|
item: T;
|
|
102277
102375
|
internalItem: InternalListItem<T>;
|
|
102278
102376
|
loading: boolean;
|
|
@@ -102487,6 +102585,9 @@ declare const VTreeview: {
|
|
|
102487
102585
|
[key: string]: any;
|
|
102488
102586
|
}>[];
|
|
102489
102587
|
footer: (arg: {
|
|
102588
|
+
props: {
|
|
102589
|
+
indentLines?: IndentLineType[] | undefined;
|
|
102590
|
+
};
|
|
102490
102591
|
item: unknown;
|
|
102491
102592
|
internalItem: InternalListItem<unknown>;
|
|
102492
102593
|
loading: boolean;
|
|
@@ -102845,6 +102946,9 @@ declare const VTreeview: {
|
|
|
102845
102946
|
[key: string]: any;
|
|
102846
102947
|
}>[];
|
|
102847
102948
|
footer: (arg: {
|
|
102949
|
+
props: {
|
|
102950
|
+
indentLines?: IndentLineType[] | undefined;
|
|
102951
|
+
};
|
|
102848
102952
|
item: unknown;
|
|
102849
102953
|
internalItem: InternalListItem<unknown>;
|
|
102850
102954
|
loading: boolean;
|
|
@@ -142657,78 +142761,79 @@ declare module 'vue' {
|
|
|
142657
142761
|
$children?: VNodeChild
|
|
142658
142762
|
}
|
|
142659
142763
|
export interface GlobalComponents {
|
|
142660
|
-
VApp: VApp
|
|
142661
|
-
VAlert: VAlert
|
|
142662
|
-
VAlertTitle: VAlertTitle
|
|
142663
|
-
VAutocomplete: VAutocomplete
|
|
142664
142764
|
VAppBar: VAppBar
|
|
142665
142765
|
VAppBarNavIcon: VAppBarNavIcon
|
|
142666
142766
|
VAppBarTitle: VAppBarTitle
|
|
142667
|
-
|
|
142767
|
+
VAlert: VAlert
|
|
142768
|
+
VAlertTitle: VAlertTitle
|
|
142668
142769
|
VAvatar: VAvatar
|
|
142669
|
-
|
|
142670
|
-
|
|
142770
|
+
VApp: VApp
|
|
142771
|
+
VBadge: VBadge
|
|
142772
|
+
VAutocomplete: VAutocomplete
|
|
142773
|
+
VBtnGroup: VBtnGroup
|
|
142671
142774
|
VBtn: VBtn
|
|
142775
|
+
VBtnToggle: VBtnToggle
|
|
142672
142776
|
VBanner: VBanner
|
|
142673
142777
|
VBannerActions: VBannerActions
|
|
142674
142778
|
VBannerText: VBannerText
|
|
142779
|
+
VBottomNavigation: VBottomNavigation
|
|
142675
142780
|
VBreadcrumbs: VBreadcrumbs
|
|
142676
142781
|
VBreadcrumbsItem: VBreadcrumbsItem
|
|
142677
142782
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
142678
|
-
|
|
142679
|
-
VCarousel: VCarousel
|
|
142680
|
-
VCarouselItem: VCarouselItem
|
|
142783
|
+
VBottomSheet: VBottomSheet
|
|
142681
142784
|
VCard: VCard
|
|
142682
142785
|
VCardActions: VCardActions
|
|
142683
142786
|
VCardItem: VCardItem
|
|
142684
142787
|
VCardSubtitle: VCardSubtitle
|
|
142685
142788
|
VCardText: VCardText
|
|
142686
142789
|
VCardTitle: VCardTitle
|
|
142687
|
-
VCheckbox: VCheckbox
|
|
142688
|
-
VCheckboxBtn: VCheckboxBtn
|
|
142689
|
-
VBtnToggle: VBtnToggle
|
|
142690
142790
|
VChip: VChip
|
|
142691
142791
|
VChipGroup: VChipGroup
|
|
142692
|
-
|
|
142792
|
+
VCheckbox: VCheckbox
|
|
142793
|
+
VCheckboxBtn: VCheckboxBtn
|
|
142693
142794
|
VCombobox: VCombobox
|
|
142795
|
+
VCode: VCode
|
|
142796
|
+
VColorPicker: VColorPicker
|
|
142694
142797
|
VCounter: VCounter
|
|
142798
|
+
VDivider: VDivider
|
|
142799
|
+
VCarousel: VCarousel
|
|
142800
|
+
VCarouselItem: VCarouselItem
|
|
142695
142801
|
VDialog: VDialog
|
|
142802
|
+
VDataTable: VDataTable
|
|
142803
|
+
VDataTableHeaders: VDataTableHeaders
|
|
142804
|
+
VDataTableFooter: VDataTableFooter
|
|
142805
|
+
VDataTableRows: VDataTableRows
|
|
142806
|
+
VDataTableRow: VDataTableRow
|
|
142807
|
+
VDataTableVirtual: VDataTableVirtual
|
|
142808
|
+
VDataTableServer: VDataTableServer
|
|
142809
|
+
VEmptyState: VEmptyState
|
|
142696
142810
|
VDatePicker: VDatePicker
|
|
142697
142811
|
VDatePickerControls: VDatePickerControls
|
|
142698
142812
|
VDatePickerHeader: VDatePickerHeader
|
|
142699
142813
|
VDatePickerMonth: VDatePickerMonth
|
|
142700
142814
|
VDatePickerMonths: VDatePickerMonths
|
|
142701
142815
|
VDatePickerYears: VDatePickerYears
|
|
142702
|
-
|
|
142703
|
-
|
|
142704
|
-
VEmptyState: VEmptyState
|
|
142816
|
+
VField: VField
|
|
142817
|
+
VFieldLabel: VFieldLabel
|
|
142705
142818
|
VExpansionPanels: VExpansionPanels
|
|
142706
142819
|
VExpansionPanel: VExpansionPanel
|
|
142707
142820
|
VExpansionPanelText: VExpansionPanelText
|
|
142708
142821
|
VExpansionPanelTitle: VExpansionPanelTitle
|
|
142709
|
-
VDataTable: VDataTable
|
|
142710
|
-
VDataTableHeaders: VDataTableHeaders
|
|
142711
|
-
VDataTableFooter: VDataTableFooter
|
|
142712
|
-
VDataTableRows: VDataTableRows
|
|
142713
|
-
VDataTableRow: VDataTableRow
|
|
142714
|
-
VDataTableVirtual: VDataTableVirtual
|
|
142715
|
-
VDataTableServer: VDataTableServer
|
|
142716
|
-
VField: VField
|
|
142717
|
-
VFieldLabel: VFieldLabel
|
|
142718
142822
|
VFab: VFab
|
|
142719
142823
|
VFileInput: VFileInput
|
|
142720
|
-
|
|
142824
|
+
VFooter: VFooter
|
|
142721
142825
|
VIcon: VIcon
|
|
142722
142826
|
VComponentIcon: VComponentIcon
|
|
142723
142827
|
VSvgIcon: VSvgIcon
|
|
142724
142828
|
VLigatureIcon: VLigatureIcon
|
|
142725
142829
|
VClassIcon: VClassIcon
|
|
142726
|
-
|
|
142830
|
+
VImg: VImg
|
|
142831
|
+
VInput: VInput
|
|
142727
142832
|
VItemGroup: VItemGroup
|
|
142728
142833
|
VItem: VItem
|
|
142729
|
-
VFooter: VFooter
|
|
142730
142834
|
VKbd: VKbd
|
|
142731
|
-
|
|
142835
|
+
VInfiniteScroll: VInfiniteScroll
|
|
142836
|
+
VMenu: VMenu
|
|
142732
142837
|
VList: VList
|
|
142733
142838
|
VListGroup: VListGroup
|
|
142734
142839
|
VListImg: VListImg
|
|
@@ -142739,80 +142844,78 @@ declare module 'vue' {
|
|
|
142739
142844
|
VListItemTitle: VListItemTitle
|
|
142740
142845
|
VListSubheader: VListSubheader
|
|
142741
142846
|
VLabel: VLabel
|
|
142742
|
-
VMain: VMain
|
|
142743
|
-
VMessages: VMessages
|
|
142744
142847
|
VNumberInput: VNumberInput
|
|
142745
|
-
VMenu: VMenu
|
|
142746
|
-
VOverlay: VOverlay
|
|
142747
142848
|
VNavigationDrawer: VNavigationDrawer
|
|
142748
|
-
|
|
142849
|
+
VMessages: VMessages
|
|
142850
|
+
VOverlay: VOverlay
|
|
142851
|
+
VMain: VMain
|
|
142749
142852
|
VRadioGroup: VRadioGroup
|
|
142750
|
-
VProgressLinear: VProgressLinear
|
|
142751
142853
|
VPagination: VPagination
|
|
142752
142854
|
VProgressCircular: VProgressCircular
|
|
142855
|
+
VOtpInput: VOtpInput
|
|
142856
|
+
VProgressLinear: VProgressLinear
|
|
142753
142857
|
VSelect: VSelect
|
|
142754
|
-
VSelectionControl: VSelectionControl
|
|
142755
142858
|
VRating: VRating
|
|
142859
|
+
VSheet: VSheet
|
|
142860
|
+
VSelectionControlGroup: VSelectionControlGroup
|
|
142861
|
+
VSkeletonLoader: VSkeletonLoader
|
|
142862
|
+
VSlider: VSlider
|
|
142756
142863
|
VSlideGroup: VSlideGroup
|
|
142757
142864
|
VSlideGroupItem: VSlideGroupItem
|
|
142758
|
-
VSkeletonLoader: VSkeletonLoader
|
|
142759
142865
|
VSnackbar: VSnackbar
|
|
142760
|
-
|
|
142761
|
-
|
|
142866
|
+
VTab: VTab
|
|
142867
|
+
VTabs: VTabs
|
|
142868
|
+
VTabsWindow: VTabsWindow
|
|
142869
|
+
VTabsWindowItem: VTabsWindowItem
|
|
142870
|
+
VTextarea: VTextarea
|
|
142871
|
+
VTable: VTable
|
|
142872
|
+
VSystemBar: VSystemBar
|
|
142762
142873
|
VStepper: VStepper
|
|
142763
142874
|
VStepperActions: VStepperActions
|
|
142764
142875
|
VStepperHeader: VStepperHeader
|
|
142765
142876
|
VStepperItem: VStepperItem
|
|
142766
142877
|
VStepperWindow: VStepperWindow
|
|
142767
142878
|
VStepperWindowItem: VStepperWindowItem
|
|
142768
|
-
|
|
142769
|
-
VTextarea: VTextarea
|
|
142770
|
-
VSystemBar: VSystemBar
|
|
142771
|
-
VTable: VTable
|
|
142772
|
-
VToolbar: VToolbar
|
|
142773
|
-
VToolbarTitle: VToolbarTitle
|
|
142774
|
-
VToolbarItems: VToolbarItems
|
|
142775
|
-
VTab: VTab
|
|
142776
|
-
VTabs: VTabs
|
|
142777
|
-
VTabsWindow: VTabsWindow
|
|
142778
|
-
VTabsWindowItem: VTabsWindowItem
|
|
142879
|
+
VTextField: VTextField
|
|
142779
142880
|
VTimeline: VTimeline
|
|
142780
142881
|
VTimelineItem: VTimelineItem
|
|
142882
|
+
VSwitch: VSwitch
|
|
142781
142883
|
VTimePicker: VTimePicker
|
|
142782
142884
|
VTimePickerClock: VTimePickerClock
|
|
142783
142885
|
VTimePickerControls: VTimePickerControls
|
|
142784
|
-
|
|
142886
|
+
VToolbar: VToolbar
|
|
142887
|
+
VToolbarTitle: VToolbarTitle
|
|
142888
|
+
VToolbarItems: VToolbarItems
|
|
142785
142889
|
VTooltip: VTooltip
|
|
142890
|
+
VWindow: VWindow
|
|
142891
|
+
VWindowItem: VWindowItem
|
|
142786
142892
|
VTreeview: VTreeview
|
|
142787
142893
|
VTreeviewItem: VTreeviewItem
|
|
142788
142894
|
VTreeviewGroup: VTreeviewGroup
|
|
142789
|
-
|
|
142790
|
-
VWindowItem: VWindowItem
|
|
142791
|
-
VSwitch: VSwitch
|
|
142792
|
-
VConfirmEdit: VConfirmEdit
|
|
142895
|
+
VSelectionControl: VSelectionControl
|
|
142793
142896
|
VDataIterator: VDataIterator
|
|
142897
|
+
VConfirmEdit: VConfirmEdit
|
|
142794
142898
|
VDefaultsProvider: VDefaultsProvider
|
|
142899
|
+
VContainer: VContainer
|
|
142900
|
+
VCol: VCol
|
|
142901
|
+
VRow: VRow
|
|
142902
|
+
VSpacer: VSpacer
|
|
142795
142903
|
VForm: VForm
|
|
142796
142904
|
VHover: VHover
|
|
142797
142905
|
VLayout: VLayout
|
|
142798
142906
|
VLayoutItem: VLayoutItem
|
|
142799
142907
|
VLazy: VLazy
|
|
142800
|
-
VContainer: VContainer
|
|
142801
|
-
VCol: VCol
|
|
142802
|
-
VRow: VRow
|
|
142803
|
-
VSpacer: VSpacer
|
|
142804
|
-
VLocaleProvider: VLocaleProvider
|
|
142805
142908
|
VNoSsr: VNoSsr
|
|
142909
|
+
VLocaleProvider: VLocaleProvider
|
|
142806
142910
|
VParallax: VParallax
|
|
142807
142911
|
VRadio: VRadio
|
|
142808
|
-
VRangeSlider: VRangeSlider
|
|
142809
142912
|
VResponsive: VResponsive
|
|
142913
|
+
VRangeSlider: VRangeSlider
|
|
142810
142914
|
VSnackbarQueue: VSnackbarQueue
|
|
142811
142915
|
VSparkline: VSparkline
|
|
142812
142916
|
VSpeedDial: VSpeedDial
|
|
142813
|
-
VValidation: VValidation
|
|
142814
142917
|
VThemeProvider: VThemeProvider
|
|
142815
|
-
|
|
142918
|
+
VValidation: VValidation
|
|
142816
142919
|
VFabTransition: VFabTransition
|
|
142817
142920
|
VDialogBottomTransition: VDialogBottomTransition
|
|
142818
142921
|
VDialogTopTransition: VDialogTopTransition
|
|
@@ -142829,16 +142932,12 @@ declare module 'vue' {
|
|
|
142829
142932
|
VExpandTransition: VExpandTransition
|
|
142830
142933
|
VExpandXTransition: VExpandXTransition
|
|
142831
142934
|
VDialogTransition: VDialogTransition
|
|
142832
|
-
|
|
142935
|
+
VVirtualScroll: VVirtualScroll
|
|
142833
142936
|
VCalendar: VCalendar
|
|
142834
|
-
|
|
142937
|
+
VColorInput: VColorInput
|
|
142835
142938
|
VFileUpload: VFileUpload
|
|
142836
142939
|
VFileUploadItem: VFileUploadItem
|
|
142837
|
-
|
|
142838
|
-
VPieSegment: VPieSegment
|
|
142839
|
-
VPieTooltip: VPieTooltip
|
|
142840
|
-
VPicker: VPicker
|
|
142841
|
-
VPickerTitle: VPickerTitle
|
|
142940
|
+
VIconBtn: VIconBtn
|
|
142842
142941
|
VStepperVertical: VStepperVertical
|
|
142843
142942
|
VStepperVerticalItem: VStepperVerticalItem
|
|
142844
142943
|
VStepperVerticalActions: VStepperVerticalActions
|
|
@@ -142846,6 +142945,11 @@ declare module 'vue' {
|
|
|
142846
142945
|
VVideoControls: VVideoControls
|
|
142847
142946
|
VVideoVolume: VVideoVolume
|
|
142848
142947
|
VHotkey: VHotkey
|
|
142948
|
+
VPicker: VPicker
|
|
142949
|
+
VPickerTitle: VPickerTitle
|
|
142950
|
+
VPie: VPie
|
|
142951
|
+
VPieSegment: VPieSegment
|
|
142952
|
+
VPieTooltip: VPieTooltip
|
|
142849
142953
|
VDateInput: VDateInput
|
|
142850
142954
|
VMaskInput: VMaskInput
|
|
142851
142955
|
VPullToRefresh: VPullToRefresh
|