@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.
- package/Stepper.js +3 -1
- 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}
|