Skip to content

Releases: r5n-labs/react-native-otp-inputs

react-native-otp-inputs@7.4.0

29 Jun 13:23
Compare
Choose a tag to compare

7.4.0 (2022-06-29)

Bug Fixes

  • secureTextEntry prop on android (a42f1d3)

Features

  • default value to support OTP autofill (18d4bd4)

react-native-otp-inputs@7.1.1

12 Oct 16:26
Compare
Choose a tag to compare

7.1.1 (2021-10-12)

Features

  • default value to support OTP autofill (18d4bd4)

react-native-otp-inputs@7.1.0

12 Oct 16:23
Compare
Choose a tag to compare

7.1.0 (2021-10-12)

Bug Fixes

  • remove postinstall from package.json (89ffdc9)

react-native-otp-inputs@7.0.2

31 Mar 15:04
Compare
Choose a tag to compare

7.0.2 (2021-03-31)

Bug Fixes

  • android glitch which closed keyboard on focus (911bb13)
  • ios pasting from keyboard (8ced9ce)
  • path for types (0eae299)

react-native-otp-inputs@7.0.0

31 Mar 14:37
Compare
Choose a tag to compare

7.0.0 (2021-03-31)

Bug Fixes

  • android glitch which closed keyboard on focus (911bb13)
  • ios pasting from keyboard (8ced9ce)
  • path for types (0eae299)

react-native-otp-inputs@6.0.0

09 Jul 08:40
Compare
Choose a tag to compare

Changelog

v6.0.0 (04/07/2020)

BREAKING CHANGE

  • autofillFromClipboard is now required prop
  • Clipboard has been extracted from react-native core as part of Lean Core. Now this module uses Community Clipboard. Additional steps needed are:
$ yarn add @react-native-community/clipboard
$ npx pod-install

For android, the package will be linked automatically on build.

For React Native version 0.59 or older

React Native <= 0.59

run the following command to link the package:

$ react-native link @react-native-community/clipboard

For iOS, make sure you install the pod file.

cd ios && pod install && cd ..

or you could follow the instructions to manually link the project

react-native-otp-inputs@5.0.1

03 Mar 12:50
Compare
Choose a tag to compare

5.0.1 (2020-03-03)

Bug Fixes

  • android glitch which closed keyboard on focus (911bb13)
  • ios pasting from keyboard (8ced9ce)
  • path for types (0eae299)

react-native-otp-inputs@5.0.0

28 Feb 14:42
Compare
Choose a tag to compare

5.0.0 (2020-02-28)

Bug Fixes

  • android glitch which closed keyboard on focus (911bb13)
  • ios pasting from keyboard (8ced9ce)

Release 5.0.0-alpha.0

28 Jan 12:27
Compare
Choose a tag to compare
Release 5.0.0-alpha.0 Pre-release
Pre-release

5.0.0-alpha.0

  • We decided to remove react-native-keyevent, because of problems related to stock android keyboards. We added some additional logic to check if there is possibility to "jump" between inputs and tested on popular keyboards (Android, GBoard, Samsung Keyboard, LG stock keyboard), and it seems to be working fine now.

BREAKING CHANGES

  • Removed react-native-keyevent as peer dependency. You can remove every code related to react-native-keyevent inside MainActivity.java

Release 4.1.0

19 Dec 16:04
Compare
Choose a tag to compare

Features:

  • Restore pasting from keyboard on iOS (c36e93e)
  • Add autofillFromClipboard prop (1da705c)