@vuetify/nightly 3.6.4-master.2024-05-09 → 3.6.4-master.2024-05-10
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 +24 -0
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +134 -134
- package/dist/json/tags.json +6 -0
- package/dist/json/web-types.json +61 -1
- package/dist/vuetify-labs.css +1987 -1987
- package/dist/vuetify-labs.d.ts +54 -0
- package/dist/vuetify-labs.esm.js +15 -8
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +15 -8
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1021 -1021
- package/dist/vuetify.d.ts +98 -44
- package/dist/vuetify.esm.js +15 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +15 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +7 -7
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.mjs +6 -2
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.mjs +3 -2
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +3 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +54 -0
- package/lib/components/index.d.mts +54 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +44 -44
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.4-master.2024-05-
|
2
|
+
* Vuetify v3.6.4-master.2024-05-10
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -20488,6 +20488,8 @@
|
|
20488
20488
|
|
20489
20489
|
const makeDataTableProps = propsFactory({
|
20490
20490
|
...makeVDataTableRowsProps(),
|
20491
|
+
hideDefaultFooter: Boolean,
|
20492
|
+
hideDefaultHeader: Boolean,
|
20491
20493
|
width: [String, Number],
|
20492
20494
|
search: String,
|
20493
20495
|
...makeDataTableExpandProps(),
|
@@ -20670,10 +20672,12 @@
|
|
20670
20672
|
"style": props.style
|
20671
20673
|
}, tableProps), {
|
20672
20674
|
top: () => slots.top?.(slotProps.value),
|
20673
|
-
default: () => slots.default ? slots.default(slotProps.value) : vue.createVNode(vue.Fragment, null, [slots.colgroup?.(slotProps.value),
|
20675
|
+
default: () => slots.default ? slots.default(slotProps.value) : vue.createVNode(vue.Fragment, null, [slots.colgroup?.(slotProps.value), !props.hideDefaultHeader && vue.createVNode("thead", {
|
20676
|
+
"key": "thead"
|
20677
|
+
}, [vue.createVNode(VDataTableHeaders, dataTableHeadersProps, slots)]), slots.thead?.(slotProps.value), vue.createVNode("tbody", null, [slots['body.prepend']?.(slotProps.value), slots.body ? slots.body(slotProps.value) : vue.createVNode(VDataTableRows, vue.mergeProps(attrs, dataTableRowsProps, {
|
20674
20678
|
"items": paginatedItems.value
|
20675
20679
|
}), slots), slots['body.append']?.(slotProps.value)]), slots.tbody?.(slotProps.value), slots.tfoot?.(slotProps.value)]),
|
20676
|
-
bottom: () => slots.bottom ? slots.bottom(slotProps.value) : vue.createVNode(vue.Fragment, null, [vue.createVNode(VDivider, null, null), vue.createVNode(VDataTableFooter, dataTableFooterProps, {
|
20680
|
+
bottom: () => slots.bottom ? slots.bottom(slotProps.value) : !props.hideDefaultFooter && vue.createVNode(vue.Fragment, null, [vue.createVNode(VDivider, null, null), vue.createVNode(VDataTableFooter, dataTableFooterProps, {
|
20677
20681
|
prepend: slots['footer.prepend']
|
20678
20682
|
})])
|
20679
20683
|
});
|
@@ -20841,7 +20845,9 @@
|
|
20841
20845
|
"style": {
|
20842
20846
|
height: convertToUnit(props.height)
|
20843
20847
|
}
|
20844
|
-
}, [vue.createVNode("table", null, [slots.colgroup?.(slotProps.value), vue.createVNode("thead",
|
20848
|
+
}, [vue.createVNode("table", null, [slots.colgroup?.(slotProps.value), !props.hideDefaultHeader && vue.createVNode("thead", {
|
20849
|
+
"key": "thead"
|
20850
|
+
}, [vue.createVNode(VDataTableHeaders, vue.mergeProps(dataTableHeadersProps, {
|
20845
20851
|
"sticky": props.fixedHeader
|
20846
20852
|
}), slots)]), vue.createVNode("tbody", null, [vue.createVNode("tr", {
|
20847
20853
|
"ref": markerRef,
|
@@ -21046,7 +21052,8 @@
|
|
21046
21052
|
"style": props.style
|
21047
21053
|
}, tableProps), {
|
21048
21054
|
top: () => slots.top?.(slotProps.value),
|
21049
|
-
default: () => slots.default ? slots.default(slotProps.value) : vue.createVNode(vue.Fragment, null, [slots.colgroup?.(slotProps.value), vue.createVNode("thead", {
|
21055
|
+
default: () => slots.default ? slots.default(slotProps.value) : vue.createVNode(vue.Fragment, null, [slots.colgroup?.(slotProps.value), !props.hideDefaultHeader && vue.createVNode("thead", {
|
21056
|
+
"key": "thead",
|
21050
21057
|
"class": "v-data-table__thead",
|
21051
21058
|
"role": "rowgroup"
|
21052
21059
|
}, [vue.createVNode(VDataTableHeaders, vue.mergeProps(dataTableHeadersProps, {
|
@@ -21057,7 +21064,7 @@
|
|
21057
21064
|
}, [slots['body.prepend']?.(slotProps.value), slots.body ? slots.body(slotProps.value) : vue.createVNode(VDataTableRows, vue.mergeProps(attrs, dataTableRowsProps, {
|
21058
21065
|
"items": flatItems.value
|
21059
21066
|
}), slots), slots['body.append']?.(slotProps.value)]), slots.tbody?.(slotProps.value), slots.tfoot?.(slotProps.value)]),
|
21060
|
-
bottom: () => slots.bottom ? slots.bottom(slotProps.value) : vue.createVNode(vue.Fragment, null, [vue.createVNode(VDivider, null, null), vue.createVNode(VDataTableFooter, dataTableFooterProps, {
|
21067
|
+
bottom: () => slots.bottom ? slots.bottom(slotProps.value) : !props.hideDefaultFooter && vue.createVNode(vue.Fragment, null, [vue.createVNode(VDivider, null, null), vue.createVNode(VDataTableFooter, dataTableFooterProps, {
|
21061
21068
|
prepend: slots['footer.prepend']
|
21062
21069
|
})])
|
21063
21070
|
});
|
@@ -27964,7 +27971,7 @@
|
|
27964
27971
|
goTo
|
27965
27972
|
};
|
27966
27973
|
}
|
27967
|
-
const version$1 = "3.6.4-master.2024-05-
|
27974
|
+
const version$1 = "3.6.4-master.2024-05-10";
|
27968
27975
|
createVuetify$1.version = version$1;
|
27969
27976
|
|
27970
27977
|
// Vue's inject() can only be used in setup
|
@@ -27989,7 +27996,7 @@
|
|
27989
27996
|
...options
|
27990
27997
|
});
|
27991
27998
|
};
|
27992
|
-
const version = "3.6.4-master.2024-05-
|
27999
|
+
const version = "3.6.4-master.2024-05-10";
|
27993
28000
|
createVuetify.version = version;
|
27994
28001
|
|
27995
28002
|
exports.blueprints = index;
|