@vuetify/nightly 3.6.1-dev.2024-05-01 → 3.6.1-master.2024-05-01

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.1-dev.2024-05-01
2
+ * Vuetify v3.6.1-master.2024-05-01
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17524,6 +17524,7 @@ function addWeeks(date, amount) {
17524
17524
  }
17525
17525
  function addMonths(date, amount) {
17526
17526
  const d = new Date(date);
17527
+ d.setDate(1);
17527
17528
  d.setMonth(d.getMonth() + amount);
17528
17529
  return d;
17529
17530
  }
@@ -21858,9 +21859,9 @@ const VDatePicker = genericComponent()({
21858
21859
  });
21859
21860
  const text = computed(() => {
21860
21861
  let date = adapter.date();
21861
- date = adapter.setYear(date, year.value);
21862
- date = adapter.setMonth(date, month.value);
21863
21862
  date = adapter.setDate(date, 1);
21863
+ date = adapter.setMonth(date, month.value);
21864
+ date = adapter.setYear(date, year.value);
21864
21865
  return adapter.format(date, 'monthAndYear');
21865
21866
  });
21866
21867
  // const headerIcon = computed(() => props.inputMode === 'calendar' ? props.keyboardIcon : props.calendarIcon)
@@ -29757,7 +29758,7 @@ function createVuetify$1() {
29757
29758
  goTo
29758
29759
  };
29759
29760
  }
29760
- const version$1 = "3.6.1-dev.2024-05-01";
29761
+ const version$1 = "3.6.1-master.2024-05-01";
29761
29762
  createVuetify$1.version = version$1;
29762
29763
 
29763
29764
  // Vue's inject() can only be used in setup
@@ -30010,7 +30011,7 @@ var index = /*#__PURE__*/Object.freeze({
30010
30011
 
30011
30012
  /* eslint-disable local-rules/sort-imports */
30012
30013
 
30013
- const version = "3.6.1-dev.2024-05-01";
30014
+ const version = "3.6.1-master.2024-05-01";
30014
30015
 
30015
30016
  /* eslint-disable local-rules/sort-imports */
30016
30017