@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.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
|
*/
|
|
@@ -17259,6 +17259,9 @@
|
|
|
17259
17259
|
function getNextMonth(date) {
|
|
17260
17260
|
return new Date(date.getFullYear(), date.getMonth() + 1, 1);
|
|
17261
17261
|
}
|
|
17262
|
+
function getPreviousMonth(date) {
|
|
17263
|
+
return new Date(date.getFullYear(), date.getMonth() - 1, 1);
|
|
17264
|
+
}
|
|
17262
17265
|
function getHours(date) {
|
|
17263
17266
|
return date.getHours();
|
|
17264
17267
|
}
|
|
@@ -17281,6 +17284,9 @@
|
|
|
17281
17284
|
function isAfter(date, comparing) {
|
|
17282
17285
|
return date.getTime() > comparing.getTime();
|
|
17283
17286
|
}
|
|
17287
|
+
function isAfterDay(date, comparing) {
|
|
17288
|
+
return isAfter(startOfDay(date), startOfDay(comparing));
|
|
17289
|
+
}
|
|
17284
17290
|
function isBefore(date, comparing) {
|
|
17285
17291
|
return date.getTime() < comparing.getTime();
|
|
17286
17292
|
}
|
|
@@ -17293,6 +17299,9 @@
|
|
|
17293
17299
|
function isSameMonth(date, comparing) {
|
|
17294
17300
|
return date.getMonth() === comparing.getMonth() && date.getFullYear() === comparing.getFullYear();
|
|
17295
17301
|
}
|
|
17302
|
+
function isSameYear(date, comparing) {
|
|
17303
|
+
return date.getFullYear() === comparing.getFullYear();
|
|
17304
|
+
}
|
|
17296
17305
|
function getDiff(date, comparing, unit) {
|
|
17297
17306
|
const d = new Date(date);
|
|
17298
17307
|
const c = new Date(comparing);
|
|
@@ -17389,6 +17398,9 @@
|
|
|
17389
17398
|
isAfter(date, comparing) {
|
|
17390
17399
|
return isAfter(date, comparing);
|
|
17391
17400
|
}
|
|
17401
|
+
isAfterDay(date, comparing) {
|
|
17402
|
+
return isAfterDay(date, comparing);
|
|
17403
|
+
}
|
|
17392
17404
|
isBefore(date, comparing) {
|
|
17393
17405
|
return !isAfter(date, comparing) && !isEqual(date, comparing);
|
|
17394
17406
|
}
|
|
@@ -17398,6 +17410,9 @@
|
|
|
17398
17410
|
isSameMonth(date, comparing) {
|
|
17399
17411
|
return isSameMonth(date, comparing);
|
|
17400
17412
|
}
|
|
17413
|
+
isSameYear(date, comparing) {
|
|
17414
|
+
return isSameYear(date, comparing);
|
|
17415
|
+
}
|
|
17401
17416
|
setMinutes(date, count) {
|
|
17402
17417
|
return setMinutes(date, count);
|
|
17403
17418
|
}
|
|
@@ -17425,6 +17440,9 @@
|
|
|
17425
17440
|
getNextMonth(date) {
|
|
17426
17441
|
return getNextMonth(date);
|
|
17427
17442
|
}
|
|
17443
|
+
getPreviousMonth(date) {
|
|
17444
|
+
return getPreviousMonth(date);
|
|
17445
|
+
}
|
|
17428
17446
|
getHours(date) {
|
|
17429
17447
|
return getHours(date);
|
|
17430
17448
|
}
|
|
@@ -25666,7 +25684,7 @@
|
|
|
25666
25684
|
goTo
|
|
25667
25685
|
};
|
|
25668
25686
|
}
|
|
25669
|
-
const version$1 = "3.5.3-dev.2024-03-
|
|
25687
|
+
const version$1 = "3.5.3-dev.2024-03-06";
|
|
25670
25688
|
createVuetify$1.version = version$1;
|
|
25671
25689
|
|
|
25672
25690
|
// Vue's inject() can only be used in setup
|
|
@@ -25691,7 +25709,7 @@
|
|
|
25691
25709
|
...options
|
|
25692
25710
|
});
|
|
25693
25711
|
};
|
|
25694
|
-
const version = "3.5.3-dev.2024-03-
|
|
25712
|
+
const version = "3.5.3-dev.2024-03-06";
|
|
25695
25713
|
createVuetify.version = version;
|
|
25696
25714
|
|
|
25697
25715
|
exports.components = components;
|