1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /**
- * 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';
-
- 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',
- ],
- // This must be kept in sync with the AccessibilityRolesMask in RCTViewManager.m
- AccessibilityRoles: [
- 'none',
- 'button',
- 'link',
- 'search',
- 'image',
- 'keyboardkey',
- 'text',
- 'adjustable',
- 'imagebutton',
- 'header',
- 'summary',
- ],
- // This must be kept in sync with the AccessibilityStatesMask in RCTViewManager.m
- AccessibilityStates: ['selected', 'disabled'],
- };
|