@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/dist/vuetify.js CHANGED
@@ -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
  */
@@ -22278,8 +22278,11 @@
22278
22278
  emit('update:year', value);
22279
22279
  }
22280
22280
  vue.watch(model, (val, oldVal) => {
22281
- const before = adapter.date(wrapInArray(oldVal)[oldVal.length - 1]);
22282
- const after = adapter.date(wrapInArray(val)[val.length - 1]);
22281
+ const arrBefore = wrapInArray(oldVal);
22282
+ const arrAfter = wrapInArray(val);
22283
+ if (!arrAfter.length) return;
22284
+ const before = adapter.date(arrBefore[arrBefore.length - 1]);
22285
+ const after = adapter.date(arrAfter[arrAfter.length - 1]);
22283
22286
  const newMonth = adapter.getMonth(after);
22284
22287
  const newYear = adapter.getYear(after);
22285
22288
  if (newMonth !== month.value) {
@@ -28096,7 +28099,7 @@
28096
28099
  goTo
28097
28100
  };
28098
28101
  }
28099
- const version$1 = "3.6.9-master.2024-06-15";
28102
+ const version$1 = "3.6.9-master.2024-06-18";
28100
28103
  createVuetify$1.version = version$1;
28101
28104
 
28102
28105
  // Vue's inject() can only be used in setup
@@ -28121,7 +28124,7 @@
28121
28124
  ...options
28122
28125
  });
28123
28126
  };
28124
- const version = "3.6.9-master.2024-06-15";
28127
+ const version = "3.6.9-master.2024-06-18";
28125
28128
  createVuetify.version = version;
28126
28129
 
28127
28130
  exports.blueprints = index;