@vuetify/nightly 3.8.1-master.2025-04-13 → 3.8.1-master.2025-04-14
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 +29 -27
- package/dist/json/attributes.json +392 -392
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +194 -194
- package/dist/json/web-types.json +681 -681
- package/dist/vuetify-labs.cjs +27 -21
- package/dist/vuetify-labs.css +3267 -3267
- package/dist/vuetify-labs.d.ts +80 -67
- package/dist/vuetify-labs.esm.js +27 -21
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +27 -21
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +3 -3
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3269 -3269
- package/dist/vuetify.d.ts +80 -67
- package/dist/vuetify.esm.js +3 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +3 -3
- package/dist/vuetify.min.js.map +1 -1
- package/lib/composables/theme.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +67 -66
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendarInterval.js +25 -19
- package/lib/labs/VCalendar/VCalendarInterval.js.map +1 -1
- package/package.json +56 -51
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.1-master.2025-04-
|
2
|
+
* Vuetify v3.8.1-master.2025-04-14
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -28552,37 +28552,43 @@
|
|
28552
28552
|
"style": `height: ${convertToUnit(props.intervalHeight)}`
|
28553
28553
|
}, [vue.createVNode("div", {
|
28554
28554
|
"class": "v-calendar-day__row-label"
|
28555
|
-
}, [vue.createVNode("slot", {
|
28555
|
+
}, [vue.createVNode(vue.resolveComponent("slot"), {
|
28556
28556
|
"name": "intervalFormat",
|
28557
28557
|
"interval": interval.value
|
28558
|
-
},
|
28558
|
+
}, {
|
28559
|
+
default: () => [props.index ? props.intervalFormat ? typeof props.intervalFormat === 'string' ? adapter.format(interval.value.start, 'hours12h') : props.intervalFormat(interval.value) : interval.value.label : '']
|
28560
|
+
})]), vue.createVNode("div", {
|
28559
28561
|
"class": "v-calendar-day__row-hairline"
|
28560
28562
|
}, null), vue.createVNode("div", {
|
28561
28563
|
"class": ['v-calendar-day__row-content', interval.value.events.some(e => !e.last) ? 'v-calendar-day__row-content-through' : '']
|
28562
|
-
}, [vue.createVNode("slot", {
|
28564
|
+
}, [vue.createVNode(vue.resolveComponent("slot"), {
|
28563
28565
|
"name": "intervalBody",
|
28564
28566
|
"interval": interval.value
|
28565
|
-
},
|
28566
|
-
|
28567
|
-
|
28568
|
-
|
28569
|
-
|
28570
|
-
|
28571
|
-
|
28567
|
+
}, {
|
28568
|
+
default: () => [interval.value.events?.map(event => vue.createVNode(VCalendarIntervalEvent, {
|
28569
|
+
"event": event,
|
28570
|
+
"interval": interval.value,
|
28571
|
+
"intervalDivisions": props.intervalDivisions,
|
28572
|
+
"intervalDuration": props.intervalDuration,
|
28573
|
+
"intervalHeight": props.intervalHeight
|
28574
|
+
}, null))]
|
28575
|
+
})])]) : vue.createVNode("div", {
|
28572
28576
|
"class": "v-calendar-day__row-without-label",
|
28573
28577
|
"style": `height: ${convertToUnit(props.intervalHeight)}`
|
28574
28578
|
}, [vue.createVNode("div", {
|
28575
28579
|
"class": ['v-calendar-day__row-content', interval.value.events.some(e => !e.last) ? 'v-calendar-day__row-content-through' : '']
|
28576
|
-
}, [vue.createVNode("slot", {
|
28580
|
+
}, [vue.createVNode(vue.resolveComponent("slot"), {
|
28577
28581
|
"name": "intervalBody",
|
28578
28582
|
"interval": interval.value
|
28579
|
-
},
|
28580
|
-
|
28581
|
-
|
28582
|
-
|
28583
|
-
|
28584
|
-
|
28585
|
-
|
28583
|
+
}, {
|
28584
|
+
default: () => [interval.value.events?.filter(event => !event.allDay).map(event => vue.createVNode(VCalendarIntervalEvent, {
|
28585
|
+
"event": event,
|
28586
|
+
"interval": interval.value,
|
28587
|
+
"intervalDivisions": props.intervalDivisions,
|
28588
|
+
"intervalDuration": props.intervalDuration,
|
28589
|
+
"intervalHeight": props.intervalHeight
|
28590
|
+
}, null))]
|
28591
|
+
})])]);
|
28586
28592
|
});
|
28587
28593
|
return {
|
28588
28594
|
interval
|
@@ -31491,7 +31497,7 @@
|
|
31491
31497
|
};
|
31492
31498
|
});
|
31493
31499
|
}
|
31494
|
-
const version$1 = "3.8.1-master.2025-04-
|
31500
|
+
const version$1 = "3.8.1-master.2025-04-14";
|
31495
31501
|
createVuetify$1.version = version$1;
|
31496
31502
|
|
31497
31503
|
// Vue's inject() can only be used in setup
|
@@ -31776,7 +31782,7 @@
|
|
31776
31782
|
|
31777
31783
|
/* eslint-disable local-rules/sort-imports */
|
31778
31784
|
|
31779
|
-
const version = "3.8.1-master.2025-04-
|
31785
|
+
const version = "3.8.1-master.2025-04-14";
|
31780
31786
|
|
31781
31787
|
/* eslint-disable local-rules/sort-imports */
|
31782
31788
|
|