design-system-silkhaus 0.0.85-beta.5 → 0.0.85-beta.7

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
@@ -119,6 +119,10 @@ export declare const DateRangePicker: React_2.ForwardRefExoticComponent<DateRang
119
119
  declare interface DateRangePickerProps {
120
120
  startDatePlaceholderText?: string;
121
121
  endDatePlaceholderText?: string;
122
+ onDatesSelected?: (dates: {
123
+ startDate: Moment | null;
124
+ endDate: Moment | null;
125
+ }) => void;
122
126
  onDatesChange?: (dates: {
123
127
  startDate: Moment | null;
124
128
  endDate: Moment | null;