@vuetify/nightly 3.6.9-master.2024-06-15 → 3.6.9-master.2024-06-18
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-labs.json +22 -22
- package/dist/json/importMap.json +104 -104
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +2527 -2527
- package/dist/vuetify-labs.esm.js +8 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +8 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1443 -1443
- package/dist/vuetify.d.ts +40 -40
- package/dist/vuetify.esm.js +8 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +8 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +7 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs +5 -2
- 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 +40 -40
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.9-master.2024-06-
|
2
|
+
* Vuetify v3.6.9-master.2024-06-18
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -22045,8 +22045,11 @@
|
|
22045
22045
|
emit('update:year', value);
|
22046
22046
|
}
|
22047
22047
|
vue.watch(model, (val, oldVal) => {
|
22048
|
-
const
|
22049
|
-
const
|
22048
|
+
const arrBefore = wrapInArray(oldVal);
|
22049
|
+
const arrAfter = wrapInArray(val);
|
22050
|
+
if (!arrAfter.length) return;
|
22051
|
+
const before = adapter.date(arrBefore[arrBefore.length - 1]);
|
22052
|
+
const after = adapter.date(arrAfter[arrAfter.length - 1]);
|
22050
22053
|
const newMonth = adapter.getMonth(after);
|
22051
22054
|
const newYear = adapter.getYear(after);
|
22052
22055
|
if (newMonth !== month.value) {
|
@@ -30270,7 +30273,7 @@
|
|
30270
30273
|
goTo
|
30271
30274
|
};
|
30272
30275
|
}
|
30273
|
-
const version$1 = "3.6.9-master.2024-06-
|
30276
|
+
const version$1 = "3.6.9-master.2024-06-18";
|
30274
30277
|
createVuetify$1.version = version$1;
|
30275
30278
|
|
30276
30279
|
// Vue's inject() can only be used in setup
|
@@ -30523,7 +30526,7 @@
|
|
30523
30526
|
|
30524
30527
|
/* eslint-disable local-rules/sort-imports */
|
30525
30528
|
|
30526
|
-
const version = "3.6.9-master.2024-06-
|
30529
|
+
const version = "3.6.9-master.2024-06-18";
|
30527
30530
|
|
30528
30531
|
/* eslint-disable local-rules/sort-imports */
|
30529
30532
|
|