@vuetify/nightly 3.8.1-master.2025-04-10 → 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 -22
- package/dist/json/attributes.json +3421 -3421
- package/dist/json/importMap-labs.json +22 -22
- package/dist/json/importMap.json +160 -160
- package/dist/json/web-types.json +6072 -6072
- package/dist/vuetify-labs.cjs +34 -23
- package/dist/vuetify-labs.css +5148 -5148
- package/dist/vuetify-labs.d.ts +71 -58
- package/dist/vuetify-labs.esm.js +34 -23
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +34 -23
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +10 -5
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3928 -3928
- package/dist/vuetify.d.ts +71 -58
- package/dist/vuetify.esm.js +10 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +10 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/composables/calendar.d.ts +1 -0
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/theme.js +2 -2
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/validation.js +5 -0
- package/lib/composables/validation.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +58 -57
- 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.cjs
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
|
*/
|
@@ -2335,8 +2335,8 @@
|
|
2335
2335
|
surface: '#212121',
|
2336
2336
|
'surface-bright': '#ccbfd6',
|
2337
2337
|
'surface-light': '#424242',
|
2338
|
-
'surface-variant': '#
|
2339
|
-
'on-surface-variant': '#
|
2338
|
+
'surface-variant': '#c8c8c8',
|
2339
|
+
'on-surface-variant': '#000000',
|
2340
2340
|
primary: '#2196F3',
|
2341
2341
|
'primary-darken-1': '#277CC1',
|
2342
2342
|
secondary: '#54B6B2',
|
@@ -6898,6 +6898,11 @@
|
|
6898
6898
|
}
|
6899
6899
|
async function validate() {
|
6900
6900
|
let silent = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
6901
|
+
if (props.disabled || props.readonly) {
|
6902
|
+
internalErrorMessages.value = [];
|
6903
|
+
isValidating.value = false;
|
6904
|
+
return internalErrorMessages.value;
|
6905
|
+
}
|
6901
6906
|
const results = [];
|
6902
6907
|
isValidating.value = true;
|
6903
6908
|
for (const rule of props.rules) {
|
@@ -28547,37 +28552,43 @@
|
|
28547
28552
|
"style": `height: ${convertToUnit(props.intervalHeight)}`
|
28548
28553
|
}, [vue.createVNode("div", {
|
28549
28554
|
"class": "v-calendar-day__row-label"
|
28550
|
-
}, [vue.createVNode("slot", {
|
28555
|
+
}, [vue.createVNode(vue.resolveComponent("slot"), {
|
28551
28556
|
"name": "intervalFormat",
|
28552
28557
|
"interval": interval.value
|
28553
|
-
},
|
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", {
|
28554
28561
|
"class": "v-calendar-day__row-hairline"
|
28555
28562
|
}, null), vue.createVNode("div", {
|
28556
28563
|
"class": ['v-calendar-day__row-content', interval.value.events.some(e => !e.last) ? 'v-calendar-day__row-content-through' : '']
|
28557
|
-
}, [vue.createVNode("slot", {
|
28564
|
+
}, [vue.createVNode(vue.resolveComponent("slot"), {
|
28558
28565
|
"name": "intervalBody",
|
28559
28566
|
"interval": interval.value
|
28560
|
-
},
|
28561
|
-
|
28562
|
-
|
28563
|
-
|
28564
|
-
|
28565
|
-
|
28566
|
-
|
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", {
|
28567
28576
|
"class": "v-calendar-day__row-without-label",
|
28568
28577
|
"style": `height: ${convertToUnit(props.intervalHeight)}`
|
28569
28578
|
}, [vue.createVNode("div", {
|
28570
28579
|
"class": ['v-calendar-day__row-content', interval.value.events.some(e => !e.last) ? 'v-calendar-day__row-content-through' : '']
|
28571
|
-
}, [vue.createVNode("slot", {
|
28580
|
+
}, [vue.createVNode(vue.resolveComponent("slot"), {
|
28572
28581
|
"name": "intervalBody",
|
28573
28582
|
"interval": interval.value
|
28574
|
-
},
|
28575
|
-
|
28576
|
-
|
28577
|
-
|
28578
|
-
|
28579
|
-
|
28580
|
-
|
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
|
+
})])]);
|
28581
28592
|
});
|
28582
28593
|
return {
|
28583
28594
|
interval
|
@@ -31486,7 +31497,7 @@
|
|
31486
31497
|
};
|
31487
31498
|
});
|
31488
31499
|
}
|
31489
|
-
const version$1 = "3.8.1-master.2025-04-
|
31500
|
+
const version$1 = "3.8.1-master.2025-04-14";
|
31490
31501
|
createVuetify$1.version = version$1;
|
31491
31502
|
|
31492
31503
|
// Vue's inject() can only be used in setup
|
@@ -31771,7 +31782,7 @@
|
|
31771
31782
|
|
31772
31783
|
/* eslint-disable local-rules/sort-imports */
|
31773
31784
|
|
31774
|
-
const version = "3.8.1-master.2025-04-
|
31785
|
+
const version = "3.8.1-master.2025-04-14";
|
31775
31786
|
|
31776
31787
|
/* eslint-disable local-rules/sort-imports */
|
31777
31788
|
|