mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: This adds aliasing for accessibility Value, it's used as requested on https://github.com/facebook/react-native/issues/34424. - [aria-valuemax](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-valuemax) to equivalent [accessibilityValue.max](https://reactnative.dev/docs/accessibility#accessibilityvalue) - [aria-valuemin](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-valuemin) to equivalent [accessibilityValue.min](https://reactnative.dev/docs/accessibility#accessibilityvalue) - [aria-valuenow](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-valuenow) to equivalent [accessibilityValue.now](https://reactnative.dev/docs/accessibility#accessibilityvalue) - [aria-valuetext](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-valuetext) to equivalent [accessibilityValue.text](https://reactnative.dev/docs/accessibility#accessibilityvalue) ## Changelog [General] [Added] - Add `aria-valuemax`, `aria-valuemin`, `aria-valuenow`, `aria-valuetext` as alias prop to `TouchableOpacity`, `View`, `Pressable` `TouchableHighlight` `TouchableBounce` `TouchableWithoutFeedback` `TouchableOpacity` components Pull Request resolved: https://github.com/facebook/react-native/pull/34535 Test Plan: - Enable `talkback`. - Open the RNTester app and navigate to the Api's tab - Go to the `fake Slider Example for Accessibility Value `modes section <Image src="https://user-images.githubusercontent.com/22423684/187472543-05200d8d-2742-4096-a56c-41f81b440a97.png" height="600" width="300" /> Reviewed By: cipolleschi Differential Revision: D39206362 Pulled By: jacdebug fbshipit-source-id: e7ed263badac789d529dd21e961cda5302b031e3
575 lines
11 KiB
Plaintext
575 lines
11 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`<Button /> should be disabled and it should set accessibilityState to disabled when disabled={true} 1`] = `
|
|
<View
|
|
accessibilityRole="button"
|
|
accessibilityState={
|
|
Object {
|
|
"busy": undefined,
|
|
"checked": undefined,
|
|
"disabled": true,
|
|
"expanded": undefined,
|
|
"selected": undefined,
|
|
}
|
|
}
|
|
accessibilityValue={
|
|
Object {
|
|
"max": undefined,
|
|
"min": undefined,
|
|
"now": undefined,
|
|
"text": undefined,
|
|
}
|
|
}
|
|
accessible={true}
|
|
collapsable={false}
|
|
focusable={false}
|
|
onClick={[Function]}
|
|
onResponderGrant={[Function]}
|
|
onResponderMove={[Function]}
|
|
onResponderRelease={[Function]}
|
|
onResponderTerminate={[Function]}
|
|
onResponderTerminationRequest={[Function]}
|
|
onStartShouldSetResponder={[Function]}
|
|
style={
|
|
Object {
|
|
"opacity": 1,
|
|
}
|
|
}
|
|
>
|
|
<View
|
|
style={
|
|
Array [
|
|
Object {},
|
|
Object {},
|
|
]
|
|
}
|
|
>
|
|
<Text
|
|
disabled={true}
|
|
style={
|
|
Array [
|
|
Object {
|
|
"color": "#007AFF",
|
|
"fontSize": 18,
|
|
"margin": 8,
|
|
"textAlign": "center",
|
|
},
|
|
Object {
|
|
"color": "#cdcdcd",
|
|
},
|
|
]
|
|
}
|
|
>
|
|
Test Button
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
`;
|
|
|
|
exports[`<Button /> should be disabled when disabled is empty and accessibilityState={{disabled: true}} 1`] = `
|
|
<View
|
|
accessibilityRole="button"
|
|
accessibilityState={
|
|
Object {
|
|
"busy": undefined,
|
|
"checked": undefined,
|
|
"disabled": true,
|
|
"expanded": undefined,
|
|
"selected": undefined,
|
|
}
|
|
}
|
|
accessibilityValue={
|
|
Object {
|
|
"max": undefined,
|
|
"min": undefined,
|
|
"now": undefined,
|
|
"text": undefined,
|
|
}
|
|
}
|
|
accessible={true}
|
|
collapsable={false}
|
|
focusable={false}
|
|
onClick={[Function]}
|
|
onResponderGrant={[Function]}
|
|
onResponderMove={[Function]}
|
|
onResponderRelease={[Function]}
|
|
onResponderTerminate={[Function]}
|
|
onResponderTerminationRequest={[Function]}
|
|
onStartShouldSetResponder={[Function]}
|
|
style={
|
|
Object {
|
|
"opacity": 1,
|
|
}
|
|
}
|
|
>
|
|
<View
|
|
style={
|
|
Array [
|
|
Object {},
|
|
Object {},
|
|
]
|
|
}
|
|
>
|
|
<Text
|
|
disabled={true}
|
|
style={
|
|
Array [
|
|
Object {
|
|
"color": "#007AFF",
|
|
"fontSize": 18,
|
|
"margin": 8,
|
|
"textAlign": "center",
|
|
},
|
|
Object {
|
|
"color": "#cdcdcd",
|
|
},
|
|
]
|
|
}
|
|
>
|
|
Test Button
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
`;
|
|
|
|
exports[`<Button /> should be disabled when disabled={true} and accessibilityState={{disabled: true}} 1`] = `
|
|
<View
|
|
accessibilityRole="button"
|
|
accessibilityState={
|
|
Object {
|
|
"busy": undefined,
|
|
"checked": undefined,
|
|
"disabled": true,
|
|
"expanded": undefined,
|
|
"selected": undefined,
|
|
}
|
|
}
|
|
accessibilityValue={
|
|
Object {
|
|
"max": undefined,
|
|
"min": undefined,
|
|
"now": undefined,
|
|
"text": undefined,
|
|
}
|
|
}
|
|
accessible={true}
|
|
collapsable={false}
|
|
focusable={false}
|
|
onClick={[Function]}
|
|
onResponderGrant={[Function]}
|
|
onResponderMove={[Function]}
|
|
onResponderRelease={[Function]}
|
|
onResponderTerminate={[Function]}
|
|
onResponderTerminationRequest={[Function]}
|
|
onStartShouldSetResponder={[Function]}
|
|
style={
|
|
Object {
|
|
"opacity": 1,
|
|
}
|
|
}
|
|
>
|
|
<View
|
|
style={
|
|
Array [
|
|
Object {},
|
|
Object {},
|
|
]
|
|
}
|
|
>
|
|
<Text
|
|
disabled={true}
|
|
style={
|
|
Array [
|
|
Object {
|
|
"color": "#007AFF",
|
|
"fontSize": 18,
|
|
"margin": 8,
|
|
"textAlign": "center",
|
|
},
|
|
Object {
|
|
"color": "#cdcdcd",
|
|
},
|
|
]
|
|
}
|
|
>
|
|
Test Button
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
`;
|
|
|
|
exports[`<Button /> should be set importantForAccessibility={no-hide-descendants} when importantForAccessibility={no} 1`] = `
|
|
<View
|
|
accessibilityRole="button"
|
|
accessibilityState={
|
|
Object {
|
|
"busy": undefined,
|
|
"checked": undefined,
|
|
"disabled": undefined,
|
|
"expanded": undefined,
|
|
"selected": undefined,
|
|
}
|
|
}
|
|
accessibilityValue={
|
|
Object {
|
|
"max": undefined,
|
|
"min": undefined,
|
|
"now": undefined,
|
|
"text": undefined,
|
|
}
|
|
}
|
|
accessible={true}
|
|
collapsable={false}
|
|
focusable={false}
|
|
importantForAccessibility="no-hide-descendants"
|
|
onClick={[Function]}
|
|
onResponderGrant={[Function]}
|
|
onResponderMove={[Function]}
|
|
onResponderRelease={[Function]}
|
|
onResponderTerminate={[Function]}
|
|
onResponderTerminationRequest={[Function]}
|
|
onStartShouldSetResponder={[Function]}
|
|
style={
|
|
Object {
|
|
"opacity": 1,
|
|
}
|
|
}
|
|
>
|
|
<View
|
|
style={
|
|
Array [
|
|
Object {},
|
|
]
|
|
}
|
|
>
|
|
<Text
|
|
style={
|
|
Array [
|
|
Object {
|
|
"color": "#007AFF",
|
|
"fontSize": 18,
|
|
"margin": 8,
|
|
"textAlign": "center",
|
|
},
|
|
]
|
|
}
|
|
>
|
|
Test Button
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
`;
|
|
|
|
exports[`<Button /> should be set importantForAccessibility={no-hide-descendants} when importantForAccessibility={no-hide-descendants} 1`] = `
|
|
<View
|
|
accessibilityRole="button"
|
|
accessibilityState={
|
|
Object {
|
|
"busy": undefined,
|
|
"checked": undefined,
|
|
"disabled": undefined,
|
|
"expanded": undefined,
|
|
"selected": undefined,
|
|
}
|
|
}
|
|
accessibilityValue={
|
|
Object {
|
|
"max": undefined,
|
|
"min": undefined,
|
|
"now": undefined,
|
|
"text": undefined,
|
|
}
|
|
}
|
|
accessible={true}
|
|
collapsable={false}
|
|
focusable={false}
|
|
importantForAccessibility="no-hide-descendants"
|
|
onClick={[Function]}
|
|
onResponderGrant={[Function]}
|
|
onResponderMove={[Function]}
|
|
onResponderRelease={[Function]}
|
|
onResponderTerminate={[Function]}
|
|
onResponderTerminationRequest={[Function]}
|
|
onStartShouldSetResponder={[Function]}
|
|
style={
|
|
Object {
|
|
"opacity": 1,
|
|
}
|
|
}
|
|
>
|
|
<View
|
|
style={
|
|
Array [
|
|
Object {},
|
|
]
|
|
}
|
|
>
|
|
<Text
|
|
style={
|
|
Array [
|
|
Object {
|
|
"color": "#007AFF",
|
|
"fontSize": 18,
|
|
"margin": 8,
|
|
"textAlign": "center",
|
|
},
|
|
]
|
|
}
|
|
>
|
|
Test Button
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
`;
|
|
|
|
exports[`<Button /> should not be disabled when disabled={false} and accessibilityState={{disabled: false}} 1`] = `
|
|
<View
|
|
accessibilityRole="button"
|
|
accessibilityState={
|
|
Object {
|
|
"busy": undefined,
|
|
"checked": undefined,
|
|
"disabled": false,
|
|
"expanded": undefined,
|
|
"selected": undefined,
|
|
}
|
|
}
|
|
accessibilityValue={
|
|
Object {
|
|
"max": undefined,
|
|
"min": undefined,
|
|
"now": undefined,
|
|
"text": undefined,
|
|
}
|
|
}
|
|
accessible={true}
|
|
collapsable={false}
|
|
focusable={false}
|
|
onClick={[Function]}
|
|
onResponderGrant={[Function]}
|
|
onResponderMove={[Function]}
|
|
onResponderRelease={[Function]}
|
|
onResponderTerminate={[Function]}
|
|
onResponderTerminationRequest={[Function]}
|
|
onStartShouldSetResponder={[Function]}
|
|
style={
|
|
Object {
|
|
"opacity": 1,
|
|
}
|
|
}
|
|
>
|
|
<View
|
|
style={
|
|
Array [
|
|
Object {},
|
|
]
|
|
}
|
|
>
|
|
<Text
|
|
disabled={false}
|
|
style={
|
|
Array [
|
|
Object {
|
|
"color": "#007AFF",
|
|
"fontSize": 18,
|
|
"margin": 8,
|
|
"textAlign": "center",
|
|
},
|
|
]
|
|
}
|
|
>
|
|
Test Button
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
`;
|
|
|
|
exports[`<Button /> should not be disabled when disabled={false} and accessibilityState={{disabled: true}} 1`] = `
|
|
<View
|
|
accessibilityRole="button"
|
|
accessibilityState={
|
|
Object {
|
|
"busy": undefined,
|
|
"checked": undefined,
|
|
"disabled": false,
|
|
"expanded": undefined,
|
|
"selected": undefined,
|
|
}
|
|
}
|
|
accessibilityValue={
|
|
Object {
|
|
"max": undefined,
|
|
"min": undefined,
|
|
"now": undefined,
|
|
"text": undefined,
|
|
}
|
|
}
|
|
accessible={true}
|
|
collapsable={false}
|
|
focusable={false}
|
|
onClick={[Function]}
|
|
onResponderGrant={[Function]}
|
|
onResponderMove={[Function]}
|
|
onResponderRelease={[Function]}
|
|
onResponderTerminate={[Function]}
|
|
onResponderTerminationRequest={[Function]}
|
|
onStartShouldSetResponder={[Function]}
|
|
style={
|
|
Object {
|
|
"opacity": 1,
|
|
}
|
|
}
|
|
>
|
|
<View
|
|
style={
|
|
Array [
|
|
Object {},
|
|
]
|
|
}
|
|
>
|
|
<Text
|
|
disabled={false}
|
|
style={
|
|
Array [
|
|
Object {
|
|
"color": "#007AFF",
|
|
"fontSize": 18,
|
|
"margin": 8,
|
|
"textAlign": "center",
|
|
},
|
|
]
|
|
}
|
|
>
|
|
Test Button
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
`;
|
|
|
|
exports[`<Button /> should overwrite accessibilityState with value of disabled prop 1`] = `
|
|
<View
|
|
accessibilityRole="button"
|
|
accessibilityState={
|
|
Object {
|
|
"busy": undefined,
|
|
"checked": undefined,
|
|
"disabled": true,
|
|
"expanded": undefined,
|
|
"selected": undefined,
|
|
}
|
|
}
|
|
accessibilityValue={
|
|
Object {
|
|
"max": undefined,
|
|
"min": undefined,
|
|
"now": undefined,
|
|
"text": undefined,
|
|
}
|
|
}
|
|
accessible={true}
|
|
collapsable={false}
|
|
focusable={false}
|
|
onClick={[Function]}
|
|
onResponderGrant={[Function]}
|
|
onResponderMove={[Function]}
|
|
onResponderRelease={[Function]}
|
|
onResponderTerminate={[Function]}
|
|
onResponderTerminationRequest={[Function]}
|
|
onStartShouldSetResponder={[Function]}
|
|
style={
|
|
Object {
|
|
"opacity": 1,
|
|
}
|
|
}
|
|
>
|
|
<View
|
|
style={
|
|
Array [
|
|
Object {},
|
|
Object {},
|
|
]
|
|
}
|
|
>
|
|
<Text
|
|
disabled={true}
|
|
style={
|
|
Array [
|
|
Object {
|
|
"color": "#007AFF",
|
|
"fontSize": 18,
|
|
"margin": 8,
|
|
"textAlign": "center",
|
|
},
|
|
Object {
|
|
"color": "#cdcdcd",
|
|
},
|
|
]
|
|
}
|
|
>
|
|
Test Button
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
`;
|
|
|
|
exports[`<Button /> should render as expected 1`] = `
|
|
<View
|
|
accessibilityRole="button"
|
|
accessibilityState={
|
|
Object {
|
|
"busy": undefined,
|
|
"checked": undefined,
|
|
"disabled": undefined,
|
|
"expanded": undefined,
|
|
"selected": undefined,
|
|
}
|
|
}
|
|
accessibilityValue={
|
|
Object {
|
|
"max": undefined,
|
|
"min": undefined,
|
|
"now": undefined,
|
|
"text": undefined,
|
|
}
|
|
}
|
|
accessible={true}
|
|
collapsable={false}
|
|
focusable={false}
|
|
onClick={[Function]}
|
|
onResponderGrant={[Function]}
|
|
onResponderMove={[Function]}
|
|
onResponderRelease={[Function]}
|
|
onResponderTerminate={[Function]}
|
|
onResponderTerminationRequest={[Function]}
|
|
onStartShouldSetResponder={[Function]}
|
|
style={
|
|
Object {
|
|
"opacity": 1,
|
|
}
|
|
}
|
|
>
|
|
<View
|
|
style={
|
|
Array [
|
|
Object {},
|
|
]
|
|
}
|
|
>
|
|
<Text
|
|
style={
|
|
Array [
|
|
Object {
|
|
"color": "#007AFF",
|
|
"fontSize": 18,
|
|
"margin": 8,
|
|
"textAlign": "center",
|
|
},
|
|
]
|
|
}
|
|
>
|
|
Test Button
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
`;
|