@vuetify/nightly 3.7.18-master.2025-03-19 → 3.7.18-master.2025-03-20
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 -3
- package/dist/json/attributes.json +2998 -2998
- package/dist/json/importMap-labs.json +40 -40
- package/dist/json/importMap.json +156 -156
- package/dist/json/web-types.json +5843 -5843
- package/dist/vuetify-labs.css +2628 -2628
- package/dist/vuetify-labs.d.ts +35 -32
- package/dist/vuetify-labs.esm.js +21 -6
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +21 -6
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4484 -4484
- package/dist/vuetify.d.ts +94 -91
- package/dist/vuetify.esm.js +21 -6
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +21 -6
- 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/VDataTableRow.mjs +18 -3
- package/lib/components/VDataTable/VDataTableRow.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +91 -88
- package/lib/components/index.d.mts +35 -32
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +59 -59
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.18-master.2025-03-
|
2
|
+
* Vuetify v3.7.18-master.2025-03-20
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -20580,22 +20580,37 @@
|
|
20580
20580
|
"width": !mobile.value ? column.width : undefined
|
20581
20581
|
}, cellProps, columnCellProps), {
|
20582
20582
|
default: () => {
|
20583
|
-
if (slots[slotName] && !mobile.value) return slots[slotName]?.(slotProps);
|
20584
20583
|
if (column.key === 'data-table-select') {
|
20585
|
-
return slots['item.data-table-select']?.(
|
20584
|
+
return slots['item.data-table-select']?.({
|
20585
|
+
...slotProps,
|
20586
|
+
props: {
|
20587
|
+
disabled: !item.selectable,
|
20588
|
+
modelValue: isSelected([item]),
|
20589
|
+
onClick: vue.withModifiers(() => toggleSelect(item), ['stop'])
|
20590
|
+
}
|
20591
|
+
}) ?? vue.createVNode(VCheckboxBtn, {
|
20586
20592
|
"disabled": !item.selectable,
|
20587
20593
|
"modelValue": isSelected([item]),
|
20588
20594
|
"onClick": vue.withModifiers(() => toggleSelect(item), ['stop'])
|
20589
20595
|
}, null);
|
20590
20596
|
}
|
20591
20597
|
if (column.key === 'data-table-expand') {
|
20592
|
-
return slots['item.data-table-expand']?.(
|
20598
|
+
return slots['item.data-table-expand']?.({
|
20599
|
+
...slotProps,
|
20600
|
+
props: {
|
20601
|
+
icon: isExpanded(item) ? '$collapse' : '$expand',
|
20602
|
+
size: 'small',
|
20603
|
+
variant: 'text',
|
20604
|
+
onClick: vue.withModifiers(() => toggleExpand(item), ['stop'])
|
20605
|
+
}
|
20606
|
+
}) ?? vue.createVNode(VBtn, {
|
20593
20607
|
"icon": isExpanded(item) ? '$collapse' : '$expand',
|
20594
20608
|
"size": "small",
|
20595
20609
|
"variant": "text",
|
20596
20610
|
"onClick": vue.withModifiers(() => toggleExpand(item), ['stop'])
|
20597
20611
|
}, null);
|
20598
20612
|
}
|
20613
|
+
if (slots[slotName] && !mobile.value) return slots[slotName](slotProps);
|
20599
20614
|
const displayValue = vue.toDisplayString(slotProps.value);
|
20600
20615
|
return !mobile.value ? displayValue : vue.createVNode(vue.Fragment, null, [vue.createVNode("div", {
|
20601
20616
|
"class": "v-data-table__td-title"
|
@@ -28456,7 +28471,7 @@
|
|
28456
28471
|
goTo
|
28457
28472
|
};
|
28458
28473
|
}
|
28459
|
-
const version$1 = "3.7.18-master.2025-03-
|
28474
|
+
const version$1 = "3.7.18-master.2025-03-20";
|
28460
28475
|
createVuetify$1.version = version$1;
|
28461
28476
|
|
28462
28477
|
// Vue's inject() can only be used in setup
|
@@ -28481,7 +28496,7 @@
|
|
28481
28496
|
...options
|
28482
28497
|
});
|
28483
28498
|
};
|
28484
|
-
const version = "3.7.18-master.2025-03-
|
28499
|
+
const version = "3.7.18-master.2025-03-20";
|
28485
28500
|
createVuetify.version = version;
|
28486
28501
|
|
28487
28502
|
exports.blueprints = index;
|