@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.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
|
|
|
@@ -38179,8 +38186,9 @@ declare const VDataIterator: {
|
|
|
38179
38186
|
expandOnClick: boolean;
|
|
38180
38187
|
showExpand: boolean;
|
|
38181
38188
|
expanded: readonly string[];
|
|
38189
|
+
initialSortOrder: "asc" | "desc";
|
|
38182
38190
|
sortBy: readonly SortItem[];
|
|
38183
|
-
multiSort: boolean;
|
|
38191
|
+
multiSort: boolean | MultiSortProps;
|
|
38184
38192
|
mustSort: boolean;
|
|
38185
38193
|
groupBy: readonly SortItem[];
|
|
38186
38194
|
showSelect: boolean;
|
|
@@ -38232,8 +38240,9 @@ declare const VDataIterator: {
|
|
|
38232
38240
|
expandOnClick: boolean;
|
|
38233
38241
|
showExpand: boolean;
|
|
38234
38242
|
expanded: readonly string[];
|
|
38243
|
+
initialSortOrder: "asc" | "desc";
|
|
38235
38244
|
sortBy: readonly SortItem[];
|
|
38236
|
-
multiSort: boolean;
|
|
38245
|
+
multiSort: boolean | MultiSortProps;
|
|
38237
38246
|
mustSort: boolean;
|
|
38238
38247
|
groupBy: readonly SortItem[];
|
|
38239
38248
|
showSelect: boolean;
|
|
@@ -38283,8 +38292,9 @@ declare const VDataIterator: {
|
|
|
38283
38292
|
expandOnClick: boolean;
|
|
38284
38293
|
showExpand: boolean;
|
|
38285
38294
|
expanded: readonly string[];
|
|
38295
|
+
initialSortOrder: "asc" | "desc";
|
|
38286
38296
|
sortBy: readonly SortItem[];
|
|
38287
|
-
multiSort: boolean;
|
|
38297
|
+
multiSort: boolean | MultiSortProps;
|
|
38288
38298
|
mustSort: boolean;
|
|
38289
38299
|
groupBy: readonly SortItem[];
|
|
38290
38300
|
showSelect: boolean;
|
|
@@ -38327,8 +38337,9 @@ declare const VDataIterator: {
|
|
|
38327
38337
|
expandOnClick: boolean;
|
|
38328
38338
|
showExpand: boolean;
|
|
38329
38339
|
expanded: readonly string[];
|
|
38340
|
+
initialSortOrder: "asc" | "desc";
|
|
38330
38341
|
sortBy: readonly SortItem[];
|
|
38331
|
-
multiSort: boolean;
|
|
38342
|
+
multiSort: boolean | MultiSortProps;
|
|
38332
38343
|
mustSort: boolean;
|
|
38333
38344
|
groupBy: readonly SortItem[];
|
|
38334
38345
|
showSelect: boolean;
|
|
@@ -38359,8 +38370,9 @@ declare const VDataIterator: {
|
|
|
38359
38370
|
expandOnClick: boolean;
|
|
38360
38371
|
showExpand: boolean;
|
|
38361
38372
|
expanded: readonly string[];
|
|
38373
|
+
initialSortOrder: "asc" | "desc";
|
|
38362
38374
|
sortBy: readonly SortItem[];
|
|
38363
|
-
multiSort: boolean;
|
|
38375
|
+
multiSort: boolean | MultiSortProps;
|
|
38364
38376
|
mustSort: boolean;
|
|
38365
38377
|
groupBy: readonly SortItem[];
|
|
38366
38378
|
showSelect: boolean;
|
|
@@ -38412,8 +38424,9 @@ declare const VDataIterator: {
|
|
|
38412
38424
|
expandOnClick: boolean;
|
|
38413
38425
|
showExpand: boolean;
|
|
38414
38426
|
expanded: readonly string[];
|
|
38427
|
+
initialSortOrder: "asc" | "desc";
|
|
38415
38428
|
sortBy: readonly SortItem[];
|
|
38416
|
-
multiSort: boolean;
|
|
38429
|
+
multiSort: boolean | MultiSortProps;
|
|
38417
38430
|
mustSort: boolean;
|
|
38418
38431
|
groupBy: readonly SortItem[];
|
|
38419
38432
|
showSelect: boolean;
|
|
@@ -38473,12 +38486,20 @@ declare const VDataIterator: {
|
|
|
38473
38486
|
type: vue.PropType<readonly string[]>;
|
|
38474
38487
|
default: () => never[];
|
|
38475
38488
|
};
|
|
38489
|
+
initialSortOrder: {
|
|
38490
|
+
type: vue.PropType<"asc" | "desc">;
|
|
38491
|
+
default: string;
|
|
38492
|
+
validator: (v: any) => boolean;
|
|
38493
|
+
};
|
|
38476
38494
|
sortBy: {
|
|
38477
38495
|
type: vue.PropType<readonly SortItem[]>;
|
|
38478
38496
|
default: () => never[];
|
|
38479
38497
|
};
|
|
38480
38498
|
customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
|
|
38481
|
-
multiSort:
|
|
38499
|
+
multiSort: {
|
|
38500
|
+
type: vue.PropType<boolean | MultiSortProps>;
|
|
38501
|
+
default: boolean;
|
|
38502
|
+
};
|
|
38482
38503
|
mustSort: BooleanConstructor;
|
|
38483
38504
|
groupBy: {
|
|
38484
38505
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -38561,12 +38582,20 @@ declare const VDataIterator: {
|
|
|
38561
38582
|
type: vue.PropType<readonly string[]>;
|
|
38562
38583
|
default: () => never[];
|
|
38563
38584
|
};
|
|
38585
|
+
initialSortOrder: {
|
|
38586
|
+
type: vue.PropType<"asc" | "desc">;
|
|
38587
|
+
default: string;
|
|
38588
|
+
validator: (v: any) => boolean;
|
|
38589
|
+
};
|
|
38564
38590
|
sortBy: {
|
|
38565
38591
|
type: vue.PropType<readonly SortItem[]>;
|
|
38566
38592
|
default: () => never[];
|
|
38567
38593
|
};
|
|
38568
38594
|
customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
|
|
38569
|
-
multiSort:
|
|
38595
|
+
multiSort: {
|
|
38596
|
+
type: vue.PropType<boolean | MultiSortProps>;
|
|
38597
|
+
default: boolean;
|
|
38598
|
+
};
|
|
38570
38599
|
mustSort: BooleanConstructor;
|
|
38571
38600
|
groupBy: {
|
|
38572
38601
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -39604,7 +39633,9 @@ declare const VDataTable: {
|
|
|
39604
39633
|
expandOnClick: boolean;
|
|
39605
39634
|
showExpand: boolean;
|
|
39606
39635
|
expanded: readonly string[];
|
|
39636
|
+
initialSortOrder: "asc" | "desc";
|
|
39607
39637
|
sortBy: readonly SortItem[];
|
|
39638
|
+
multiSort: boolean | MultiSortProps;
|
|
39608
39639
|
mustSort: boolean;
|
|
39609
39640
|
groupBy: readonly SortItem[];
|
|
39610
39641
|
returnObject: boolean;
|
|
@@ -39631,7 +39662,6 @@ declare const VDataTable: {
|
|
|
39631
39662
|
})[];
|
|
39632
39663
|
showCurrentPage: boolean;
|
|
39633
39664
|
disableSort: boolean;
|
|
39634
|
-
multiSort: boolean;
|
|
39635
39665
|
sortAscIcon: IconValue;
|
|
39636
39666
|
sortDescIcon: IconValue;
|
|
39637
39667
|
sticky: boolean;
|
|
@@ -39688,7 +39718,9 @@ declare const VDataTable: {
|
|
|
39688
39718
|
expandOnClick: boolean;
|
|
39689
39719
|
showExpand: boolean;
|
|
39690
39720
|
expanded: readonly string[];
|
|
39721
|
+
initialSortOrder: "asc" | "desc";
|
|
39691
39722
|
sortBy: readonly SortItem[];
|
|
39723
|
+
multiSort: boolean | MultiSortProps;
|
|
39692
39724
|
mustSort: boolean;
|
|
39693
39725
|
groupBy: readonly SortItem[];
|
|
39694
39726
|
returnObject: boolean;
|
|
@@ -39715,7 +39747,6 @@ declare const VDataTable: {
|
|
|
39715
39747
|
})[];
|
|
39716
39748
|
showCurrentPage: boolean;
|
|
39717
39749
|
disableSort: boolean;
|
|
39718
|
-
multiSort: boolean;
|
|
39719
39750
|
sortAscIcon: IconValue;
|
|
39720
39751
|
sortDescIcon: IconValue;
|
|
39721
39752
|
sticky: boolean;
|
|
@@ -39848,7 +39879,9 @@ declare const VDataTable: {
|
|
|
39848
39879
|
expandOnClick: boolean;
|
|
39849
39880
|
showExpand: boolean;
|
|
39850
39881
|
expanded: readonly string[];
|
|
39882
|
+
initialSortOrder: "asc" | "desc";
|
|
39851
39883
|
sortBy: readonly SortItem[];
|
|
39884
|
+
multiSort: boolean | MultiSortProps;
|
|
39852
39885
|
mustSort: boolean;
|
|
39853
39886
|
groupBy: readonly SortItem[];
|
|
39854
39887
|
returnObject: boolean;
|
|
@@ -39875,7 +39908,6 @@ declare const VDataTable: {
|
|
|
39875
39908
|
})[];
|
|
39876
39909
|
showCurrentPage: boolean;
|
|
39877
39910
|
disableSort: boolean;
|
|
39878
|
-
multiSort: boolean;
|
|
39879
39911
|
sortAscIcon: IconValue;
|
|
39880
39912
|
sortDescIcon: IconValue;
|
|
39881
39913
|
sticky: boolean;
|
|
@@ -39923,7 +39955,9 @@ declare const VDataTable: {
|
|
|
39923
39955
|
expandOnClick: boolean;
|
|
39924
39956
|
showExpand: boolean;
|
|
39925
39957
|
expanded: readonly string[];
|
|
39958
|
+
initialSortOrder: "asc" | "desc";
|
|
39926
39959
|
sortBy: readonly SortItem[];
|
|
39960
|
+
multiSort: boolean | MultiSortProps;
|
|
39927
39961
|
mustSort: boolean;
|
|
39928
39962
|
groupBy: readonly SortItem[];
|
|
39929
39963
|
returnObject: boolean;
|
|
@@ -39950,7 +39984,6 @@ declare const VDataTable: {
|
|
|
39950
39984
|
})[];
|
|
39951
39985
|
showCurrentPage: boolean;
|
|
39952
39986
|
disableSort: boolean;
|
|
39953
|
-
multiSort: boolean;
|
|
39954
39987
|
sortAscIcon: IconValue;
|
|
39955
39988
|
sortDescIcon: IconValue;
|
|
39956
39989
|
sticky: boolean;
|
|
@@ -39980,7 +40013,9 @@ declare const VDataTable: {
|
|
|
39980
40013
|
expandOnClick: boolean;
|
|
39981
40014
|
showExpand: boolean;
|
|
39982
40015
|
expanded: readonly string[];
|
|
40016
|
+
initialSortOrder: "asc" | "desc";
|
|
39983
40017
|
sortBy: readonly SortItem[];
|
|
40018
|
+
multiSort: boolean | MultiSortProps;
|
|
39984
40019
|
mustSort: boolean;
|
|
39985
40020
|
groupBy: readonly SortItem[];
|
|
39986
40021
|
returnObject: boolean;
|
|
@@ -40007,7 +40042,6 @@ declare const VDataTable: {
|
|
|
40007
40042
|
})[];
|
|
40008
40043
|
showCurrentPage: boolean;
|
|
40009
40044
|
disableSort: boolean;
|
|
40010
|
-
multiSort: boolean;
|
|
40011
40045
|
sortAscIcon: IconValue;
|
|
40012
40046
|
sortDescIcon: IconValue;
|
|
40013
40047
|
sticky: boolean;
|
|
@@ -40064,7 +40098,9 @@ declare const VDataTable: {
|
|
|
40064
40098
|
expandOnClick: boolean;
|
|
40065
40099
|
showExpand: boolean;
|
|
40066
40100
|
expanded: readonly string[];
|
|
40101
|
+
initialSortOrder: "asc" | "desc";
|
|
40067
40102
|
sortBy: readonly SortItem[];
|
|
40103
|
+
multiSort: boolean | MultiSortProps;
|
|
40068
40104
|
mustSort: boolean;
|
|
40069
40105
|
groupBy: readonly SortItem[];
|
|
40070
40106
|
returnObject: boolean;
|
|
@@ -40091,7 +40127,6 @@ declare const VDataTable: {
|
|
|
40091
40127
|
})[];
|
|
40092
40128
|
showCurrentPage: boolean;
|
|
40093
40129
|
disableSort: boolean;
|
|
40094
|
-
multiSort: boolean;
|
|
40095
40130
|
sortAscIcon: IconValue;
|
|
40096
40131
|
sortDescIcon: IconValue;
|
|
40097
40132
|
sticky: boolean;
|
|
@@ -40297,11 +40332,20 @@ declare const VDataTable: {
|
|
|
40297
40332
|
type: vue.PropType<readonly string[]>;
|
|
40298
40333
|
default: () => never[];
|
|
40299
40334
|
};
|
|
40335
|
+
initialSortOrder: {
|
|
40336
|
+
type: vue.PropType<"asc" | "desc">;
|
|
40337
|
+
default: string;
|
|
40338
|
+
validator: (v: any) => boolean;
|
|
40339
|
+
};
|
|
40300
40340
|
sortBy: {
|
|
40301
40341
|
type: vue.PropType<readonly SortItem[]>;
|
|
40302
40342
|
default: () => never[];
|
|
40303
40343
|
};
|
|
40304
40344
|
customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
|
|
40345
|
+
multiSort: {
|
|
40346
|
+
type: vue.PropType<boolean | MultiSortProps>;
|
|
40347
|
+
default: boolean;
|
|
40348
|
+
};
|
|
40305
40349
|
mustSort: BooleanConstructor;
|
|
40306
40350
|
groupBy: {
|
|
40307
40351
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -40451,7 +40495,6 @@ declare const VDataTable: {
|
|
|
40451
40495
|
}[]>;
|
|
40452
40496
|
color: StringConstructor;
|
|
40453
40497
|
disableSort: BooleanConstructor;
|
|
40454
|
-
multiSort: BooleanConstructor;
|
|
40455
40498
|
sortAscIcon: {
|
|
40456
40499
|
type: vue.PropType<IconValue>;
|
|
40457
40500
|
default: string;
|
|
@@ -40529,11 +40572,20 @@ declare const VDataTable: {
|
|
|
40529
40572
|
type: vue.PropType<readonly string[]>;
|
|
40530
40573
|
default: () => never[];
|
|
40531
40574
|
};
|
|
40575
|
+
initialSortOrder: {
|
|
40576
|
+
type: vue.PropType<"asc" | "desc">;
|
|
40577
|
+
default: string;
|
|
40578
|
+
validator: (v: any) => boolean;
|
|
40579
|
+
};
|
|
40532
40580
|
sortBy: {
|
|
40533
40581
|
type: vue.PropType<readonly SortItem[]>;
|
|
40534
40582
|
default: () => never[];
|
|
40535
40583
|
};
|
|
40536
40584
|
customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
|
|
40585
|
+
multiSort: {
|
|
40586
|
+
type: vue.PropType<boolean | MultiSortProps>;
|
|
40587
|
+
default: boolean;
|
|
40588
|
+
};
|
|
40537
40589
|
mustSort: BooleanConstructor;
|
|
40538
40590
|
groupBy: {
|
|
40539
40591
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -40683,7 +40735,6 @@ declare const VDataTable: {
|
|
|
40683
40735
|
}[]>;
|
|
40684
40736
|
color: StringConstructor;
|
|
40685
40737
|
disableSort: BooleanConstructor;
|
|
40686
|
-
multiSort: BooleanConstructor;
|
|
40687
40738
|
sortAscIcon: {
|
|
40688
40739
|
type: vue.PropType<IconValue>;
|
|
40689
40740
|
default: string;
|
|
@@ -41019,7 +41070,9 @@ declare const VDataTableVirtual: {
|
|
|
41019
41070
|
expandOnClick: boolean;
|
|
41020
41071
|
showExpand: boolean;
|
|
41021
41072
|
expanded: readonly string[];
|
|
41073
|
+
initialSortOrder: "asc" | "desc";
|
|
41022
41074
|
sortBy: readonly SortItem[];
|
|
41075
|
+
multiSort: boolean | MultiSortProps;
|
|
41023
41076
|
mustSort: boolean;
|
|
41024
41077
|
groupBy: readonly SortItem[];
|
|
41025
41078
|
returnObject: boolean;
|
|
@@ -41031,7 +41084,6 @@ declare const VDataTableVirtual: {
|
|
|
41031
41084
|
itemHeight: string | number;
|
|
41032
41085
|
itemKey: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
41033
41086
|
disableSort: boolean;
|
|
41034
|
-
multiSort: boolean;
|
|
41035
41087
|
sortAscIcon: IconValue;
|
|
41036
41088
|
sortDescIcon: IconValue;
|
|
41037
41089
|
sticky: boolean;
|
|
@@ -41084,7 +41136,9 @@ declare const VDataTableVirtual: {
|
|
|
41084
41136
|
expandOnClick: boolean;
|
|
41085
41137
|
showExpand: boolean;
|
|
41086
41138
|
expanded: readonly string[];
|
|
41139
|
+
initialSortOrder: "asc" | "desc";
|
|
41087
41140
|
sortBy: readonly SortItem[];
|
|
41141
|
+
multiSort: boolean | MultiSortProps;
|
|
41088
41142
|
mustSort: boolean;
|
|
41089
41143
|
groupBy: readonly SortItem[];
|
|
41090
41144
|
returnObject: boolean;
|
|
@@ -41096,7 +41150,6 @@ declare const VDataTableVirtual: {
|
|
|
41096
41150
|
itemHeight: string | number;
|
|
41097
41151
|
itemKey: SelectItemKey;
|
|
41098
41152
|
disableSort: boolean;
|
|
41099
|
-
multiSort: boolean;
|
|
41100
41153
|
sortAscIcon: IconValue;
|
|
41101
41154
|
sortDescIcon: IconValue;
|
|
41102
41155
|
sticky: boolean;
|
|
@@ -41221,7 +41274,9 @@ declare const VDataTableVirtual: {
|
|
|
41221
41274
|
expandOnClick: boolean;
|
|
41222
41275
|
showExpand: boolean;
|
|
41223
41276
|
expanded: readonly string[];
|
|
41277
|
+
initialSortOrder: "asc" | "desc";
|
|
41224
41278
|
sortBy: readonly SortItem[];
|
|
41279
|
+
multiSort: boolean | MultiSortProps;
|
|
41225
41280
|
mustSort: boolean;
|
|
41226
41281
|
groupBy: readonly SortItem[];
|
|
41227
41282
|
returnObject: boolean;
|
|
@@ -41233,7 +41288,6 @@ declare const VDataTableVirtual: {
|
|
|
41233
41288
|
itemHeight: string | number;
|
|
41234
41289
|
itemKey: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
41235
41290
|
disableSort: boolean;
|
|
41236
|
-
multiSort: boolean;
|
|
41237
41291
|
sortAscIcon: IconValue;
|
|
41238
41292
|
sortDescIcon: IconValue;
|
|
41239
41293
|
sticky: boolean;
|
|
@@ -41280,7 +41334,9 @@ declare const VDataTableVirtual: {
|
|
|
41280
41334
|
expandOnClick: boolean;
|
|
41281
41335
|
showExpand: boolean;
|
|
41282
41336
|
expanded: readonly string[];
|
|
41337
|
+
initialSortOrder: "asc" | "desc";
|
|
41283
41338
|
sortBy: readonly SortItem[];
|
|
41339
|
+
multiSort: boolean | MultiSortProps;
|
|
41284
41340
|
mustSort: boolean;
|
|
41285
41341
|
groupBy: readonly SortItem[];
|
|
41286
41342
|
returnObject: boolean;
|
|
@@ -41292,7 +41348,6 @@ declare const VDataTableVirtual: {
|
|
|
41292
41348
|
itemHeight: string | number;
|
|
41293
41349
|
itemKey: SelectItemKey;
|
|
41294
41350
|
disableSort: boolean;
|
|
41295
|
-
multiSort: boolean;
|
|
41296
41351
|
sortAscIcon: IconValue;
|
|
41297
41352
|
sortDescIcon: IconValue;
|
|
41298
41353
|
sticky: boolean;
|
|
@@ -41321,7 +41376,9 @@ declare const VDataTableVirtual: {
|
|
|
41321
41376
|
expandOnClick: boolean;
|
|
41322
41377
|
showExpand: boolean;
|
|
41323
41378
|
expanded: readonly string[];
|
|
41379
|
+
initialSortOrder: "asc" | "desc";
|
|
41324
41380
|
sortBy: readonly SortItem[];
|
|
41381
|
+
multiSort: boolean | MultiSortProps;
|
|
41325
41382
|
mustSort: boolean;
|
|
41326
41383
|
groupBy: readonly SortItem[];
|
|
41327
41384
|
returnObject: boolean;
|
|
@@ -41333,7 +41390,6 @@ declare const VDataTableVirtual: {
|
|
|
41333
41390
|
itemHeight: string | number;
|
|
41334
41391
|
itemKey: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
41335
41392
|
disableSort: boolean;
|
|
41336
|
-
multiSort: boolean;
|
|
41337
41393
|
sortAscIcon: IconValue;
|
|
41338
41394
|
sortDescIcon: IconValue;
|
|
41339
41395
|
sticky: boolean;
|
|
@@ -41386,7 +41442,9 @@ declare const VDataTableVirtual: {
|
|
|
41386
41442
|
expandOnClick: boolean;
|
|
41387
41443
|
showExpand: boolean;
|
|
41388
41444
|
expanded: readonly string[];
|
|
41445
|
+
initialSortOrder: "asc" | "desc";
|
|
41389
41446
|
sortBy: readonly SortItem[];
|
|
41447
|
+
multiSort: boolean | MultiSortProps;
|
|
41390
41448
|
mustSort: boolean;
|
|
41391
41449
|
groupBy: readonly SortItem[];
|
|
41392
41450
|
returnObject: boolean;
|
|
@@ -41398,7 +41456,6 @@ declare const VDataTableVirtual: {
|
|
|
41398
41456
|
itemHeight: string | number;
|
|
41399
41457
|
itemKey: SelectItemKey;
|
|
41400
41458
|
disableSort: boolean;
|
|
41401
|
-
multiSort: boolean;
|
|
41402
41459
|
sortAscIcon: IconValue;
|
|
41403
41460
|
sortDescIcon: IconValue;
|
|
41404
41461
|
sticky: boolean;
|
|
@@ -41596,11 +41653,20 @@ declare const VDataTableVirtual: {
|
|
|
41596
41653
|
type: vue.PropType<readonly string[]>;
|
|
41597
41654
|
default: () => never[];
|
|
41598
41655
|
};
|
|
41656
|
+
initialSortOrder: {
|
|
41657
|
+
type: vue.PropType<"asc" | "desc">;
|
|
41658
|
+
default: string;
|
|
41659
|
+
validator: (v: any) => boolean;
|
|
41660
|
+
};
|
|
41599
41661
|
sortBy: {
|
|
41600
41662
|
type: vue.PropType<readonly SortItem[]>;
|
|
41601
41663
|
default: () => never[];
|
|
41602
41664
|
};
|
|
41603
41665
|
customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
|
|
41666
|
+
multiSort: {
|
|
41667
|
+
type: vue.PropType<boolean | MultiSortProps>;
|
|
41668
|
+
default: boolean;
|
|
41669
|
+
};
|
|
41604
41670
|
mustSort: BooleanConstructor;
|
|
41605
41671
|
groupBy: {
|
|
41606
41672
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -41700,7 +41766,6 @@ declare const VDataTableVirtual: {
|
|
|
41700
41766
|
}[]>;
|
|
41701
41767
|
color: StringConstructor;
|
|
41702
41768
|
disableSort: BooleanConstructor;
|
|
41703
|
-
multiSort: BooleanConstructor;
|
|
41704
41769
|
sortAscIcon: {
|
|
41705
41770
|
type: vue.PropType<IconValue>;
|
|
41706
41771
|
default: string;
|
|
@@ -41776,11 +41841,20 @@ declare const VDataTableVirtual: {
|
|
|
41776
41841
|
type: vue.PropType<readonly string[]>;
|
|
41777
41842
|
default: () => never[];
|
|
41778
41843
|
};
|
|
41844
|
+
initialSortOrder: {
|
|
41845
|
+
type: vue.PropType<"asc" | "desc">;
|
|
41846
|
+
default: string;
|
|
41847
|
+
validator: (v: any) => boolean;
|
|
41848
|
+
};
|
|
41779
41849
|
sortBy: {
|
|
41780
41850
|
type: vue.PropType<readonly SortItem[]>;
|
|
41781
41851
|
default: () => never[];
|
|
41782
41852
|
};
|
|
41783
41853
|
customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
|
|
41854
|
+
multiSort: {
|
|
41855
|
+
type: vue.PropType<boolean | MultiSortProps>;
|
|
41856
|
+
default: boolean;
|
|
41857
|
+
};
|
|
41784
41858
|
mustSort: BooleanConstructor;
|
|
41785
41859
|
groupBy: {
|
|
41786
41860
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -41880,7 +41954,6 @@ declare const VDataTableVirtual: {
|
|
|
41880
41954
|
}[]>;
|
|
41881
41955
|
color: StringConstructor;
|
|
41882
41956
|
disableSort: BooleanConstructor;
|
|
41883
|
-
multiSort: BooleanConstructor;
|
|
41884
41957
|
sortAscIcon: {
|
|
41885
41958
|
type: vue.PropType<IconValue>;
|
|
41886
41959
|
default: string;
|
|
@@ -41941,7 +42014,9 @@ declare const VDataTableServer: {
|
|
|
41941
42014
|
expandOnClick: boolean;
|
|
41942
42015
|
showExpand: boolean;
|
|
41943
42016
|
expanded: readonly string[];
|
|
42017
|
+
initialSortOrder: "asc" | "desc";
|
|
41944
42018
|
sortBy: readonly SortItem[];
|
|
42019
|
+
multiSort: boolean | MultiSortProps;
|
|
41945
42020
|
mustSort: boolean;
|
|
41946
42021
|
groupBy: readonly SortItem[];
|
|
41947
42022
|
returnObject: boolean;
|
|
@@ -41968,7 +42043,6 @@ declare const VDataTableServer: {
|
|
|
41968
42043
|
})[];
|
|
41969
42044
|
showCurrentPage: boolean;
|
|
41970
42045
|
disableSort: boolean;
|
|
41971
|
-
multiSort: boolean;
|
|
41972
42046
|
sortAscIcon: IconValue;
|
|
41973
42047
|
sortDescIcon: IconValue;
|
|
41974
42048
|
sticky: boolean;
|
|
@@ -42019,7 +42093,9 @@ declare const VDataTableServer: {
|
|
|
42019
42093
|
expandOnClick: boolean;
|
|
42020
42094
|
showExpand: boolean;
|
|
42021
42095
|
expanded: readonly string[];
|
|
42096
|
+
initialSortOrder: "asc" | "desc";
|
|
42022
42097
|
sortBy: readonly SortItem[];
|
|
42098
|
+
multiSort: boolean | MultiSortProps;
|
|
42023
42099
|
mustSort: boolean;
|
|
42024
42100
|
groupBy: readonly SortItem[];
|
|
42025
42101
|
returnObject: boolean;
|
|
@@ -42046,7 +42122,6 @@ declare const VDataTableServer: {
|
|
|
42046
42122
|
})[];
|
|
42047
42123
|
showCurrentPage: boolean;
|
|
42048
42124
|
disableSort: boolean;
|
|
42049
|
-
multiSort: boolean;
|
|
42050
42125
|
sortAscIcon: IconValue;
|
|
42051
42126
|
sortDescIcon: IconValue;
|
|
42052
42127
|
sticky: boolean;
|
|
@@ -42177,7 +42252,9 @@ declare const VDataTableServer: {
|
|
|
42177
42252
|
expandOnClick: boolean;
|
|
42178
42253
|
showExpand: boolean;
|
|
42179
42254
|
expanded: readonly string[];
|
|
42255
|
+
initialSortOrder: "asc" | "desc";
|
|
42180
42256
|
sortBy: readonly SortItem[];
|
|
42257
|
+
multiSort: boolean | MultiSortProps;
|
|
42181
42258
|
mustSort: boolean;
|
|
42182
42259
|
groupBy: readonly SortItem[];
|
|
42183
42260
|
returnObject: boolean;
|
|
@@ -42204,7 +42281,6 @@ declare const VDataTableServer: {
|
|
|
42204
42281
|
})[];
|
|
42205
42282
|
showCurrentPage: boolean;
|
|
42206
42283
|
disableSort: boolean;
|
|
42207
|
-
multiSort: boolean;
|
|
42208
42284
|
sortAscIcon: IconValue;
|
|
42209
42285
|
sortDescIcon: IconValue;
|
|
42210
42286
|
sticky: boolean;
|
|
@@ -42247,7 +42323,9 @@ declare const VDataTableServer: {
|
|
|
42247
42323
|
expandOnClick: boolean;
|
|
42248
42324
|
showExpand: boolean;
|
|
42249
42325
|
expanded: readonly string[];
|
|
42326
|
+
initialSortOrder: "asc" | "desc";
|
|
42250
42327
|
sortBy: readonly SortItem[];
|
|
42328
|
+
multiSort: boolean | MultiSortProps;
|
|
42251
42329
|
mustSort: boolean;
|
|
42252
42330
|
groupBy: readonly SortItem[];
|
|
42253
42331
|
returnObject: boolean;
|
|
@@ -42274,7 +42352,6 @@ declare const VDataTableServer: {
|
|
|
42274
42352
|
})[];
|
|
42275
42353
|
showCurrentPage: boolean;
|
|
42276
42354
|
disableSort: boolean;
|
|
42277
|
-
multiSort: boolean;
|
|
42278
42355
|
sortAscIcon: IconValue;
|
|
42279
42356
|
sortDescIcon: IconValue;
|
|
42280
42357
|
sticky: boolean;
|
|
@@ -42302,7 +42379,9 @@ declare const VDataTableServer: {
|
|
|
42302
42379
|
expandOnClick: boolean;
|
|
42303
42380
|
showExpand: boolean;
|
|
42304
42381
|
expanded: readonly string[];
|
|
42382
|
+
initialSortOrder: "asc" | "desc";
|
|
42305
42383
|
sortBy: readonly SortItem[];
|
|
42384
|
+
multiSort: boolean | MultiSortProps;
|
|
42306
42385
|
mustSort: boolean;
|
|
42307
42386
|
groupBy: readonly SortItem[];
|
|
42308
42387
|
returnObject: boolean;
|
|
@@ -42329,7 +42408,6 @@ declare const VDataTableServer: {
|
|
|
42329
42408
|
})[];
|
|
42330
42409
|
showCurrentPage: boolean;
|
|
42331
42410
|
disableSort: boolean;
|
|
42332
|
-
multiSort: boolean;
|
|
42333
42411
|
sortAscIcon: IconValue;
|
|
42334
42412
|
sortDescIcon: IconValue;
|
|
42335
42413
|
sticky: boolean;
|
|
@@ -42380,7 +42458,9 @@ declare const VDataTableServer: {
|
|
|
42380
42458
|
expandOnClick: boolean;
|
|
42381
42459
|
showExpand: boolean;
|
|
42382
42460
|
expanded: readonly string[];
|
|
42461
|
+
initialSortOrder: "asc" | "desc";
|
|
42383
42462
|
sortBy: readonly SortItem[];
|
|
42463
|
+
multiSort: boolean | MultiSortProps;
|
|
42384
42464
|
mustSort: boolean;
|
|
42385
42465
|
groupBy: readonly SortItem[];
|
|
42386
42466
|
returnObject: boolean;
|
|
@@ -42407,7 +42487,6 @@ declare const VDataTableServer: {
|
|
|
42407
42487
|
})[];
|
|
42408
42488
|
showCurrentPage: boolean;
|
|
42409
42489
|
disableSort: boolean;
|
|
42410
|
-
multiSort: boolean;
|
|
42411
42490
|
sortAscIcon: IconValue;
|
|
42412
42491
|
sortDescIcon: IconValue;
|
|
42413
42492
|
sticky: boolean;
|
|
@@ -42605,11 +42684,20 @@ declare const VDataTableServer: {
|
|
|
42605
42684
|
type: vue.PropType<readonly string[]>;
|
|
42606
42685
|
default: () => never[];
|
|
42607
42686
|
};
|
|
42687
|
+
initialSortOrder: {
|
|
42688
|
+
type: vue.PropType<"asc" | "desc">;
|
|
42689
|
+
default: string;
|
|
42690
|
+
validator: (v: any) => boolean;
|
|
42691
|
+
};
|
|
42608
42692
|
sortBy: {
|
|
42609
42693
|
type: vue.PropType<readonly SortItem[]>;
|
|
42610
42694
|
default: () => never[];
|
|
42611
42695
|
};
|
|
42612
42696
|
customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
|
|
42697
|
+
multiSort: {
|
|
42698
|
+
type: vue.PropType<boolean | MultiSortProps>;
|
|
42699
|
+
default: boolean;
|
|
42700
|
+
};
|
|
42613
42701
|
mustSort: BooleanConstructor;
|
|
42614
42702
|
groupBy: {
|
|
42615
42703
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -42759,7 +42847,6 @@ declare const VDataTableServer: {
|
|
|
42759
42847
|
}[]>;
|
|
42760
42848
|
color: StringConstructor;
|
|
42761
42849
|
disableSort: BooleanConstructor;
|
|
42762
|
-
multiSort: BooleanConstructor;
|
|
42763
42850
|
sortAscIcon: {
|
|
42764
42851
|
type: vue.PropType<IconValue>;
|
|
42765
42852
|
default: string;
|
|
@@ -42833,11 +42920,20 @@ declare const VDataTableServer: {
|
|
|
42833
42920
|
type: vue.PropType<readonly string[]>;
|
|
42834
42921
|
default: () => never[];
|
|
42835
42922
|
};
|
|
42923
|
+
initialSortOrder: {
|
|
42924
|
+
type: vue.PropType<"asc" | "desc">;
|
|
42925
|
+
default: string;
|
|
42926
|
+
validator: (v: any) => boolean;
|
|
42927
|
+
};
|
|
42836
42928
|
sortBy: {
|
|
42837
42929
|
type: vue.PropType<readonly SortItem[]>;
|
|
42838
42930
|
default: () => never[];
|
|
42839
42931
|
};
|
|
42840
42932
|
customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
|
|
42933
|
+
multiSort: {
|
|
42934
|
+
type: vue.PropType<boolean | MultiSortProps>;
|
|
42935
|
+
default: boolean;
|
|
42936
|
+
};
|
|
42841
42937
|
mustSort: BooleanConstructor;
|
|
42842
42938
|
groupBy: {
|
|
42843
42939
|
type: vue.PropType<readonly SortItem[]>;
|
|
@@ -42987,7 +43083,6 @@ declare const VDataTableServer: {
|
|
|
42987
43083
|
}[]>;
|
|
42988
43084
|
color: StringConstructor;
|
|
42989
43085
|
disableSort: BooleanConstructor;
|
|
42990
|
-
multiSort: BooleanConstructor;
|
|
42991
43086
|
sortAscIcon: {
|
|
42992
43087
|
type: vue.PropType<IconValue>;
|
|
42993
43088
|
default: string;
|
|
@@ -101698,6 +101793,9 @@ type VTreeviewChildrenSlots<T> = {
|
|
|
101698
101793
|
loading: boolean;
|
|
101699
101794
|
};
|
|
101700
101795
|
footer: {
|
|
101796
|
+
props: {
|
|
101797
|
+
indentLines?: IndentLineType[];
|
|
101798
|
+
};
|
|
101701
101799
|
item: T;
|
|
101702
101800
|
internalItem: InternalListItem<T>;
|
|
101703
101801
|
loading: boolean;
|
|
@@ -101912,6 +102010,9 @@ declare const VTreeview: {
|
|
|
101912
102010
|
[key: string]: any;
|
|
101913
102011
|
}>[];
|
|
101914
102012
|
footer: (arg: {
|
|
102013
|
+
props: {
|
|
102014
|
+
indentLines?: IndentLineType[] | undefined;
|
|
102015
|
+
};
|
|
101915
102016
|
item: unknown;
|
|
101916
102017
|
internalItem: InternalListItem<unknown>;
|
|
101917
102018
|
loading: boolean;
|
|
@@ -102270,6 +102371,9 @@ declare const VTreeview: {
|
|
|
102270
102371
|
[key: string]: any;
|
|
102271
102372
|
}>[];
|
|
102272
102373
|
footer: (arg: {
|
|
102374
|
+
props: {
|
|
102375
|
+
indentLines?: IndentLineType[] | undefined;
|
|
102376
|
+
};
|
|
102273
102377
|
item: unknown;
|
|
102274
102378
|
internalItem: InternalListItem<unknown>;
|
|
102275
102379
|
loading: boolean;
|
|
@@ -105765,78 +105869,79 @@ declare module 'vue' {
|
|
|
105765
105869
|
$children?: VNodeChild
|
|
105766
105870
|
}
|
|
105767
105871
|
export interface GlobalComponents {
|
|
105768
|
-
VApp: VApp
|
|
105769
|
-
VAlert: VAlert
|
|
105770
|
-
VAlertTitle: VAlertTitle
|
|
105771
|
-
VAutocomplete: VAutocomplete
|
|
105772
105872
|
VAppBar: VAppBar
|
|
105773
105873
|
VAppBarNavIcon: VAppBarNavIcon
|
|
105774
105874
|
VAppBarTitle: VAppBarTitle
|
|
105775
|
-
|
|
105875
|
+
VAlert: VAlert
|
|
105876
|
+
VAlertTitle: VAlertTitle
|
|
105776
105877
|
VAvatar: VAvatar
|
|
105777
|
-
|
|
105778
|
-
|
|
105878
|
+
VApp: VApp
|
|
105879
|
+
VBadge: VBadge
|
|
105880
|
+
VAutocomplete: VAutocomplete
|
|
105881
|
+
VBtnGroup: VBtnGroup
|
|
105779
105882
|
VBtn: VBtn
|
|
105883
|
+
VBtnToggle: VBtnToggle
|
|
105780
105884
|
VBanner: VBanner
|
|
105781
105885
|
VBannerActions: VBannerActions
|
|
105782
105886
|
VBannerText: VBannerText
|
|
105887
|
+
VBottomNavigation: VBottomNavigation
|
|
105783
105888
|
VBreadcrumbs: VBreadcrumbs
|
|
105784
105889
|
VBreadcrumbsItem: VBreadcrumbsItem
|
|
105785
105890
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
105786
|
-
|
|
105787
|
-
VCarousel: VCarousel
|
|
105788
|
-
VCarouselItem: VCarouselItem
|
|
105891
|
+
VBottomSheet: VBottomSheet
|
|
105789
105892
|
VCard: VCard
|
|
105790
105893
|
VCardActions: VCardActions
|
|
105791
105894
|
VCardItem: VCardItem
|
|
105792
105895
|
VCardSubtitle: VCardSubtitle
|
|
105793
105896
|
VCardText: VCardText
|
|
105794
105897
|
VCardTitle: VCardTitle
|
|
105795
|
-
VCheckbox: VCheckbox
|
|
105796
|
-
VCheckboxBtn: VCheckboxBtn
|
|
105797
|
-
VBtnToggle: VBtnToggle
|
|
105798
105898
|
VChip: VChip
|
|
105799
105899
|
VChipGroup: VChipGroup
|
|
105800
|
-
|
|
105900
|
+
VCheckbox: VCheckbox
|
|
105901
|
+
VCheckboxBtn: VCheckboxBtn
|
|
105801
105902
|
VCombobox: VCombobox
|
|
105903
|
+
VCode: VCode
|
|
105904
|
+
VColorPicker: VColorPicker
|
|
105802
105905
|
VCounter: VCounter
|
|
105906
|
+
VDivider: VDivider
|
|
105907
|
+
VCarousel: VCarousel
|
|
105908
|
+
VCarouselItem: VCarouselItem
|
|
105803
105909
|
VDialog: VDialog
|
|
105910
|
+
VDataTable: VDataTable
|
|
105911
|
+
VDataTableHeaders: VDataTableHeaders
|
|
105912
|
+
VDataTableFooter: VDataTableFooter
|
|
105913
|
+
VDataTableRows: VDataTableRows
|
|
105914
|
+
VDataTableRow: VDataTableRow
|
|
105915
|
+
VDataTableVirtual: VDataTableVirtual
|
|
105916
|
+
VDataTableServer: VDataTableServer
|
|
105917
|
+
VEmptyState: VEmptyState
|
|
105804
105918
|
VDatePicker: VDatePicker
|
|
105805
105919
|
VDatePickerControls: VDatePickerControls
|
|
105806
105920
|
VDatePickerHeader: VDatePickerHeader
|
|
105807
105921
|
VDatePickerMonth: VDatePickerMonth
|
|
105808
105922
|
VDatePickerMonths: VDatePickerMonths
|
|
105809
105923
|
VDatePickerYears: VDatePickerYears
|
|
105810
|
-
|
|
105811
|
-
|
|
105812
|
-
VEmptyState: VEmptyState
|
|
105924
|
+
VField: VField
|
|
105925
|
+
VFieldLabel: VFieldLabel
|
|
105813
105926
|
VExpansionPanels: VExpansionPanels
|
|
105814
105927
|
VExpansionPanel: VExpansionPanel
|
|
105815
105928
|
VExpansionPanelText: VExpansionPanelText
|
|
105816
105929
|
VExpansionPanelTitle: VExpansionPanelTitle
|
|
105817
|
-
VDataTable: VDataTable
|
|
105818
|
-
VDataTableHeaders: VDataTableHeaders
|
|
105819
|
-
VDataTableFooter: VDataTableFooter
|
|
105820
|
-
VDataTableRows: VDataTableRows
|
|
105821
|
-
VDataTableRow: VDataTableRow
|
|
105822
|
-
VDataTableVirtual: VDataTableVirtual
|
|
105823
|
-
VDataTableServer: VDataTableServer
|
|
105824
|
-
VField: VField
|
|
105825
|
-
VFieldLabel: VFieldLabel
|
|
105826
105930
|
VFab: VFab
|
|
105827
105931
|
VFileInput: VFileInput
|
|
105828
|
-
|
|
105932
|
+
VFooter: VFooter
|
|
105829
105933
|
VIcon: VIcon
|
|
105830
105934
|
VComponentIcon: VComponentIcon
|
|
105831
105935
|
VSvgIcon: VSvgIcon
|
|
105832
105936
|
VLigatureIcon: VLigatureIcon
|
|
105833
105937
|
VClassIcon: VClassIcon
|
|
105834
|
-
|
|
105938
|
+
VImg: VImg
|
|
105939
|
+
VInput: VInput
|
|
105835
105940
|
VItemGroup: VItemGroup
|
|
105836
105941
|
VItem: VItem
|
|
105837
|
-
VFooter: VFooter
|
|
105838
105942
|
VKbd: VKbd
|
|
105839
|
-
|
|
105943
|
+
VInfiniteScroll: VInfiniteScroll
|
|
105944
|
+
VMenu: VMenu
|
|
105840
105945
|
VList: VList
|
|
105841
105946
|
VListGroup: VListGroup
|
|
105842
105947
|
VListImg: VListImg
|
|
@@ -105847,80 +105952,78 @@ declare module 'vue' {
|
|
|
105847
105952
|
VListItemTitle: VListItemTitle
|
|
105848
105953
|
VListSubheader: VListSubheader
|
|
105849
105954
|
VLabel: VLabel
|
|
105850
|
-
VMain: VMain
|
|
105851
|
-
VMessages: VMessages
|
|
105852
105955
|
VNumberInput: VNumberInput
|
|
105853
|
-
VMenu: VMenu
|
|
105854
|
-
VOverlay: VOverlay
|
|
105855
105956
|
VNavigationDrawer: VNavigationDrawer
|
|
105856
|
-
|
|
105957
|
+
VMessages: VMessages
|
|
105958
|
+
VOverlay: VOverlay
|
|
105959
|
+
VMain: VMain
|
|
105857
105960
|
VRadioGroup: VRadioGroup
|
|
105858
|
-
VProgressLinear: VProgressLinear
|
|
105859
105961
|
VPagination: VPagination
|
|
105860
105962
|
VProgressCircular: VProgressCircular
|
|
105963
|
+
VOtpInput: VOtpInput
|
|
105964
|
+
VProgressLinear: VProgressLinear
|
|
105861
105965
|
VSelect: VSelect
|
|
105862
|
-
VSelectionControl: VSelectionControl
|
|
105863
105966
|
VRating: VRating
|
|
105967
|
+
VSheet: VSheet
|
|
105968
|
+
VSelectionControlGroup: VSelectionControlGroup
|
|
105969
|
+
VSkeletonLoader: VSkeletonLoader
|
|
105970
|
+
VSlider: VSlider
|
|
105864
105971
|
VSlideGroup: VSlideGroup
|
|
105865
105972
|
VSlideGroupItem: VSlideGroupItem
|
|
105866
|
-
VSkeletonLoader: VSkeletonLoader
|
|
105867
105973
|
VSnackbar: VSnackbar
|
|
105868
|
-
|
|
105869
|
-
|
|
105974
|
+
VTab: VTab
|
|
105975
|
+
VTabs: VTabs
|
|
105976
|
+
VTabsWindow: VTabsWindow
|
|
105977
|
+
VTabsWindowItem: VTabsWindowItem
|
|
105978
|
+
VTextarea: VTextarea
|
|
105979
|
+
VTable: VTable
|
|
105980
|
+
VSystemBar: VSystemBar
|
|
105870
105981
|
VStepper: VStepper
|
|
105871
105982
|
VStepperActions: VStepperActions
|
|
105872
105983
|
VStepperHeader: VStepperHeader
|
|
105873
105984
|
VStepperItem: VStepperItem
|
|
105874
105985
|
VStepperWindow: VStepperWindow
|
|
105875
105986
|
VStepperWindowItem: VStepperWindowItem
|
|
105876
|
-
|
|
105877
|
-
VTextarea: VTextarea
|
|
105878
|
-
VSystemBar: VSystemBar
|
|
105879
|
-
VTable: VTable
|
|
105880
|
-
VToolbar: VToolbar
|
|
105881
|
-
VToolbarTitle: VToolbarTitle
|
|
105882
|
-
VToolbarItems: VToolbarItems
|
|
105883
|
-
VTab: VTab
|
|
105884
|
-
VTabs: VTabs
|
|
105885
|
-
VTabsWindow: VTabsWindow
|
|
105886
|
-
VTabsWindowItem: VTabsWindowItem
|
|
105987
|
+
VTextField: VTextField
|
|
105887
105988
|
VTimeline: VTimeline
|
|
105888
105989
|
VTimelineItem: VTimelineItem
|
|
105990
|
+
VSwitch: VSwitch
|
|
105889
105991
|
VTimePicker: VTimePicker
|
|
105890
105992
|
VTimePickerClock: VTimePickerClock
|
|
105891
105993
|
VTimePickerControls: VTimePickerControls
|
|
105892
|
-
|
|
105994
|
+
VToolbar: VToolbar
|
|
105995
|
+
VToolbarTitle: VToolbarTitle
|
|
105996
|
+
VToolbarItems: VToolbarItems
|
|
105893
105997
|
VTooltip: VTooltip
|
|
105998
|
+
VWindow: VWindow
|
|
105999
|
+
VWindowItem: VWindowItem
|
|
105894
106000
|
VTreeview: VTreeview
|
|
105895
106001
|
VTreeviewItem: VTreeviewItem
|
|
105896
106002
|
VTreeviewGroup: VTreeviewGroup
|
|
105897
|
-
|
|
105898
|
-
VWindowItem: VWindowItem
|
|
105899
|
-
VSwitch: VSwitch
|
|
105900
|
-
VConfirmEdit: VConfirmEdit
|
|
106003
|
+
VSelectionControl: VSelectionControl
|
|
105901
106004
|
VDataIterator: VDataIterator
|
|
106005
|
+
VConfirmEdit: VConfirmEdit
|
|
105902
106006
|
VDefaultsProvider: VDefaultsProvider
|
|
106007
|
+
VContainer: VContainer
|
|
106008
|
+
VCol: VCol
|
|
106009
|
+
VRow: VRow
|
|
106010
|
+
VSpacer: VSpacer
|
|
105903
106011
|
VForm: VForm
|
|
105904
106012
|
VHover: VHover
|
|
105905
106013
|
VLayout: VLayout
|
|
105906
106014
|
VLayoutItem: VLayoutItem
|
|
105907
106015
|
VLazy: VLazy
|
|
105908
|
-
VContainer: VContainer
|
|
105909
|
-
VCol: VCol
|
|
105910
|
-
VRow: VRow
|
|
105911
|
-
VSpacer: VSpacer
|
|
105912
|
-
VLocaleProvider: VLocaleProvider
|
|
105913
106016
|
VNoSsr: VNoSsr
|
|
106017
|
+
VLocaleProvider: VLocaleProvider
|
|
105914
106018
|
VParallax: VParallax
|
|
105915
106019
|
VRadio: VRadio
|
|
105916
|
-
VRangeSlider: VRangeSlider
|
|
105917
106020
|
VResponsive: VResponsive
|
|
106021
|
+
VRangeSlider: VRangeSlider
|
|
105918
106022
|
VSnackbarQueue: VSnackbarQueue
|
|
105919
106023
|
VSparkline: VSparkline
|
|
105920
106024
|
VSpeedDial: VSpeedDial
|
|
105921
|
-
VValidation: VValidation
|
|
105922
106025
|
VThemeProvider: VThemeProvider
|
|
105923
|
-
|
|
106026
|
+
VValidation: VValidation
|
|
105924
106027
|
VFabTransition: VFabTransition
|
|
105925
106028
|
VDialogBottomTransition: VDialogBottomTransition
|
|
105926
106029
|
VDialogTopTransition: VDialogTopTransition
|
|
@@ -105937,16 +106040,12 @@ declare module 'vue' {
|
|
|
105937
106040
|
VExpandTransition: VExpandTransition
|
|
105938
106041
|
VExpandXTransition: VExpandXTransition
|
|
105939
106042
|
VDialogTransition: VDialogTransition
|
|
105940
|
-
|
|
106043
|
+
VVirtualScroll: VVirtualScroll
|
|
105941
106044
|
VCalendar: VCalendar
|
|
105942
|
-
|
|
106045
|
+
VColorInput: VColorInput
|
|
105943
106046
|
VFileUpload: VFileUpload
|
|
105944
106047
|
VFileUploadItem: VFileUploadItem
|
|
105945
|
-
|
|
105946
|
-
VPieSegment: VPieSegment
|
|
105947
|
-
VPieTooltip: VPieTooltip
|
|
105948
|
-
VPicker: VPicker
|
|
105949
|
-
VPickerTitle: VPickerTitle
|
|
106048
|
+
VIconBtn: VIconBtn
|
|
105950
106049
|
VStepperVertical: VStepperVertical
|
|
105951
106050
|
VStepperVerticalItem: VStepperVerticalItem
|
|
105952
106051
|
VStepperVerticalActions: VStepperVerticalActions
|
|
@@ -105954,6 +106053,11 @@ declare module 'vue' {
|
|
|
105954
106053
|
VVideoControls: VVideoControls
|
|
105955
106054
|
VVideoVolume: VVideoVolume
|
|
105956
106055
|
VHotkey: VHotkey
|
|
106056
|
+
VPicker: VPicker
|
|
106057
|
+
VPickerTitle: VPickerTitle
|
|
106058
|
+
VPie: VPie
|
|
106059
|
+
VPieSegment: VPieSegment
|
|
106060
|
+
VPieTooltip: VPieTooltip
|
|
105957
106061
|
VDateInput: VDateInput
|
|
105958
106062
|
VMaskInput: VMaskInput
|
|
105959
106063
|
VPullToRefresh: VPullToRefresh
|