@utrecht/calendar-react 1.1.4 → 1.1.5

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/index.mjs CHANGED
@@ -3944,7 +3944,7 @@ const Calendar = ({ onCalendarClick, events, currentDate, locale = enUS, previou
3944
3944
  setVisibleMonth(day.date);
3945
3945
  setSelectedDate(day.date);
3946
3946
  onCalendarClick(formatISO(day.date));
3947
- }, "aria-label": format(day.date, 'eeee dd LLLL Y', { locale }), day: day.date.getDate().toString(), emphasis: day.emphasis, selected: day.selected || (selectedDate && isSameDay(day.date, selectedDate)), disabled: day.disabled ||
3947
+ }, "aria-label": format(day.date, 'eeee dd LLLL y', { locale }), day: day.date.getDate().toString(), emphasis: day.emphasis, selected: day.selected || (selectedDate && isSameDay(day.date, selectedDate)), disabled: day.disabled ||
3948
3948
  (minDate && isBefore(day.date, startOfDay(minDate))) ||
3949
3949
  (maxDate && isAfter(day.date, endOfDay(maxDate))) }, index));
3950
3950
  }) }, index))) })] })] }));