@vuetify/nightly 3.7.9-master.2025-01-30 → 3.7.9-master.2025-02-03
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 +13 -3
- package/dist/json/attributes.json +2811 -2807
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +142 -142
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +5120 -5110
- package/dist/vuetify-labs.css +3836 -3836
- package/dist/vuetify-labs.d.ts +15 -0
- package/dist/vuetify-labs.esm.js +16 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +16 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +5694 -5694
- package/dist/vuetify.d.ts +48 -48
- package/dist/vuetify.esm.js +5 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +5 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs +2 -1
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +48 -48
- package/lib/labs/VTreeview/VTreeview.mjs +1 -1
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewChildren.mjs +13 -2
- package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +15 -0
- package/lib/labs/components.d.mts +15 -0
- package/lib/locale/da.mjs +5 -5
- package/lib/locale/da.mjs.map +1 -1
- package/lib/locale/de.mjs +3 -3
- package/lib/locale/de.mjs.map +1 -1
- package/lib/locale/fi.mjs +5 -5
- package/lib/locale/fi.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.9-master.2025-
|
2
|
+
* Vuetify v3.7.9-master.2025-02-03
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -22489,8 +22489,9 @@
|
|
22489
22489
|
targets.push(...['prev', 'next']);
|
22490
22490
|
} else {
|
22491
22491
|
let _date = adapter.date();
|
22492
|
-
_date = adapter.
|
22492
|
+
_date = adapter.startOfMonth(_date);
|
22493
22493
|
_date = adapter.setMonth(_date, month.value);
|
22494
|
+
_date = adapter.setYear(_date, year.value);
|
22494
22495
|
if (minDate.value) {
|
22495
22496
|
const date = adapter.addDays(adapter.startOfMonth(_date), -1);
|
22496
22497
|
adapter.isAfter(minDate.value, date) && targets.push('prev');
|
@@ -28378,7 +28379,7 @@
|
|
28378
28379
|
goTo
|
28379
28380
|
};
|
28380
28381
|
}
|
28381
|
-
const version$1 = "3.7.9-master.2025-
|
28382
|
+
const version$1 = "3.7.9-master.2025-02-03";
|
28382
28383
|
createVuetify$1.version = version$1;
|
28383
28384
|
|
28384
28385
|
// Vue's inject() can only be used in setup
|
@@ -28403,7 +28404,7 @@
|
|
28403
28404
|
...options
|
28404
28405
|
});
|
28405
28406
|
};
|
28406
|
-
const version = "3.7.9-master.2025-
|
28407
|
+
const version = "3.7.9-master.2025-02-03";
|
28407
28408
|
createVuetify.version = version;
|
28408
28409
|
|
28409
28410
|
exports.blueprints = index;
|