Skip to content

Releases: wojtekmaj/react-datetime-picker

v1.3.2

12 Jun 19:13
Compare
Choose a tag to compare

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

What's new?

  • You can now hide clearIcon and calendarIcon by setting them explicitly to null.

Bug fixes

  • Fixed calendar appearing behind the datetime picker in specific situation where two datetime pickers were placed one below the other (#12).

v1.3.1

04 Apr 11:04
Compare
Choose a tag to compare

Bug fixes

  • Fixed Calendar/Clock widgets opening for disabled datetime picker on Internet Explorer due to IE's non-standard behavior.

v1.3.0

31 Mar 19:10
Compare
Choose a tag to compare

What's new?

  • React-DateTime-Picker is now fully compatible with React 17 (sic!). Minimum version requirement remained unchanged (#2).

v1.2.1

14 Mar 22:30
Compare
Choose a tag to compare

Bug fixes

  • Fixed a configuration bug that could have caused React-DateTime-Picker to behave unexpectedly on React 15.x environments.

v1.2.0

07 Mar 23:06
Compare
Choose a tag to compare

What's new?

  • You can use disabled prop to disable the time picker.

Bug fixes

  • Fixed TypeError: Object doesn't support property or method 'isNaN'. error that might have appeared on Internet Explorer 11 in some cases.

v1.1.0

04 Feb 14:02
Compare
Choose a tag to compare

What's new?

  • New option showLeadingZeros enables you to, well, show leading zeros.
  • Various performance and architecture optimizations.

Bug fixes

  • Fixed MonthInput allowing to enter values larger than allowed in some scenarios.
  • Fixed an issue where selecting new date set the hour to 0:00.
  • Fixed an issue where starting to fill out values starting from time would fail as the value was reset at the moment the user started filling out the date inputs.
  • Fixed passing empty string to Calendar component causing a React warning.
  • Fixed React warning shown when erased input value.
  • Fixed an edge case when rendering two datetime pickers in different locales would cause the second datetime picker to overwrite locale settings of the first one.

v1.0.1

06 Jan 11:07
Compare
Choose a tag to compare

What's new?

  • You can now set a custom name using name prop. Default name remains "datetime".

Bug fixes

  • Minor accessibility fix in Test suite.