@momo-kits/stepper 0.0.47-beta.6 → 0.0.48-beta.1

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 +3 -1
  2. package/package.json +1 -1
package/Stepper.js CHANGED
@@ -250,6 +250,7 @@ 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'}
253
254
  style={iconStyle}
254
255
  tintColor={tintColor}
255
256
  size={size}
@@ -287,12 +288,13 @@ export default class Quantity extends Component {
287
288
  )}
288
289
  />
289
290
  ) : (
290
- <TextComp weight="bold" style={styles.text}>
291
+ <TextComp accessibilityLabel={this.props.accessibilityLabel} weight="bold" style={styles.text}>
291
292
  {value}
292
293
  </TextComp>
293
294
  )}
294
295
  </View>
295
296
  <IconButton
297
+ accessibilityLabel={this.props.accessibilityLabel + 'Up'}
296
298
  tintColor={tintColor}
297
299
  style={iconStyle}
298
300
  size={size}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo-kits/stepper",
3
- "version": "0.0.47-beta.6",
3
+ "version": "0.0.48-beta.1",
4
4
  "private": false,
5
5
  "main": "index.js",
6
6
  "dependencies": {},