Skip to content

Releases: testshallpass/react-native-simple-stepper

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

1.8.0

18 Feb 18:11
Compare
Choose a tag to compare

Refactor buttons to use TouchableOpacity component from TouchableHighlight.

1.7.0

12 Jan 03:34
Compare
Choose a tag to compare

Bug fix for rendering network image sources