@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
package/dist/vuetify.d.ts
CHANGED
@@ -22618,6 +22618,7 @@ interface Group<T = any> {
|
|
22618
22618
|
declare function provideGroupBy(options: {
|
22619
22619
|
groupBy: Ref<readonly SortItem[]>;
|
22620
22620
|
sortBy: Ref<readonly SortItem[]>;
|
22621
|
+
disableSort?: Ref<boolean>;
|
22621
22622
|
}): {
|
22622
22623
|
sortByWithGroups: vue.ComputedRef<SortItem[]>;
|
22623
22624
|
toggleGroup: (group: Group) => void;
|
@@ -24013,6 +24014,7 @@ declare const VDataTable: {
|
|
24013
24014
|
multiSort: boolean;
|
24014
24015
|
mustSort: boolean;
|
24015
24016
|
groupBy: readonly SortItem[];
|
24017
|
+
disableSort: boolean;
|
24016
24018
|
showSelect: boolean;
|
24017
24019
|
expandOnClick: boolean;
|
24018
24020
|
showExpand: boolean;
|
@@ -24028,7 +24030,6 @@ declare const VDataTable: {
|
|
24028
24030
|
value: number;
|
24029
24031
|
})[];
|
24030
24032
|
showCurrentPage: boolean;
|
24031
|
-
disableSort: boolean;
|
24032
24033
|
sortAscIcon: IconValue;
|
24033
24034
|
sortDescIcon: IconValue;
|
24034
24035
|
fixedHeader: boolean;
|
@@ -24092,6 +24093,7 @@ declare const VDataTable: {
|
|
24092
24093
|
multiSort: boolean;
|
24093
24094
|
mustSort: boolean;
|
24094
24095
|
groupBy: readonly SortItem[];
|
24096
|
+
disableSort: boolean;
|
24095
24097
|
showSelect: boolean;
|
24096
24098
|
expandOnClick: boolean;
|
24097
24099
|
showExpand: boolean;
|
@@ -24107,7 +24109,6 @@ declare const VDataTable: {
|
|
24107
24109
|
value: number;
|
24108
24110
|
})[];
|
24109
24111
|
showCurrentPage: boolean;
|
24110
|
-
disableSort: boolean;
|
24111
24112
|
sortAscIcon: IconValue;
|
24112
24113
|
sortDescIcon: IconValue;
|
24113
24114
|
fixedHeader: boolean;
|
@@ -24162,6 +24163,7 @@ declare const VDataTable: {
|
|
24162
24163
|
multiSort: boolean;
|
24163
24164
|
mustSort: boolean;
|
24164
24165
|
groupBy: readonly SortItem[];
|
24166
|
+
disableSort: boolean;
|
24165
24167
|
showSelect: boolean;
|
24166
24168
|
expandOnClick: boolean;
|
24167
24169
|
showExpand: boolean;
|
@@ -24177,7 +24179,6 @@ declare const VDataTable: {
|
|
24177
24179
|
value: number;
|
24178
24180
|
})[];
|
24179
24181
|
showCurrentPage: boolean;
|
24180
|
-
disableSort: boolean;
|
24181
24182
|
sortAscIcon: IconValue;
|
24182
24183
|
sortDescIcon: IconValue;
|
24183
24184
|
fixedHeader: boolean;
|
@@ -24314,6 +24315,7 @@ declare const VDataTable: {
|
|
24314
24315
|
multiSort: boolean;
|
24315
24316
|
mustSort: boolean;
|
24316
24317
|
groupBy: readonly SortItem[];
|
24318
|
+
disableSort: boolean;
|
24317
24319
|
showSelect: boolean;
|
24318
24320
|
expandOnClick: boolean;
|
24319
24321
|
showExpand: boolean;
|
@@ -24329,7 +24331,6 @@ declare const VDataTable: {
|
|
24329
24331
|
value: number;
|
24330
24332
|
})[];
|
24331
24333
|
showCurrentPage: boolean;
|
24332
|
-
disableSort: boolean;
|
24333
24334
|
sortAscIcon: IconValue;
|
24334
24335
|
sortDescIcon: IconValue;
|
24335
24336
|
fixedHeader: boolean;
|
@@ -24384,6 +24385,7 @@ declare const VDataTable: {
|
|
24384
24385
|
multiSort: boolean;
|
24385
24386
|
mustSort: boolean;
|
24386
24387
|
groupBy: readonly SortItem[];
|
24388
|
+
disableSort: boolean;
|
24387
24389
|
showSelect: boolean;
|
24388
24390
|
expandOnClick: boolean;
|
24389
24391
|
showExpand: boolean;
|
@@ -24399,7 +24401,6 @@ declare const VDataTable: {
|
|
24399
24401
|
value: number;
|
24400
24402
|
})[];
|
24401
24403
|
showCurrentPage: boolean;
|
24402
|
-
disableSort: boolean;
|
24403
24404
|
sortAscIcon: IconValue;
|
24404
24405
|
sortDescIcon: IconValue;
|
24405
24406
|
fixedHeader: boolean;
|
@@ -24436,6 +24437,7 @@ declare const VDataTable: {
|
|
24436
24437
|
multiSort: boolean;
|
24437
24438
|
mustSort: boolean;
|
24438
24439
|
groupBy: readonly SortItem[];
|
24440
|
+
disableSort: boolean;
|
24439
24441
|
showSelect: boolean;
|
24440
24442
|
expandOnClick: boolean;
|
24441
24443
|
showExpand: boolean;
|
@@ -24451,7 +24453,6 @@ declare const VDataTable: {
|
|
24451
24453
|
value: number;
|
24452
24454
|
})[];
|
24453
24455
|
showCurrentPage: boolean;
|
24454
|
-
disableSort: boolean;
|
24455
24456
|
sortAscIcon: IconValue;
|
24456
24457
|
sortDescIcon: IconValue;
|
24457
24458
|
fixedHeader: boolean;
|
@@ -24515,6 +24516,7 @@ declare const VDataTable: {
|
|
24515
24516
|
multiSort: boolean;
|
24516
24517
|
mustSort: boolean;
|
24517
24518
|
groupBy: readonly SortItem[];
|
24519
|
+
disableSort: boolean;
|
24518
24520
|
showSelect: boolean;
|
24519
24521
|
expandOnClick: boolean;
|
24520
24522
|
showExpand: boolean;
|
@@ -24530,7 +24532,6 @@ declare const VDataTable: {
|
|
24530
24532
|
value: number;
|
24531
24533
|
})[];
|
24532
24534
|
showCurrentPage: boolean;
|
24533
|
-
disableSort: boolean;
|
24534
24535
|
sortAscIcon: IconValue;
|
24535
24536
|
sortDescIcon: IconValue;
|
24536
24537
|
fixedHeader: boolean;
|
@@ -25431,10 +25432,10 @@ declare const VDataTableVirtual: {
|
|
25431
25432
|
multiSort: boolean;
|
25432
25433
|
mustSort: boolean;
|
25433
25434
|
groupBy: readonly SortItem[];
|
25435
|
+
disableSort: boolean;
|
25434
25436
|
showSelect: boolean;
|
25435
25437
|
expandOnClick: boolean;
|
25436
25438
|
showExpand: boolean;
|
25437
|
-
disableSort: boolean;
|
25438
25439
|
sortAscIcon: IconValue;
|
25439
25440
|
sortDescIcon: IconValue;
|
25440
25441
|
fixedHeader: boolean;
|
@@ -25533,10 +25534,10 @@ declare const VDataTableVirtual: {
|
|
25533
25534
|
multiSort: boolean;
|
25534
25535
|
mustSort: boolean;
|
25535
25536
|
groupBy: readonly SortItem[];
|
25537
|
+
disableSort: boolean;
|
25536
25538
|
showSelect: boolean;
|
25537
25539
|
expandOnClick: boolean;
|
25538
25540
|
showExpand: boolean;
|
25539
|
-
disableSort: boolean;
|
25540
25541
|
sortAscIcon: IconValue;
|
25541
25542
|
sortDescIcon: IconValue;
|
25542
25543
|
fixedHeader: boolean;
|
@@ -25629,10 +25630,10 @@ declare const VDataTableVirtual: {
|
|
25629
25630
|
multiSort: boolean;
|
25630
25631
|
mustSort: boolean;
|
25631
25632
|
groupBy: readonly SortItem[];
|
25633
|
+
disableSort: boolean;
|
25632
25634
|
showSelect: boolean;
|
25633
25635
|
expandOnClick: boolean;
|
25634
25636
|
showExpand: boolean;
|
25635
|
-
disableSort: boolean;
|
25636
25637
|
sortAscIcon: IconValue;
|
25637
25638
|
sortDescIcon: IconValue;
|
25638
25639
|
fixedHeader: boolean;
|
@@ -25749,10 +25750,10 @@ declare const VDataTableVirtual: {
|
|
25749
25750
|
multiSort: boolean;
|
25750
25751
|
mustSort: boolean;
|
25751
25752
|
groupBy: readonly SortItem[];
|
25753
|
+
disableSort: boolean;
|
25752
25754
|
showSelect: boolean;
|
25753
25755
|
expandOnClick: boolean;
|
25754
25756
|
showExpand: boolean;
|
25755
|
-
disableSort: boolean;
|
25756
25757
|
sortAscIcon: IconValue;
|
25757
25758
|
sortDescIcon: IconValue;
|
25758
25759
|
fixedHeader: boolean;
|
@@ -25845,10 +25846,10 @@ declare const VDataTableVirtual: {
|
|
25845
25846
|
multiSort: boolean;
|
25846
25847
|
mustSort: boolean;
|
25847
25848
|
groupBy: readonly SortItem[];
|
25849
|
+
disableSort: boolean;
|
25848
25850
|
showSelect: boolean;
|
25849
25851
|
expandOnClick: boolean;
|
25850
25852
|
showExpand: boolean;
|
25851
|
-
disableSort: boolean;
|
25852
25853
|
sortAscIcon: IconValue;
|
25853
25854
|
sortDescIcon: IconValue;
|
25854
25855
|
fixedHeader: boolean;
|
@@ -25881,10 +25882,10 @@ declare const VDataTableVirtual: {
|
|
25881
25882
|
multiSort: boolean;
|
25882
25883
|
mustSort: boolean;
|
25883
25884
|
groupBy: readonly SortItem[];
|
25885
|
+
disableSort: boolean;
|
25884
25886
|
showSelect: boolean;
|
25885
25887
|
expandOnClick: boolean;
|
25886
25888
|
showExpand: boolean;
|
25887
|
-
disableSort: boolean;
|
25888
25889
|
sortAscIcon: IconValue;
|
25889
25890
|
sortDescIcon: IconValue;
|
25890
25891
|
fixedHeader: boolean;
|
@@ -25983,10 +25984,10 @@ declare const VDataTableVirtual: {
|
|
25983
25984
|
multiSort: boolean;
|
25984
25985
|
mustSort: boolean;
|
25985
25986
|
groupBy: readonly SortItem[];
|
25987
|
+
disableSort: boolean;
|
25986
25988
|
showSelect: boolean;
|
25987
25989
|
expandOnClick: boolean;
|
25988
25990
|
showExpand: boolean;
|
25989
|
-
disableSort: boolean;
|
25990
25991
|
sortAscIcon: IconValue;
|
25991
25992
|
sortDescIcon: IconValue;
|
25992
25993
|
fixedHeader: boolean;
|
@@ -26431,6 +26432,7 @@ declare const VDataTableServer: {
|
|
26431
26432
|
multiSort: boolean;
|
26432
26433
|
mustSort: boolean;
|
26433
26434
|
groupBy: readonly SortItem[];
|
26435
|
+
disableSort: boolean;
|
26434
26436
|
showSelect: boolean;
|
26435
26437
|
expandOnClick: boolean;
|
26436
26438
|
showExpand: boolean;
|
@@ -26447,7 +26449,6 @@ declare const VDataTableServer: {
|
|
26447
26449
|
value: number;
|
26448
26450
|
})[];
|
26449
26451
|
showCurrentPage: boolean;
|
26450
|
-
disableSort: boolean;
|
26451
26452
|
sortAscIcon: IconValue;
|
26452
26453
|
sortDescIcon: IconValue;
|
26453
26454
|
fixedHeader: boolean;
|
@@ -26549,6 +26550,7 @@ declare const VDataTableServer: {
|
|
26549
26550
|
multiSort: boolean;
|
26550
26551
|
mustSort: boolean;
|
26551
26552
|
groupBy: readonly SortItem[];
|
26553
|
+
disableSort: boolean;
|
26552
26554
|
showSelect: boolean;
|
26553
26555
|
expandOnClick: boolean;
|
26554
26556
|
showExpand: boolean;
|
@@ -26565,7 +26567,6 @@ declare const VDataTableServer: {
|
|
26565
26567
|
value: number;
|
26566
26568
|
})[];
|
26567
26569
|
showCurrentPage: boolean;
|
26568
|
-
disableSort: boolean;
|
26569
26570
|
sortAscIcon: IconValue;
|
26570
26571
|
sortDescIcon: IconValue;
|
26571
26572
|
fixedHeader: boolean;
|
@@ -26659,6 +26660,7 @@ declare const VDataTableServer: {
|
|
26659
26660
|
multiSort: boolean;
|
26660
26661
|
mustSort: boolean;
|
26661
26662
|
groupBy: readonly SortItem[];
|
26663
|
+
disableSort: boolean;
|
26662
26664
|
showSelect: boolean;
|
26663
26665
|
expandOnClick: boolean;
|
26664
26666
|
showExpand: boolean;
|
@@ -26674,7 +26676,6 @@ declare const VDataTableServer: {
|
|
26674
26676
|
value: number;
|
26675
26677
|
})[];
|
26676
26678
|
showCurrentPage: boolean;
|
26677
|
-
disableSort: boolean;
|
26678
26679
|
sortAscIcon: IconValue;
|
26679
26680
|
sortDescIcon: IconValue;
|
26680
26681
|
fixedHeader: boolean;
|
@@ -26809,6 +26810,7 @@ declare const VDataTableServer: {
|
|
26809
26810
|
multiSort: boolean;
|
26810
26811
|
mustSort: boolean;
|
26811
26812
|
groupBy: readonly SortItem[];
|
26813
|
+
disableSort: boolean;
|
26812
26814
|
showSelect: boolean;
|
26813
26815
|
expandOnClick: boolean;
|
26814
26816
|
showExpand: boolean;
|
@@ -26825,7 +26827,6 @@ declare const VDataTableServer: {
|
|
26825
26827
|
value: number;
|
26826
26828
|
})[];
|
26827
26829
|
showCurrentPage: boolean;
|
26828
|
-
disableSort: boolean;
|
26829
26830
|
sortAscIcon: IconValue;
|
26830
26831
|
sortDescIcon: IconValue;
|
26831
26832
|
fixedHeader: boolean;
|
@@ -26919,6 +26920,7 @@ declare const VDataTableServer: {
|
|
26919
26920
|
multiSort: boolean;
|
26920
26921
|
mustSort: boolean;
|
26921
26922
|
groupBy: readonly SortItem[];
|
26923
|
+
disableSort: boolean;
|
26922
26924
|
showSelect: boolean;
|
26923
26925
|
expandOnClick: boolean;
|
26924
26926
|
showExpand: boolean;
|
@@ -26934,7 +26936,6 @@ declare const VDataTableServer: {
|
|
26934
26936
|
value: number;
|
26935
26937
|
})[];
|
26936
26938
|
showCurrentPage: boolean;
|
26937
|
-
disableSort: boolean;
|
26938
26939
|
sortAscIcon: IconValue;
|
26939
26940
|
sortDescIcon: IconValue;
|
26940
26941
|
fixedHeader: boolean;
|
@@ -26969,6 +26970,7 @@ declare const VDataTableServer: {
|
|
26969
26970
|
multiSort: boolean;
|
26970
26971
|
mustSort: boolean;
|
26971
26972
|
groupBy: readonly SortItem[];
|
26973
|
+
disableSort: boolean;
|
26972
26974
|
showSelect: boolean;
|
26973
26975
|
expandOnClick: boolean;
|
26974
26976
|
showExpand: boolean;
|
@@ -26985,7 +26987,6 @@ declare const VDataTableServer: {
|
|
26985
26987
|
value: number;
|
26986
26988
|
})[];
|
26987
26989
|
showCurrentPage: boolean;
|
26988
|
-
disableSort: boolean;
|
26989
26990
|
sortAscIcon: IconValue;
|
26990
26991
|
sortDescIcon: IconValue;
|
26991
26992
|
fixedHeader: boolean;
|
@@ -27087,6 +27088,7 @@ declare const VDataTableServer: {
|
|
27087
27088
|
multiSort: boolean;
|
27088
27089
|
mustSort: boolean;
|
27089
27090
|
groupBy: readonly SortItem[];
|
27091
|
+
disableSort: boolean;
|
27090
27092
|
showSelect: boolean;
|
27091
27093
|
expandOnClick: boolean;
|
27092
27094
|
showExpand: boolean;
|
@@ -27102,7 +27104,6 @@ declare const VDataTableServer: {
|
|
27102
27104
|
value: number;
|
27103
27105
|
})[];
|
27104
27106
|
showCurrentPage: boolean;
|
27105
|
-
disableSort: boolean;
|
27106
27107
|
sortAscIcon: IconValue;
|
27107
27108
|
sortDescIcon: IconValue;
|
27108
27109
|
fixedHeader: boolean;
|
@@ -72754,26 +72755,26 @@ declare module '@vue/runtime-core' {
|
|
72754
72755
|
}
|
72755
72756
|
|
72756
72757
|
export interface GlobalComponents {
|
72758
|
+
VApp: typeof import('vuetify/components')['VApp']
|
72759
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
72757
72760
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
72758
72761
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
72759
72762
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
72760
|
-
|
72761
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
72763
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
72762
72764
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
72763
|
-
|
72764
|
-
|
72765
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
72766
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
72767
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
72765
72768
|
VBanner: typeof import('vuetify/components')['VBanner']
|
72766
72769
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
72767
72770
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
72768
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
72769
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
72770
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
72771
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
72772
72771
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
72773
72772
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
72774
72773
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
72775
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
72776
72774
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
72775
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
72776
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
72777
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
72777
72778
|
VCard: typeof import('vuetify/components')['VCard']
|
72778
72779
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
72779
72780
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
@@ -72782,52 +72783,49 @@ declare module '@vue/runtime-core' {
|
|
72782
72783
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
72783
72784
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
72784
72785
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
72785
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
72786
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
72787
72786
|
VChip: typeof import('vuetify/components')['VChip']
|
72788
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
72789
72787
|
VCode: typeof import('vuetify/components')['VCode']
|
72788
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
72790
72789
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
72791
72790
|
VCounter: typeof import('vuetify/components')['VCounter']
|
72792
|
-
VDataTable: typeof import('vuetify/components')['VDataTable']
|
72793
|
-
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
72794
|
-
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
72795
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
72796
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
72797
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
72798
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
72799
72791
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
72792
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
72800
72793
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
72801
72794
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
72802
72795
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
72803
72796
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
72804
72797
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
72805
72798
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
72806
|
-
|
72799
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
72800
|
+
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
72801
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
72802
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
72803
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
72804
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
72805
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
72806
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
72807
72807
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
72808
|
-
|
72809
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
72808
|
+
VFab: typeof import('vuetify/components')['VFab']
|
72810
72809
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
72811
72810
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
72812
72811
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
72813
72812
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
72814
72813
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
72815
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
72816
|
-
VFab: typeof import('vuetify/components')['VFab']
|
72817
72814
|
VFooter: typeof import('vuetify/components')['VFooter']
|
72818
72815
|
VIcon: typeof import('vuetify/components')['VIcon']
|
72819
72816
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
72820
72817
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
72821
72818
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
72822
72819
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
72823
|
-
|
72820
|
+
VField: typeof import('vuetify/components')['VField']
|
72821
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
72824
72822
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
72825
|
-
|
72826
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
72827
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
72828
|
-
VMain: typeof import('vuetify/components')['VMain']
|
72823
|
+
VImg: typeof import('vuetify/components')['VImg']
|
72829
72824
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
72830
72825
|
VItem: typeof import('vuetify/components')['VItem']
|
72826
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
72827
|
+
VInput: typeof import('vuetify/components')['VInput']
|
72828
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
72831
72829
|
VList: typeof import('vuetify/components')['VList']
|
72832
72830
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
72833
72831
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -72837,48 +72835,51 @@ declare module '@vue/runtime-core' {
|
|
72837
72835
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
72838
72836
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
72839
72837
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
72840
|
-
|
72841
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
72838
|
+
VMain: typeof import('vuetify/components')['VMain']
|
72842
72839
|
VMenu: typeof import('vuetify/components')['VMenu']
|
72843
|
-
|
72840
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
72841
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
72844
72842
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
72843
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
72845
72844
|
VPagination: typeof import('vuetify/components')['VPagination']
|
72846
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
72847
72845
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
72848
|
-
|
72846
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
72849
72847
|
VRating: typeof import('vuetify/components')['VRating']
|
72848
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
72850
72849
|
VSelect: typeof import('vuetify/components')['VSelect']
|
72851
72850
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
72852
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
72853
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
72854
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
72855
72851
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
72856
72852
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
72853
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
72854
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
72857
72855
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
72858
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
72859
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
72860
72856
|
VStepper: typeof import('vuetify/components')['VStepper']
|
72861
72857
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
72862
72858
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
72863
72859
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
72864
72860
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
72865
72861
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
72866
|
-
|
72862
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
72863
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
72867
72864
|
VTab: typeof import('vuetify/components')['VTab']
|
72868
72865
|
VTabs: typeof import('vuetify/components')['VTabs']
|
72869
72866
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
72870
72867
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
72868
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
72869
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
72871
72870
|
VTable: typeof import('vuetify/components')['VTable']
|
72872
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
72873
|
-
VToolbar: typeof import('vuetify/components')['VToolbar']
|
72874
|
-
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
72875
|
-
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
72876
72871
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
72872
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
72877
72873
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
72878
72874
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
72879
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
72880
72875
|
VWindow: typeof import('vuetify/components')['VWindow']
|
72881
72876
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
72877
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
72878
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
72879
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
72880
|
+
VToolbar: typeof import('vuetify/components')['VToolbar']
|
72881
|
+
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
72882
|
+
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
72882
72883
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
72883
72884
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
72884
72885
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
@@ -72893,12 +72894,12 @@ declare module '@vue/runtime-core' {
|
|
72893
72894
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
72894
72895
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
72895
72896
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
72896
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
72897
72897
|
VRadio: typeof import('vuetify/components')['VRadio']
|
72898
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
72898
72899
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
72899
72900
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
72900
|
-
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
72901
72901
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
72902
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
72902
72903
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
72903
72904
|
VValidation: typeof import('vuetify/components')['VValidation']
|
72904
72905
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
@@ -72930,14 +72931,14 @@ declare module '@vue/runtime-core' {
|
|
72930
72931
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
72931
72932
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
72932
72933
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
72933
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
72934
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
72935
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
72936
72934
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
72937
72935
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
72938
72936
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
72937
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
72938
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
72939
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
72939
72940
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
72940
|
-
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
72941
72941
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
72942
|
+
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
72942
72943
|
}
|
72943
72944
|
}
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.12-master.2024-07-
|
2
|
+
* Vuetify v3.6.12-master.2024-07-11
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -18323,6 +18323,7 @@ function createGroupBy(props) {
|
|
18323
18323
|
}
|
18324
18324
|
function provideGroupBy(options) {
|
18325
18325
|
const {
|
18326
|
+
disableSort,
|
18326
18327
|
groupBy,
|
18327
18328
|
sortBy
|
18328
18329
|
} = options;
|
@@ -18331,7 +18332,7 @@ function provideGroupBy(options) {
|
|
18331
18332
|
return groupBy.value.map(val => ({
|
18332
18333
|
...val,
|
18333
18334
|
order: val.order ?? false
|
18334
|
-
})).concat(sortBy.value);
|
18335
|
+
})).concat(disableSort?.value ? [] : sortBy.value);
|
18335
18336
|
});
|
18336
18337
|
function isGroupOpen(group) {
|
18337
18338
|
return opened.value.has(group.id);
|
@@ -18840,7 +18841,7 @@ function useSort() {
|
|
18840
18841
|
function useSortedItems(props, items, sortBy, options) {
|
18841
18842
|
const locale = useLocale();
|
18842
18843
|
const sortedItems = computed(() => {
|
18843
|
-
if (!sortBy.value.length
|
18844
|
+
if (!sortBy.value.length) return items.value;
|
18844
18845
|
return sortItems(items.value, sortBy.value, locale.current.value, {
|
18845
18846
|
transform: options?.transform,
|
18846
18847
|
sortFunctions: {
|
@@ -20592,6 +20593,9 @@ const VDataTable = genericComponent()({
|
|
20592
20593
|
page,
|
20593
20594
|
itemsPerPage
|
20594
20595
|
} = createPagination(props);
|
20596
|
+
const {
|
20597
|
+
disableSort
|
20598
|
+
} = toRefs(props);
|
20595
20599
|
const {
|
20596
20600
|
columns,
|
20597
20601
|
headers,
|
@@ -20629,7 +20633,8 @@ const VDataTable = genericComponent()({
|
|
20629
20633
|
toggleGroup
|
20630
20634
|
} = provideGroupBy({
|
20631
20635
|
groupBy,
|
20632
|
-
sortBy
|
20636
|
+
sortBy,
|
20637
|
+
disableSort
|
20633
20638
|
});
|
20634
20639
|
const {
|
20635
20640
|
sortedItems
|
@@ -20772,6 +20777,9 @@ const VDataTableVirtual = genericComponent()({
|
|
20772
20777
|
multiSort,
|
20773
20778
|
mustSort
|
20774
20779
|
} = createSort(props);
|
20780
|
+
const {
|
20781
|
+
disableSort
|
20782
|
+
} = toRefs(props);
|
20775
20783
|
const {
|
20776
20784
|
columns,
|
20777
20785
|
headers,
|
@@ -20808,7 +20816,8 @@ const VDataTableVirtual = genericComponent()({
|
|
20808
20816
|
toggleGroup
|
20809
20817
|
} = provideGroupBy({
|
20810
20818
|
groupBy,
|
20811
|
-
sortBy
|
20819
|
+
sortBy,
|
20820
|
+
disableSort
|
20812
20821
|
});
|
20813
20822
|
const {
|
20814
20823
|
sortedItems
|
@@ -20997,6 +21006,9 @@ const VDataTableServer = genericComponent()({
|
|
20997
21006
|
page,
|
20998
21007
|
itemsPerPage
|
20999
21008
|
} = createPagination(props);
|
21009
|
+
const {
|
21010
|
+
disableSort
|
21011
|
+
} = toRefs(props);
|
21000
21012
|
const itemsLength = computed(() => parseInt(props.itemsLength, 10));
|
21001
21013
|
const {
|
21002
21014
|
columns,
|
@@ -21024,7 +21036,8 @@ const VDataTableServer = genericComponent()({
|
|
21024
21036
|
extractRows
|
21025
21037
|
} = provideGroupBy({
|
21026
21038
|
groupBy,
|
21027
|
-
sortBy
|
21039
|
+
sortBy,
|
21040
|
+
disableSort
|
21028
21041
|
});
|
21029
21042
|
const {
|
21030
21043
|
pageCount,
|
@@ -28106,7 +28119,7 @@ function createVuetify$1() {
|
|
28106
28119
|
goTo
|
28107
28120
|
};
|
28108
28121
|
}
|
28109
|
-
const version$1 = "3.6.12-master.2024-07-
|
28122
|
+
const version$1 = "3.6.12-master.2024-07-11";
|
28110
28123
|
createVuetify$1.version = version$1;
|
28111
28124
|
|
28112
28125
|
// Vue's inject() can only be used in setup
|
@@ -28131,7 +28144,7 @@ const createVuetify = function () {
|
|
28131
28144
|
...options
|
28132
28145
|
});
|
28133
28146
|
};
|
28134
|
-
const version = "3.6.12-master.2024-07-
|
28147
|
+
const version = "3.6.12-master.2024-07-11";
|
28135
28148
|
createVuetify.version = version;
|
28136
28149
|
|
28137
28150
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|