react-native-a11y-order 1.0.0 → 2.0.0-rc

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (206) hide show
  1. package/README.md +1 -1
  2. package/android/build.gradle +33 -88
  3. package/android/src/main/AndroidManifest.xml +1 -2
  4. package/android/src/{newarch → main/java/com/a11yorder}/A11yIndexViewManagerSpec.java +0 -7
  5. package/android/src/{newarch → main/java/com/a11yorder}/A11yLockViewManagerSpec.java +0 -1
  6. package/android/src/main/java/com/a11yorder/A11yOrderPackage.java +1 -1
  7. package/android/src/{newarch → main/java/com/a11yorder}/A11yOrderViewManagerSpec.java +0 -5
  8. package/ios/extensions/RCTModalHostViewComponentView+RNAOA11yOrder.h +1 -10
  9. package/ios/extensions/RCTModalHostViewComponentView+RNAOA11yOrder.mm +0 -34
  10. package/ios/extensions/UIView+RNAOA11yOrder.mm +0 -8
  11. package/ios/helpers/RNAOFabricEventHelper/RNAOFabricEventHelper.h +0 -2
  12. package/ios/helpers/RNAOFabricEventHelper/RNAOFabricEventHelper.mm +0 -3
  13. package/ios/modules/RNAOA11yAnnounceModule.h +0 -20
  14. package/ios/modules/RNAOA11yAnnounceModule.mm +0 -18
  15. package/ios/views/RNAOA11yCardView/RNAOA11yCardView.h +0 -9
  16. package/ios/views/RNAOA11yCardView/RNAOA11yCardView.mm +11 -15
  17. package/ios/views/RNAOA11yIndexView/RNAOA11yIndexView.mm +1 -5
  18. package/ios/views/RNAOA11yLockView/RNAOA11yLockView.h +0 -12
  19. package/ios/views/RNAOA11yLockView/RNAOA11yLockView.mm +1 -11
  20. package/ios/views/RNAOA11yOrderView/RNAOA11yOrderView.h +0 -14
  21. package/ios/views/RNAOA11yOrderView/RNAOA11yOrderView.mm +2 -22
  22. package/ios/views/RNAOA11yPaneTitleView/RNAOA11yPaneTitleView.h +0 -16
  23. package/ios/views/RNAOA11yPaneTitleView/RNAOA11yPaneTitleView.mm +4 -11
  24. package/ios/views/base/RNAOA11yGroupChildrenView.h +0 -4
  25. package/ios/views/base/RNAOA11yManagedFocusView.h +0 -11
  26. package/ios/views/base/RNAOA11yManagedFocusView.mm +0 -43
  27. package/ios/views/base/RNAOA11yScreenReaderView.h +0 -7
  28. package/ios/views/base/RNAOA11yScreenReaderView.mm +0 -2
  29. package/ios/views/base/RNAOA11yViewGroup.h +0 -14
  30. package/ios/views/base/RNAOA11yViewOrder.h +0 -16
  31. package/ios/views/base/RNAOA11yViewOrder.mm +0 -26
  32. package/lib/module/components/A11yCard/A11yCard.ios.js +0 -1
  33. package/lib/module/components/A11yCard/A11yCard.ios.js.map +1 -1
  34. package/lib/module/components/A11yCard/A11yCard.js +0 -1
  35. package/lib/module/components/A11yCard/A11yCard.js.map +1 -1
  36. package/lib/module/components/A11yIndex/A11yIndex.js +2 -2
  37. package/lib/module/components/A11yIndex/A11yIndex.js.map +1 -1
  38. package/lib/module/components/A11yIndex/A11yIndex.web.js +0 -1
  39. package/lib/module/components/A11yIndex/A11yIndex.web.js.map +1 -1
  40. package/lib/module/components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.js +2 -2
  41. package/lib/module/components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.js.map +1 -1
  42. package/lib/module/components/A11yLock/A11yFocusFrame/A11yFocusFrame.js +1 -2
  43. package/lib/module/components/A11yLock/A11yFocusFrame/A11yFocusFrame.js.map +1 -1
  44. package/lib/module/components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.js +2 -2
  45. package/lib/module/components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.js.map +1 -1
  46. package/lib/module/components/A11yLock/A11yFocusTrap/A11yFocusTrap.js +2 -3
  47. package/lib/module/components/A11yLock/A11yFocusTrap/A11yFocusTrap.js.map +1 -1
  48. package/lib/module/components/A11yLock/A11yFocusTrap/A11yFocusTrapMountWrapper.js +1 -1
  49. package/lib/module/components/A11yLock/A11yFocusTrap/A11yFocusTrapMountWrapper.js.map +1 -1
  50. package/lib/module/components/A11yOrder/A11yOrder.js +1 -1
  51. package/lib/module/components/A11yOrder/A11yOrder.js.map +1 -1
  52. package/lib/module/components/A11yPaneTitle/A11yPaneTitle.js +0 -1
  53. package/lib/module/components/A11yPaneTitle/A11yPaneTitle.js.map +1 -1
  54. package/lib/module/index.js +4 -4
  55. package/lib/module/index.js.map +1 -1
  56. package/lib/module/index.web.js +1 -1
  57. package/lib/module/index.web.js.map +1 -1
  58. package/lib/module/modules/A11yAnnounceModule.js +4 -18
  59. package/lib/module/modules/A11yAnnounceModule.js.map +1 -1
  60. package/lib/module/nativeSpecs/A11yCardNativeComponent.ts +6 -2
  61. package/lib/module/nativeSpecs/A11yIndexNativeComponent.ts +10 -12
  62. package/lib/module/nativeSpecs/A11yLockNativeComponent.ts +10 -4
  63. package/lib/module/nativeSpecs/A11yOrderNativeComponent.ts +6 -2
  64. package/lib/module/nativeSpecs/A11yPaneTitleNativeComponent.ts +10 -4
  65. package/lib/module/nativeSpecs/NativeA11yAnnounceModule.js +1 -1
  66. package/lib/module/nativeSpecs/NativeA11yAnnounceModule.js.map +1 -1
  67. package/lib/module/package.json +1 -0
  68. package/lib/typescript/package.json +1 -0
  69. package/lib/typescript/src/components/A11yCard/A11yCard.d.ts +2 -3
  70. package/lib/typescript/src/components/A11yCard/A11yCard.d.ts.map +1 -1
  71. package/lib/typescript/src/components/A11yCard/A11yCard.ios.d.ts +2 -3
  72. package/lib/typescript/src/components/A11yCard/A11yCard.ios.d.ts.map +1 -1
  73. package/lib/typescript/src/components/A11yIndex/A11yIndex.d.ts +5 -127
  74. package/lib/typescript/src/components/A11yIndex/A11yIndex.d.ts.map +1 -1
  75. package/lib/typescript/src/components/A11yIndex/A11yIndex.web.d.ts +5 -129
  76. package/lib/typescript/src/components/A11yIndex/A11yIndex.web.d.ts.map +1 -1
  77. package/lib/typescript/src/components/A11yLock/A11yBaseLock/A11yBaseLock.d.ts +1 -1
  78. package/lib/typescript/src/components/A11yLock/A11yBaseLock/A11yBaseLock.d.ts.map +1 -1
  79. package/lib/typescript/src/components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.d.ts +1 -1
  80. package/lib/typescript/src/components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.d.ts.map +1 -1
  81. package/lib/typescript/src/components/A11yLock/A11yFocusFrame/A11yFocusFrame.d.ts +2 -3
  82. package/lib/typescript/src/components/A11yLock/A11yFocusFrame/A11yFocusFrame.d.ts.map +1 -1
  83. package/lib/typescript/src/components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.d.ts +1 -1
  84. package/lib/typescript/src/components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.d.ts.map +1 -1
  85. package/lib/typescript/src/components/A11yLock/A11yFocusTrap/A11yFocusTrap.d.ts +2 -3
  86. package/lib/typescript/src/components/A11yLock/A11yFocusTrap/A11yFocusTrap.d.ts.map +1 -1
  87. package/lib/typescript/src/components/A11yOrder/A11yOrder.d.ts +2 -125
  88. package/lib/typescript/src/components/A11yOrder/A11yOrder.d.ts.map +1 -1
  89. package/lib/typescript/src/components/A11yPaneTitle/A11yPaneTitle.d.ts +3 -4
  90. package/lib/typescript/src/components/A11yPaneTitle/A11yPaneTitle.d.ts.map +1 -1
  91. package/lib/typescript/src/components/A11yView/A11yView.d.ts +3 -126
  92. package/lib/typescript/src/components/A11yView/A11yView.d.ts.map +1 -1
  93. package/lib/typescript/src/components/A11yView/A11yView.types.d.ts +2 -2
  94. package/lib/typescript/src/components/A11yView/A11yView.types.d.ts.map +1 -1
  95. package/lib/typescript/src/index.d.ts +17 -386
  96. package/lib/typescript/src/index.d.ts.map +1 -1
  97. package/lib/typescript/src/index.web.d.ts +20 -143
  98. package/lib/typescript/src/index.web.d.ts.map +1 -1
  99. package/lib/typescript/src/modules/A11yAnnounceModule.d.ts.map +1 -1
  100. package/lib/typescript/src/nativeSpecs/A11yCardNativeComponent.d.ts +2 -2
  101. package/lib/typescript/src/nativeSpecs/A11yCardNativeComponent.d.ts.map +1 -1
  102. package/lib/typescript/src/nativeSpecs/A11yIndexNativeComponent.d.ts +9 -10
  103. package/lib/typescript/src/nativeSpecs/A11yIndexNativeComponent.d.ts.map +1 -1
  104. package/lib/typescript/src/nativeSpecs/A11yLockNativeComponent.d.ts +3 -4
  105. package/lib/typescript/src/nativeSpecs/A11yLockNativeComponent.d.ts.map +1 -1
  106. package/lib/typescript/src/nativeSpecs/A11yOrderNativeComponent.d.ts +2 -2
  107. package/lib/typescript/src/nativeSpecs/A11yOrderNativeComponent.d.ts.map +1 -1
  108. package/lib/typescript/src/nativeSpecs/A11yPaneTitleNativeComponent.d.ts +3 -4
  109. package/lib/typescript/src/nativeSpecs/A11yPaneTitleNativeComponent.d.ts.map +1 -1
  110. package/lib/typescript/src/nativeSpecs/NativeA11yAnnounceModule.d.ts +1 -1
  111. package/lib/typescript/src/nativeSpecs/NativeA11yAnnounceModule.d.ts.map +1 -1
  112. package/package.json +54 -32
  113. package/react-native-a11y-order.podspec +2 -2
  114. package/react-native.config.js +12 -0
  115. package/src/components/A11yCard/A11yCard.ios.tsx +0 -1
  116. package/src/components/A11yCard/A11yCard.tsx +0 -1
  117. package/src/components/A11yIndex/A11yIndex.tsx +5 -5
  118. package/src/components/A11yIndex/A11yIndex.web.tsx +0 -1
  119. package/src/components/A11yLock/A11yFocusFrame/A11yFocusFrame.tsx +0 -1
  120. package/src/components/A11yLock/A11yFocusTrap/A11yFocusTrap.tsx +0 -1
  121. package/src/components/A11yPaneTitle/A11yPaneTitle.tsx +0 -1
  122. package/src/modules/A11yAnnounceModule.ts +3 -28
  123. package/src/nativeSpecs/A11yCardNativeComponent.ts +6 -2
  124. package/src/nativeSpecs/A11yIndexNativeComponent.ts +10 -12
  125. package/src/nativeSpecs/A11yLockNativeComponent.ts +10 -4
  126. package/src/nativeSpecs/A11yOrderNativeComponent.ts +6 -2
  127. package/src/nativeSpecs/A11yPaneTitleNativeComponent.ts +10 -4
  128. package/src/nativeSpecs/NativeA11yAnnounceModule.ts +1 -1
  129. package/android/gradle.properties +0 -5
  130. package/android/src/oldarch/A11yAnnounceModuleSpec.java +0 -19
  131. package/android/src/oldarch/A11yCardViewManagerSpec.java +0 -8
  132. package/android/src/oldarch/A11yIndexViewManagerSpec.java +0 -22
  133. package/android/src/oldarch/A11yLockViewManagerSpec.java +0 -15
  134. package/android/src/oldarch/A11yOrderViewManagerSpec.java +0 -8
  135. package/android/src/oldarch/A11yPaneTitleSpec.java +0 -15
  136. package/ios/views/RNAOA11yCardView/RNAOA11yCardViewManager.h +0 -14
  137. package/ios/views/RNAOA11yCardView/RNAOA11yCardViewManager.mm +0 -17
  138. package/ios/views/RNAOA11yIndexView/RNAOA11yIndexViewManager.h +0 -19
  139. package/ios/views/RNAOA11yIndexView/RNAOA11yIndexViewManager.mm +0 -75
  140. package/ios/views/RNAOA11yLockView/RNAOA11yLockViewManager.h +0 -14
  141. package/ios/views/RNAOA11yLockView/RNAOA11yLockViewManager.mm +0 -28
  142. package/ios/views/RNAOA11yOrderView/RNAOA11yOrderViewManager.h +0 -18
  143. package/ios/views/RNAOA11yOrderView/RNAOA11yOrderViewManager.mm +0 -31
  144. package/ios/views/RNAOA11yPaneTitleView/RNAOA11yPaneTitleViewManager.h +0 -15
  145. package/ios/views/RNAOA11yPaneTitleView/RNAOA11yPaneTitleViewManager.mm +0 -42
  146. package/lib/commonjs/components/A11yCard/A11yCard.ios.js +0 -56
  147. package/lib/commonjs/components/A11yCard/A11yCard.ios.js.map +0 -1
  148. package/lib/commonjs/components/A11yCard/A11yCard.js +0 -41
  149. package/lib/commonjs/components/A11yCard/A11yCard.js.map +0 -1
  150. package/lib/commonjs/components/A11yCard/A11yCard.types.js +0 -6
  151. package/lib/commonjs/components/A11yCard/A11yCard.types.js.map +0 -1
  152. package/lib/commonjs/components/A11yIndex/A11yIndex.js +0 -118
  153. package/lib/commonjs/components/A11yIndex/A11yIndex.js.map +0 -1
  154. package/lib/commonjs/components/A11yIndex/A11yIndex.types.js +0 -39
  155. package/lib/commonjs/components/A11yIndex/A11yIndex.types.js.map +0 -1
  156. package/lib/commonjs/components/A11yIndex/A11yIndex.web.js +0 -26
  157. package/lib/commonjs/components/A11yIndex/A11yIndex.web.js.map +0 -1
  158. package/lib/commonjs/components/A11yLock/A11yBaseLock/A11yBaseLock.js +0 -25
  159. package/lib/commonjs/components/A11yLock/A11yBaseLock/A11yBaseLock.js.map +0 -1
  160. package/lib/commonjs/components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.js +0 -24
  161. package/lib/commonjs/components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.js.map +0 -1
  162. package/lib/commonjs/components/A11yLock/A11yFocusFrame/A11yFocusFrame.js +0 -18
  163. package/lib/commonjs/components/A11yLock/A11yFocusFrame/A11yFocusFrame.js.map +0 -1
  164. package/lib/commonjs/components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.js +0 -22
  165. package/lib/commonjs/components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.js.map +0 -1
  166. package/lib/commonjs/components/A11yLock/A11yFocusTrap/A11yFocusTrap.js +0 -36
  167. package/lib/commonjs/components/A11yLock/A11yFocusTrap/A11yFocusTrap.js.map +0 -1
  168. package/lib/commonjs/components/A11yLock/A11yFocusTrap/A11yFocusTrapMountWrapper.js +0 -46
  169. package/lib/commonjs/components/A11yLock/A11yFocusTrap/A11yFocusTrapMountWrapper.js.map +0 -1
  170. package/lib/commonjs/components/A11yLock/A11yLock.types.js +0 -6
  171. package/lib/commonjs/components/A11yLock/A11yLock.types.js.map +0 -1
  172. package/lib/commonjs/components/A11yOrder/A11yOrder.js +0 -22
  173. package/lib/commonjs/components/A11yOrder/A11yOrder.js.map +0 -1
  174. package/lib/commonjs/components/A11yOrder/A11yOrder.types.js +0 -6
  175. package/lib/commonjs/components/A11yOrder/A11yOrder.types.js.map +0 -1
  176. package/lib/commonjs/components/A11yPaneTitle/A11yPaneTitle.js +0 -41
  177. package/lib/commonjs/components/A11yPaneTitle/A11yPaneTitle.js.map +0 -1
  178. package/lib/commonjs/components/A11yPaneTitle/A11yPaneTitle.types.js +0 -6
  179. package/lib/commonjs/components/A11yPaneTitle/A11yPaneTitle.types.js.map +0 -1
  180. package/lib/commonjs/components/A11yView/A11yView.js +0 -14
  181. package/lib/commonjs/components/A11yView/A11yView.js.map +0 -1
  182. package/lib/commonjs/components/A11yView/A11yView.types.js +0 -6
  183. package/lib/commonjs/components/A11yView/A11yView.types.js.map +0 -1
  184. package/lib/commonjs/context/A11yFocusFrameProviderContext.js +0 -30
  185. package/lib/commonjs/context/A11yFocusFrameProviderContext.js.map +0 -1
  186. package/lib/commonjs/context/A11ySequenceOrderContext.js +0 -10
  187. package/lib/commonjs/context/A11ySequenceOrderContext.js.map +0 -1
  188. package/lib/commonjs/index.js +0 -60
  189. package/lib/commonjs/index.js.map +0 -1
  190. package/lib/commonjs/index.web.js +0 -33
  191. package/lib/commonjs/index.web.js.map +0 -1
  192. package/lib/commonjs/modules/A11yAnnounceModule.android.js +0 -45
  193. package/lib/commonjs/modules/A11yAnnounceModule.android.js.map +0 -1
  194. package/lib/commonjs/modules/A11yAnnounceModule.js +0 -86
  195. package/lib/commonjs/modules/A11yAnnounceModule.js.map +0 -1
  196. package/lib/commonjs/nativeSpecs/A11yCardNativeComponent.ts +0 -7
  197. package/lib/commonjs/nativeSpecs/A11yIndexNativeComponent.ts +0 -47
  198. package/lib/commonjs/nativeSpecs/A11yLockNativeComponent.ts +0 -11
  199. package/lib/commonjs/nativeSpecs/A11yOrderNativeComponent.ts +0 -9
  200. package/lib/commonjs/nativeSpecs/A11yPaneTitleNativeComponent.ts +0 -11
  201. package/lib/commonjs/nativeSpecs/NativeA11yAnnounceModule.js +0 -11
  202. package/lib/commonjs/nativeSpecs/NativeA11yAnnounceModule.js.map +0 -1
  203. package/lib/commonjs/package.json +0 -1
  204. /package/android/src/{newarch → main/java/com/a11yorder}/A11yAnnounceModuleSpec.java +0 -0
  205. /package/android/src/{newarch → main/java/com/a11yorder}/A11yCardViewManagerSpec.java +0 -0
  206. /package/android/src/{newarch → main/java/com/a11yorder}/A11yPaneTitleSpec.java +0 -0
@@ -1,263 +1,17 @@
1
- export type { A11yCardProps } from './components/A11yCard/A11yCard.types';
2
- export type { A11yOrderProps } from './components/A11yOrder/A11yOrder.types';
3
- export type { A11yIndexProps, A11yOrderType, IndexCommands, } from './components/A11yIndex/A11yIndex.types';
4
- export { A11yOrderTypeEnum } from './components/A11yIndex/A11yIndex.types';
5
- export type { A11yViewProps, ScreenReaderDescendantFocusChangedEvent, } from './components/A11yView/A11yView.types';
6
- export type { A11yFocusTrapProps, A11yFocusFrameProps, } from './components/A11yLock/A11yLock.types';
7
- export type { A11yPaneTitleProps, A11yScreenChangeProps, A11yPaneType, } from './components/A11yPaneTitle/A11yPaneTitle.types';
1
+ export type { A11yCardProps } from './components/A11yCard/A11yCard.types.js';
2
+ export type { A11yOrderProps } from './components/A11yOrder/A11yOrder.types.js';
3
+ export type { A11yIndexProps, A11yOrderType, IndexCommands, } from './components/A11yIndex/A11yIndex.types.js';
4
+ export { A11yOrderTypeEnum } from './components/A11yIndex/A11yIndex.types.js';
5
+ export type { A11yViewProps, ScreenReaderDescendantFocusChangedEvent, } from './components/A11yView/A11yView.types.js';
6
+ export type { A11yFocusTrapProps, A11yFocusFrameProps, } from './components/A11yLock/A11yLock.types.js';
7
+ export type { A11yPaneTitleProps, A11yScreenChangeProps, A11yPaneType, } from './components/A11yPaneTitle/A11yPaneTitle.types.js';
8
8
  export declare const A11y: {
9
- Order: import("react").NamedExoticComponent<Readonly<Omit<Readonly<{
10
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
11
- onAccessibilityTap?: (() => unknown) | undefined;
12
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
13
- onMagicTap?: (() => unknown) | undefined;
14
- onAccessibilityEscape?: (() => unknown) | undefined;
15
- }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
16
- onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
17
- onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
18
- onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
19
- onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
20
- onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
21
- onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
22
- onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
23
- onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
24
- onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
25
- onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
26
- onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
27
- onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
28
- }>, "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
29
- onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
30
- onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
31
- }>, "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
32
- onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
33
- onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
34
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
35
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
36
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
37
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
38
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
39
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
40
- onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
41
- onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
42
- onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
43
- onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
44
- onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
45
- onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
46
- onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
47
- onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
48
- onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
49
- onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
50
- onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
51
- onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
52
- onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
53
- onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
54
- }>, "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
55
- onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
56
- onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
57
- onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
58
- onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
59
- }>, "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
60
- onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
61
- onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
62
- onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
63
- onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
64
- onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
65
- onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
66
- onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
67
- onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
68
- }>, "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
69
- nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
70
- nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
71
- renderToHardwareTextureAndroid?: boolean | undefined;
72
- hasTVPreferredFocus?: boolean | undefined;
73
- nextFocusDown?: number | undefined;
74
- nextFocusForward?: number | undefined;
75
- nextFocusLeft?: number | undefined;
76
- nextFocusRight?: number | undefined;
77
- nextFocusUp?: number | undefined;
78
- focusable?: boolean | undefined;
79
- tabIndex?: 0 | -1;
80
- onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
81
- }>, "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
82
- shouldRasterizeIOS?: boolean | undefined;
83
- }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
84
- accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
85
- "aria-labelledby"?: string | undefined;
86
- accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
87
- "aria-live"?: ("polite" | "assertive" | "off") | undefined;
88
- importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
89
- screenReaderFocusable?: boolean;
90
- }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
91
- accessibilityIgnoresInvertColors?: boolean | undefined;
92
- accessibilityViewIsModal?: boolean | undefined;
93
- accessibilityShowsLargeContentViewer?: boolean | undefined;
94
- accessibilityLargeContentTitle?: string | undefined;
95
- "aria-modal"?: boolean | undefined;
96
- accessibilityElementsHidden?: boolean | undefined;
97
- accessibilityLanguage?: string | undefined;
98
- accessibilityRespondsToUserInteraction?: boolean | undefined;
99
- }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
100
- accessible?: boolean | undefined;
101
- accessibilityLabel?: string | undefined;
102
- accessibilityHint?: string | undefined;
103
- "aria-label"?: string | undefined;
104
- accessibilityRole?: import("react-native").AccessibilityRole | undefined;
105
- role?: import("react-native").Role | undefined;
106
- accessibilityState?: import("react-native").AccessibilityState | undefined;
107
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
108
- "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
109
- "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
110
- "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
111
- "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
112
- accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
113
- "aria-busy"?: boolean | undefined;
114
- "aria-checked"?: (boolean | undefined) | "mixed";
115
- "aria-disabled"?: boolean | undefined;
116
- "aria-expanded"?: boolean | undefined;
117
- "aria-selected"?: boolean | undefined;
118
- "aria-hidden"?: boolean | undefined;
119
- }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
120
- children?: React.ReactNode;
121
- style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
122
- collapsable?: boolean | undefined;
123
- collapsableChildren?: boolean | undefined;
124
- id?: string;
125
- testID?: string | undefined;
126
- nativeID?: string | undefined;
127
- needsOffscreenAlphaCompositing?: boolean | undefined;
128
- hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
129
- pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
130
- removeClippedSubviews?: boolean | undefined;
131
- experimental_accessibilityOrder?: Array<string> | undefined;
132
- }>, never>>>;
133
- Index: import("react").NamedExoticComponent<Readonly<Omit<Readonly<{
134
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
135
- onAccessibilityTap?: (() => unknown) | undefined;
136
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
137
- onMagicTap?: (() => unknown) | undefined;
138
- onAccessibilityEscape?: (() => unknown) | undefined;
139
- }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
140
- onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
141
- onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
142
- onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
143
- onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
144
- onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
145
- onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
146
- onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
147
- onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
148
- onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
149
- onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
150
- onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
151
- onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
152
- }>, "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
153
- onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
154
- onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
155
- }>, "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
156
- onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
157
- onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
158
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
159
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
160
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
161
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
162
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
163
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
164
- onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
165
- onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
166
- onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
167
- onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
168
- onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
169
- onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
170
- onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
171
- onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
172
- onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
173
- onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
174
- onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
175
- onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
176
- onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
177
- onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
178
- }>, "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
179
- onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
180
- onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
181
- onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
182
- onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
183
- }>, "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
184
- onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
185
- onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
186
- onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
187
- onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
188
- onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
189
- onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
190
- onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
191
- onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
192
- }>, "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
193
- nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
194
- nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
195
- renderToHardwareTextureAndroid?: boolean | undefined;
196
- hasTVPreferredFocus?: boolean | undefined;
197
- nextFocusDown?: number | undefined;
198
- nextFocusForward?: number | undefined;
199
- nextFocusLeft?: number | undefined;
200
- nextFocusRight?: number | undefined;
201
- nextFocusUp?: number | undefined;
202
- focusable?: boolean | undefined;
203
- tabIndex?: 0 | -1;
204
- onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
205
- }>, "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
206
- shouldRasterizeIOS?: boolean | undefined;
207
- }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
208
- accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
209
- "aria-labelledby"?: string | undefined;
210
- accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
211
- "aria-live"?: ("polite" | "assertive" | "off") | undefined;
212
- importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
213
- screenReaderFocusable?: boolean;
214
- }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
215
- accessibilityIgnoresInvertColors?: boolean | undefined;
216
- accessibilityViewIsModal?: boolean | undefined;
217
- accessibilityShowsLargeContentViewer?: boolean | undefined;
218
- accessibilityLargeContentTitle?: string | undefined;
219
- "aria-modal"?: boolean | undefined;
220
- accessibilityElementsHidden?: boolean | undefined;
221
- accessibilityLanguage?: string | undefined;
222
- accessibilityRespondsToUserInteraction?: boolean | undefined;
223
- }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
224
- accessible?: boolean | undefined;
225
- accessibilityLabel?: string | undefined;
226
- accessibilityHint?: string | undefined;
227
- "aria-label"?: string | undefined;
228
- accessibilityRole?: import("react-native").AccessibilityRole | undefined;
229
- role?: import("react-native").Role | undefined;
230
- accessibilityState?: import("react-native").AccessibilityState | undefined;
231
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
232
- "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
233
- "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
234
- "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
235
- "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
236
- accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
237
- "aria-busy"?: boolean | undefined;
238
- "aria-checked"?: (boolean | undefined) | "mixed";
239
- "aria-disabled"?: boolean | undefined;
240
- "aria-expanded"?: boolean | undefined;
241
- "aria-selected"?: boolean | undefined;
242
- "aria-hidden"?: boolean | undefined;
243
- }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
244
- children?: React.ReactNode;
245
- style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
246
- collapsable?: boolean | undefined;
247
- collapsableChildren?: boolean | undefined;
248
- id?: string;
249
- testID?: string | undefined;
250
- nativeID?: string | undefined;
251
- needsOffscreenAlphaCompositing?: boolean | undefined;
252
- hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
253
- pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
254
- removeClippedSubviews?: boolean | undefined;
255
- experimental_accessibilityOrder?: Array<string> | undefined;
256
- }>, never>> & {
9
+ Order: import("react").NamedExoticComponent<import("react-native").ViewProps>;
10
+ Index: import("react").NamedExoticComponent<import("react-native").ViewProps & {
257
11
  children: React.ReactNode;
258
12
  index?: number;
259
13
  orderType?: import(".").A11yOrderType;
260
- a11yUIContainer?: import("./components/A11yIndex/A11yIndex.types").A11yUIContainerType;
14
+ a11yUIContainer?: import("./components/A11yIndex/A11yIndex.types.js").A11yUIContainerType;
261
15
  shouldGroupAccessibilityChildren?: boolean;
262
16
  onScreenReaderFocused?: () => void;
263
17
  onScreenReaderSubViewFocusChange?: (isFocused: boolean) => void;
@@ -265,134 +19,11 @@ export declare const A11y: {
265
19
  onScreenReaderSubViewBlurred?: () => void;
266
20
  onScreenReaderDescendantFocusChanged?: (e: import(".").ScreenReaderDescendantFocusChangedEvent) => void;
267
21
  } & import("react").RefAttributes<import(".").IndexCommands>>;
268
- View: import("react").NamedExoticComponent<Readonly<Omit<Readonly<{
269
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
270
- onAccessibilityTap?: (() => unknown) | undefined;
271
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
272
- onMagicTap?: (() => unknown) | undefined;
273
- onAccessibilityEscape?: (() => unknown) | undefined;
274
- }>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
275
- onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
276
- onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
277
- onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
278
- onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
279
- onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
280
- onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
281
- onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
282
- onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
283
- onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
284
- onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
285
- onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
286
- onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
287
- }>, "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
288
- onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
289
- onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
290
- }>, "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
291
- onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
292
- onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
293
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
294
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
295
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
296
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
297
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
298
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
299
- onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
300
- onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
301
- onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
302
- onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
303
- onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
304
- onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
305
- onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
306
- onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
307
- onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
308
- onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
309
- onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
310
- onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
311
- onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
312
- onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
313
- }>, "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
314
- onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
315
- onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
316
- onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
317
- onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
318
- }>, "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
319
- onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
320
- onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
321
- onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
322
- onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
323
- onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
324
- onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
325
- onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
326
- onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
327
- }>, "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
328
- nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
329
- nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
330
- renderToHardwareTextureAndroid?: boolean | undefined;
331
- hasTVPreferredFocus?: boolean | undefined;
332
- nextFocusDown?: number | undefined;
333
- nextFocusForward?: number | undefined;
334
- nextFocusLeft?: number | undefined;
335
- nextFocusRight?: number | undefined;
336
- nextFocusUp?: number | undefined;
337
- focusable?: boolean | undefined;
338
- tabIndex?: 0 | -1;
339
- onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
340
- }>, "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
341
- shouldRasterizeIOS?: boolean | undefined;
342
- }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
343
- accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
344
- "aria-labelledby"?: string | undefined;
345
- accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
346
- "aria-live"?: ("polite" | "assertive" | "off") | undefined;
347
- importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
348
- screenReaderFocusable?: boolean;
349
- }>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
350
- accessibilityIgnoresInvertColors?: boolean | undefined;
351
- accessibilityViewIsModal?: boolean | undefined;
352
- accessibilityShowsLargeContentViewer?: boolean | undefined;
353
- accessibilityLargeContentTitle?: string | undefined;
354
- "aria-modal"?: boolean | undefined;
355
- accessibilityElementsHidden?: boolean | undefined;
356
- accessibilityLanguage?: string | undefined;
357
- accessibilityRespondsToUserInteraction?: boolean | undefined;
358
- }>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
359
- accessible?: boolean | undefined;
360
- accessibilityLabel?: string | undefined;
361
- accessibilityHint?: string | undefined;
362
- "aria-label"?: string | undefined;
363
- accessibilityRole?: import("react-native").AccessibilityRole | undefined;
364
- role?: import("react-native").Role | undefined;
365
- accessibilityState?: import("react-native").AccessibilityState | undefined;
366
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
367
- "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
368
- "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
369
- "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
370
- "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
371
- accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
372
- "aria-busy"?: boolean | undefined;
373
- "aria-checked"?: (boolean | undefined) | "mixed";
374
- "aria-disabled"?: boolean | undefined;
375
- "aria-expanded"?: boolean | undefined;
376
- "aria-selected"?: boolean | undefined;
377
- "aria-hidden"?: boolean | undefined;
378
- }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
379
- children?: React.ReactNode;
380
- style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
381
- collapsable?: boolean | undefined;
382
- collapsableChildren?: boolean | undefined;
383
- id?: string;
384
- testID?: string | undefined;
385
- nativeID?: string | undefined;
386
- needsOffscreenAlphaCompositing?: boolean | undefined;
387
- hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
388
- pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
389
- removeClippedSubviews?: boolean | undefined;
390
- experimental_accessibilityOrder?: Array<string> | undefined;
391
- }>, never>> & {
22
+ View: import("react").NamedExoticComponent<import("react-native").ViewProps & {
392
23
  children: React.ReactNode;
393
24
  index?: number;
394
25
  orderType?: import(".").A11yOrderType;
395
- a11yUIContainer?: import("./components/A11yIndex/A11yIndex.types").A11yUIContainerType;
26
+ a11yUIContainer?: import("./components/A11yIndex/A11yIndex.types.js").A11yUIContainerType;
396
27
  shouldGroupAccessibilityChildren?: boolean;
397
28
  onScreenReaderFocused?: () => void;
398
29
  onScreenReaderSubViewFocusChange?: (isFocused: boolean) => void;
@@ -400,11 +31,11 @@ export declare const A11y: {
400
31
  onScreenReaderSubViewBlurred?: () => void;
401
32
  onScreenReaderDescendantFocusChanged?: (e: import(".").ScreenReaderDescendantFocusChangedEvent) => void;
402
33
  } & import("react").RefAttributes<import(".").IndexCommands>>;
403
- PaneTitle: ({ title, detachMessage, type, children, displayed, withFocusRestore, }: import(".").A11yPaneTitleProps) => import("react").JSX.Element | null;
404
- ScreenChange: (props: import(".").A11yScreenChangeProps) => import("react").JSX.Element;
405
- FocusFrame: (props: import(".").A11yFocusFrameProps) => import("react").JSX.Element;
406
- FocusTrap: ({ forceLock, ...props }: import(".").A11yFocusTrapProps) => import("react").JSX.Element;
407
- Card: ({ containerProps, style, testID, onPress, accessibility, pressableProps, children, }: import(".").A11yCardProps) => import("react").JSX.Element;
34
+ PaneTitle: ({ title, detachMessage, type, children, displayed, withFocusRestore, }: import(".").A11yPaneTitleProps) => import("react/jsx-runtime").JSX.Element | null;
35
+ ScreenChange: (props: import(".").A11yScreenChangeProps) => import("react/jsx-runtime").JSX.Element;
36
+ FocusFrame: (props: import(".").A11yFocusFrameProps) => import("react/jsx-runtime").JSX.Element;
37
+ FocusTrap: ({ forceLock, ...props }: import(".").A11yFocusTrapProps) => import("react/jsx-runtime").JSX.Element;
38
+ Card: ({ containerProps, style, testID, onPress, accessibility, pressableProps, children, }: import(".").A11yCardProps) => import("react/jsx-runtime").JSX.Element;
408
39
  };
409
40
  export { ScreenReader, announce, cancel, cancelAll, } from './modules/A11yAnnounceModule';
410
41
  export type { AnnouncePriority, AnnounceStatus, AnnounceOptions, AnnouncementResult, } from './modules/A11yAnnounceModule';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAaA,YAAY,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AAC1E,YAAY,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AAC7E,YAAY,EACV,cAAc,EACd,aAAa,EACb,aAAa,GACd,MAAM,wCAAwC,CAAC;AAChD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAC3E,YAAY,EACV,aAAa,EACb,uCAAuC,GACxC,MAAM,sCAAsC,CAAC;AAC9C,YAAY,EACV,kBAAkB,EAClB,mBAAmB,GACpB,MAAM,sCAAsC,CAAC;AAC9C,YAAY,EACV,kBAAkB,EAClB,qBAAqB,EACrB,YAAY,GACb,MAAM,gDAAgD,CAAC;AAIxD,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAShB,CAAC;AAEF,OAAO,EACL,YAAY,EACZ,QAAQ,EACR,MAAM,EACN,SAAS,GACV,MAAM,8BAA8B,CAAC;AACtC,YAAY,EACV,gBAAgB,EAChB,cAAc,EACd,eAAe,EACf,kBAAkB,GACnB,MAAM,8BAA8B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAaA,YAAY,EAAE,aAAa,EAAE,MAAM,yCAAsC,CAAC;AAC1E,YAAY,EAAE,cAAc,EAAE,MAAM,2CAAwC,CAAC;AAC7E,YAAY,EACV,cAAc,EACd,aAAa,EACb,aAAa,GACd,MAAM,2CAAwC,CAAC;AAChD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2CAAwC,CAAC;AAC3E,YAAY,EACV,aAAa,EACb,uCAAuC,GACxC,MAAM,yCAAsC,CAAC;AAC9C,YAAY,EACV,kBAAkB,EAClB,mBAAmB,GACpB,MAAM,yCAAsC,CAAC;AAC9C,YAAY,EACV,kBAAkB,EAClB,qBAAqB,EACrB,YAAY,GACb,MAAM,mDAAgD,CAAC;AAIxD,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAShB,CAAC;AAEF,OAAO,EACL,YAAY,EACZ,QAAQ,EACR,MAAM,EACN,SAAS,GACV,MAAM,8BAA8B,CAAC;AACtC,YAAY,EACV,gBAAgB,EAChB,cAAc,EACd,eAAe,EACf,kBAAkB,GACnB,MAAM,8BAA8B,CAAC"}