@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.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
|
*/
|
|
@@ -2672,14 +2672,16 @@
|
|
|
2672
2672
|
type: String,
|
|
2673
2673
|
default: mode
|
|
2674
2674
|
},
|
|
2675
|
-
disabled: Boolean
|
|
2675
|
+
disabled: Boolean,
|
|
2676
|
+
group: Boolean
|
|
2676
2677
|
},
|
|
2677
2678
|
setup(props, _ref2) {
|
|
2678
2679
|
let {
|
|
2679
2680
|
slots
|
|
2680
2681
|
} = _ref2;
|
|
2682
|
+
const tag = props.group ? vue.TransitionGroup : vue.Transition;
|
|
2681
2683
|
return () => {
|
|
2682
|
-
return vue.h(
|
|
2684
|
+
return vue.h(tag, {
|
|
2683
2685
|
name: props.disabled ? '' : name,
|
|
2684
2686
|
css: !props.disabled,
|
|
2685
2687
|
// mode: props.mode, // TODO: vuejs/vue-next#3104
|
|
@@ -17259,6 +17261,9 @@
|
|
|
17259
17261
|
function getNextMonth(date) {
|
|
17260
17262
|
return new Date(date.getFullYear(), date.getMonth() + 1, 1);
|
|
17261
17263
|
}
|
|
17264
|
+
function getPreviousMonth(date) {
|
|
17265
|
+
return new Date(date.getFullYear(), date.getMonth() - 1, 1);
|
|
17266
|
+
}
|
|
17262
17267
|
function getHours(date) {
|
|
17263
17268
|
return date.getHours();
|
|
17264
17269
|
}
|
|
@@ -17281,6 +17286,9 @@
|
|
|
17281
17286
|
function isAfter(date, comparing) {
|
|
17282
17287
|
return date.getTime() > comparing.getTime();
|
|
17283
17288
|
}
|
|
17289
|
+
function isAfterDay(date, comparing) {
|
|
17290
|
+
return isAfter(startOfDay(date), startOfDay(comparing));
|
|
17291
|
+
}
|
|
17284
17292
|
function isBefore(date, comparing) {
|
|
17285
17293
|
return date.getTime() < comparing.getTime();
|
|
17286
17294
|
}
|
|
@@ -17293,6 +17301,9 @@
|
|
|
17293
17301
|
function isSameMonth(date, comparing) {
|
|
17294
17302
|
return date.getMonth() === comparing.getMonth() && date.getFullYear() === comparing.getFullYear();
|
|
17295
17303
|
}
|
|
17304
|
+
function isSameYear(date, comparing) {
|
|
17305
|
+
return date.getFullYear() === comparing.getFullYear();
|
|
17306
|
+
}
|
|
17296
17307
|
function getDiff(date, comparing, unit) {
|
|
17297
17308
|
const d = new Date(date);
|
|
17298
17309
|
const c = new Date(comparing);
|
|
@@ -17389,6 +17400,9 @@
|
|
|
17389
17400
|
isAfter(date, comparing) {
|
|
17390
17401
|
return isAfter(date, comparing);
|
|
17391
17402
|
}
|
|
17403
|
+
isAfterDay(date, comparing) {
|
|
17404
|
+
return isAfterDay(date, comparing);
|
|
17405
|
+
}
|
|
17392
17406
|
isBefore(date, comparing) {
|
|
17393
17407
|
return !isAfter(date, comparing) && !isEqual(date, comparing);
|
|
17394
17408
|
}
|
|
@@ -17398,6 +17412,9 @@
|
|
|
17398
17412
|
isSameMonth(date, comparing) {
|
|
17399
17413
|
return isSameMonth(date, comparing);
|
|
17400
17414
|
}
|
|
17415
|
+
isSameYear(date, comparing) {
|
|
17416
|
+
return isSameYear(date, comparing);
|
|
17417
|
+
}
|
|
17401
17418
|
setMinutes(date, count) {
|
|
17402
17419
|
return setMinutes(date, count);
|
|
17403
17420
|
}
|
|
@@ -17425,6 +17442,9 @@
|
|
|
17425
17442
|
getNextMonth(date) {
|
|
17426
17443
|
return getNextMonth(date);
|
|
17427
17444
|
}
|
|
17445
|
+
getPreviousMonth(date) {
|
|
17446
|
+
return getPreviousMonth(date);
|
|
17447
|
+
}
|
|
17428
17448
|
getHours(date) {
|
|
17429
17449
|
return getHours(date);
|
|
17430
17450
|
}
|
|
@@ -25666,7 +25686,7 @@
|
|
|
25666
25686
|
goTo
|
|
25667
25687
|
};
|
|
25668
25688
|
}
|
|
25669
|
-
const version$1 = "3.5.3-dev.2024-03-
|
|
25689
|
+
const version$1 = "3.5.3-dev.2024-03-07";
|
|
25670
25690
|
createVuetify$1.version = version$1;
|
|
25671
25691
|
|
|
25672
25692
|
// Vue's inject() can only be used in setup
|
|
@@ -25691,7 +25711,7 @@
|
|
|
25691
25711
|
...options
|
|
25692
25712
|
});
|
|
25693
25713
|
};
|
|
25694
|
-
const version = "3.5.3-dev.2024-03-
|
|
25714
|
+
const version = "3.5.3-dev.2024-03-07";
|
|
25695
25715
|
createVuetify.version = version;
|
|
25696
25716
|
|
|
25697
25717
|
exports.components = components;
|