@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-labs.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
|
*/
|
@@ -20255,6 +20255,8 @@
|
|
20255
20255
|
|
20256
20256
|
const makeDataTableProps = propsFactory({
|
20257
20257
|
...makeVDataTableRowsProps(),
|
20258
|
+
hideDefaultFooter: Boolean,
|
20259
|
+
hideDefaultHeader: Boolean,
|
20258
20260
|
width: [String, Number],
|
20259
20261
|
search: String,
|
20260
20262
|
...makeDataTableExpandProps(),
|
@@ -20437,10 +20439,12 @@
|
|
20437
20439
|
"style": props.style
|
20438
20440
|
}, tableProps), {
|
20439
20441
|
top: () => slots.top?.(slotProps.value),
|
20440
|
-
default: () => slots.default ? slots.default(slotProps.value) : vue.createVNode(vue.Fragment, null, [slots.colgroup?.(slotProps.value),
|
20442
|
+
default: () => slots.default ? slots.default(slotProps.value) : vue.createVNode(vue.Fragment, null, [slots.colgroup?.(slotProps.value), !props.hideDefaultHeader && vue.createVNode("thead", {
|
20443
|
+
"key": "thead"
|
20444
|
+
}, [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, {
|
20441
20445
|
"items": paginatedItems.value
|
20442
20446
|
}), slots), slots['body.append']?.(slotProps.value)]), slots.tbody?.(slotProps.value), slots.tfoot?.(slotProps.value)]),
|
20443
|
-
bottom: () => slots.bottom ? slots.bottom(slotProps.value) : vue.createVNode(vue.Fragment, null, [vue.createVNode(VDivider, null, null), vue.createVNode(VDataTableFooter, dataTableFooterProps, {
|
20447
|
+
bottom: () => slots.bottom ? slots.bottom(slotProps.value) : !props.hideDefaultFooter && vue.createVNode(vue.Fragment, null, [vue.createVNode(VDivider, null, null), vue.createVNode(VDataTableFooter, dataTableFooterProps, {
|
20444
20448
|
prepend: slots['footer.prepend']
|
20445
20449
|
})])
|
20446
20450
|
});
|
@@ -20608,7 +20612,9 @@
|
|
20608
20612
|
"style": {
|
20609
20613
|
height: convertToUnit(props.height)
|
20610
20614
|
}
|
20611
|
-
}, [vue.createVNode("table", null, [slots.colgroup?.(slotProps.value), vue.createVNode("thead",
|
20615
|
+
}, [vue.createVNode("table", null, [slots.colgroup?.(slotProps.value), !props.hideDefaultHeader && vue.createVNode("thead", {
|
20616
|
+
"key": "thead"
|
20617
|
+
}, [vue.createVNode(VDataTableHeaders, vue.mergeProps(dataTableHeadersProps, {
|
20612
20618
|
"sticky": props.fixedHeader
|
20613
20619
|
}), slots)]), vue.createVNode("tbody", null, [vue.createVNode("tr", {
|
20614
20620
|
"ref": markerRef,
|
@@ -20813,7 +20819,8 @@
|
|
20813
20819
|
"style": props.style
|
20814
20820
|
}, tableProps), {
|
20815
20821
|
top: () => slots.top?.(slotProps.value),
|
20816
|
-
default: () => slots.default ? slots.default(slotProps.value) : vue.createVNode(vue.Fragment, null, [slots.colgroup?.(slotProps.value), vue.createVNode("thead", {
|
20822
|
+
default: () => slots.default ? slots.default(slotProps.value) : vue.createVNode(vue.Fragment, null, [slots.colgroup?.(slotProps.value), !props.hideDefaultHeader && vue.createVNode("thead", {
|
20823
|
+
"key": "thead",
|
20817
20824
|
"class": "v-data-table__thead",
|
20818
20825
|
"role": "rowgroup"
|
20819
20826
|
}, [vue.createVNode(VDataTableHeaders, vue.mergeProps(dataTableHeadersProps, {
|
@@ -20824,7 +20831,7 @@
|
|
20824
20831
|
}, [slots['body.prepend']?.(slotProps.value), slots.body ? slots.body(slotProps.value) : vue.createVNode(VDataTableRows, vue.mergeProps(attrs, dataTableRowsProps, {
|
20825
20832
|
"items": flatItems.value
|
20826
20833
|
}), slots), slots['body.append']?.(slotProps.value)]), slots.tbody?.(slotProps.value), slots.tfoot?.(slotProps.value)]),
|
20827
|
-
bottom: () => slots.bottom ? slots.bottom(slotProps.value) : vue.createVNode(vue.Fragment, null, [vue.createVNode(VDivider, null, null), vue.createVNode(VDataTableFooter, dataTableFooterProps, {
|
20834
|
+
bottom: () => slots.bottom ? slots.bottom(slotProps.value) : !props.hideDefaultFooter && vue.createVNode(vue.Fragment, null, [vue.createVNode(VDivider, null, null), vue.createVNode(VDataTableFooter, dataTableFooterProps, {
|
20828
20835
|
prepend: slots['footer.prepend']
|
20829
20836
|
})])
|
20830
20837
|
});
|
@@ -29782,7 +29789,7 @@
|
|
29782
29789
|
goTo
|
29783
29790
|
};
|
29784
29791
|
}
|
29785
|
-
const version$1 = "3.6.4-master.2024-05-
|
29792
|
+
const version$1 = "3.6.4-master.2024-05-10";
|
29786
29793
|
createVuetify$1.version = version$1;
|
29787
29794
|
|
29788
29795
|
// Vue's inject() can only be used in setup
|
@@ -30035,7 +30042,7 @@
|
|
30035
30042
|
|
30036
30043
|
/* eslint-disable local-rules/sort-imports */
|
30037
30044
|
|
30038
|
-
const version = "3.6.4-master.2024-05-
|
30045
|
+
const version = "3.6.4-master.2024-05-10";
|
30039
30046
|
|
30040
30047
|
/* eslint-disable local-rules/sort-imports */
|
30041
30048
|
|