Skip to content

Releases: wojtekmaj/react-date-picker

v12.0.2

Choose a tag to compare

@wojtekmaj wojtekmaj released this 07 Apr 13:01
Immutable release. Only release title and notes can be modified.
f9798aa

This is our first release that uses OIDC trusted publishing and immutable releases! 🎉

Bug fixes

  • Fixed TypeError: get format called on incompatible undefined thrown on some browsers.

v12.0.1

Choose a tag to compare

@wojtekmaj wojtekmaj released this 05 Aug 13:27
6d3a5fd

Bug fixes

  • Fixed build issue.

v12.0.0

Choose a tag to compare

@wojtekmaj wojtekmaj released this 05 Aug 13:05
f097224

❗️ = breaking change

What's new?

  • ❗️ Dropped CommonJS build, making the package ESM-only. Chances are you're not going to be affected by this change at all, as all common bundlers support ESM out of the box.
    • However, you may encounter issues running unit tests using Jest. Consider migrating to Vitest.

v11.0.0

Choose a tag to compare

@wojtekmaj wojtekmaj released this 30 Apr 09:16
005911c

❗️ = breaking change

What's new?

  • Added support for React 19.

What's changed?

  • ❗️ New JSX transform is now required. Most likely, you’re already using it, but if you’re not, you’ll need to enable it by following the instructions in the linked blog post.
  • ❗️ propTypes were removed. If you’re using propTypes, we recommend migrating to TypeScript or another type-checking solution.
  • ❗️ Props intended for consumption by React-Calendar should now be passed via the calendarProps prop. This change was made to avoid conflicts with React-Date-Picker's own props and to make customization easier (#400).

Bug fixes

  • Fixed leading zero having different font in certain scenarios. Thanks, @AaronWatson2975!

v10.6.0

Choose a tag to compare

@wojtekmaj wojtekmaj released this 09 Dec 21:28
2c5d343

What's new?

  • Improved developer experience by moving prop documentation to JSDoc. This means that you can now see descriptions, default values, and examples for all props in your IDE.
  • Improved documentation.

v10.5.2

Choose a tag to compare

@wojtekmaj wojtekmaj released this 18 Oct 13:15
7ad3809

What's new?

v10.5.1

Choose a tag to compare

@wojtekmaj wojtekmaj released this 28 Sep 10:43
f530fd1

Bug fixes

  • Fixed "Failed prop type: DatePicker: prop type portalContainer is invalid" error when using server-side rendering.

v10.5.0

Choose a tag to compare

@wojtekmaj wojtekmaj released this 28 Jul 06:45
1ed5cda

What's new?

  • Added module format-agnostic exports for internals used by other packages.

Bug fixes

  • Fixed "ReferenceError: HTMLElement is not defined" error when using server-side rendering.

v10.4.1

Choose a tag to compare

@wojtekmaj wojtekmaj released this 27 Jul 21:35
7c5734a

Bug fixes

  • Fixed backwards compatibility with legacy module resolution.

v10.4.0

Choose a tag to compare

@wojtekmaj wojtekmaj released this 27 Jul 21:25
f1d5c2e

What's new?

  • Added support for native ESM modules (#631).

What's changed?

  • Improved propTypes.
  • Improved TypeScript types.

Bug fixes

  • Fixed propTypes declared twice in every declaration file.