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.
package/dist/vuetify.js CHANGED
@@ -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
  */
@@ -22153,7 +22153,7 @@
22153
22153
  model.value = [value];
22154
22154
  }
22155
22155
  }
22156
- useRender(() => vue.createVNode("div", {
22156
+ return () => vue.createVNode("div", {
22157
22157
  "class": "v-date-picker-month"
22158
22158
  }, [props.showWeek && vue.createVNode("div", {
22159
22159
  "key": "weeks",
@@ -22175,13 +22175,6 @@
22175
22175
  }, [weekDay])), daysInMonth.value.map((item, i) => {
22176
22176
  const slotProps = {
22177
22177
  props: {
22178
- class: 'v-date-picker-month__day-btn',
22179
- color: (item.isSelected || item.isToday) && !item.isDisabled ? props.color : undefined,
22180
- disabled: item.isDisabled,
22181
- icon: true,
22182
- ripple: false,
22183
- text: item.localized,
22184
- variant: item.isDisabled ? item.isToday ? 'outlined' : 'text' : item.isToday && !item.isSelected ? 'outlined' : 'flat',
22185
22178
  onClick: () => onClick(item.date)
22186
22179
  },
22187
22180
  item,
@@ -22199,9 +22192,24 @@
22199
22192
  'v-date-picker-month__day--week-start': item.isWeekStart
22200
22193
  }],
22201
22194
  "data-v-date": !item.isDisabled ? item.isoDate : undefined
22202
- }, [(props.showAdjacentMonths || !item.isAdjacent) && (slots.day?.(slotProps) ?? vue.createVNode(VBtn, slotProps.props, null))]);
22195
+ }, [(props.showAdjacentMonths || !item.isAdjacent) && vue.createVNode(VDefaultsProvider, {
22196
+ "defaults": {
22197
+ VBtn: {
22198
+ class: 'v-date-picker-month__day-btn',
22199
+ color: (item.isSelected || item.isToday) && !item.isDisabled ? props.color : undefined,
22200
+ disabled: item.isDisabled,
22201
+ icon: true,
22202
+ ripple: false,
22203
+ text: item.localized,
22204
+ variant: item.isDisabled ? item.isToday ? 'outlined' : 'text' : item.isToday && !item.isSelected ? 'outlined' : 'flat',
22205
+ onClick: () => onClick(item.date)
22206
+ }
22207
+ }
22208
+ }, {
22209
+ default: () => [slots.day?.(slotProps) ?? vue.createVNode(VBtn, slotProps.props, null)]
22210
+ })]);
22203
22211
  })])]
22204
- })]));
22212
+ })]);
22205
22213
  }
22206
22214
  });
22207
22215
 
@@ -28448,7 +28456,7 @@
28448
28456
  goTo
28449
28457
  };
28450
28458
  }
28451
- const version$1 = "3.7.17";
28459
+ const version$1 = "3.7.18";
28452
28460
  createVuetify$1.version = version$1;
28453
28461
 
28454
28462
  // Vue's inject() can only be used in setup
@@ -28473,7 +28481,7 @@
28473
28481
  ...options
28474
28482
  });
28475
28483
  };
28476
- const version = "3.7.17";
28484
+ const version = "3.7.18";
28477
28485
  createVuetify.version = version;
28478
28486
 
28479
28487
  exports.blueprints = index;