react-kronos
react-kronos copied to clipboard
preventClickOnDateTimeOutsideRange does not prevent clicks on today
When a minimum date is set, and preventClickOnDateTimeOutsideRange is set to true, the date picker prevents clicks on all dates in the specified range except today.
ex:
<Kronos
date={moment().add(2, 'week')}
onChangeDateTime={onChangeHandler}
min={moment().add(1, 'week')}
preventClickOnDateTimeOutsideRange
/>