@vuetify/nightly 3.8.12-master.2025-07-02 → 3.8.12-master.2025-07-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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.12-master.2025-07-02
2
+ * Vuetify v3.8.12-master.2025-07-03
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -22707,7 +22707,8 @@
22707
22707
  }
22708
22708
  function allowedMonths(month) {
22709
22709
  if (typeof props.allowedDates === 'function') {
22710
- const startOfMonth = adapter.parseISO(`${year.value}-${month + 1}-01`);
22710
+ const monthTwoDigits = String(month + 1).padStart(2, '0');
22711
+ const startOfMonth = adapter.parseISO(`${year.value}-${monthTwoDigits}-01`);
22711
22712
  return isAllowedInRange(startOfMonth, adapter.endOfMonth(startOfMonth));
22712
22713
  }
22713
22714
  if (Array.isArray(props.allowedDates) && props.allowedDates.length) {
@@ -29310,7 +29311,7 @@
29310
29311
  weekNumber: weekNumbers.value[wi],
29311
29312
  week
29312
29313
  }))), [weekNumbers.value[wi]]) : '', week.map(day => vue.createVNode(VCalendarMonthDay, vue.mergeProps({
29313
- "key": day.date.getTime()
29314
+ "key": adapter.toJsDate(day.date).getTime()
29314
29315
  }, calendarDayProps, {
29315
29316
  "day": day,
29316
29317
  "title": adapter.format(day.date, 'dayOfMonth'),
@@ -32200,7 +32201,7 @@
32200
32201
  };
32201
32202
  });
32202
32203
  }
32203
- const version$1 = "3.8.12-master.2025-07-02";
32204
+ const version$1 = "3.8.12-master.2025-07-03";
32204
32205
  createVuetify$1.version = version$1;
32205
32206
 
32206
32207
  // Vue's inject() can only be used in setup
@@ -32498,7 +32499,7 @@
32498
32499
 
32499
32500
  /* eslint-disable local-rules/sort-imports */
32500
32501
 
32501
- const version = "3.8.12-master.2025-07-02";
32502
+ const version = "3.8.12-master.2025-07-03";
32502
32503
 
32503
32504
  /* eslint-disable local-rules/sort-imports */
32504
32505