@vuetify/nightly 3.5.3-dev.2024-03-03 → 3.5.3-dev.2024-03-06
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 +3 -2
- package/dist/json/importMap.json +134 -134
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +1533 -1533
- package/dist/vuetify-labs.d.ts +15 -6
- package/dist/vuetify-labs.esm.js +21 -3
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +21 -3
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1103 -1103
- package/dist/vuetify.d.ts +56 -47
- package/dist/vuetify.esm.js +21 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +21 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +278 -278
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +5 -2
- package/lib/blueprints/md1.d.mts +5 -2
- package/lib/blueprints/md2.d.mts +5 -2
- package/lib/blueprints/md3.d.mts +5 -2
- package/lib/composables/date/DateAdapter.mjs.map +1 -1
- package/lib/composables/date/adapters/vuetify.mjs +18 -0
- package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +56 -47
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.5.3-dev.2024-03-
|
|
2
|
+
* Vuetify v3.5.3-dev.2024-03-06
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -17265,6 +17265,9 @@
|
|
|
17265
17265
|
function getNextMonth(date) {
|
|
17266
17266
|
return new Date(date.getFullYear(), date.getMonth() + 1, 1);
|
|
17267
17267
|
}
|
|
17268
|
+
function getPreviousMonth(date) {
|
|
17269
|
+
return new Date(date.getFullYear(), date.getMonth() - 1, 1);
|
|
17270
|
+
}
|
|
17268
17271
|
function getHours(date) {
|
|
17269
17272
|
return date.getHours();
|
|
17270
17273
|
}
|
|
@@ -17287,6 +17290,9 @@
|
|
|
17287
17290
|
function isAfter(date, comparing) {
|
|
17288
17291
|
return date.getTime() > comparing.getTime();
|
|
17289
17292
|
}
|
|
17293
|
+
function isAfterDay(date, comparing) {
|
|
17294
|
+
return isAfter(startOfDay(date), startOfDay(comparing));
|
|
17295
|
+
}
|
|
17290
17296
|
function isBefore(date, comparing) {
|
|
17291
17297
|
return date.getTime() < comparing.getTime();
|
|
17292
17298
|
}
|
|
@@ -17299,6 +17305,9 @@
|
|
|
17299
17305
|
function isSameMonth(date, comparing) {
|
|
17300
17306
|
return date.getMonth() === comparing.getMonth() && date.getFullYear() === comparing.getFullYear();
|
|
17301
17307
|
}
|
|
17308
|
+
function isSameYear(date, comparing) {
|
|
17309
|
+
return date.getFullYear() === comparing.getFullYear();
|
|
17310
|
+
}
|
|
17302
17311
|
function getDiff(date, comparing, unit) {
|
|
17303
17312
|
const d = new Date(date);
|
|
17304
17313
|
const c = new Date(comparing);
|
|
@@ -17395,6 +17404,9 @@
|
|
|
17395
17404
|
isAfter(date, comparing) {
|
|
17396
17405
|
return isAfter(date, comparing);
|
|
17397
17406
|
}
|
|
17407
|
+
isAfterDay(date, comparing) {
|
|
17408
|
+
return isAfterDay(date, comparing);
|
|
17409
|
+
}
|
|
17398
17410
|
isBefore(date, comparing) {
|
|
17399
17411
|
return !isAfter(date, comparing) && !isEqual(date, comparing);
|
|
17400
17412
|
}
|
|
@@ -17404,6 +17416,9 @@
|
|
|
17404
17416
|
isSameMonth(date, comparing) {
|
|
17405
17417
|
return isSameMonth(date, comparing);
|
|
17406
17418
|
}
|
|
17419
|
+
isSameYear(date, comparing) {
|
|
17420
|
+
return isSameYear(date, comparing);
|
|
17421
|
+
}
|
|
17407
17422
|
setMinutes(date, count) {
|
|
17408
17423
|
return setMinutes(date, count);
|
|
17409
17424
|
}
|
|
@@ -17431,6 +17446,9 @@
|
|
|
17431
17446
|
getNextMonth(date) {
|
|
17432
17447
|
return getNextMonth(date);
|
|
17433
17448
|
}
|
|
17449
|
+
getPreviousMonth(date) {
|
|
17450
|
+
return getPreviousMonth(date);
|
|
17451
|
+
}
|
|
17434
17452
|
getHours(date) {
|
|
17435
17453
|
return getHours(date);
|
|
17436
17454
|
}
|
|
@@ -26224,7 +26242,7 @@
|
|
|
26224
26242
|
goTo
|
|
26225
26243
|
};
|
|
26226
26244
|
}
|
|
26227
|
-
const version$1 = "3.5.3-dev.2024-03-
|
|
26245
|
+
const version$1 = "3.5.3-dev.2024-03-06";
|
|
26228
26246
|
createVuetify$1.version = version$1;
|
|
26229
26247
|
|
|
26230
26248
|
// Vue's inject() can only be used in setup
|
|
@@ -26238,7 +26256,7 @@
|
|
|
26238
26256
|
|
|
26239
26257
|
/* eslint-disable local-rules/sort-imports */
|
|
26240
26258
|
|
|
26241
|
-
const version = "3.5.3-dev.2024-03-
|
|
26259
|
+
const version = "3.5.3-dev.2024-03-06";
|
|
26242
26260
|
|
|
26243
26261
|
/* eslint-disable local-rules/sort-imports */
|
|
26244
26262
|
|