Releases: r5n-labs/react-native-otp-inputs
Releases · r5n-labs/react-native-otp-inputs
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
Changelog
v6.0.0 (04/07/2020)
BREAKING CHANGE
autofillFromClipboardis now required propClipboardhas been extracted fromreact-nativecore as part of Lean Core. Now this module uses Community Clipboard. Additional steps needed are:
$ yarn add @react-native-community/clipboard
$ npx pod-installFor 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
[email protected]
[email protected]
Release 5.0.0-alpha.0
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-keyeventas peer dependency. You can remove every code related toreact-native-keyeventinsideMainActivity.java
Release 4.1.0
Features:
- Restore pasting from keyboard on iOS (c36e93e)
- Add
autofillFromClipboardprop (1da705c)