Skip to content

Releases: marcocesarato/react-native-input-spinner

Release v1.2.19

25 Sep 12:29
Compare
Choose a tag to compare

Props

initialValue string: Initial value of the Spinner

Release v1.2.18

07 Aug 08:11
Compare
Choose a tag to compare

Props

returnKeyType string: Determines how the return key should look. On Android you can also use returnKeyLabel
returnKeyLabel string: Sets the return key to the label. Use it instead of returnKeyType.

Release v1.2.17

06 Aug 15:23
Compare
Choose a tag to compare
  • Fix some issues

Release v1.2.16

06 Aug 13:01
Compare
Choose a tag to compare

New props

  • selectTextOnFocus bool: If true, all text will automatically be selected on focus.
  • selectionColor string: The highlight and cursor color of the text input.

Release v1.2.15

06 Aug 12:52
Compare
Choose a tag to compare

New events

  • onFocus(e) Callback that is called when the text input is focused.
  • onBlur(e) Callback that is called when the text input is blurred.
  • onKeyPress(e) Callback that is called when a key is pressed.

New props

  • maxLength number: Limits the maximum number of characters that can be entered.
  • autofocus bool: If true, focuses the input on componentDidMount.

New methods

  • isFocused() return if text input is focused
  • blur() blur text input
  • clear() clear text input
  • focus() focus text input

Release v1.2.14

04 Jul 09:59
Compare
Choose a tag to compare
  • Fix bug with decimals #5

Release v1.2.12

24 Jun 12:34
Compare
Choose a tag to compare
  • Add onSubmit event
  • Fixed some bugs and issues

v1.2.9

20 Feb 18:54
e81836d
Compare
Choose a tag to compare
  • Fixed _isDisabledButtonLeft

Previously _isDisabledButtonLeft was checking whether the right button was disabled, not the left one, so when the right button was set as disabled, both would be.

Merged pull request of fabriond

v1.2.8

07 Jan 08:04
Compare
Choose a tag to compare
  • Fixed disable right button

v1.2.7

02 Oct 08:40
Compare
Choose a tag to compare
  • Improved disable check
  • New property buttonLeftDisabled
  • New property buttonRightDisabled