@vuetify/nightly 3.8.11-master.2025-06-24 → 3.8.11-master.2025-06-30
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 +20 -3
- package/dist/json/attributes.json +926 -926
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +128 -128
- package/dist/json/web-types.json +1587 -1587
- package/dist/vuetify-labs.cjs +30 -29
- package/dist/vuetify-labs.css +4863 -4863
- package/dist/vuetify-labs.d.ts +186 -186
- package/dist/vuetify-labs.esm.js +30 -29
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +30 -29
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +13 -13
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3384 -3384
- package/dist/vuetify.d.ts +43 -43
- package/dist/vuetify.esm.js +13 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +9 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTableColumn.js +0 -1
- package/lib/components/VDataTable/VDataTableColumn.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.js +5 -5
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/composables/sort.js +2 -1
- package/lib/components/VDataTable/composables/sort.js.map +1 -1
- package/lib/components/VOverlay/locationStrategies.js +1 -1
- package/lib/components/VOverlay/locationStrategies.js.map +1 -1
- package/lib/components/VTextField/VTextField.js +1 -1
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/composables/virtual.js +1 -1
- package/lib/composables/virtual.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +43 -43
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +33 -33
- package/lib/labs/VCalendar/VCalendar.js +1 -1
- package/lib/labs/VCalendar/VCalendar.js.map +1 -1
- package/lib/labs/VCalendar/VCalendarDay.d.ts +33 -33
- package/lib/labs/VCalendar/VCalendarDay.js +1 -1
- package/lib/labs/VCalendar/VCalendarDay.js.map +1 -1
- package/lib/labs/VCalendar/VCalendarInterval.d.ts +36 -36
- package/lib/labs/VCalendar/VCalendarInterval.js +9 -9
- package/lib/labs/VCalendar/VCalendarInterval.js.map +1 -1
- package/lib/labs/VCalendar/VCalendarIntervalEvent.d.ts +12 -12
- package/lib/labs/VCalendar/VCalendarIntervalEvent.js +1 -1
- package/lib/labs/VCalendar/VCalendarIntervalEvent.js.map +1 -1
- package/lib/labs/VCalendar/VCalendarMonthDay.d.ts +36 -36
- package/lib/labs/VCalendar/VCalendarMonthDay.js +4 -4
- package/lib/labs/VCalendar/VCalendarMonthDay.js.map +1 -1
- package/lib/labs/VIconBtn/VIconBtn.js +1 -0
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.11-master.2025-06-
|
2
|
+
* Vuetify v3.8.11-master.2025-06-30
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -10188,7 +10188,7 @@ function connectedLocationStrategy(data, props, contentStyles) {
|
|
10188
10188
|
});
|
10189
10189
|
if (flipped.isFull) {
|
10190
10190
|
const values = flipped.values();
|
10191
|
-
if (deepEqual(values.at(-1), values.at(-3))) {
|
10191
|
+
if (deepEqual(values.at(-1), values.at(-3)) && !deepEqual(values.at(-1), values.at(-2))) {
|
10192
10192
|
// Flipping is causing a container resize loop
|
10193
10193
|
return;
|
10194
10194
|
}
|
@@ -12134,7 +12134,7 @@ const VTextField = genericComponent()({
|
|
12134
12134
|
if (!isFocused.value) focus();
|
12135
12135
|
nextTick(() => {
|
12136
12136
|
if (inputRef.value !== document.activeElement) {
|
12137
|
-
inputRef.value?.focus();
|
12137
|
+
nextTick(() => inputRef.value?.focus());
|
12138
12138
|
}
|
12139
12139
|
});
|
12140
12140
|
}
|
@@ -12468,7 +12468,7 @@ function useVirtual(props, items) {
|
|
12468
12468
|
raf = requestAnimationFrame(_calculateVisibleItems);
|
12469
12469
|
}
|
12470
12470
|
function _calculateVisibleItems() {
|
12471
|
-
if (!containerRef.value || !viewportHeight.value) return;
|
12471
|
+
if (!containerRef.value || !viewportHeight.value || !itemHeight.value) return;
|
12472
12472
|
const scrollTop = lastScrollTop - markerOffset;
|
12473
12473
|
const direction = Math.sign(scrollVelocity);
|
12474
12474
|
const startPx = Math.max(0, scrollTop - BUFFER_PX);
|
@@ -19288,7 +19288,8 @@ function sortItems(items, sortByItems, locale, options) {
|
|
19288
19288
|
|
19289
19289
|
// Dates should be compared numerically
|
19290
19290
|
if (sortA instanceof Date && sortB instanceof Date) {
|
19291
|
-
|
19291
|
+
sortA = sortA.getTime();
|
19292
|
+
sortB = sortB.getTime();
|
19292
19293
|
}
|
19293
19294
|
[sortA, sortB] = [sortA, sortB].map(s => s != null ? s.toString().toLocaleLowerCase() : s);
|
19294
19295
|
if (sortA !== sortB) {
|
@@ -20012,7 +20013,6 @@ const VDataTableColumn = defineFunctionalComponent({
|
|
20012
20013
|
} = _ref;
|
20013
20014
|
const Tag = props.tag ?? 'td';
|
20014
20015
|
return createVNode(Tag, {
|
20015
|
-
"tabindex": "0",
|
20016
20016
|
"class": normalizeClass(['v-data-table__td', {
|
20017
20017
|
'v-data-table-column--fixed': props.fixed,
|
20018
20018
|
'v-data-table-column--last-fixed': props.lastFixed,
|
@@ -20413,14 +20413,14 @@ const VDataTableHeaders = genericComponent()({
|
|
20413
20413
|
},
|
20414
20414
|
"colspan": column.colspan,
|
20415
20415
|
"rowspan": column.rowspan,
|
20416
|
-
"onClick": column.sortable ? () => toggleSort(column) : undefined,
|
20417
20416
|
"fixed": column.fixed,
|
20418
20417
|
"nowrap": column.nowrap,
|
20419
20418
|
"lastFixed": column.lastFixed,
|
20420
|
-
"noPadding": noPadding
|
20421
|
-
|
20422
|
-
"
|
20423
|
-
|
20419
|
+
"noPadding": noPadding,
|
20420
|
+
"tabindex": column.sortable ? 0 : undefined,
|
20421
|
+
"onClick": column.sortable ? () => toggleSort(column) : undefined,
|
20422
|
+
"onKeydown": column.sortable ? event => handleEnterKeyPress(event, column) : undefined
|
20423
|
+
}, headerProps), {
|
20424
20424
|
default: () => {
|
20425
20425
|
const columnSlotName = `header.${column.key}`;
|
20426
20426
|
const columnSlotProps = {
|
@@ -28805,7 +28805,7 @@ const VCalendarIntervalEvent = genericComponent()({
|
|
28805
28805
|
}
|
28806
28806
|
};
|
28807
28807
|
useRender(() => {
|
28808
|
-
return createElementVNode("div", null, [slots
|
28808
|
+
return createElementVNode("div", null, [slots['interval-event']?.({
|
28809
28809
|
height: calcHeight().height,
|
28810
28810
|
margin: calcHeight().margin,
|
28811
28811
|
eventClass: 'v-calendar-internal-event',
|
@@ -28902,13 +28902,13 @@ const VCalendarInterval = genericComponent()({
|
|
28902
28902
|
"style": normalizeStyle(`height: ${convertToUnit(props.intervalHeight)}`)
|
28903
28903
|
}, [createElementVNode("div", mergeProps({
|
28904
28904
|
"class": "v-calendar-day__row-label"
|
28905
|
-
}, getPrefixedEventHandlers(attrs, ':time', () => props)), [slots
|
28905
|
+
}, getPrefixedEventHandlers(attrs, ':time', () => props)), [slots['interval-title']?.({
|
28906
28906
|
interval: interval.value
|
28907
28907
|
}) ?? (props.index ? props.intervalFormat ? typeof props.intervalFormat === 'string' ? adapter.format(interval.value.start, 'hours12h') : props.intervalFormat(interval.value) : interval.value.label : '12 AM')]), createElementVNode("div", {
|
28908
28908
|
"class": "v-calendar-day__row-hairline"
|
28909
28909
|
}, null), createElementVNode("div", mergeProps({
|
28910
28910
|
"class": ['v-calendar-day__row-content', interval.value.events.some(e => !e.last) ? 'v-calendar-day__row-content-through' : '']
|
28911
|
-
}, getPrefixedEventHandlers(attrs, ':interval', () => interval.value)), [slots
|
28911
|
+
}, getPrefixedEventHandlers(attrs, ':interval', () => interval.value)), [slots['interval-body']?.({
|
28912
28912
|
interval: interval.value
|
28913
28913
|
}) ?? createElementVNode("div", null, [interval.value.events?.map(event => createVNode(VCalendarIntervalEvent, mergeProps({
|
28914
28914
|
"event": event,
|
@@ -28917,8 +28917,8 @@ const VCalendarInterval = genericComponent()({
|
|
28917
28917
|
"intervalDuration": props.intervalDuration,
|
28918
28918
|
"intervalHeight": props.intervalHeight
|
28919
28919
|
}, attrs), {
|
28920
|
-
...(slots
|
28921
|
-
|
28920
|
+
...(slots['interval-event'] ? {
|
28921
|
+
'interval-event': _ref2 => {
|
28922
28922
|
let {
|
28923
28923
|
height,
|
28924
28924
|
margin,
|
@@ -28926,7 +28926,7 @@ const VCalendarInterval = genericComponent()({
|
|
28926
28926
|
event,
|
28927
28927
|
interval
|
28928
28928
|
} = _ref2;
|
28929
|
-
return slots
|
28929
|
+
return slots['interval-event']?.({
|
28930
28930
|
height,
|
28931
28931
|
margin,
|
28932
28932
|
eventClass,
|
@@ -28940,7 +28940,7 @@ const VCalendarInterval = genericComponent()({
|
|
28940
28940
|
"style": normalizeStyle(`height: ${convertToUnit(props.intervalHeight)}`)
|
28941
28941
|
}, [createElementVNode("div", mergeProps({
|
28942
28942
|
"class": ['v-calendar-day__row-content', interval.value.events.some(e => !e.last) ? 'v-calendar-day__row-content-through' : '']
|
28943
|
-
}, getPrefixedEventHandlers(attrs, ':interval', () => interval.value)), [slots
|
28943
|
+
}, getPrefixedEventHandlers(attrs, ':interval', () => interval.value)), [slots['interval-body']?.({
|
28944
28944
|
interval: interval.value
|
28945
28945
|
}) ?? interval.value.events?.map(event => createVNode(VCalendarIntervalEvent, mergeProps({
|
28946
28946
|
"event": event,
|
@@ -28949,8 +28949,8 @@ const VCalendarInterval = genericComponent()({
|
|
28949
28949
|
"intervalDuration": props.intervalDuration,
|
28950
28950
|
"intervalHeight": props.intervalHeight
|
28951
28951
|
}, attrs), {
|
28952
|
-
...(slots
|
28953
|
-
|
28952
|
+
...(slots['interval-event'] ? {
|
28953
|
+
'interval-event': _ref3 => {
|
28954
28954
|
let {
|
28955
28955
|
height,
|
28956
28956
|
margin,
|
@@ -28958,7 +28958,7 @@ const VCalendarInterval = genericComponent()({
|
|
28958
28958
|
event,
|
28959
28959
|
interval
|
28960
28960
|
} = _ref3;
|
28961
|
-
return slots
|
28961
|
+
return slots['interval-event']?.({
|
28962
28962
|
height,
|
28963
28963
|
margin,
|
28964
28964
|
eventClass,
|
@@ -29013,7 +29013,7 @@ const VCalendarDay = genericComponent()({
|
|
29013
29013
|
}), null)])]), intervals.value.map((_, index) => slots.interval?.(calendarIntervalProps) ?? createVNode(VCalendarInterval, mergeProps({
|
29014
29014
|
"index": index
|
29015
29015
|
}, calendarIntervalProps, attrs, getPrefixedEventHandlers(attrs, ':interval', () => calendarIntervalProps)), {
|
29016
|
-
...pick(slots, ['
|
29016
|
+
...pick(slots, ['interval-body', 'interval-event', 'interval-title'])
|
29017
29017
|
}))]);
|
29018
29018
|
});
|
29019
29019
|
return {
|
@@ -29157,7 +29157,7 @@ const VCalendarMonthDay = genericComponent()({
|
|
29157
29157
|
}, getPrefixedEventHandlers(attrs, ':day', () => props)), [!props.day?.isHidden ? createElementVNode("div", {
|
29158
29158
|
"key": "title",
|
29159
29159
|
"class": "v-calendar-weekly__day-label"
|
29160
|
-
}, [slots
|
29160
|
+
}, [slots['day-title']?.({
|
29161
29161
|
title: props.title
|
29162
29162
|
}) ?? createVNode(VBtn, mergeProps({
|
29163
29163
|
"class": props.day?.isToday ? 'v-calendar-weekly__day-label__today' : undefined,
|
@@ -29170,12 +29170,12 @@ const VCalendarMonthDay = genericComponent()({
|
|
29170
29170
|
}, getPrefixedEventHandlers(attrs, ':date', () => props)), null)]) : undefined, !props.day?.isHidden ? createElementVNode("div", {
|
29171
29171
|
"key": "content",
|
29172
29172
|
"class": "v-calendar-weekly__day-content"
|
29173
|
-
}, [slots
|
29173
|
+
}, [slots['day-body']?.({
|
29174
29174
|
day: props.day,
|
29175
29175
|
events: props.events
|
29176
29176
|
}) ?? createElementVNode("div", null, [createElementVNode("div", {
|
29177
29177
|
"class": "v-calendar-weekly__day-alldayevents-container"
|
29178
|
-
}, [props.events?.filter(event => event.allDay).map(event => slots
|
29178
|
+
}, [props.events?.filter(event => event.allDay).map(event => slots['day-event'] ? slots['day-event']({
|
29179
29179
|
day: props.day,
|
29180
29180
|
allDay: true,
|
29181
29181
|
event
|
@@ -29185,7 +29185,7 @@ const VCalendarMonthDay = genericComponent()({
|
|
29185
29185
|
"allDay": true
|
29186
29186
|
}, attrs), null))]), createElementVNode("div", {
|
29187
29187
|
"class": "v-calendar-weekly__day-events-container"
|
29188
|
-
}, [props.events?.filter(event => !event.allDay).map(event => slots
|
29188
|
+
}, [props.events?.filter(event => !event.allDay).map(event => slots['day-event'] ? slots['day-event']({
|
29189
29189
|
day: props.day,
|
29190
29190
|
event,
|
29191
29191
|
allDay: false
|
@@ -29326,7 +29326,7 @@ const VCalendar = genericComponent()({
|
|
29326
29326
|
"dayIndex": i,
|
29327
29327
|
"events": props.events?.filter(e => adapter.isSameDay(e.start, day.date) || adapter.isSameDay(e.end, day.date))
|
29328
29328
|
}, attrs), {
|
29329
|
-
...pick(slots, ['interval', '
|
29329
|
+
...pick(slots, ['interval', 'interval-body', 'interval-event', 'interval-title'])
|
29330
29330
|
})), props.viewMode === 'day' && (slots['day-interval'] ? slots['day-interval']({
|
29331
29331
|
day: genDays([displayValue.value], adapter.date())[0],
|
29332
29332
|
dayIndex: 0,
|
@@ -30246,6 +30246,7 @@ const VIconBtn = genericComponent()({
|
|
30246
30246
|
opacity: props.opacity
|
30247
30247
|
};
|
30248
30248
|
return createVNode(props.tag, {
|
30249
|
+
"type": props.tag === 'button' ? 'button' : undefined,
|
30249
30250
|
"class": normalizeClass([{
|
30250
30251
|
'v-icon-btn': true,
|
30251
30252
|
'v-icon-btn--active': isActive.value,
|
@@ -32198,7 +32199,7 @@ function createVuetify$1() {
|
|
32198
32199
|
};
|
32199
32200
|
});
|
32200
32201
|
}
|
32201
|
-
const version$1 = "3.8.11-master.2025-06-
|
32202
|
+
const version$1 = "3.8.11-master.2025-06-30";
|
32202
32203
|
createVuetify$1.version = version$1;
|
32203
32204
|
|
32204
32205
|
// Vue's inject() can only be used in setup
|
@@ -32496,7 +32497,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
32496
32497
|
|
32497
32498
|
/* eslint-disable local-rules/sort-imports */
|
32498
32499
|
|
32499
|
-
const version = "3.8.11-master.2025-06-
|
32500
|
+
const version = "3.8.11-master.2025-06-30";
|
32500
32501
|
|
32501
32502
|
/* eslint-disable local-rules/sort-imports */
|
32502
32503
|
|