@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-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
|
});
|
@@ -22689,7 +22696,7 @@
|
|
22689
22696
|
}, fieldProps, {
|
22690
22697
|
"id": id.value,
|
22691
22698
|
"active": isActive.value || isDirty.value,
|
22692
|
-
"dirty": isDirty.value,
|
22699
|
+
"dirty": isDirty.value || props.dirty,
|
22693
22700
|
"disabled": isDisabled.value,
|
22694
22701
|
"focused": isFocused.value,
|
22695
22702
|
"error": isValid.value === false
|
@@ -25834,13 +25841,14 @@
|
|
25834
25841
|
const group = useGroupItem(props, VStepperSymbol, true);
|
25835
25842
|
const step = vue.computed(() => group?.value.value ?? props.value);
|
25836
25843
|
const isValid = vue.computed(() => props.rules.every(handler => handler() === true));
|
25844
|
+
const isClickable = vue.computed(() => !props.disabled && props.editable);
|
25837
25845
|
const canEdit = vue.computed(() => !props.disabled && props.editable);
|
25838
25846
|
const hasError = vue.computed(() => props.error || !isValid.value);
|
25839
25847
|
const hasCompleted = vue.computed(() => props.complete || props.rules.length > 0 && isValid.value);
|
25840
25848
|
const icon = vue.computed(() => {
|
25841
25849
|
if (hasError.value) return props.errorIcon;
|
25842
25850
|
if (hasCompleted.value) return props.completeIcon;
|
25843
|
-
if (props.editable) return props.editIcon;
|
25851
|
+
if (group.isSelected.value && props.editable) return props.editIcon;
|
25844
25852
|
return props.icon;
|
25845
25853
|
});
|
25846
25854
|
const slotProps = vue.computed(() => ({
|
@@ -25867,7 +25875,7 @@
|
|
25867
25875
|
}, group?.selectedClass.value],
|
25868
25876
|
"disabled": !props.editable,
|
25869
25877
|
"onClick": onClick
|
25870
|
-
}, [vue.createVNode(VAvatar, {
|
25878
|
+
}, [isClickable.value && genOverlays(true, 'v-stepper-item'), vue.createVNode(VAvatar, {
|
25871
25879
|
"key": "stepper-avatar",
|
25872
25880
|
"class": "v-stepper-item__avatar",
|
25873
25881
|
"color": hasColor ? props.color : undefined,
|
@@ -26063,12 +26071,18 @@
|
|
26063
26071
|
default: () => [hasHeader && vue.createVNode(VStepperHeader, {
|
26064
26072
|
"key": "stepper-header"
|
26065
26073
|
}, {
|
26066
|
-
default: () => [items.value.map((
|
26067
|
-
|
26068
|
-
|
26069
|
-
|
26070
|
-
|
26071
|
-
|
26074
|
+
default: () => [items.value.map((_ref2, index) => {
|
26075
|
+
let {
|
26076
|
+
raw,
|
26077
|
+
...item
|
26078
|
+
} = _ref2;
|
26079
|
+
return vue.createVNode(vue.Fragment, null, [!!index && vue.createVNode(VDivider, null, null), vue.createVNode(VStepperItem, item, {
|
26080
|
+
default: slots[`header-item.${item.value}`] ?? slots.header,
|
26081
|
+
icon: slots.icon,
|
26082
|
+
title: slots.title,
|
26083
|
+
subtitle: slots.subtitle
|
26084
|
+
})]);
|
26085
|
+
})]
|
26072
26086
|
}), hasWindow && vue.createVNode(VStepperWindow, {
|
26073
26087
|
"key": "stepper-window"
|
26074
26088
|
}, {
|
@@ -29775,7 +29789,7 @@
|
|
29775
29789
|
goTo
|
29776
29790
|
};
|
29777
29791
|
}
|
29778
|
-
const version$1 = "3.6.4-master.2024-05-
|
29792
|
+
const version$1 = "3.6.4-master.2024-05-10";
|
29779
29793
|
createVuetify$1.version = version$1;
|
29780
29794
|
|
29781
29795
|
// Vue's inject() can only be used in setup
|
@@ -30028,7 +30042,7 @@
|
|
30028
30042
|
|
30029
30043
|
/* eslint-disable local-rules/sort-imports */
|
30030
30044
|
|
30031
|
-
const version = "3.6.4-master.2024-05-
|
30045
|
+
const version = "3.6.4-master.2024-05-10";
|
30032
30046
|
|
30033
30047
|
/* eslint-disable local-rules/sort-imports */
|
30034
30048
|
|