@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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.9-master.2024-06-15
2
+ * Vuetify v3.6.9-master.2024-06-18
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -22041,8 +22041,11 @@ const VDatePicker = genericComponent()({
22041
22041
  emit('update:year', value);
22042
22042
  }
22043
22043
  watch(model, (val, oldVal) => {
22044
- const before = adapter.date(wrapInArray(oldVal)[oldVal.length - 1]);
22045
- const after = adapter.date(wrapInArray(val)[val.length - 1]);
22044
+ const arrBefore = wrapInArray(oldVal);
22045
+ const arrAfter = wrapInArray(val);
22046
+ if (!arrAfter.length) return;
22047
+ const before = adapter.date(arrBefore[arrBefore.length - 1]);
22048
+ const after = adapter.date(arrAfter[arrAfter.length - 1]);
22046
22049
  const newMonth = adapter.getMonth(after);
22047
22050
  const newYear = adapter.getYear(after);
22048
22051
  if (newMonth !== month.value) {
@@ -30266,7 +30269,7 @@ function createVuetify$1() {
30266
30269
  goTo
30267
30270
  };
30268
30271
  }
30269
- const version$1 = "3.6.9-master.2024-06-15";
30272
+ const version$1 = "3.6.9-master.2024-06-18";
30270
30273
  createVuetify$1.version = version$1;
30271
30274
 
30272
30275
  // Vue's inject() can only be used in setup
@@ -30519,7 +30522,7 @@ var index = /*#__PURE__*/Object.freeze({
30519
30522
 
30520
30523
  /* eslint-disable local-rules/sort-imports */
30521
30524
 
30522
- const version = "3.6.9-master.2024-06-15";
30525
+ const version = "3.6.9-master.2024-06-18";
30523
30526
 
30524
30527
  /* eslint-disable local-rules/sort-imports */
30525
30528