Releases: wojtekmaj/react-date-picker
Releases · wojtekmaj/react-date-picker
v6.3.1
What's new?
- Updated React-Calendar dependency.
Bug fixes
- Fixed an issue that caused calendar to close when clicking on drilldown buttons on it on macOS (#21). Thanks, @joebourne!
v6.3.0
What's new?
- Added TypeScript definitions (#17). Thanks, @third774!
- Added more classes for easier styling. Now, depending on whether React-Date-Picker has calendar opened, it additionally gets
react-date-picker--open
orreact-date-picker--closed
class.
Bug fixes
- Fixed an issue that caused calendar to close when clicking on navigation buttons on it on macOS (#15). Thanks, @joebourne!
- Fixed an issue causing keyboard focus not to jump to the next field when pressing a key with current divider.
v6.2.4
What's new
- Dividers are now wrapped in their own
<span>
s with className defined for easier styling. Thanks for suggestion, @DaveyEdwards!
Bug fixes
- Fix dividers misaligned with default styling (#12). Thanks again, @DaveyEdwards!
v6.2.2
v6.2.1
Enhancements
- React-Date-Picker no longer relies on
<form>
for data validation, resulting in increased reliability when placed inside a form.
Bug fixes
- Fixed a bug that caused Calendar button to submit the form when React-Date-Picker was placed in one. Thanks, @marcofugaro!
v6.2.0
What's new?
- You can now pass custom class names to React-Date-Picker and React-Calendar. Accepted formats? Pretty much anything.
- className that will be added along with "react-date-picker" to the main React-Date-Picker
<div>
element. - calendarClassName that will be added along with "react-calendar" to the main React-Calendar
<div>
element.
- className that will be added along with "react-date-picker" to the main React-Date-Picker
v6.1.2
v6.1.1
v6.1.0
What's new?
- Styles are now added automatically. You no longer need to import them manually. If you wish to style React-Date-Picker from the ground up, it's still possible by using
/build/entry.nostyle
entry file. - Precompiled CSS files are now added to the package.
Bug fixes
- Fixed calendar overflowing on very small screens like iPhone 5.
v6.0.0
React-Date-Picker is now on NPM and Yarn! 🎉
As React-Date-Picker name was previously used by another library, to avoid confusion, versioning had to be aligned with preexisting npm package.
What's new?
- Introduced automated unit testing for enhanced quality.
- You can now use
DateInput
as a standalone component. - Calendar now won't be rendered in the background until needed for the first time.
- DatePicker will now open/close the calendar when
isOpen
flag changes. - Various architectural improvements and optimizations.
Bug fixes
- Fixed inputs being validated too quickly resulting in inability to write certain numbers.