@vuetify/nightly 3.6.4-master.2024-05-08 → 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 +12 -2
- package/dist/json/attributes.json +25 -1
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +144 -144
- package/dist/json/tags.json +6 -0
- package/dist/json/web-types.json +62 -2
- package/dist/vuetify-labs.css +3447 -3400
- package/dist/vuetify-labs.d.ts +54 -0
- package/dist/vuetify-labs.esm.js +31 -17
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +31 -17
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1209 -1162
- package/dist/vuetify.d.ts +100 -46
- package/dist/vuetify.esm.js +31 -17
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +31 -17
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +13 -12
- 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/VFileInput/VFileInput.mjs +1 -1
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VStepper/VStepper.mjs +12 -6
- package/lib/components/VStepper/VStepper.mjs.map +1 -1
- package/lib/components/VStepper/VStepperItem.css +47 -0
- package/lib/components/VStepper/VStepperItem.mjs +5 -3
- package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
- package/lib/components/VStepper/VStepperItem.sass +18 -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 +46 -46
- 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
|
});
|
@@ -22922,7 +22929,7 @@
|
|
22922
22929
|
}, fieldProps, {
|
22923
22930
|
"id": id.value,
|
22924
22931
|
"active": isActive.value || isDirty.value,
|
22925
|
-
"dirty": isDirty.value,
|
22932
|
+
"dirty": isDirty.value || props.dirty,
|
22926
22933
|
"disabled": isDisabled.value,
|
22927
22934
|
"focused": isFocused.value,
|
22928
22935
|
"error": isValid.value === false
|
@@ -26067,13 +26074,14 @@
|
|
26067
26074
|
const group = useGroupItem(props, VStepperSymbol, true);
|
26068
26075
|
const step = vue.computed(() => group?.value.value ?? props.value);
|
26069
26076
|
const isValid = vue.computed(() => props.rules.every(handler => handler() === true));
|
26077
|
+
const isClickable = vue.computed(() => !props.disabled && props.editable);
|
26070
26078
|
const canEdit = vue.computed(() => !props.disabled && props.editable);
|
26071
26079
|
const hasError = vue.computed(() => props.error || !isValid.value);
|
26072
26080
|
const hasCompleted = vue.computed(() => props.complete || props.rules.length > 0 && isValid.value);
|
26073
26081
|
const icon = vue.computed(() => {
|
26074
26082
|
if (hasError.value) return props.errorIcon;
|
26075
26083
|
if (hasCompleted.value) return props.completeIcon;
|
26076
|
-
if (props.editable) return props.editIcon;
|
26084
|
+
if (group.isSelected.value && props.editable) return props.editIcon;
|
26077
26085
|
return props.icon;
|
26078
26086
|
});
|
26079
26087
|
const slotProps = vue.computed(() => ({
|
@@ -26100,7 +26108,7 @@
|
|
26100
26108
|
}, group?.selectedClass.value],
|
26101
26109
|
"disabled": !props.editable,
|
26102
26110
|
"onClick": onClick
|
26103
|
-
}, [vue.createVNode(VAvatar, {
|
26111
|
+
}, [isClickable.value && genOverlays(true, 'v-stepper-item'), vue.createVNode(VAvatar, {
|
26104
26112
|
"key": "stepper-avatar",
|
26105
26113
|
"class": "v-stepper-item__avatar",
|
26106
26114
|
"color": hasColor ? props.color : undefined,
|
@@ -26296,12 +26304,18 @@
|
|
26296
26304
|
default: () => [hasHeader && vue.createVNode(VStepperHeader, {
|
26297
26305
|
"key": "stepper-header"
|
26298
26306
|
}, {
|
26299
|
-
default: () => [items.value.map((
|
26300
|
-
|
26301
|
-
|
26302
|
-
|
26303
|
-
|
26304
|
-
|
26307
|
+
default: () => [items.value.map((_ref2, index) => {
|
26308
|
+
let {
|
26309
|
+
raw,
|
26310
|
+
...item
|
26311
|
+
} = _ref2;
|
26312
|
+
return vue.createVNode(vue.Fragment, null, [!!index && vue.createVNode(VDivider, null, null), vue.createVNode(VStepperItem, item, {
|
26313
|
+
default: slots[`header-item.${item.value}`] ?? slots.header,
|
26314
|
+
icon: slots.icon,
|
26315
|
+
title: slots.title,
|
26316
|
+
subtitle: slots.subtitle
|
26317
|
+
})]);
|
26318
|
+
})]
|
26305
26319
|
}), hasWindow && vue.createVNode(VStepperWindow, {
|
26306
26320
|
"key": "stepper-window"
|
26307
26321
|
}, {
|
@@ -27957,7 +27971,7 @@
|
|
27957
27971
|
goTo
|
27958
27972
|
};
|
27959
27973
|
}
|
27960
|
-
const version$1 = "3.6.4-master.2024-05-
|
27974
|
+
const version$1 = "3.6.4-master.2024-05-10";
|
27961
27975
|
createVuetify$1.version = version$1;
|
27962
27976
|
|
27963
27977
|
// Vue's inject() can only be used in setup
|
@@ -27982,7 +27996,7 @@
|
|
27982
27996
|
...options
|
27983
27997
|
});
|
27984
27998
|
};
|
27985
|
-
const version = "3.6.4-master.2024-05-
|
27999
|
+
const version = "3.6.4-master.2024-05-10";
|
27986
28000
|
createVuetify.version = version;
|
27987
28001
|
|
27988
28002
|
exports.blueprints = index;
|