vuetify 3.7.17 → 3.7.18

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.
@@ -29028,7 +29028,7 @@ declare const VDatePickerMonth: {
29028
29028
  "onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
29029
29029
  "onUpdate:month"?: ((date: number) => any) | undefined;
29030
29030
  "onUpdate:year"?: ((date: number) => any) | undefined;
29031
- }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
29031
+ }, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
29032
29032
  'update:modelValue': (date: unknown) => true;
29033
29033
  'update:month': (date: number) => true;
29034
29034
  'update:year': (date: number) => true;
@@ -29156,7 +29156,7 @@ declare const VDatePickerMonth: {
29156
29156
  "onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
29157
29157
  "onUpdate:month"?: ((date: number) => any) | undefined;
29158
29158
  "onUpdate:year"?: ((date: number) => any) | undefined;
29159
- }, {}, {}, {}, {}, {
29159
+ }, () => JSX.Element, {}, {}, {}, {
29160
29160
  transition: string;
29161
29161
  disabled: boolean;
29162
29162
  reverseTransition: string;
@@ -29219,7 +29219,7 @@ declare const VDatePickerMonth: {
29219
29219
  "onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
29220
29220
  "onUpdate:month"?: ((date: number) => any) | undefined;
29221
29221
  "onUpdate:year"?: ((date: number) => any) | undefined;
29222
- }, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
29222
+ }, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
29223
29223
  'update:modelValue': (date: unknown) => true;
29224
29224
  'update:month': (date: number) => true;
29225
29225
  'update:year': (date: number) => true;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.17
2
+ * Vuetify v3.7.18
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -21916,7 +21916,7 @@ const VDatePickerMonth = genericComponent()({
21916
21916
  model.value = [value];
21917
21917
  }
21918
21918
  }
21919
- useRender(() => createVNode("div", {
21919
+ return () => createVNode("div", {
21920
21920
  "class": "v-date-picker-month"
21921
21921
  }, [props.showWeek && createVNode("div", {
21922
21922
  "key": "weeks",
@@ -21938,13 +21938,6 @@ const VDatePickerMonth = genericComponent()({
21938
21938
  }, [weekDay])), daysInMonth.value.map((item, i) => {
21939
21939
  const slotProps = {
21940
21940
  props: {
21941
- class: 'v-date-picker-month__day-btn',
21942
- color: (item.isSelected || item.isToday) && !item.isDisabled ? props.color : undefined,
21943
- disabled: item.isDisabled,
21944
- icon: true,
21945
- ripple: false,
21946
- text: item.localized,
21947
- variant: item.isDisabled ? item.isToday ? 'outlined' : 'text' : item.isToday && !item.isSelected ? 'outlined' : 'flat',
21948
21941
  onClick: () => onClick(item.date)
21949
21942
  },
21950
21943
  item,
@@ -21962,9 +21955,24 @@ const VDatePickerMonth = genericComponent()({
21962
21955
  'v-date-picker-month__day--week-start': item.isWeekStart
21963
21956
  }],
21964
21957
  "data-v-date": !item.isDisabled ? item.isoDate : undefined
21965
- }, [(props.showAdjacentMonths || !item.isAdjacent) && (slots.day?.(slotProps) ?? createVNode(VBtn, slotProps.props, null))]);
21958
+ }, [(props.showAdjacentMonths || !item.isAdjacent) && createVNode(VDefaultsProvider, {
21959
+ "defaults": {
21960
+ VBtn: {
21961
+ class: 'v-date-picker-month__day-btn',
21962
+ color: (item.isSelected || item.isToday) && !item.isDisabled ? props.color : undefined,
21963
+ disabled: item.isDisabled,
21964
+ icon: true,
21965
+ ripple: false,
21966
+ text: item.localized,
21967
+ variant: item.isDisabled ? item.isToday ? 'outlined' : 'text' : item.isToday && !item.isSelected ? 'outlined' : 'flat',
21968
+ onClick: () => onClick(item.date)
21969
+ }
21970
+ }
21971
+ }, {
21972
+ default: () => [slots.day?.(slotProps) ?? createVNode(VBtn, slotProps.props, null)]
21973
+ })]);
21966
21974
  })])]
21967
- })]));
21975
+ })]);
21968
21976
  }
21969
21977
  });
21970
21978
 
@@ -31072,7 +31080,7 @@ function createVuetify$1() {
31072
31080
  goTo
31073
31081
  };
31074
31082
  }
31075
- const version$1 = "3.7.17";
31083
+ const version$1 = "3.7.18";
31076
31084
  createVuetify$1.version = version$1;
31077
31085
 
31078
31086
  // Vue's inject() can only be used in setup
@@ -31325,7 +31333,7 @@ var index = /*#__PURE__*/Object.freeze({
31325
31333
 
31326
31334
  /* eslint-disable local-rules/sort-imports */
31327
31335
 
31328
- const version = "3.7.17";
31336
+ const version = "3.7.18";
31329
31337
 
31330
31338
  /* eslint-disable local-rules/sort-imports */
31331
31339