@momo-kits/stepper 0.0.48-beta.1 → 0.0.48-beta.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/Stepper.js +1 -3
  2. package/package.json +1 -1
package/Stepper.js CHANGED
@@ -250,7 +250,6 @@ export default class Quantity extends Component {
250
250
  return (
251
251
  <View style={[styles.container, style]}>
252
252
  <IconButton
253
- accessibilityLabel={this.props.accessibilityLabel + 'Down'}
254
253
  style={iconStyle}
255
254
  tintColor={tintColor}
256
255
  size={size}
@@ -288,13 +287,12 @@ export default class Quantity extends Component {
288
287
  )}
289
288
  />
290
289
  ) : (
291
- <TextComp accessibilityLabel={this.props.accessibilityLabel} weight="bold" style={styles.text}>
290
+ <TextComp weight="bold" style={styles.text}>
292
291
  {value}
293
292
  </TextComp>
294
293
  )}
295
294
  </View>
296
295
  <IconButton
297
- accessibilityLabel={this.props.accessibilityLabel + 'Up'}
298
296
  tintColor={tintColor}
299
297
  style={iconStyle}
300
298
  size={size}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo-kits/stepper",
3
- "version": "0.0.48-beta.1",
3
+ "version": "0.0.48-beta.9",
4
4
  "private": false,
5
5
  "main": "index.js",
6
6
  "dependencies": {},