Releases: wojtekmaj/react-daterange-picker
Releases · wojtekmaj/react-daterange-picker
v3.3.1
v3.3.0
v3.2.0
v3.1.0
v3.0.1
v3.0.0
❗️ = breaking change
What's new?
- Updated React-Calendar to v3.0.0. This will reduce your bundle size and allow access to new exciting functions.
- Updated React-Date-Picker to v8.0.0.
- Added
closeCalendar
prop which, when set tofalse
, will overwrite default behavior of Calendar closing on value selection (#62). - Added
rangeDivider
prop which you may use to overwrite default divider between the two dates (#48). - Added support for handling dates in year < 1000.
What's changed?
- ❗️ React-DateRange-Picker no longer supports React versions lower than 16.3.
Bug fixes
- Fixed native form validation triggered on input.
- Disallowed non-numeric characters from being entered in number field.
v2.5.0
What's new?
- Added support for
autoFocus
prop. More details in README.
What's changed?
- Remove
role="presentation"
from DateInput which may have caused accessibility issues. Thanks, @emilyuhde! - React-DateRange-Picker no longer relies on React-Calendar with date calculations. Instead, they both use common shared library: @wojtekmaj/date-utils (#45).
- Implemented optimizations which should decrease build size.
Bug fixes
- Fixed month dropdown not accepting
monthPlaceholder
prop properly. Thanks, @linusmarco! - Fixed checking if font was loaded if no font was given.
v2.4.0
v2.3.0
What's new?
- Added support for
aria-label
s on each input and button. More on that in README. - Added support for
MMM
(short month) andMMMM
(long month) informat
prop. - Automatically jump to the next input if the user can't enter any more digits.
- You can now disable the calendar using
disableCalendar
prop.
What's changed?
- Documentation should now be easier to read thanks to improved clarity and default values column.
- Optimized the number of listeners attached by React-DateRange-Picker.
- Added more unit tests.
Bug fixes
- Fixed Calendar not closing in some cases on mobile Safari. Thanks, @victor-cordova!
- Fixed input value selection immediately un-selecting on non-Chromium versions of Microsoft Edge.
- Fixed default icon styling affecting custom icons by changing their
fill
properties.