Skip to content

Commit

Permalink
fix(components): datepicker - make autodismiss prop optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Artur Yorsh authored and malashkevich committed Jan 22, 2021
1 parent c681948 commit 123eb2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ui/datepicker/datepicker.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
import { TextProps } from '../text/text.component';

export interface DatepickerProps<D = Date> extends BaseDatepickerProps<D>, CalendarProps<D> {
autoDismiss: boolean;
autoDismiss?: boolean;
}

export type DatepickerElement<D = Date> = React.ReactElement<DatepickerProps<D>>;
Expand Down

0 comments on commit 123eb2b

Please sign in to comment.