@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.
package/dist/vuetify.js CHANGED
@@ -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
  */
@@ -22985,7 +22985,8 @@
22985
22985
  }
22986
22986
  function allowedMonths(month) {
22987
22987
  if (typeof props.allowedDates === 'function') {
22988
- const startOfMonth = adapter.parseISO(`${year.value}-${month + 1}-01`);
22988
+ const monthTwoDigits = String(month + 1).padStart(2, '0');
22989
+ const startOfMonth = adapter.parseISO(`${year.value}-${monthTwoDigits}-01`);
22989
22990
  return isAllowedInRange(startOfMonth, adapter.endOfMonth(startOfMonth));
22990
22991
  }
22991
22992
  if (Array.isArray(props.allowedDates) && props.allowedDates.length) {
@@ -29509,7 +29510,7 @@
29509
29510
  };
29510
29511
  });
29511
29512
  }
29512
- const version$1 = "3.8.12-master.2025-07-02";
29513
+ const version$1 = "3.8.12-master.2025-07-03";
29513
29514
  createVuetify$1.version = version$1;
29514
29515
 
29515
29516
  // Vue's inject() can only be used in setup
@@ -29534,7 +29535,7 @@
29534
29535
  ...options
29535
29536
  });
29536
29537
  };
29537
- const version = "3.8.12-master.2025-07-02";
29538
+ const version = "3.8.12-master.2025-07-03";
29538
29539
  createVuetify.version = version;
29539
29540
 
29540
29541
  exports.blueprints = index;