@vuetify/nightly 3.5.3-dev.2024-03-03 → 3.5.3-dev.2024-03-07
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 +4 -2
- package/dist/json/attributes.json +8 -0
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +118 -118
- package/dist/json/tags.json +2 -0
- package/dist/json/web-types.json +21 -1
- package/dist/vuetify-labs.css +1907 -1907
- package/dist/vuetify-labs.d.ts +33 -6
- package/dist/vuetify-labs.esm.js +25 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +25 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1017 -1017
- package/dist/vuetify.d.ts +71 -44
- package/dist/vuetify.esm.js +25 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +25 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +281 -280
- 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/components/index.d.mts +18 -0
- package/lib/components/transitions/createTransition.mjs +4 -2
- package/lib/components/transitions/createTransition.mjs.map +1 -1
- package/lib/components/transitions/index.d.mts +18 -0
- 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 +53 -44
- 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-07
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -2678,14 +2678,16 @@
|
|
|
2678
2678
|
type: String,
|
|
2679
2679
|
default: mode
|
|
2680
2680
|
},
|
|
2681
|
-
disabled: Boolean
|
|
2681
|
+
disabled: Boolean,
|
|
2682
|
+
group: Boolean
|
|
2682
2683
|
},
|
|
2683
2684
|
setup(props, _ref2) {
|
|
2684
2685
|
let {
|
|
2685
2686
|
slots
|
|
2686
2687
|
} = _ref2;
|
|
2688
|
+
const tag = props.group ? vue.TransitionGroup : vue.Transition;
|
|
2687
2689
|
return () => {
|
|
2688
|
-
return vue.h(
|
|
2690
|
+
return vue.h(tag, {
|
|
2689
2691
|
name: props.disabled ? '' : name,
|
|
2690
2692
|
css: !props.disabled,
|
|
2691
2693
|
// mode: props.mode, // TODO: vuejs/vue-next#3104
|
|
@@ -17265,6 +17267,9 @@
|
|
|
17265
17267
|
function getNextMonth(date) {
|
|
17266
17268
|
return new Date(date.getFullYear(), date.getMonth() + 1, 1);
|
|
17267
17269
|
}
|
|
17270
|
+
function getPreviousMonth(date) {
|
|
17271
|
+
return new Date(date.getFullYear(), date.getMonth() - 1, 1);
|
|
17272
|
+
}
|
|
17268
17273
|
function getHours(date) {
|
|
17269
17274
|
return date.getHours();
|
|
17270
17275
|
}
|
|
@@ -17287,6 +17292,9 @@
|
|
|
17287
17292
|
function isAfter(date, comparing) {
|
|
17288
17293
|
return date.getTime() > comparing.getTime();
|
|
17289
17294
|
}
|
|
17295
|
+
function isAfterDay(date, comparing) {
|
|
17296
|
+
return isAfter(startOfDay(date), startOfDay(comparing));
|
|
17297
|
+
}
|
|
17290
17298
|
function isBefore(date, comparing) {
|
|
17291
17299
|
return date.getTime() < comparing.getTime();
|
|
17292
17300
|
}
|
|
@@ -17299,6 +17307,9 @@
|
|
|
17299
17307
|
function isSameMonth(date, comparing) {
|
|
17300
17308
|
return date.getMonth() === comparing.getMonth() && date.getFullYear() === comparing.getFullYear();
|
|
17301
17309
|
}
|
|
17310
|
+
function isSameYear(date, comparing) {
|
|
17311
|
+
return date.getFullYear() === comparing.getFullYear();
|
|
17312
|
+
}
|
|
17302
17313
|
function getDiff(date, comparing, unit) {
|
|
17303
17314
|
const d = new Date(date);
|
|
17304
17315
|
const c = new Date(comparing);
|
|
@@ -17395,6 +17406,9 @@
|
|
|
17395
17406
|
isAfter(date, comparing) {
|
|
17396
17407
|
return isAfter(date, comparing);
|
|
17397
17408
|
}
|
|
17409
|
+
isAfterDay(date, comparing) {
|
|
17410
|
+
return isAfterDay(date, comparing);
|
|
17411
|
+
}
|
|
17398
17412
|
isBefore(date, comparing) {
|
|
17399
17413
|
return !isAfter(date, comparing) && !isEqual(date, comparing);
|
|
17400
17414
|
}
|
|
@@ -17404,6 +17418,9 @@
|
|
|
17404
17418
|
isSameMonth(date, comparing) {
|
|
17405
17419
|
return isSameMonth(date, comparing);
|
|
17406
17420
|
}
|
|
17421
|
+
isSameYear(date, comparing) {
|
|
17422
|
+
return isSameYear(date, comparing);
|
|
17423
|
+
}
|
|
17407
17424
|
setMinutes(date, count) {
|
|
17408
17425
|
return setMinutes(date, count);
|
|
17409
17426
|
}
|
|
@@ -17431,6 +17448,9 @@
|
|
|
17431
17448
|
getNextMonth(date) {
|
|
17432
17449
|
return getNextMonth(date);
|
|
17433
17450
|
}
|
|
17451
|
+
getPreviousMonth(date) {
|
|
17452
|
+
return getPreviousMonth(date);
|
|
17453
|
+
}
|
|
17434
17454
|
getHours(date) {
|
|
17435
17455
|
return getHours(date);
|
|
17436
17456
|
}
|
|
@@ -26224,7 +26244,7 @@
|
|
|
26224
26244
|
goTo
|
|
26225
26245
|
};
|
|
26226
26246
|
}
|
|
26227
|
-
const version$1 = "3.5.3-dev.2024-03-
|
|
26247
|
+
const version$1 = "3.5.3-dev.2024-03-07";
|
|
26228
26248
|
createVuetify$1.version = version$1;
|
|
26229
26249
|
|
|
26230
26250
|
// Vue's inject() can only be used in setup
|
|
@@ -26238,7 +26258,7 @@
|
|
|
26238
26258
|
|
|
26239
26259
|
/* eslint-disable local-rules/sort-imports */
|
|
26240
26260
|
|
|
26241
|
-
const version = "3.5.3-dev.2024-03-
|
|
26261
|
+
const version = "3.5.3-dev.2024-03-07";
|
|
26242
26262
|
|
|
26243
26263
|
/* eslint-disable local-rules/sort-imports */
|
|
26244
26264
|
|