@vuetify/nightly 3.4.10-dev.2024-01-17 → 3.4.10-dev.2024-01-18
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 +3 -2
- package/dist/json/attributes.json +12 -0
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +98 -98
- package/dist/json/tags.json +3 -0
- package/dist/json/web-types.json +28 -1
- package/dist/vuetify-labs.css +1232 -1231
- package/dist/vuetify-labs.d.ts +30 -0
- package/dist/vuetify-labs.esm.js +8 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +8 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +321 -320
- package/dist/vuetify.d.ts +60 -30
- package/dist/vuetify.esm.js +8 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +8 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -6
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.css +2 -1
- package/lib/components/VDataTable/VDataTable.sass +2 -1
- package/lib/components/VDataTable/VDataTableHeaders.mjs +6 -2
- package/lib/components/VDataTable/VDataTableHeaders.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +30 -0
- package/lib/components/index.d.mts +30 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +30 -30
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -23142,6 +23142,7 @@ declare const VDataTable: {
|
|
|
23142
23142
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
23143
23143
|
filterKeys?: FilterKeys | undefined;
|
|
23144
23144
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
23145
|
+
headerProps?: Record<string, any> | undefined;
|
|
23145
23146
|
} & {
|
|
23146
23147
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
23147
23148
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -23234,6 +23235,7 @@ declare const VDataTable: {
|
|
|
23234
23235
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
23235
23236
|
filterKeys?: FilterKeys | undefined;
|
|
23236
23237
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
23238
|
+
headerProps?: Record<string, any> | undefined;
|
|
23237
23239
|
} & {
|
|
23238
23240
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
23239
23241
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -23491,6 +23493,7 @@ declare const VDataTable: {
|
|
|
23491
23493
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
23492
23494
|
filterKeys?: FilterKeys | undefined;
|
|
23493
23495
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
23496
|
+
headerProps?: Record<string, any> | undefined;
|
|
23494
23497
|
} & {
|
|
23495
23498
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
23496
23499
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -23621,6 +23624,7 @@ declare const VDataTable: {
|
|
|
23621
23624
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
23622
23625
|
filterKeys?: FilterKeys | undefined;
|
|
23623
23626
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
23627
|
+
headerProps?: Record<string, any> | undefined;
|
|
23624
23628
|
} & {
|
|
23625
23629
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
23626
23630
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -23912,6 +23916,9 @@ declare const VDataTable: {
|
|
|
23912
23916
|
type: vue.PropType<IconValue>;
|
|
23913
23917
|
default: string;
|
|
23914
23918
|
};
|
|
23919
|
+
headerProps: {
|
|
23920
|
+
type: vue.PropType<Record<string, any>>;
|
|
23921
|
+
};
|
|
23915
23922
|
sortBy: {
|
|
23916
23923
|
type: vue.PropType<readonly SortItem[]>;
|
|
23917
23924
|
default: () => never[];
|
|
@@ -24086,6 +24093,9 @@ declare const VDataTable: {
|
|
|
24086
24093
|
type: vue.PropType<IconValue>;
|
|
24087
24094
|
default: string;
|
|
24088
24095
|
};
|
|
24096
|
+
headerProps: {
|
|
24097
|
+
type: vue.PropType<Record<string, any>>;
|
|
24098
|
+
};
|
|
24089
24099
|
sortBy: {
|
|
24090
24100
|
type: vue.PropType<readonly SortItem[]>;
|
|
24091
24101
|
default: () => never[];
|
|
@@ -24519,6 +24529,7 @@ declare const VDataTableVirtual: {
|
|
|
24519
24529
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
24520
24530
|
filterKeys?: FilterKeys | undefined;
|
|
24521
24531
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
24532
|
+
headerProps?: Record<string, any> | undefined;
|
|
24522
24533
|
} & {
|
|
24523
24534
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
24524
24535
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -24589,6 +24600,7 @@ declare const VDataTableVirtual: {
|
|
|
24589
24600
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
24590
24601
|
filterKeys?: FilterKeys | undefined;
|
|
24591
24602
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
24603
|
+
headerProps?: Record<string, any> | undefined;
|
|
24592
24604
|
} & {
|
|
24593
24605
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
24594
24606
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -24795,6 +24807,7 @@ declare const VDataTableVirtual: {
|
|
|
24795
24807
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
24796
24808
|
filterKeys?: FilterKeys | undefined;
|
|
24797
24809
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
24810
|
+
headerProps?: Record<string, any> | undefined;
|
|
24798
24811
|
} & {
|
|
24799
24812
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
24800
24813
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -24890,6 +24903,7 @@ declare const VDataTableVirtual: {
|
|
|
24890
24903
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
24891
24904
|
filterKeys?: FilterKeys | undefined;
|
|
24892
24905
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
24906
|
+
headerProps?: Record<string, any> | undefined;
|
|
24893
24907
|
} & {
|
|
24894
24908
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
24895
24909
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -25100,6 +25114,9 @@ declare const VDataTableVirtual: {
|
|
|
25100
25114
|
type: vue.PropType<IconValue>;
|
|
25101
25115
|
default: string;
|
|
25102
25116
|
};
|
|
25117
|
+
headerProps: {
|
|
25118
|
+
type: vue.PropType<Record<string, any>>;
|
|
25119
|
+
};
|
|
25103
25120
|
sortBy: {
|
|
25104
25121
|
type: vue.PropType<readonly SortItem[]>;
|
|
25105
25122
|
default: () => never[];
|
|
@@ -25219,6 +25236,9 @@ declare const VDataTableVirtual: {
|
|
|
25219
25236
|
type: vue.PropType<IconValue>;
|
|
25220
25237
|
default: string;
|
|
25221
25238
|
};
|
|
25239
|
+
headerProps: {
|
|
25240
|
+
type: vue.PropType<Record<string, any>>;
|
|
25241
|
+
};
|
|
25222
25242
|
sortBy: {
|
|
25223
25243
|
type: vue.PropType<readonly SortItem[]>;
|
|
25224
25244
|
default: () => never[];
|
|
@@ -25366,6 +25386,7 @@ declare const VDataTableServer: {
|
|
|
25366
25386
|
}[] | undefined;
|
|
25367
25387
|
theme?: string | undefined;
|
|
25368
25388
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
25389
|
+
headerProps?: Record<string, any> | undefined;
|
|
25369
25390
|
} & {
|
|
25370
25391
|
"onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
|
|
25371
25392
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -25452,6 +25473,7 @@ declare const VDataTableServer: {
|
|
|
25452
25473
|
}[] | undefined;
|
|
25453
25474
|
theme?: string | undefined;
|
|
25454
25475
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
25476
|
+
headerProps?: Record<string, any> | undefined;
|
|
25455
25477
|
} & {
|
|
25456
25478
|
"onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
|
|
25457
25479
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -25702,6 +25724,7 @@ declare const VDataTableServer: {
|
|
|
25702
25724
|
}[] | undefined;
|
|
25703
25725
|
theme?: string | undefined;
|
|
25704
25726
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
25727
|
+
headerProps?: Record<string, any> | undefined;
|
|
25705
25728
|
} & {
|
|
25706
25729
|
"onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
|
|
25707
25730
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -25825,6 +25848,7 @@ declare const VDataTableServer: {
|
|
|
25825
25848
|
}[] | undefined;
|
|
25826
25849
|
theme?: string | undefined;
|
|
25827
25850
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
25851
|
+
headerProps?: Record<string, any> | undefined;
|
|
25828
25852
|
} & {
|
|
25829
25853
|
"onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
|
|
25830
25854
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -26104,6 +26128,9 @@ declare const VDataTableServer: {
|
|
|
26104
26128
|
type: vue.PropType<IconValue>;
|
|
26105
26129
|
default: string;
|
|
26106
26130
|
};
|
|
26131
|
+
headerProps: {
|
|
26132
|
+
type: vue.PropType<Record<string, any>>;
|
|
26133
|
+
};
|
|
26107
26134
|
sortBy: {
|
|
26108
26135
|
type: vue.PropType<readonly SortItem[]>;
|
|
26109
26136
|
default: () => never[];
|
|
@@ -26274,6 +26301,9 @@ declare const VDataTableServer: {
|
|
|
26274
26301
|
type: vue.PropType<IconValue>;
|
|
26275
26302
|
default: string;
|
|
26276
26303
|
};
|
|
26304
|
+
headerProps: {
|
|
26305
|
+
type: vue.PropType<Record<string, any>>;
|
|
26306
|
+
};
|
|
26277
26307
|
sortBy: {
|
|
26278
26308
|
type: vue.PropType<readonly SortItem[]>;
|
|
26279
26309
|
default: () => never[];
|
package/dist/vuetify-labs.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.4.10-dev.2024-01-
|
|
2
|
+
* Vuetify v3.4.10-dev.2024-01-18
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -18629,6 +18629,9 @@ const makeVDataTableHeadersProps = propsFactory({
|
|
|
18629
18629
|
type: IconValue,
|
|
18630
18630
|
default: '$sortDesc'
|
|
18631
18631
|
},
|
|
18632
|
+
headerProps: {
|
|
18633
|
+
type: Object
|
|
18634
|
+
},
|
|
18632
18635
|
...makeLoaderProps()
|
|
18633
18636
|
}, 'VDataTableHeaders');
|
|
18634
18637
|
const VDataTableHeaders = genericComponent()({
|
|
@@ -18691,6 +18694,7 @@ const VDataTableHeaders = genericComponent()({
|
|
|
18691
18694
|
y
|
|
18692
18695
|
} = _ref2;
|
|
18693
18696
|
const noPadding = column.key === 'data-table-select' || column.key === 'data-table-expand';
|
|
18697
|
+
const headerProps = mergeProps(props.headerProps ?? {}, column.headerProps ?? {});
|
|
18694
18698
|
return createVNode(VDataTableColumn, mergeProps({
|
|
18695
18699
|
"tag": "th",
|
|
18696
18700
|
"align": column.align,
|
|
@@ -18711,7 +18715,7 @@ const VDataTableHeaders = genericComponent()({
|
|
|
18711
18715
|
"fixed": column.fixed,
|
|
18712
18716
|
"lastFixed": column.lastFixed,
|
|
18713
18717
|
"noPadding": noPadding
|
|
18714
|
-
},
|
|
18718
|
+
}, headerProps), {
|
|
18715
18719
|
default: () => {
|
|
18716
18720
|
const columnSlotName = `header.${column.key}`;
|
|
18717
18721
|
const columnSlotProps = {
|
|
@@ -26051,7 +26055,7 @@ function createVuetify$1() {
|
|
|
26051
26055
|
date
|
|
26052
26056
|
};
|
|
26053
26057
|
}
|
|
26054
|
-
const version$1 = "3.4.10-dev.2024-01-
|
|
26058
|
+
const version$1 = "3.4.10-dev.2024-01-18";
|
|
26055
26059
|
createVuetify$1.version = version$1;
|
|
26056
26060
|
|
|
26057
26061
|
// Vue's inject() can only be used in setup
|
|
@@ -26065,7 +26069,7 @@ function inject(key) {
|
|
|
26065
26069
|
|
|
26066
26070
|
/* eslint-disable local-rules/sort-imports */
|
|
26067
26071
|
|
|
26068
|
-
const version = "3.4.10-dev.2024-01-
|
|
26072
|
+
const version = "3.4.10-dev.2024-01-18";
|
|
26069
26073
|
|
|
26070
26074
|
/* eslint-disable local-rules/sort-imports */
|
|
26071
26075
|
|