Releases: testshallpass/react-native-simple-stepper
1.18.1
- Minor changes to achieve 💯 code coverage
- Add code coverage
1.18.0
1.17.0
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
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
Refactor imageSrc and imageStyle
Add tests
1.13.0
Bump version
1.12.0
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
Ability to change initialValue or stepValue after it's mounted
1.8.0
Refactor buttons to use TouchableOpacity component from TouchableHighlight.
1.7.0
Bug fix for rendering network image sources