design-system-silkhaus 0.0.85-beta.12 → 0.0.85-beta.13

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.d.ts CHANGED
@@ -142,6 +142,7 @@ declare interface DateRangePickerProps {
142
142
  onPrevMonthClick?: (e: unknown) => void;
143
143
  onNextMonthClick?: (e: unknown) => void;
144
144
  renderCalendarDay?: (props: CalendarDayShape) => React_2.ReactNode | undefined;
145
+ isDayBlocked?: ((day: Moment) => boolean) | undefined;
145
146
  renderDayContents?: (day: Moment, modifiers: ModifiersShape) => React_2.ReactNode | null | undefined;
146
147
  renderCalendarInfo?: () => React_2.ReactNode | null | undefined;
147
148
  _daySize?: number;