mirror of
https://github.com/status-im/react-native.git
synced 2025-01-17 13:01:13 +00:00
47dc31d464
Summary: Changes the Flow prop types for `Image`, `Text`, and `View` to be nullable and optional. This makes these components easier to compose. Reviewed By: sahrens Differential Revision: D9494285 fbshipit-source-id: c3f17147f063b31217b239a3abc085d1850f8df9
98 lines
1.6 KiB
JavaScript
98 lines
1.6 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow strict
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
export type AccessibilityTrait =
|
|
| 'none'
|
|
| 'button'
|
|
| 'link'
|
|
| 'header'
|
|
| 'search'
|
|
| 'image'
|
|
| 'selected'
|
|
| 'plays'
|
|
| 'key'
|
|
| 'text'
|
|
| 'summary'
|
|
| 'disabled'
|
|
| 'frequentUpdates'
|
|
| 'startsMedia'
|
|
| 'adjustable'
|
|
| 'allowsDirectInteraction'
|
|
| 'pageTurn';
|
|
|
|
export type AccessibilityTraits =
|
|
| AccessibilityTrait
|
|
| $ReadOnlyArray<AccessibilityTrait>;
|
|
|
|
export type AccessibilityComponentType =
|
|
| 'none'
|
|
| 'button'
|
|
| 'radiobutton_checked'
|
|
| 'radiobutton_unchecked';
|
|
|
|
export type AccessibilityRole =
|
|
| 'none'
|
|
| 'button'
|
|
| 'link'
|
|
| 'search'
|
|
| 'image'
|
|
| 'keyboardkey'
|
|
| 'text'
|
|
| 'adjustable'
|
|
| 'imagebutton'
|
|
| 'header'
|
|
| 'summary';
|
|
|
|
export type AccessibilityStates = $ReadOnlyArray<'disabled' | 'selected'>;
|
|
|
|
module.exports = {
|
|
AccessibilityTraits: [
|
|
'none',
|
|
'button',
|
|
'link',
|
|
'header',
|
|
'search',
|
|
'image',
|
|
'selected',
|
|
'plays',
|
|
'key',
|
|
'text',
|
|
'summary',
|
|
'disabled',
|
|
'frequentUpdates',
|
|
'startsMedia',
|
|
'adjustable',
|
|
'allowsDirectInteraction',
|
|
'pageTurn',
|
|
],
|
|
AccessibilityComponentTypes: [
|
|
'none',
|
|
'button',
|
|
'radiobutton_checked',
|
|
'radiobutton_unchecked',
|
|
],
|
|
AccessibilityRoles: [
|
|
'none',
|
|
'button',
|
|
'link',
|
|
'search',
|
|
'image',
|
|
'keyboardkey',
|
|
'text',
|
|
'adjustable',
|
|
'imagebutton',
|
|
'header',
|
|
'summary',
|
|
],
|
|
AccessibilityStates: ['selected', 'disabled'],
|
|
};
|