@vuetify/nightly 3.8.1-master.2025-04-14 → 3.8.1-master.2025-04-15

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.1-master.2025-04-14
2
+ * Vuetify v3.8.1-master.2025-04-15
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -21910,7 +21910,7 @@
21910
21910
  },
21911
21911
  firstDayOfWeek: {
21912
21912
  type: [Number, String],
21913
- default: 0
21913
+ default: undefined
21914
21914
  }
21915
21915
  }, 'calendar');
21916
21916
  function useCalendar(props) {
@@ -21933,14 +21933,12 @@
21933
21933
  return adapter.setMonth(date, value);
21934
21934
  }, v => adapter.getMonth(v));
21935
21935
  const weekDays = vue.computed(() => {
21936
- const firstDayOfWeek = Number(props.firstDayOfWeek);
21937
-
21936
+ const firstDayOfWeek = adapter.toJsDate(adapter.startOfWeek(adapter.date(), props.firstDayOfWeek)).getDay();
21938
21937
  // Always generate all days, regardless of props.weekdays
21939
21938
  return [0, 1, 2, 3, 4, 5, 6].map(day => (day + firstDayOfWeek) % 7);
21940
21939
  });
21941
21940
  const weeksInMonth = vue.computed(() => {
21942
- const firstDayOfWeek = Number(props.firstDayOfWeek);
21943
- const weeks = adapter.getWeekArray(month.value, firstDayOfWeek);
21941
+ const weeks = adapter.getWeekArray(month.value, props.firstDayOfWeek);
21944
21942
  const days = weeks.flat();
21945
21943
 
21946
21944
  // Make sure there's always 6 weeks in month (6 * 7 days)
@@ -31497,7 +31495,7 @@
31497
31495
  };
31498
31496
  });
31499
31497
  }
31500
- const version$1 = "3.8.1-master.2025-04-14";
31498
+ const version$1 = "3.8.1-master.2025-04-15";
31501
31499
  createVuetify$1.version = version$1;
31502
31500
 
31503
31501
  // Vue's inject() can only be used in setup
@@ -31782,7 +31780,7 @@
31782
31780
 
31783
31781
  /* eslint-disable local-rules/sort-imports */
31784
31782
 
31785
- const version = "3.8.1-master.2025-04-14";
31783
+ const version = "3.8.1-master.2025-04-15";
31786
31784
 
31787
31785
  /* eslint-disable local-rules/sort-imports */
31788
31786