Skip to content

Releases: wojtekmaj/react-date-picker

v6.3.1

15 Nov 22:22
Compare
Choose a tag to compare

What's new?

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

14 Nov 17:23
Compare
Choose a tag to compare

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 or react-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

10 Nov 16:19
Compare
Choose a tag to compare

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

23 Oct 12:20
Compare
Choose a tag to compare

Bug fixes

  • Fixed package missing critical files because of misconfiguration (#9). Thanks, @marcofugaro!

v6.2.1

22 Oct 15:45
Compare
Choose a tag to compare

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

07 Oct 09:31
Compare
Choose a tag to compare

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.

v6.1.2

03 Oct 20:20
Compare
Choose a tag to compare

Bug fixes

  • Fixed an error that could have caused React-Date-Picker to crash when set to decade picking mode without having maxDate defined.

v6.1.1

01 Oct 20:59
Compare
Choose a tag to compare

Bug fixes

  • Fixed a bug that caused input fields to render with increment/decrement arrows on Mozilla Firefox.

v6.1.0

01 Oct 09:19
Compare
Choose a tag to compare

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

01 Oct 09:18
Compare
Choose a tag to compare

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.