Releases: anday013/react-native-otp-entry
Releases · anday013/react-native-otp-entry
Release 1.7.3
What's Changed
- fix: implicitly import react in components to resolve the issue with old react native versions in #79
Full Changelog: v1.7.2...v1.7.3
Release 1.7.2
What's Changed
- docs: add secureTextEntry to Props by @lakuapik in #69
- Prop 'type' doesn't change keyboard type by @BogdanGorelkin in #68
- Add onFocus and onBlur methods by @evoactivity in #73
New Contributors
- @lakuapik made their first contribution in #69
- @BogdanGorelkin made their first contribution in #68
- @evoactivity made their first contribution in #73
Full Changelog: v1.7.1...v1.7.2
Release 1.7.1
What's Changed
- Add input type functionality by @antuneslv in #61
- style: fix hidden input opactiy by @antuneslv in #63
New Contributors
- Big Thanks to @antuneslv for valuable contributions he made!!!
Full Changelog: v1.7.0...v1.7.1
Release 1.7.0
Features
- Added the focus container styles to the last input container when the OTP input is filled and focused (Thanks to @rob-pathway ) (#56)
- Merged wrapping containers into one to make it easier for modifications (#58)
- Added possibility to blur (unfocus) the input on fill through prop
blurOnFilled
(#60)
Release 1.6.1
Features
The install size of the lib decreased drastically (more than 10 times). Here is the comparison chart:
https://packagephobia.com/result?p=react-native-otp-entry
PR: #49
Release 1.6.0
Features
- No required props anymore. Working out of the box. (#38)
- Underlying
TextInput
props are exposed (Kudos to @erenkulaksiz and @alexkev) (#43) - Added disabled state and its styles (Kudos to @EddWills95 ) (#35)
- Handle focus/blur properly (Kudos to @alexkev) (#45)
Fixes
autoComplete
issue on Android fixed (Kudos to @CarmineRumma ) (#40)- Properly set styles passed to textInput (#44)
Release 1.5.0
Features
- Copy/Paste feature implemented!!! (#31 )
Release 1.4.1
Features
- Added the autocomplete prop (and defaults it to sms-otp) to allow for autofilling #32 (kudos to @EddWills95 )
- Added a prop filledPinCodeContainerStyle for when there is a character present allow a specific set of styles #34 (kudos to @EddWills95 )
- Added textContentType prop with value "oneTimeCode" to hidden TextInput (#32 )
Release 1.4.0
Features
- Expose
autoFocus
prop to be modified (default istrue
) from the core input #28 (kudos to @GoldAndLink ) - Implement
focus
function onref
to be called to focus the input #28 (kudos to @GoldAndLink )
Fixes
- Change
minHeight
andminWidth
in favor of plainheight
andwidth
for the pinCodeContainer to prevent issue of style override when the lower values are being set #29 (kudos to @sabuhiteymurov ) - Tiny but nice syntax fix in the docs #27 (kudos to @Al-Faiz-Ahmed )