added accessibilityIgnoresInvertColors to module.exports in ViewPropTypes

Summary:
Previously, I exposed the "accessibilityIgnoresInvertColors" API on iOS to react native views.

In this diff, I added this property to the `module.exports` in `ViewPropTypes` so that the property can be accessed by other files.

Reviewed By: PeteTheHeat

Differential Revision: D8977515

fbshipit-source-id: d0aba5eac3bc1528e18b6027f3f055e5f4a1147a
This commit is contained in:
Ziqi Chen 2018-07-24 18:24:34 -07:00 коммит произвёл Facebook Github Bot
Родитель b5b704dc19
Коммит c36e8b3307
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -135,6 +135,13 @@ module.exports = {
*/
accessibilityActions: PropTypes.arrayOf(PropTypes.string),
/**
* Prevents view from being inverted if set to true and color inversion is turned on.
*
* @platform ios
*/
accessibilityIgnoresInvertColors: PropTypes.bool,
/**
* Indicates to accessibility services to treat UI component like a
* native one. Works for Android only.