Skip to content

Commit

Permalink
Fix #2763: Calendar onMonthChange made optional (#2767)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Apr 18, 2022
1 parent 088948b commit 37e2d45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/calendar/Calendar.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export interface CalendarProps {
onInput?(event: React.FormEvent<HTMLInputElement>): void;
onSelect?(e: CalendarSelectParams): void;
onChange?(e: CalendarChangeParams): void;
onMonthChange(e: CalendarMonthChangeParams): void
onMonthChange?(e: CalendarMonthChangeParams): void
onViewDateChange?(e: CalendarViewChangeParams): void;
onTodayButtonClick?(event: React.MouseEvent<HTMLButtonElement>): void;
onClearButtonClick?(event: React.MouseEvent<HTMLButtonElement>): void;
Expand Down

0 comments on commit 37e2d45

Please sign in to comment.