Skip to content

Releases: wojtekmaj/react-calendar

v2.17.2

03 Sep 16:47
Compare
Choose a tag to compare

What's changed?

Bug fixes

  • Fixed PropType error that might have appeared in some cases (#106). Thanks, @same31!
  • Fixed an issue which caused activeStartDate to be occasionally missing from tileDisabled arguments (#106). Thanks, @same31!

v2.17.1

22 Aug 09:26
Compare
Choose a tag to compare

Bug fixes

  • Fixed crash on Internet Explorer 11 (#104).

v2.17.0

18 Aug 16:20
Compare
Choose a tag to compare

What's new?

  • More locales have Sunday-first calendar applied. See #102 for details.
  • Arabic and Hebrew calendars were added. See #102 for details.
  • showFixedNumberOfWeeks flag was added that will force React-Calendar to always show 6 weeks in order to prevent the calendar changing height (#96).

What's changed?

  • React-Calendar now uses get-user-locale to get user's locale data. This should be more reliable, especially on macOS/iOS prior to 10.2.

Bug fixes

  • Fixed react-dalendar__tile--now class not added when value was not provided (#101).
  • Fixed calendar not updating when only time was changed in value provided. As a result of this bug, React-Calendar failed to switch between partial/full date highlight.

v2.17.0-beta

14 Aug 07:39
Compare
Choose a tag to compare
v2.17.0-beta Pre-release
Pre-release

What's new?

  • More locales have Sunday-first calendar applied. See #102 for details.
  • Arabic and Hebrew calendars were added. See #102 for details.
  • showFixedNumberOfWeeks flag was added that will force React-Calendar to always show 6 weeks in order to prevent the calendar changing height (#96).

Bug fixes

  • Fixed react-dalendar__tile--now class not added when value was not provided (#101).

v2.16.1

15 Jul 15:11
Compare
Choose a tag to compare

Largely a maintenance update. All dependencies have been updated and new Airbnb ESLint rules have been enforced.

Bug fixes

  • Fixed a bug that caused Navigation component to keep month name in old locale until the navigation occurred, when locale has changed.

v2.16.0

28 Jun 06:39
Compare
Choose a tag to compare

What's new?

  • Selected days will now get additional CSS classes, --rangeStart, --rangeEnd and --rangeBothEnds, depending on if they are at the beginning, end, or both beginning and end of a selection (#83, #84). Thanks, @ritz078!

Bug fixes

  • Fixed typings not allowing null for prev2Label and next2Label (#74). Thanks, @fhessenberger!

v2.15.2

12 Jun 19:32
Compare
Choose a tag to compare

Updated react-lifecycles-compat to the newest version. There are no user- or developer-facing changes (#81). Thanks, @kuzyk!

v2.15.1

29 May 11:54
Compare
Choose a tag to compare

Emergency update to fix common issues that were caused by breaking changes introduced in React 16.4.0.

Bug fixes

  • Fixed Calendar's navigation, setting range and view broken or semi-broken on React 16.4+.

v2.15.0

24 May 20:03
Compare
Choose a tag to compare

What's new?

  • Added navigationLabel prop which makes you able to change the label displayed on the navigation bar. See more details in README.md. Thanks, @bjenkins24!
  • You can now disable "«" & "»" buttons by setting explicitly prev2Label and next2Label respectively to null.
  • TypeScript type definitions are now also provided for entry.nostyle variant. Thanks, @szdc!
  • Added reliability improvements in cases where array of values in which one or more value is invalid is provided.

Bug fixes

  • Minor fixes to documentation. Thanks, @saitodisse!
  • Fixed builds created from macOS X having unnecessary files added to the build. Thanks, @krzysiek1507!

v2.14.0

31 Mar 17:53
Compare
Choose a tag to compare

What's new?

  • React-Calendar is now fully compatible with React 17 (sic!). Minimum version requirement remained unchanged.
  • Tiles representing current time, now have additional class react-calendar__tile--now to help you with the styling. Thanks, @bjenkins24!