@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.
package/dist/vuetify.js CHANGED
@@ -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
  */
@@ -17761,6 +17761,7 @@
17761
17761
  }
17762
17762
  function addMonths(date, amount) {
17763
17763
  const d = new Date(date);
17764
+ d.setDate(1);
17764
17765
  d.setMonth(d.getMonth() + amount);
17765
17766
  return d;
17766
17767
  }
@@ -22095,9 +22096,9 @@
22095
22096
  });
22096
22097
  const text = vue.computed(() => {
22097
22098
  let date = adapter.date();
22098
- date = adapter.setYear(date, year.value);
22099
- date = adapter.setMonth(date, month.value);
22100
22099
  date = adapter.setDate(date, 1);
22100
+ date = adapter.setMonth(date, month.value);
22101
+ date = adapter.setYear(date, year.value);
22101
22102
  return adapter.format(date, 'monthAndYear');
22102
22103
  });
22103
22104
  // const headerIcon = computed(() => props.inputMode === 'calendar' ? props.keyboardIcon : props.calendarIcon)
@@ -27921,7 +27922,7 @@
27921
27922
  goTo
27922
27923
  };
27923
27924
  }
27924
- const version$1 = "3.6.1-dev.2024-05-01";
27925
+ const version$1 = "3.6.1-master.2024-05-01";
27925
27926
  createVuetify$1.version = version$1;
27926
27927
 
27927
27928
  // Vue's inject() can only be used in setup
@@ -27946,7 +27947,7 @@
27946
27947
  ...options
27947
27948
  });
27948
27949
  };
27949
- const version = "3.6.1-dev.2024-05-01";
27950
+ const version = "3.6.1-master.2024-05-01";
27950
27951
  createVuetify.version = version;
27951
27952
 
27952
27953
  exports.blueprints = index;