@vuetify/nightly 3.6.12-master.2024-07-10 → 3.6.12-master.2024-07-11
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 +7 -2
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +160 -160
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +2754 -2754
- package/dist/vuetify-labs.d.ts +22 -21
- package/dist/vuetify-labs.esm.js +21 -8
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +21 -8
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +876 -876
- package/dist/vuetify.d.ts +73 -72
- package/dist/vuetify.esm.js +21 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +21 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +23 -23
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataIterator/index.d.mts +1 -0
- package/lib/components/VDataTable/VDataTable.mjs +6 -2
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.mjs +6 -2
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +6 -2
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/composables/group.mjs +2 -1
- package/lib/components/VDataTable/composables/group.mjs.map +1 -1
- package/lib/components/VDataTable/composables/sort.mjs +1 -1
- package/lib/components/VDataTable/composables/sort.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +22 -21
- package/lib/components/index.d.mts +22 -21
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +51 -51
- package/package.json +1 -1
@@ -106,6 +106,7 @@ interface Group<T = any> {
|
|
106
106
|
declare function provideGroupBy(options: {
|
107
107
|
groupBy: Ref<readonly SortItem[]>;
|
108
108
|
sortBy: Ref<readonly SortItem[]>;
|
109
|
+
disableSort?: Ref<boolean>;
|
109
110
|
}): {
|
110
111
|
sortByWithGroups: vue.ComputedRef<SortItem[]>;
|
111
112
|
toggleGroup: (group: Group) => void;
|
@@ -961,6 +962,7 @@ declare const VDataTable: {
|
|
961
962
|
multiSort: boolean;
|
962
963
|
mustSort: boolean;
|
963
964
|
groupBy: readonly SortItem[];
|
965
|
+
disableSort: boolean;
|
964
966
|
showSelect: boolean;
|
965
967
|
expandOnClick: boolean;
|
966
968
|
showExpand: boolean;
|
@@ -976,7 +978,6 @@ declare const VDataTable: {
|
|
976
978
|
value: number;
|
977
979
|
})[];
|
978
980
|
showCurrentPage: boolean;
|
979
|
-
disableSort: boolean;
|
980
981
|
sortAscIcon: IconValue;
|
981
982
|
sortDescIcon: IconValue;
|
982
983
|
fixedHeader: boolean;
|
@@ -1040,6 +1041,7 @@ declare const VDataTable: {
|
|
1040
1041
|
multiSort: boolean;
|
1041
1042
|
mustSort: boolean;
|
1042
1043
|
groupBy: readonly SortItem[];
|
1044
|
+
disableSort: boolean;
|
1043
1045
|
showSelect: boolean;
|
1044
1046
|
expandOnClick: boolean;
|
1045
1047
|
showExpand: boolean;
|
@@ -1055,7 +1057,6 @@ declare const VDataTable: {
|
|
1055
1057
|
value: number;
|
1056
1058
|
})[];
|
1057
1059
|
showCurrentPage: boolean;
|
1058
|
-
disableSort: boolean;
|
1059
1060
|
sortAscIcon: IconValue;
|
1060
1061
|
sortDescIcon: IconValue;
|
1061
1062
|
fixedHeader: boolean;
|
@@ -1110,6 +1111,7 @@ declare const VDataTable: {
|
|
1110
1111
|
multiSort: boolean;
|
1111
1112
|
mustSort: boolean;
|
1112
1113
|
groupBy: readonly SortItem[];
|
1114
|
+
disableSort: boolean;
|
1113
1115
|
showSelect: boolean;
|
1114
1116
|
expandOnClick: boolean;
|
1115
1117
|
showExpand: boolean;
|
@@ -1125,7 +1127,6 @@ declare const VDataTable: {
|
|
1125
1127
|
value: number;
|
1126
1128
|
})[];
|
1127
1129
|
showCurrentPage: boolean;
|
1128
|
-
disableSort: boolean;
|
1129
1130
|
sortAscIcon: IconValue;
|
1130
1131
|
sortDescIcon: IconValue;
|
1131
1132
|
fixedHeader: boolean;
|
@@ -1262,6 +1263,7 @@ declare const VDataTable: {
|
|
1262
1263
|
multiSort: boolean;
|
1263
1264
|
mustSort: boolean;
|
1264
1265
|
groupBy: readonly SortItem[];
|
1266
|
+
disableSort: boolean;
|
1265
1267
|
showSelect: boolean;
|
1266
1268
|
expandOnClick: boolean;
|
1267
1269
|
showExpand: boolean;
|
@@ -1277,7 +1279,6 @@ declare const VDataTable: {
|
|
1277
1279
|
value: number;
|
1278
1280
|
})[];
|
1279
1281
|
showCurrentPage: boolean;
|
1280
|
-
disableSort: boolean;
|
1281
1282
|
sortAscIcon: IconValue;
|
1282
1283
|
sortDescIcon: IconValue;
|
1283
1284
|
fixedHeader: boolean;
|
@@ -1332,6 +1333,7 @@ declare const VDataTable: {
|
|
1332
1333
|
multiSort: boolean;
|
1333
1334
|
mustSort: boolean;
|
1334
1335
|
groupBy: readonly SortItem[];
|
1336
|
+
disableSort: boolean;
|
1335
1337
|
showSelect: boolean;
|
1336
1338
|
expandOnClick: boolean;
|
1337
1339
|
showExpand: boolean;
|
@@ -1347,7 +1349,6 @@ declare const VDataTable: {
|
|
1347
1349
|
value: number;
|
1348
1350
|
})[];
|
1349
1351
|
showCurrentPage: boolean;
|
1350
|
-
disableSort: boolean;
|
1351
1352
|
sortAscIcon: IconValue;
|
1352
1353
|
sortDescIcon: IconValue;
|
1353
1354
|
fixedHeader: boolean;
|
@@ -1384,6 +1385,7 @@ declare const VDataTable: {
|
|
1384
1385
|
multiSort: boolean;
|
1385
1386
|
mustSort: boolean;
|
1386
1387
|
groupBy: readonly SortItem[];
|
1388
|
+
disableSort: boolean;
|
1387
1389
|
showSelect: boolean;
|
1388
1390
|
expandOnClick: boolean;
|
1389
1391
|
showExpand: boolean;
|
@@ -1399,7 +1401,6 @@ declare const VDataTable: {
|
|
1399
1401
|
value: number;
|
1400
1402
|
})[];
|
1401
1403
|
showCurrentPage: boolean;
|
1402
|
-
disableSort: boolean;
|
1403
1404
|
sortAscIcon: IconValue;
|
1404
1405
|
sortDescIcon: IconValue;
|
1405
1406
|
fixedHeader: boolean;
|
@@ -1463,6 +1464,7 @@ declare const VDataTable: {
|
|
1463
1464
|
multiSort: boolean;
|
1464
1465
|
mustSort: boolean;
|
1465
1466
|
groupBy: readonly SortItem[];
|
1467
|
+
disableSort: boolean;
|
1466
1468
|
showSelect: boolean;
|
1467
1469
|
expandOnClick: boolean;
|
1468
1470
|
showExpand: boolean;
|
@@ -1478,7 +1480,6 @@ declare const VDataTable: {
|
|
1478
1480
|
value: number;
|
1479
1481
|
})[];
|
1480
1482
|
showCurrentPage: boolean;
|
1481
|
-
disableSort: boolean;
|
1482
1483
|
sortAscIcon: IconValue;
|
1483
1484
|
sortDescIcon: IconValue;
|
1484
1485
|
fixedHeader: boolean;
|
@@ -2379,10 +2380,10 @@ declare const VDataTableVirtual: {
|
|
2379
2380
|
multiSort: boolean;
|
2380
2381
|
mustSort: boolean;
|
2381
2382
|
groupBy: readonly SortItem[];
|
2383
|
+
disableSort: boolean;
|
2382
2384
|
showSelect: boolean;
|
2383
2385
|
expandOnClick: boolean;
|
2384
2386
|
showExpand: boolean;
|
2385
|
-
disableSort: boolean;
|
2386
2387
|
sortAscIcon: IconValue;
|
2387
2388
|
sortDescIcon: IconValue;
|
2388
2389
|
fixedHeader: boolean;
|
@@ -2481,10 +2482,10 @@ declare const VDataTableVirtual: {
|
|
2481
2482
|
multiSort: boolean;
|
2482
2483
|
mustSort: boolean;
|
2483
2484
|
groupBy: readonly SortItem[];
|
2485
|
+
disableSort: boolean;
|
2484
2486
|
showSelect: boolean;
|
2485
2487
|
expandOnClick: boolean;
|
2486
2488
|
showExpand: boolean;
|
2487
|
-
disableSort: boolean;
|
2488
2489
|
sortAscIcon: IconValue;
|
2489
2490
|
sortDescIcon: IconValue;
|
2490
2491
|
fixedHeader: boolean;
|
@@ -2577,10 +2578,10 @@ declare const VDataTableVirtual: {
|
|
2577
2578
|
multiSort: boolean;
|
2578
2579
|
mustSort: boolean;
|
2579
2580
|
groupBy: readonly SortItem[];
|
2581
|
+
disableSort: boolean;
|
2580
2582
|
showSelect: boolean;
|
2581
2583
|
expandOnClick: boolean;
|
2582
2584
|
showExpand: boolean;
|
2583
|
-
disableSort: boolean;
|
2584
2585
|
sortAscIcon: IconValue;
|
2585
2586
|
sortDescIcon: IconValue;
|
2586
2587
|
fixedHeader: boolean;
|
@@ -2697,10 +2698,10 @@ declare const VDataTableVirtual: {
|
|
2697
2698
|
multiSort: boolean;
|
2698
2699
|
mustSort: boolean;
|
2699
2700
|
groupBy: readonly SortItem[];
|
2701
|
+
disableSort: boolean;
|
2700
2702
|
showSelect: boolean;
|
2701
2703
|
expandOnClick: boolean;
|
2702
2704
|
showExpand: boolean;
|
2703
|
-
disableSort: boolean;
|
2704
2705
|
sortAscIcon: IconValue;
|
2705
2706
|
sortDescIcon: IconValue;
|
2706
2707
|
fixedHeader: boolean;
|
@@ -2793,10 +2794,10 @@ declare const VDataTableVirtual: {
|
|
2793
2794
|
multiSort: boolean;
|
2794
2795
|
mustSort: boolean;
|
2795
2796
|
groupBy: readonly SortItem[];
|
2797
|
+
disableSort: boolean;
|
2796
2798
|
showSelect: boolean;
|
2797
2799
|
expandOnClick: boolean;
|
2798
2800
|
showExpand: boolean;
|
2799
|
-
disableSort: boolean;
|
2800
2801
|
sortAscIcon: IconValue;
|
2801
2802
|
sortDescIcon: IconValue;
|
2802
2803
|
fixedHeader: boolean;
|
@@ -2829,10 +2830,10 @@ declare const VDataTableVirtual: {
|
|
2829
2830
|
multiSort: boolean;
|
2830
2831
|
mustSort: boolean;
|
2831
2832
|
groupBy: readonly SortItem[];
|
2833
|
+
disableSort: boolean;
|
2832
2834
|
showSelect: boolean;
|
2833
2835
|
expandOnClick: boolean;
|
2834
2836
|
showExpand: boolean;
|
2835
|
-
disableSort: boolean;
|
2836
2837
|
sortAscIcon: IconValue;
|
2837
2838
|
sortDescIcon: IconValue;
|
2838
2839
|
fixedHeader: boolean;
|
@@ -2931,10 +2932,10 @@ declare const VDataTableVirtual: {
|
|
2931
2932
|
multiSort: boolean;
|
2932
2933
|
mustSort: boolean;
|
2933
2934
|
groupBy: readonly SortItem[];
|
2935
|
+
disableSort: boolean;
|
2934
2936
|
showSelect: boolean;
|
2935
2937
|
expandOnClick: boolean;
|
2936
2938
|
showExpand: boolean;
|
2937
|
-
disableSort: boolean;
|
2938
2939
|
sortAscIcon: IconValue;
|
2939
2940
|
sortDescIcon: IconValue;
|
2940
2941
|
fixedHeader: boolean;
|
@@ -3379,6 +3380,7 @@ declare const VDataTableServer: {
|
|
3379
3380
|
multiSort: boolean;
|
3380
3381
|
mustSort: boolean;
|
3381
3382
|
groupBy: readonly SortItem[];
|
3383
|
+
disableSort: boolean;
|
3382
3384
|
showSelect: boolean;
|
3383
3385
|
expandOnClick: boolean;
|
3384
3386
|
showExpand: boolean;
|
@@ -3395,7 +3397,6 @@ declare const VDataTableServer: {
|
|
3395
3397
|
value: number;
|
3396
3398
|
})[];
|
3397
3399
|
showCurrentPage: boolean;
|
3398
|
-
disableSort: boolean;
|
3399
3400
|
sortAscIcon: IconValue;
|
3400
3401
|
sortDescIcon: IconValue;
|
3401
3402
|
fixedHeader: boolean;
|
@@ -3497,6 +3498,7 @@ declare const VDataTableServer: {
|
|
3497
3498
|
multiSort: boolean;
|
3498
3499
|
mustSort: boolean;
|
3499
3500
|
groupBy: readonly SortItem[];
|
3501
|
+
disableSort: boolean;
|
3500
3502
|
showSelect: boolean;
|
3501
3503
|
expandOnClick: boolean;
|
3502
3504
|
showExpand: boolean;
|
@@ -3513,7 +3515,6 @@ declare const VDataTableServer: {
|
|
3513
3515
|
value: number;
|
3514
3516
|
})[];
|
3515
3517
|
showCurrentPage: boolean;
|
3516
|
-
disableSort: boolean;
|
3517
3518
|
sortAscIcon: IconValue;
|
3518
3519
|
sortDescIcon: IconValue;
|
3519
3520
|
fixedHeader: boolean;
|
@@ -3607,6 +3608,7 @@ declare const VDataTableServer: {
|
|
3607
3608
|
multiSort: boolean;
|
3608
3609
|
mustSort: boolean;
|
3609
3610
|
groupBy: readonly SortItem[];
|
3611
|
+
disableSort: boolean;
|
3610
3612
|
showSelect: boolean;
|
3611
3613
|
expandOnClick: boolean;
|
3612
3614
|
showExpand: boolean;
|
@@ -3622,7 +3624,6 @@ declare const VDataTableServer: {
|
|
3622
3624
|
value: number;
|
3623
3625
|
})[];
|
3624
3626
|
showCurrentPage: boolean;
|
3625
|
-
disableSort: boolean;
|
3626
3627
|
sortAscIcon: IconValue;
|
3627
3628
|
sortDescIcon: IconValue;
|
3628
3629
|
fixedHeader: boolean;
|
@@ -3757,6 +3758,7 @@ declare const VDataTableServer: {
|
|
3757
3758
|
multiSort: boolean;
|
3758
3759
|
mustSort: boolean;
|
3759
3760
|
groupBy: readonly SortItem[];
|
3761
|
+
disableSort: boolean;
|
3760
3762
|
showSelect: boolean;
|
3761
3763
|
expandOnClick: boolean;
|
3762
3764
|
showExpand: boolean;
|
@@ -3773,7 +3775,6 @@ declare const VDataTableServer: {
|
|
3773
3775
|
value: number;
|
3774
3776
|
})[];
|
3775
3777
|
showCurrentPage: boolean;
|
3776
|
-
disableSort: boolean;
|
3777
3778
|
sortAscIcon: IconValue;
|
3778
3779
|
sortDescIcon: IconValue;
|
3779
3780
|
fixedHeader: boolean;
|
@@ -3867,6 +3868,7 @@ declare const VDataTableServer: {
|
|
3867
3868
|
multiSort: boolean;
|
3868
3869
|
mustSort: boolean;
|
3869
3870
|
groupBy: readonly SortItem[];
|
3871
|
+
disableSort: boolean;
|
3870
3872
|
showSelect: boolean;
|
3871
3873
|
expandOnClick: boolean;
|
3872
3874
|
showExpand: boolean;
|
@@ -3882,7 +3884,6 @@ declare const VDataTableServer: {
|
|
3882
3884
|
value: number;
|
3883
3885
|
})[];
|
3884
3886
|
showCurrentPage: boolean;
|
3885
|
-
disableSort: boolean;
|
3886
3887
|
sortAscIcon: IconValue;
|
3887
3888
|
sortDescIcon: IconValue;
|
3888
3889
|
fixedHeader: boolean;
|
@@ -3917,6 +3918,7 @@ declare const VDataTableServer: {
|
|
3917
3918
|
multiSort: boolean;
|
3918
3919
|
mustSort: boolean;
|
3919
3920
|
groupBy: readonly SortItem[];
|
3921
|
+
disableSort: boolean;
|
3920
3922
|
showSelect: boolean;
|
3921
3923
|
expandOnClick: boolean;
|
3922
3924
|
showExpand: boolean;
|
@@ -3933,7 +3935,6 @@ declare const VDataTableServer: {
|
|
3933
3935
|
value: number;
|
3934
3936
|
})[];
|
3935
3937
|
showCurrentPage: boolean;
|
3936
|
-
disableSort: boolean;
|
3937
3938
|
sortAscIcon: IconValue;
|
3938
3939
|
sortDescIcon: IconValue;
|
3939
3940
|
fixedHeader: boolean;
|
@@ -4035,6 +4036,7 @@ declare const VDataTableServer: {
|
|
4035
4036
|
multiSort: boolean;
|
4036
4037
|
mustSort: boolean;
|
4037
4038
|
groupBy: readonly SortItem[];
|
4039
|
+
disableSort: boolean;
|
4038
4040
|
showSelect: boolean;
|
4039
4041
|
expandOnClick: boolean;
|
4040
4042
|
showExpand: boolean;
|
@@ -4050,7 +4052,6 @@ declare const VDataTableServer: {
|
|
4050
4052
|
value: number;
|
4051
4053
|
})[];
|
4052
4054
|
showCurrentPage: boolean;
|
4053
|
-
disableSort: boolean;
|
4054
4055
|
sortAscIcon: IconValue;
|
4055
4056
|
sortDescIcon: IconValue;
|
4056
4057
|
fixedHeader: boolean;
|
@@ -22286,6 +22286,7 @@ interface Group<T = any> {
|
|
22286
22286
|
declare function provideGroupBy(options: {
|
22287
22287
|
groupBy: Ref<readonly SortItem[]>;
|
22288
22288
|
sortBy: Ref<readonly SortItem[]>;
|
22289
|
+
disableSort?: Ref<boolean>;
|
22289
22290
|
}): {
|
22290
22291
|
sortByWithGroups: vue.ComputedRef<SortItem[]>;
|
22291
22292
|
toggleGroup: (group: Group) => void;
|
@@ -23681,6 +23682,7 @@ declare const VDataTable: {
|
|
23681
23682
|
multiSort: boolean;
|
23682
23683
|
mustSort: boolean;
|
23683
23684
|
groupBy: readonly SortItem[];
|
23685
|
+
disableSort: boolean;
|
23684
23686
|
showSelect: boolean;
|
23685
23687
|
expandOnClick: boolean;
|
23686
23688
|
showExpand: boolean;
|
@@ -23696,7 +23698,6 @@ declare const VDataTable: {
|
|
23696
23698
|
value: number;
|
23697
23699
|
})[];
|
23698
23700
|
showCurrentPage: boolean;
|
23699
|
-
disableSort: boolean;
|
23700
23701
|
sortAscIcon: IconValue;
|
23701
23702
|
sortDescIcon: IconValue;
|
23702
23703
|
fixedHeader: boolean;
|
@@ -23760,6 +23761,7 @@ declare const VDataTable: {
|
|
23760
23761
|
multiSort: boolean;
|
23761
23762
|
mustSort: boolean;
|
23762
23763
|
groupBy: readonly SortItem[];
|
23764
|
+
disableSort: boolean;
|
23763
23765
|
showSelect: boolean;
|
23764
23766
|
expandOnClick: boolean;
|
23765
23767
|
showExpand: boolean;
|
@@ -23775,7 +23777,6 @@ declare const VDataTable: {
|
|
23775
23777
|
value: number;
|
23776
23778
|
})[];
|
23777
23779
|
showCurrentPage: boolean;
|
23778
|
-
disableSort: boolean;
|
23779
23780
|
sortAscIcon: IconValue;
|
23780
23781
|
sortDescIcon: IconValue;
|
23781
23782
|
fixedHeader: boolean;
|
@@ -23830,6 +23831,7 @@ declare const VDataTable: {
|
|
23830
23831
|
multiSort: boolean;
|
23831
23832
|
mustSort: boolean;
|
23832
23833
|
groupBy: readonly SortItem[];
|
23834
|
+
disableSort: boolean;
|
23833
23835
|
showSelect: boolean;
|
23834
23836
|
expandOnClick: boolean;
|
23835
23837
|
showExpand: boolean;
|
@@ -23845,7 +23847,6 @@ declare const VDataTable: {
|
|
23845
23847
|
value: number;
|
23846
23848
|
})[];
|
23847
23849
|
showCurrentPage: boolean;
|
23848
|
-
disableSort: boolean;
|
23849
23850
|
sortAscIcon: IconValue;
|
23850
23851
|
sortDescIcon: IconValue;
|
23851
23852
|
fixedHeader: boolean;
|
@@ -23982,6 +23983,7 @@ declare const VDataTable: {
|
|
23982
23983
|
multiSort: boolean;
|
23983
23984
|
mustSort: boolean;
|
23984
23985
|
groupBy: readonly SortItem[];
|
23986
|
+
disableSort: boolean;
|
23985
23987
|
showSelect: boolean;
|
23986
23988
|
expandOnClick: boolean;
|
23987
23989
|
showExpand: boolean;
|
@@ -23997,7 +23999,6 @@ declare const VDataTable: {
|
|
23997
23999
|
value: number;
|
23998
24000
|
})[];
|
23999
24001
|
showCurrentPage: boolean;
|
24000
|
-
disableSort: boolean;
|
24001
24002
|
sortAscIcon: IconValue;
|
24002
24003
|
sortDescIcon: IconValue;
|
24003
24004
|
fixedHeader: boolean;
|
@@ -24052,6 +24053,7 @@ declare const VDataTable: {
|
|
24052
24053
|
multiSort: boolean;
|
24053
24054
|
mustSort: boolean;
|
24054
24055
|
groupBy: readonly SortItem[];
|
24056
|
+
disableSort: boolean;
|
24055
24057
|
showSelect: boolean;
|
24056
24058
|
expandOnClick: boolean;
|
24057
24059
|
showExpand: boolean;
|
@@ -24067,7 +24069,6 @@ declare const VDataTable: {
|
|
24067
24069
|
value: number;
|
24068
24070
|
})[];
|
24069
24071
|
showCurrentPage: boolean;
|
24070
|
-
disableSort: boolean;
|
24071
24072
|
sortAscIcon: IconValue;
|
24072
24073
|
sortDescIcon: IconValue;
|
24073
24074
|
fixedHeader: boolean;
|
@@ -24104,6 +24105,7 @@ declare const VDataTable: {
|
|
24104
24105
|
multiSort: boolean;
|
24105
24106
|
mustSort: boolean;
|
24106
24107
|
groupBy: readonly SortItem[];
|
24108
|
+
disableSort: boolean;
|
24107
24109
|
showSelect: boolean;
|
24108
24110
|
expandOnClick: boolean;
|
24109
24111
|
showExpand: boolean;
|
@@ -24119,7 +24121,6 @@ declare const VDataTable: {
|
|
24119
24121
|
value: number;
|
24120
24122
|
})[];
|
24121
24123
|
showCurrentPage: boolean;
|
24122
|
-
disableSort: boolean;
|
24123
24124
|
sortAscIcon: IconValue;
|
24124
24125
|
sortDescIcon: IconValue;
|
24125
24126
|
fixedHeader: boolean;
|
@@ -24183,6 +24184,7 @@ declare const VDataTable: {
|
|
24183
24184
|
multiSort: boolean;
|
24184
24185
|
mustSort: boolean;
|
24185
24186
|
groupBy: readonly SortItem[];
|
24187
|
+
disableSort: boolean;
|
24186
24188
|
showSelect: boolean;
|
24187
24189
|
expandOnClick: boolean;
|
24188
24190
|
showExpand: boolean;
|
@@ -24198,7 +24200,6 @@ declare const VDataTable: {
|
|
24198
24200
|
value: number;
|
24199
24201
|
})[];
|
24200
24202
|
showCurrentPage: boolean;
|
24201
|
-
disableSort: boolean;
|
24202
24203
|
sortAscIcon: IconValue;
|
24203
24204
|
sortDescIcon: IconValue;
|
24204
24205
|
fixedHeader: boolean;
|
@@ -25099,10 +25100,10 @@ declare const VDataTableVirtual: {
|
|
25099
25100
|
multiSort: boolean;
|
25100
25101
|
mustSort: boolean;
|
25101
25102
|
groupBy: readonly SortItem[];
|
25103
|
+
disableSort: boolean;
|
25102
25104
|
showSelect: boolean;
|
25103
25105
|
expandOnClick: boolean;
|
25104
25106
|
showExpand: boolean;
|
25105
|
-
disableSort: boolean;
|
25106
25107
|
sortAscIcon: IconValue;
|
25107
25108
|
sortDescIcon: IconValue;
|
25108
25109
|
fixedHeader: boolean;
|
@@ -25201,10 +25202,10 @@ declare const VDataTableVirtual: {
|
|
25201
25202
|
multiSort: boolean;
|
25202
25203
|
mustSort: boolean;
|
25203
25204
|
groupBy: readonly SortItem[];
|
25205
|
+
disableSort: boolean;
|
25204
25206
|
showSelect: boolean;
|
25205
25207
|
expandOnClick: boolean;
|
25206
25208
|
showExpand: boolean;
|
25207
|
-
disableSort: boolean;
|
25208
25209
|
sortAscIcon: IconValue;
|
25209
25210
|
sortDescIcon: IconValue;
|
25210
25211
|
fixedHeader: boolean;
|
@@ -25297,10 +25298,10 @@ declare const VDataTableVirtual: {
|
|
25297
25298
|
multiSort: boolean;
|
25298
25299
|
mustSort: boolean;
|
25299
25300
|
groupBy: readonly SortItem[];
|
25301
|
+
disableSort: boolean;
|
25300
25302
|
showSelect: boolean;
|
25301
25303
|
expandOnClick: boolean;
|
25302
25304
|
showExpand: boolean;
|
25303
|
-
disableSort: boolean;
|
25304
25305
|
sortAscIcon: IconValue;
|
25305
25306
|
sortDescIcon: IconValue;
|
25306
25307
|
fixedHeader: boolean;
|
@@ -25417,10 +25418,10 @@ declare const VDataTableVirtual: {
|
|
25417
25418
|
multiSort: boolean;
|
25418
25419
|
mustSort: boolean;
|
25419
25420
|
groupBy: readonly SortItem[];
|
25421
|
+
disableSort: boolean;
|
25420
25422
|
showSelect: boolean;
|
25421
25423
|
expandOnClick: boolean;
|
25422
25424
|
showExpand: boolean;
|
25423
|
-
disableSort: boolean;
|
25424
25425
|
sortAscIcon: IconValue;
|
25425
25426
|
sortDescIcon: IconValue;
|
25426
25427
|
fixedHeader: boolean;
|
@@ -25513,10 +25514,10 @@ declare const VDataTableVirtual: {
|
|
25513
25514
|
multiSort: boolean;
|
25514
25515
|
mustSort: boolean;
|
25515
25516
|
groupBy: readonly SortItem[];
|
25517
|
+
disableSort: boolean;
|
25516
25518
|
showSelect: boolean;
|
25517
25519
|
expandOnClick: boolean;
|
25518
25520
|
showExpand: boolean;
|
25519
|
-
disableSort: boolean;
|
25520
25521
|
sortAscIcon: IconValue;
|
25521
25522
|
sortDescIcon: IconValue;
|
25522
25523
|
fixedHeader: boolean;
|
@@ -25549,10 +25550,10 @@ declare const VDataTableVirtual: {
|
|
25549
25550
|
multiSort: boolean;
|
25550
25551
|
mustSort: boolean;
|
25551
25552
|
groupBy: readonly SortItem[];
|
25553
|
+
disableSort: boolean;
|
25552
25554
|
showSelect: boolean;
|
25553
25555
|
expandOnClick: boolean;
|
25554
25556
|
showExpand: boolean;
|
25555
|
-
disableSort: boolean;
|
25556
25557
|
sortAscIcon: IconValue;
|
25557
25558
|
sortDescIcon: IconValue;
|
25558
25559
|
fixedHeader: boolean;
|
@@ -25651,10 +25652,10 @@ declare const VDataTableVirtual: {
|
|
25651
25652
|
multiSort: boolean;
|
25652
25653
|
mustSort: boolean;
|
25653
25654
|
groupBy: readonly SortItem[];
|
25655
|
+
disableSort: boolean;
|
25654
25656
|
showSelect: boolean;
|
25655
25657
|
expandOnClick: boolean;
|
25656
25658
|
showExpand: boolean;
|
25657
|
-
disableSort: boolean;
|
25658
25659
|
sortAscIcon: IconValue;
|
25659
25660
|
sortDescIcon: IconValue;
|
25660
25661
|
fixedHeader: boolean;
|
@@ -26099,6 +26100,7 @@ declare const VDataTableServer: {
|
|
26099
26100
|
multiSort: boolean;
|
26100
26101
|
mustSort: boolean;
|
26101
26102
|
groupBy: readonly SortItem[];
|
26103
|
+
disableSort: boolean;
|
26102
26104
|
showSelect: boolean;
|
26103
26105
|
expandOnClick: boolean;
|
26104
26106
|
showExpand: boolean;
|
@@ -26115,7 +26117,6 @@ declare const VDataTableServer: {
|
|
26115
26117
|
value: number;
|
26116
26118
|
})[];
|
26117
26119
|
showCurrentPage: boolean;
|
26118
|
-
disableSort: boolean;
|
26119
26120
|
sortAscIcon: IconValue;
|
26120
26121
|
sortDescIcon: IconValue;
|
26121
26122
|
fixedHeader: boolean;
|
@@ -26217,6 +26218,7 @@ declare const VDataTableServer: {
|
|
26217
26218
|
multiSort: boolean;
|
26218
26219
|
mustSort: boolean;
|
26219
26220
|
groupBy: readonly SortItem[];
|
26221
|
+
disableSort: boolean;
|
26220
26222
|
showSelect: boolean;
|
26221
26223
|
expandOnClick: boolean;
|
26222
26224
|
showExpand: boolean;
|
@@ -26233,7 +26235,6 @@ declare const VDataTableServer: {
|
|
26233
26235
|
value: number;
|
26234
26236
|
})[];
|
26235
26237
|
showCurrentPage: boolean;
|
26236
|
-
disableSort: boolean;
|
26237
26238
|
sortAscIcon: IconValue;
|
26238
26239
|
sortDescIcon: IconValue;
|
26239
26240
|
fixedHeader: boolean;
|
@@ -26327,6 +26328,7 @@ declare const VDataTableServer: {
|
|
26327
26328
|
multiSort: boolean;
|
26328
26329
|
mustSort: boolean;
|
26329
26330
|
groupBy: readonly SortItem[];
|
26331
|
+
disableSort: boolean;
|
26330
26332
|
showSelect: boolean;
|
26331
26333
|
expandOnClick: boolean;
|
26332
26334
|
showExpand: boolean;
|
@@ -26342,7 +26344,6 @@ declare const VDataTableServer: {
|
|
26342
26344
|
value: number;
|
26343
26345
|
})[];
|
26344
26346
|
showCurrentPage: boolean;
|
26345
|
-
disableSort: boolean;
|
26346
26347
|
sortAscIcon: IconValue;
|
26347
26348
|
sortDescIcon: IconValue;
|
26348
26349
|
fixedHeader: boolean;
|
@@ -26477,6 +26478,7 @@ declare const VDataTableServer: {
|
|
26477
26478
|
multiSort: boolean;
|
26478
26479
|
mustSort: boolean;
|
26479
26480
|
groupBy: readonly SortItem[];
|
26481
|
+
disableSort: boolean;
|
26480
26482
|
showSelect: boolean;
|
26481
26483
|
expandOnClick: boolean;
|
26482
26484
|
showExpand: boolean;
|
@@ -26493,7 +26495,6 @@ declare const VDataTableServer: {
|
|
26493
26495
|
value: number;
|
26494
26496
|
})[];
|
26495
26497
|
showCurrentPage: boolean;
|
26496
|
-
disableSort: boolean;
|
26497
26498
|
sortAscIcon: IconValue;
|
26498
26499
|
sortDescIcon: IconValue;
|
26499
26500
|
fixedHeader: boolean;
|
@@ -26587,6 +26588,7 @@ declare const VDataTableServer: {
|
|
26587
26588
|
multiSort: boolean;
|
26588
26589
|
mustSort: boolean;
|
26589
26590
|
groupBy: readonly SortItem[];
|
26591
|
+
disableSort: boolean;
|
26590
26592
|
showSelect: boolean;
|
26591
26593
|
expandOnClick: boolean;
|
26592
26594
|
showExpand: boolean;
|
@@ -26602,7 +26604,6 @@ declare const VDataTableServer: {
|
|
26602
26604
|
value: number;
|
26603
26605
|
})[];
|
26604
26606
|
showCurrentPage: boolean;
|
26605
|
-
disableSort: boolean;
|
26606
26607
|
sortAscIcon: IconValue;
|
26607
26608
|
sortDescIcon: IconValue;
|
26608
26609
|
fixedHeader: boolean;
|
@@ -26637,6 +26638,7 @@ declare const VDataTableServer: {
|
|
26637
26638
|
multiSort: boolean;
|
26638
26639
|
mustSort: boolean;
|
26639
26640
|
groupBy: readonly SortItem[];
|
26641
|
+
disableSort: boolean;
|
26640
26642
|
showSelect: boolean;
|
26641
26643
|
expandOnClick: boolean;
|
26642
26644
|
showExpand: boolean;
|
@@ -26653,7 +26655,6 @@ declare const VDataTableServer: {
|
|
26653
26655
|
value: number;
|
26654
26656
|
})[];
|
26655
26657
|
showCurrentPage: boolean;
|
26656
|
-
disableSort: boolean;
|
26657
26658
|
sortAscIcon: IconValue;
|
26658
26659
|
sortDescIcon: IconValue;
|
26659
26660
|
fixedHeader: boolean;
|
@@ -26755,6 +26756,7 @@ declare const VDataTableServer: {
|
|
26755
26756
|
multiSort: boolean;
|
26756
26757
|
mustSort: boolean;
|
26757
26758
|
groupBy: readonly SortItem[];
|
26759
|
+
disableSort: boolean;
|
26758
26760
|
showSelect: boolean;
|
26759
26761
|
expandOnClick: boolean;
|
26760
26762
|
showExpand: boolean;
|
@@ -26770,7 +26772,6 @@ declare const VDataTableServer: {
|
|
26770
26772
|
value: number;
|
26771
26773
|
})[];
|
26772
26774
|
showCurrentPage: boolean;
|
26773
|
-
disableSort: boolean;
|
26774
26775
|
sortAscIcon: IconValue;
|
26775
26776
|
sortDescIcon: IconValue;
|
26776
26777
|
fixedHeader: boolean;
|
package/lib/entry-bundler.mjs
CHANGED
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
16
16
|
...options
|
17
17
|
});
|
18
18
|
};
|
19
|
-
export const version = "3.6.12-master.2024-07-
|
19
|
+
export const version = "3.6.12-master.2024-07-11";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.mjs";
|
package/lib/framework.mjs
CHANGED