Skip to content

Releases: mmazzarolo/react-native-modal-datetime-picker

v13.1.0

10 Mar 10:27
Compare
Choose a tag to compare

13.1.0 (2022-03-10)

Features

  • Added ability to change button font color using buttonTextColorIOS (#632) (323169d)

v13.0.1

30 Dec 14:13
Compare
Choose a tag to compare

13.0.1 (2021-12-30)

Bug Fixes

v13.0.0

25 Oct 09:01
Compare
Choose a tag to compare

13.0.0 (2021-10-25)

BREAKING CHANGES

  • Our typedefs were exposing onDateChange (wrong signature) instead of onChange (correct signature). We replaced the onDateChange type with onChange.

v12.0.0

09 Oct 12:47
Compare
Choose a tag to compare

12.0.0 (2021-10-09)

Code Refactoring

  • ios: remove deprecated headerTextIOS & isHeaderVisibleIOS props (#607) (eebaaae)

BREAKING CHANGES

  • ios: Removed the deprecated headerTextIOS and isHeaderVisibleIOS props.

v11.1.0

08 Oct 13:54
Compare
Choose a tag to compare

11.1.0 (2021-10-08)

Features

v11.0.0

01 Sep 07:26
Compare
Choose a tag to compare

11.0.0 (2021-09-01)

Features

  • Remove usage of deprecated function removeListener (#591) (be02ed6)

BREAKING CHANGES

  • From now on, we require react-native>=0.65 to work correctly (because [email protected] deprecates the removeListener API that we were using before this change).

v10.2.0

14 Jul 10:48
Compare
Choose a tag to compare

10.2.0 (2021-07-14)

Features

v10.1.0

13 Jul 13:31
Compare
Choose a tag to compare

10.1.0 (2021-07-13)

Features

  • Add cancelButtonTestID and confirmButtonTestID props (#582) (73a4874)

v10.0.0

29 May 16:06
Compare
Choose a tag to compare

10.0.0 (2021-05-29)

Features

BREAKING CHANGES

  • Do not show the built-in iOS header by default on iOS.
    We are planning to stop the built-in iOS header support in the near future, but we'll still support custom header implementations passed to the "customHeaderIOS" prop.
    For the time being, you can still show the built-in iOS header by setting the "isHeaderVisibleIOS" prop to true.
  • Add support for the new iOS 14 picker style by using setting the "display" prop to "inline".
    You could already set "display" to "inline" to achieve an iOS 14 style, but we tweaked a bit the modal padding to look better in this use case. This is a breaking change because if you were already using the "inline" display you might have to update your style customizations to account for the new padding.
    We also added a new "pickerStyle" prop that can be used to customize the picker wrapper (which is the element we use to set the padding described above).

v9.2.3

10 May 03:42
Compare
Choose a tag to compare

9.2.3 (2021-05-10)

Bug Fixes