mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary:
Changelog: [internal]
Minimal implementation of `accessibilityState` that supports `disabled` and `selected` props.
Complete implementation will need to support following props
```
export type AccessibilityState = {
disabled?: boolean,
selected?: boolean,
checked?: ?boolean | 'mixed',
busy?: boolean,
expanded?: boolean,
...
};
```
Reviewed By: mdvacca
Differential Revision: D22016743
fbshipit-source-id: 1748acc4279f60ec8a92c93d5d13b136f57eb8d3