@vuetify/nightly 3.8.11-master.2025-06-27 → 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 +7 -3
- package/dist/json/attributes.json +3627 -3627
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +128 -128
- package/dist/json/web-types.json +6192 -6192
- package/dist/vuetify-labs.cjs +23 -22
- package/dist/vuetify-labs.css +4816 -4816
- package/dist/vuetify-labs.d.ts +190 -190
- package/dist/vuetify-labs.esm.js +23 -22
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +23 -22
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +7 -6
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3704 -3704
- package/dist/vuetify.d.ts +47 -47
- package/dist/vuetify.esm.js +7 -6
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +7 -6
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -7
- package/dist/vuetify.min.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/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 +47 -47
- 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/package.json +1 -1
package/dist/vuetify-labs.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
|
*/
|
@@ -10192,7 +10192,7 @@
|
|
10192
10192
|
});
|
10193
10193
|
if (flipped.isFull) {
|
10194
10194
|
const values = flipped.values();
|
10195
|
-
if (deepEqual(values.at(-1), values.at(-3))) {
|
10195
|
+
if (deepEqual(values.at(-1), values.at(-3)) && !deepEqual(values.at(-1), values.at(-2))) {
|
10196
10196
|
// Flipping is causing a container resize loop
|
10197
10197
|
return;
|
10198
10198
|
}
|
@@ -12472,7 +12472,7 @@
|
|
12472
12472
|
raf = requestAnimationFrame(_calculateVisibleItems);
|
12473
12473
|
}
|
12474
12474
|
function _calculateVisibleItems() {
|
12475
|
-
if (!containerRef.value || !viewportHeight.value) return;
|
12475
|
+
if (!containerRef.value || !viewportHeight.value || !itemHeight.value) return;
|
12476
12476
|
const scrollTop = lastScrollTop - markerOffset;
|
12477
12477
|
const direction = Math.sign(scrollVelocity);
|
12478
12478
|
const startPx = Math.max(0, scrollTop - BUFFER_PX);
|
@@ -19292,7 +19292,8 @@
|
|
19292
19292
|
|
19293
19293
|
// Dates should be compared numerically
|
19294
19294
|
if (sortA instanceof Date && sortB instanceof Date) {
|
19295
|
-
|
19295
|
+
sortA = sortA.getTime();
|
19296
|
+
sortB = sortB.getTime();
|
19296
19297
|
}
|
19297
19298
|
[sortA, sortB] = [sortA, sortB].map(s => s != null ? s.toString().toLocaleLowerCase() : s);
|
19298
19299
|
if (sortA !== sortB) {
|
@@ -28808,7 +28809,7 @@
|
|
28808
28809
|
}
|
28809
28810
|
};
|
28810
28811
|
useRender(() => {
|
28811
|
-
return vue.createElementVNode("div", null, [slots
|
28812
|
+
return vue.createElementVNode("div", null, [slots['interval-event']?.({
|
28812
28813
|
height: calcHeight().height,
|
28813
28814
|
margin: calcHeight().margin,
|
28814
28815
|
eventClass: 'v-calendar-internal-event',
|
@@ -28905,13 +28906,13 @@
|
|
28905
28906
|
"style": vue.normalizeStyle(`height: ${convertToUnit(props.intervalHeight)}`)
|
28906
28907
|
}, [vue.createElementVNode("div", vue.mergeProps({
|
28907
28908
|
"class": "v-calendar-day__row-label"
|
28908
|
-
}, getPrefixedEventHandlers(attrs, ':time', () => props)), [slots
|
28909
|
+
}, getPrefixedEventHandlers(attrs, ':time', () => props)), [slots['interval-title']?.({
|
28909
28910
|
interval: interval.value
|
28910
28911
|
}) ?? (props.index ? props.intervalFormat ? typeof props.intervalFormat === 'string' ? adapter.format(interval.value.start, 'hours12h') : props.intervalFormat(interval.value) : interval.value.label : '12 AM')]), vue.createElementVNode("div", {
|
28911
28912
|
"class": "v-calendar-day__row-hairline"
|
28912
28913
|
}, null), vue.createElementVNode("div", vue.mergeProps({
|
28913
28914
|
"class": ['v-calendar-day__row-content', interval.value.events.some(e => !e.last) ? 'v-calendar-day__row-content-through' : '']
|
28914
|
-
}, getPrefixedEventHandlers(attrs, ':interval', () => interval.value)), [slots
|
28915
|
+
}, getPrefixedEventHandlers(attrs, ':interval', () => interval.value)), [slots['interval-body']?.({
|
28915
28916
|
interval: interval.value
|
28916
28917
|
}) ?? vue.createElementVNode("div", null, [interval.value.events?.map(event => vue.createVNode(VCalendarIntervalEvent, vue.mergeProps({
|
28917
28918
|
"event": event,
|
@@ -28920,8 +28921,8 @@
|
|
28920
28921
|
"intervalDuration": props.intervalDuration,
|
28921
28922
|
"intervalHeight": props.intervalHeight
|
28922
28923
|
}, attrs), {
|
28923
|
-
...(slots
|
28924
|
-
|
28924
|
+
...(slots['interval-event'] ? {
|
28925
|
+
'interval-event': _ref2 => {
|
28925
28926
|
let {
|
28926
28927
|
height,
|
28927
28928
|
margin,
|
@@ -28929,7 +28930,7 @@
|
|
28929
28930
|
event,
|
28930
28931
|
interval
|
28931
28932
|
} = _ref2;
|
28932
|
-
return slots
|
28933
|
+
return slots['interval-event']?.({
|
28933
28934
|
height,
|
28934
28935
|
margin,
|
28935
28936
|
eventClass,
|
@@ -28943,7 +28944,7 @@
|
|
28943
28944
|
"style": vue.normalizeStyle(`height: ${convertToUnit(props.intervalHeight)}`)
|
28944
28945
|
}, [vue.createElementVNode("div", vue.mergeProps({
|
28945
28946
|
"class": ['v-calendar-day__row-content', interval.value.events.some(e => !e.last) ? 'v-calendar-day__row-content-through' : '']
|
28946
|
-
}, getPrefixedEventHandlers(attrs, ':interval', () => interval.value)), [slots
|
28947
|
+
}, getPrefixedEventHandlers(attrs, ':interval', () => interval.value)), [slots['interval-body']?.({
|
28947
28948
|
interval: interval.value
|
28948
28949
|
}) ?? interval.value.events?.map(event => vue.createVNode(VCalendarIntervalEvent, vue.mergeProps({
|
28949
28950
|
"event": event,
|
@@ -28952,8 +28953,8 @@
|
|
28952
28953
|
"intervalDuration": props.intervalDuration,
|
28953
28954
|
"intervalHeight": props.intervalHeight
|
28954
28955
|
}, attrs), {
|
28955
|
-
...(slots
|
28956
|
-
|
28956
|
+
...(slots['interval-event'] ? {
|
28957
|
+
'interval-event': _ref3 => {
|
28957
28958
|
let {
|
28958
28959
|
height,
|
28959
28960
|
margin,
|
@@ -28961,7 +28962,7 @@
|
|
28961
28962
|
event,
|
28962
28963
|
interval
|
28963
28964
|
} = _ref3;
|
28964
|
-
return slots
|
28965
|
+
return slots['interval-event']?.({
|
28965
28966
|
height,
|
28966
28967
|
margin,
|
28967
28968
|
eventClass,
|
@@ -29016,7 +29017,7 @@
|
|
29016
29017
|
}), null)])]), intervals.value.map((_, index) => slots.interval?.(calendarIntervalProps) ?? vue.createVNode(VCalendarInterval, vue.mergeProps({
|
29017
29018
|
"index": index
|
29018
29019
|
}, calendarIntervalProps, attrs, getPrefixedEventHandlers(attrs, ':interval', () => calendarIntervalProps)), {
|
29019
|
-
...pick(slots, ['
|
29020
|
+
...pick(slots, ['interval-body', 'interval-event', 'interval-title'])
|
29020
29021
|
}))]);
|
29021
29022
|
});
|
29022
29023
|
return {
|
@@ -29160,7 +29161,7 @@
|
|
29160
29161
|
}, getPrefixedEventHandlers(attrs, ':day', () => props)), [!props.day?.isHidden ? vue.createElementVNode("div", {
|
29161
29162
|
"key": "title",
|
29162
29163
|
"class": "v-calendar-weekly__day-label"
|
29163
|
-
}, [slots
|
29164
|
+
}, [slots['day-title']?.({
|
29164
29165
|
title: props.title
|
29165
29166
|
}) ?? vue.createVNode(VBtn, vue.mergeProps({
|
29166
29167
|
"class": props.day?.isToday ? 'v-calendar-weekly__day-label__today' : undefined,
|
@@ -29173,12 +29174,12 @@
|
|
29173
29174
|
}, getPrefixedEventHandlers(attrs, ':date', () => props)), null)]) : undefined, !props.day?.isHidden ? vue.createElementVNode("div", {
|
29174
29175
|
"key": "content",
|
29175
29176
|
"class": "v-calendar-weekly__day-content"
|
29176
|
-
}, [slots
|
29177
|
+
}, [slots['day-body']?.({
|
29177
29178
|
day: props.day,
|
29178
29179
|
events: props.events
|
29179
29180
|
}) ?? vue.createElementVNode("div", null, [vue.createElementVNode("div", {
|
29180
29181
|
"class": "v-calendar-weekly__day-alldayevents-container"
|
29181
|
-
}, [props.events?.filter(event => event.allDay).map(event => slots
|
29182
|
+
}, [props.events?.filter(event => event.allDay).map(event => slots['day-event'] ? slots['day-event']({
|
29182
29183
|
day: props.day,
|
29183
29184
|
allDay: true,
|
29184
29185
|
event
|
@@ -29188,7 +29189,7 @@
|
|
29188
29189
|
"allDay": true
|
29189
29190
|
}, attrs), null))]), vue.createElementVNode("div", {
|
29190
29191
|
"class": "v-calendar-weekly__day-events-container"
|
29191
|
-
}, [props.events?.filter(event => !event.allDay).map(event => slots
|
29192
|
+
}, [props.events?.filter(event => !event.allDay).map(event => slots['day-event'] ? slots['day-event']({
|
29192
29193
|
day: props.day,
|
29193
29194
|
event,
|
29194
29195
|
allDay: false
|
@@ -29329,7 +29330,7 @@
|
|
29329
29330
|
"dayIndex": i,
|
29330
29331
|
"events": props.events?.filter(e => adapter.isSameDay(e.start, day.date) || adapter.isSameDay(e.end, day.date))
|
29331
29332
|
}, attrs), {
|
29332
|
-
...pick(slots, ['interval', '
|
29333
|
+
...pick(slots, ['interval', 'interval-body', 'interval-event', 'interval-title'])
|
29333
29334
|
})), props.viewMode === 'day' && (slots['day-interval'] ? slots['day-interval']({
|
29334
29335
|
day: genDays([displayValue.value], adapter.date())[0],
|
29335
29336
|
dayIndex: 0,
|
@@ -32202,7 +32203,7 @@
|
|
32202
32203
|
};
|
32203
32204
|
});
|
32204
32205
|
}
|
32205
|
-
const version$1 = "3.8.11-master.2025-06-
|
32206
|
+
const version$1 = "3.8.11-master.2025-06-30";
|
32206
32207
|
createVuetify$1.version = version$1;
|
32207
32208
|
|
32208
32209
|
// Vue's inject() can only be used in setup
|
@@ -32500,7 +32501,7 @@
|
|
32500
32501
|
|
32501
32502
|
/* eslint-disable local-rules/sort-imports */
|
32502
32503
|
|
32503
|
-
const version = "3.8.11-master.2025-06-
|
32504
|
+
const version = "3.8.11-master.2025-06-30";
|
32504
32505
|
|
32505
32506
|
/* eslint-disable local-rules/sort-imports */
|
32506
32507
|
|