Skip to content

Releases: testshallpass/react-native-simple-stepper

2.1.0

27 Nov 03:00
Compare
Choose a tag to compare
  • Fix #23 remove usage of obsolete state variable value.
  • Fix #24 where valueChanged was invoked on initial render.

2.0.0

27 Oct 10:38
Compare
Choose a tag to compare

To use 2.0.0 and beyond please update your import to:
import { SimpleStepper } from 'react-native-simple-stepper';

I refactored the internals with the following improvements and updates:

  • smaller components
  • remove @1x assets
  • improve readability of update props
  • update demo
  • update usage
  • move away from unnecessary state variables value and stepValue
  • move everything into src directory

1.18.1

16 Feb 03:03
Compare
Choose a tag to compare
  • Minor changes to achieve 💯 code coverage
  • Add code coverage

1.18.0

25 Sep 00:09
Compare
Choose a tag to compare

Migrate React.PropTypes to prop-types

Thanks @iRoachie

1.17.0

05 Aug 16:53
Compare
Choose a tag to compare

Add wraps feature. #11

As per Apple documentation (Wraps)

If YES, incrementing beyond maximumValue sets value to minimumValue; likewise, decrementing below minimumValue sets value to maximumValue. If NO, the stepper does not increment beyond maximumValue nor does it decrement below minimumValue but rather holds at those values. The default value for this property is NO.

1.16.0

29 May 03:37
Compare
Choose a tag to compare

Add render props to allow further customization of each stepper component.

// Example usage:
//..
 render() {
    <SimpleStepper renderIncrement={(data) => this.renderIncrement(data)} />
  }
//..
renderIncrement(data) {
   return (
     <Text>{"Plus"}</Text>
   )
}

1.15.0

27 May 17:37
Compare
Choose a tag to compare

Refactor imageSrc and imageStyle
Add tests

1.13.0

24 May 00:37
Compare
Choose a tag to compare

Bump version

1.12.0

23 May 23:27
Compare
Choose a tag to compare

You can now change the min and max values after component has been mounted. Also, can disable the component completely. Fix separator for plus size devices.

1.11.0

13 May 02:20
Compare
Choose a tag to compare

Ability to change initialValue or stepValue after it's mounted