react-native-a11y-order 0.11.0-rc → 0.11.0

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 (90) hide show
  1. package/README.md +9 -2
  2. package/android/src/main/java/com/a11yorder/core/A11yManagedFocusView.java +29 -0
  3. package/android/src/main/java/com/a11yorder/core/A11yViewOrder.java +1 -1
  4. package/android/src/main/java/com/a11yorder/modules/A11yAnnounceModule.java +20 -7
  5. package/android/src/main/java/com/a11yorder/views/A11yIndexView/A11yIndexViewManager.java +0 -6
  6. package/android/src/oldarch/A11yAnnounceModuleSpec.java +8 -1
  7. package/android/src/oldarch/A11yIndexViewManagerSpec.java +0 -1
  8. package/ios/helpers/RNAOSpeechAttributes.h +35 -0
  9. package/ios/helpers/RNAOSpeechAttributes.mm +64 -0
  10. package/ios/modules/RNAOA11yAnnounceModule.h +13 -9
  11. package/ios/modules/RNAOA11yAnnounceModule.mm +220 -14
  12. package/ios/services/RNAOA11yAnnounceService/RNAOA11yAnnounceService.h +11 -1
  13. package/ios/services/RNAOA11yAnnounceService/RNAOA11yAnnounceService.mm +55 -51
  14. package/ios/views/RNAOA11yIndexView/RNAOA11yIndexView.mm +0 -4
  15. package/ios/views/RNAOA11yIndexView/RNAOA11yIndexViewManager.mm +5 -5
  16. package/ios/views/RNAOA11yPaneTitleView/RNAOA11yPaneTitleView.mm +12 -2
  17. package/ios/views/base/{RNAOA11yAutoFocusView.h → RNAOA11yManagedFocusView.h} +5 -7
  18. package/ios/views/base/{RNAOA11yAutoFocusView.mm → RNAOA11yManagedFocusView.mm} +2 -19
  19. package/ios/views/base/RNAOA11yViewOrder.h +3 -3
  20. package/lib/commonjs/components/A11yCard/A11yCard.ios.js +8 -1
  21. package/lib/commonjs/components/A11yCard/A11yCard.ios.js.map +1 -1
  22. package/lib/commonjs/components/A11yIndex/A11yIndex.js +3 -2
  23. package/lib/commonjs/components/A11yIndex/A11yIndex.js.map +1 -1
  24. package/lib/commonjs/index.js +22 -4
  25. package/lib/commonjs/index.js.map +1 -1
  26. package/lib/commonjs/index.web.js +4 -4
  27. package/lib/commonjs/modules/A11yAnnounceModule.android.js +37 -3
  28. package/lib/commonjs/modules/A11yAnnounceModule.android.js.map +1 -1
  29. package/lib/commonjs/modules/A11yAnnounceModule.js +66 -8
  30. package/lib/commonjs/modules/A11yAnnounceModule.js.map +1 -1
  31. package/lib/commonjs/nativeSpecs/A11yIndexNativeComponent.ts +0 -1
  32. package/lib/commonjs/nativeSpecs/NativeA11yAnnounceModule.js +2 -0
  33. package/lib/commonjs/nativeSpecs/NativeA11yAnnounceModule.js.map +1 -1
  34. package/lib/module/components/A11yCard/A11yCard.ios.js +8 -1
  35. package/lib/module/components/A11yCard/A11yCard.ios.js.map +1 -1
  36. package/lib/module/components/A11yIndex/A11yIndex.js +3 -2
  37. package/lib/module/components/A11yIndex/A11yIndex.js.map +1 -1
  38. package/lib/module/index.js +1 -1
  39. package/lib/module/index.js.map +1 -1
  40. package/lib/module/index.web.js +1 -1
  41. package/lib/module/index.web.js.map +1 -1
  42. package/lib/module/modules/A11yAnnounceModule.android.js +32 -2
  43. package/lib/module/modules/A11yAnnounceModule.android.js.map +1 -1
  44. package/lib/module/modules/A11yAnnounceModule.js +62 -7
  45. package/lib/module/modules/A11yAnnounceModule.js.map +1 -1
  46. package/lib/module/nativeSpecs/A11yIndexNativeComponent.ts +0 -1
  47. package/lib/module/nativeSpecs/NativeA11yAnnounceModule.js +4 -0
  48. package/lib/module/nativeSpecs/NativeA11yAnnounceModule.js.map +1 -1
  49. package/lib/typescript/src/components/A11yCard/A11yCard.ios.d.ts.map +1 -1
  50. package/lib/typescript/src/components/A11yIndex/A11yIndex.d.ts +3 -126
  51. package/lib/typescript/src/components/A11yIndex/A11yIndex.d.ts.map +1 -1
  52. package/lib/typescript/src/components/A11yIndex/A11yIndex.types.d.ts +0 -4
  53. package/lib/typescript/src/components/A11yIndex/A11yIndex.types.d.ts.map +1 -1
  54. package/lib/typescript/src/components/A11yIndex/A11yIndex.web.d.ts +1 -125
  55. package/lib/typescript/src/components/A11yIndex/A11yIndex.web.d.ts.map +1 -1
  56. package/lib/typescript/src/components/A11yOrder/A11yOrder.d.ts +1 -124
  57. package/lib/typescript/src/components/A11yOrder/A11yOrder.d.ts.map +1 -1
  58. package/lib/typescript/src/components/A11yView/A11yView.d.ts +2 -126
  59. package/lib/typescript/src/components/A11yView/A11yView.d.ts.map +1 -1
  60. package/lib/typescript/src/index.d.ts +7 -377
  61. package/lib/typescript/src/index.d.ts.map +1 -1
  62. package/lib/typescript/src/index.web.d.ts +11 -162
  63. package/lib/typescript/src/index.web.d.ts.map +1 -1
  64. package/lib/typescript/src/modules/A11yAnnounceModule.android.d.ts +25 -2
  65. package/lib/typescript/src/modules/A11yAnnounceModule.android.d.ts.map +1 -1
  66. package/lib/typescript/src/modules/A11yAnnounceModule.d.ts +112 -4
  67. package/lib/typescript/src/modules/A11yAnnounceModule.d.ts.map +1 -1
  68. package/lib/typescript/src/nativeSpecs/A11yCardNativeComponent.d.ts +1 -3
  69. package/lib/typescript/src/nativeSpecs/A11yCardNativeComponent.d.ts.map +1 -1
  70. package/lib/typescript/src/nativeSpecs/A11yIndexNativeComponent.d.ts +1 -4
  71. package/lib/typescript/src/nativeSpecs/A11yIndexNativeComponent.d.ts.map +1 -1
  72. package/lib/typescript/src/nativeSpecs/A11yLockNativeComponent.d.ts +1 -3
  73. package/lib/typescript/src/nativeSpecs/A11yLockNativeComponent.d.ts.map +1 -1
  74. package/lib/typescript/src/nativeSpecs/A11yOrderNativeComponent.d.ts +1 -3
  75. package/lib/typescript/src/nativeSpecs/A11yOrderNativeComponent.d.ts.map +1 -1
  76. package/lib/typescript/src/nativeSpecs/A11yPaneTitleNativeComponent.d.ts +1 -3
  77. package/lib/typescript/src/nativeSpecs/A11yPaneTitleNativeComponent.d.ts.map +1 -1
  78. package/lib/typescript/src/nativeSpecs/NativeA11yAnnounceModule.d.ts +22 -2
  79. package/lib/typescript/src/nativeSpecs/NativeA11yAnnounceModule.d.ts.map +1 -1
  80. package/package.json +1 -1
  81. package/src/components/A11yCard/A11yCard.ios.tsx +8 -1
  82. package/src/components/A11yIndex/A11yIndex.tsx +5 -4
  83. package/src/components/A11yIndex/A11yIndex.types.ts +0 -5
  84. package/src/index.ts +12 -1
  85. package/src/index.web.ts +1 -1
  86. package/src/modules/A11yAnnounceModule.android.ts +18 -2
  87. package/src/modules/A11yAnnounceModule.ts +153 -9
  88. package/src/nativeSpecs/A11yIndexNativeComponent.ts +0 -1
  89. package/src/nativeSpecs/NativeA11yAnnounceModule.ts +31 -1
  90. package/android/src/main/java/com/a11yorder/core/A11yAutoFocusView.java +0 -61
@@ -1,134 +1,10 @@
1
1
  import React from 'react';
2
- export declare const A11yIndex: React.ForwardRefExoticComponent<Readonly<Omit<Readonly<{
3
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
4
- onAccessibilityTap?: (() => unknown) | undefined;
5
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
6
- onMagicTap?: (() => unknown) | undefined;
7
- onAccessibilityEscape?: (() => unknown) | undefined;
8
- }>, "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<{
9
- onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
10
- onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
11
- onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
12
- onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
13
- onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
14
- onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
15
- onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
16
- onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
17
- onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
18
- onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
19
- onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
20
- onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
21
- }>, "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<{
22
- onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
23
- onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
24
- }>, "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<{
25
- onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
26
- onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
27
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
28
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
29
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
30
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
31
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
32
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
33
- onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
34
- onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
35
- onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
36
- onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
37
- onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
38
- onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
39
- onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
40
- onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
41
- onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
42
- onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
43
- onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
44
- onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
45
- onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
46
- onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
47
- }>, "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<{
48
- onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
49
- onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
50
- onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
51
- onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
52
- }>, "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<{
53
- onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
54
- onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
55
- onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
56
- onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
57
- onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
58
- onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
59
- onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
60
- onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
61
- }>, "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<{
62
- nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
63
- nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
64
- renderToHardwareTextureAndroid?: boolean | undefined;
65
- hasTVPreferredFocus?: boolean | undefined;
66
- nextFocusDown?: number | undefined;
67
- nextFocusForward?: number | undefined;
68
- nextFocusLeft?: number | undefined;
69
- nextFocusRight?: number | undefined;
70
- nextFocusUp?: number | undefined;
71
- focusable?: boolean | undefined;
72
- tabIndex?: 0 | -1;
73
- onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
74
- }>, "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<{
75
- shouldRasterizeIOS?: boolean | undefined;
76
- }>, "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<{
77
- accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
78
- "aria-labelledby"?: string | undefined;
79
- accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
80
- "aria-live"?: ("polite" | "assertive" | "off") | undefined;
81
- importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
82
- screenReaderFocusable?: boolean;
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"> & Omit<Readonly<{
84
- accessibilityIgnoresInvertColors?: boolean | undefined;
85
- accessibilityViewIsModal?: boolean | undefined;
86
- accessibilityShowsLargeContentViewer?: boolean | undefined;
87
- accessibilityLargeContentTitle?: string | undefined;
88
- "aria-modal"?: boolean | undefined;
89
- accessibilityElementsHidden?: boolean | undefined;
90
- accessibilityLanguage?: string | undefined;
91
- accessibilityRespondsToUserInteraction?: boolean | undefined;
92
- }>, "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"> & {
93
- accessible?: boolean | undefined;
94
- accessibilityLabel?: string | undefined;
95
- accessibilityHint?: string | undefined;
96
- "aria-label"?: string | undefined;
97
- accessibilityRole?: import("react-native").AccessibilityRole | undefined;
98
- role?: import("react-native").Role | undefined;
99
- accessibilityState?: import("react-native").AccessibilityState | undefined;
100
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
101
- "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
102
- "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
103
- "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
104
- "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
105
- accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
106
- "aria-busy"?: boolean | undefined;
107
- "aria-checked"?: (boolean | undefined) | "mixed";
108
- "aria-disabled"?: boolean | undefined;
109
- "aria-expanded"?: boolean | undefined;
110
- "aria-selected"?: boolean | undefined;
111
- "aria-hidden"?: boolean | undefined;
112
- }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
113
- children?: React.ReactNode;
114
- style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
115
- collapsable?: boolean | undefined;
116
- collapsableChildren?: boolean | undefined;
117
- id?: string;
118
- testID?: string | undefined;
119
- nativeID?: string | undefined;
120
- needsOffscreenAlphaCompositing?: boolean | undefined;
121
- hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
122
- pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
123
- removeClippedSubviews?: boolean | undefined;
124
- experimental_accessibilityOrder?: Array<string> | undefined;
125
- }>, never>> & {
2
+ export declare const A11yIndex: React.ForwardRefExoticComponent<import("react-native").ViewProps & {
126
3
  children: React.ReactNode;
127
4
  index?: number;
128
5
  orderType?: import("./A11yIndex.types").A11yOrderType;
129
6
  a11yUIContainer?: import("./A11yIndex.types").A11yUIContainerType;
130
7
  shouldGroupAccessibilityChildren?: boolean;
131
- autoFocus?: boolean;
132
8
  onScreenReaderFocused?: () => void;
133
9
  onScreenReaderSubViewFocusChange?: (isFocused: boolean) => void;
134
10
  onScreenReaderSubViewFocused?: () => void;
@@ -1 +1 @@
1
- {"version":3,"file":"A11yIndex.web.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yIndex/A11yIndex.web.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAU1B,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAWpB,CAAC"}
1
+ {"version":3,"file":"A11yIndex.web.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yIndex/A11yIndex.web.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAU1B,eAAO,MAAM,SAAS;;;;;;;;;;;4BAWpB,CAAC"}
@@ -1,128 +1,5 @@
1
1
  import React from 'react';
2
2
  import type { A11yOrderProps } from './A11yOrder.types';
3
3
  export type { A11yOrderProps };
4
- export declare const A11yOrder: React.NamedExoticComponent<Readonly<Omit<Readonly<{
5
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
6
- onAccessibilityTap?: (() => unknown) | undefined;
7
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
8
- onMagicTap?: (() => unknown) | undefined;
9
- onAccessibilityEscape?: (() => unknown) | undefined;
10
- }>, "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<{
11
- onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
12
- onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
13
- onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
14
- onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
15
- onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
16
- onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
17
- onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
18
- onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
19
- onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
20
- onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
21
- onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
22
- onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
23
- }>, "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<{
24
- onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
25
- onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
26
- }>, "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<{
27
- onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
28
- onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
29
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
30
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
31
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
32
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
33
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
34
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
35
- onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
36
- onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
37
- onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
38
- onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
39
- onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
40
- onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
41
- onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
42
- onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
43
- onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
44
- onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
45
- onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
46
- onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
47
- onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
48
- onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
49
- }>, "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<{
50
- onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
51
- onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
52
- onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
53
- onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
54
- }>, "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<{
55
- onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
56
- onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
57
- onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
58
- onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
59
- onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
60
- onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
61
- onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
62
- onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
63
- }>, "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<{
64
- nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
65
- nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
66
- renderToHardwareTextureAndroid?: boolean | undefined;
67
- hasTVPreferredFocus?: boolean | undefined;
68
- nextFocusDown?: number | undefined;
69
- nextFocusForward?: number | undefined;
70
- nextFocusLeft?: number | undefined;
71
- nextFocusRight?: number | undefined;
72
- nextFocusUp?: number | undefined;
73
- focusable?: boolean | undefined;
74
- tabIndex?: 0 | -1;
75
- onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
76
- }>, "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<{
77
- shouldRasterizeIOS?: boolean | undefined;
78
- }>, "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<{
79
- accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
80
- "aria-labelledby"?: string | undefined;
81
- accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
82
- "aria-live"?: ("polite" | "assertive" | "off") | undefined;
83
- importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
84
- screenReaderFocusable?: boolean;
85
- }>, "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<{
86
- accessibilityIgnoresInvertColors?: boolean | undefined;
87
- accessibilityViewIsModal?: boolean | undefined;
88
- accessibilityShowsLargeContentViewer?: boolean | undefined;
89
- accessibilityLargeContentTitle?: string | undefined;
90
- "aria-modal"?: boolean | undefined;
91
- accessibilityElementsHidden?: boolean | undefined;
92
- accessibilityLanguage?: string | undefined;
93
- accessibilityRespondsToUserInteraction?: boolean | undefined;
94
- }>, "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"> & {
95
- accessible?: boolean | undefined;
96
- accessibilityLabel?: string | undefined;
97
- accessibilityHint?: string | undefined;
98
- "aria-label"?: string | undefined;
99
- accessibilityRole?: import("react-native").AccessibilityRole | undefined;
100
- role?: import("react-native").Role | undefined;
101
- accessibilityState?: import("react-native").AccessibilityState | undefined;
102
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
103
- "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
104
- "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
105
- "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
106
- "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
107
- accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
108
- "aria-busy"?: boolean | undefined;
109
- "aria-checked"?: (boolean | undefined) | "mixed";
110
- "aria-disabled"?: boolean | undefined;
111
- "aria-expanded"?: boolean | undefined;
112
- "aria-selected"?: boolean | undefined;
113
- "aria-hidden"?: boolean | undefined;
114
- }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
115
- children?: React.ReactNode;
116
- style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
117
- collapsable?: boolean | undefined;
118
- collapsableChildren?: boolean | undefined;
119
- id?: string;
120
- testID?: string | undefined;
121
- nativeID?: string | undefined;
122
- needsOffscreenAlphaCompositing?: boolean | undefined;
123
- hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
124
- pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
125
- removeClippedSubviews?: boolean | undefined;
126
- experimental_accessibilityOrder?: Array<string> | undefined;
127
- }>, never>>>;
4
+ export declare const A11yOrder: React.NamedExoticComponent<import("react-native").ViewProps>;
128
5
  //# sourceMappingURL=A11yOrder.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"A11yOrder.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yOrder/A11yOrder.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAExD,YAAY,EAAE,cAAc,EAAE,CAAC;AAE/B,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAOpB,CAAC"}
1
+ {"version":3,"file":"A11yOrder.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yOrder/A11yOrder.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAExD,YAAY,EAAE,cAAc,EAAE,CAAC;AAE/B,eAAO,MAAM,SAAS,8DAOpB,CAAC"}
@@ -3,140 +3,16 @@
3
3
  * Use when you need screen reader focus events but no position in a sequence.
4
4
  * For ordered elements, use {@link A11yIndex} inside an Order container.
5
5
  */
6
- export declare const A11yView: import("react").NamedExoticComponent<Readonly<Omit<Readonly<{
7
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
8
- onAccessibilityTap?: (() => unknown) | undefined;
9
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
10
- onMagicTap?: (() => unknown) | undefined;
11
- onAccessibilityEscape?: (() => unknown) | undefined;
12
- }>, "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<{
13
- onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
14
- onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
15
- onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
16
- onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
17
- onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
18
- onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
19
- onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
20
- onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
21
- onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
22
- onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
23
- onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
24
- onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
25
- }>, "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<{
26
- onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
27
- onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
28
- }>, "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
- onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
30
- onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
31
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
32
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
33
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
34
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
35
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
36
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
37
- onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
38
- onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
39
- onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
40
- onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
41
- onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
42
- onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
43
- onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
44
- onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
45
- onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
46
- onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
47
- onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
48
- onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
49
- onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
50
- onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
51
- }>, "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<{
52
- onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
53
- onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
54
- onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
55
- onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
56
- }>, "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<{
57
- onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
58
- onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
59
- onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
60
- onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
61
- onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
62
- onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
63
- onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
64
- onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
65
- }>, "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<{
66
- nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
67
- nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
68
- renderToHardwareTextureAndroid?: boolean | undefined;
69
- hasTVPreferredFocus?: boolean | undefined;
70
- nextFocusDown?: number | undefined;
71
- nextFocusForward?: number | undefined;
72
- nextFocusLeft?: number | undefined;
73
- nextFocusRight?: number | undefined;
74
- nextFocusUp?: number | undefined;
75
- focusable?: boolean | undefined;
76
- tabIndex?: 0 | -1;
77
- onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
78
- }>, "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<{
79
- shouldRasterizeIOS?: boolean | undefined;
80
- }>, "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<{
81
- accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
82
- "aria-labelledby"?: string | undefined;
83
- accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
84
- "aria-live"?: ("polite" | "assertive" | "off") | undefined;
85
- importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
86
- screenReaderFocusable?: boolean;
87
- }>, "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<{
88
- accessibilityIgnoresInvertColors?: boolean | undefined;
89
- accessibilityViewIsModal?: boolean | undefined;
90
- accessibilityShowsLargeContentViewer?: boolean | undefined;
91
- accessibilityLargeContentTitle?: string | undefined;
92
- "aria-modal"?: boolean | undefined;
93
- accessibilityElementsHidden?: boolean | undefined;
94
- accessibilityLanguage?: string | undefined;
95
- accessibilityRespondsToUserInteraction?: boolean | undefined;
96
- }>, "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"> & {
97
- accessible?: boolean | undefined;
98
- accessibilityLabel?: string | undefined;
99
- accessibilityHint?: string | undefined;
100
- "aria-label"?: string | undefined;
101
- accessibilityRole?: import("react-native").AccessibilityRole | undefined;
102
- role?: import("react-native").Role | undefined;
103
- accessibilityState?: import("react-native").AccessibilityState | undefined;
104
- accessibilityValue?: import("react-native").AccessibilityValue | undefined;
105
- "aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
106
- "aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
107
- "aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
108
- "aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
109
- accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
110
- "aria-busy"?: boolean | undefined;
111
- "aria-checked"?: (boolean | undefined) | "mixed";
112
- "aria-disabled"?: boolean | undefined;
113
- "aria-expanded"?: boolean | undefined;
114
- "aria-selected"?: boolean | undefined;
115
- "aria-hidden"?: boolean | undefined;
116
- }>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
117
- children?: React.ReactNode;
118
- style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
119
- collapsable?: boolean | undefined;
120
- collapsableChildren?: boolean | undefined;
121
- id?: string;
122
- testID?: string | undefined;
123
- nativeID?: string | undefined;
124
- needsOffscreenAlphaCompositing?: boolean | undefined;
125
- hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
126
- pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
127
- removeClippedSubviews?: boolean | undefined;
128
- experimental_accessibilityOrder?: Array<string> | undefined;
129
- }>, never>> & {
6
+ export declare const A11yView: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<import("react-native").ViewProps & {
130
7
  children: React.ReactNode;
131
8
  index?: number;
132
9
  orderType?: import("../..").A11yOrderType;
133
10
  a11yUIContainer?: import("../A11yIndex/A11yIndex.types").A11yUIContainerType;
134
11
  shouldGroupAccessibilityChildren?: boolean;
135
- autoFocus?: boolean;
136
12
  onScreenReaderFocused?: () => void;
137
13
  onScreenReaderSubViewFocusChange?: (isFocused: boolean) => void;
138
14
  onScreenReaderSubViewFocused?: () => void;
139
15
  onScreenReaderSubViewBlurred?: () => void;
140
16
  onScreenReaderDescendantFocusChanged?: (e: import("./A11yView.types").ScreenReaderDescendantFocusChangedEvent) => void;
141
- } & import("react").RefAttributes<import("../..").IndexCommands>>;
17
+ } & import("react").RefAttributes<import("../..").IndexCommands>>>;
142
18
  //# sourceMappingURL=A11yView.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"A11yView.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yView/A11yView.tsx"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iEAAY,CAAC"}
1
+ {"version":3,"file":"A11yView.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yView/A11yView.tsx"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,eAAO,MAAM,QAAQ;;;;;;;;;;;kEAAY,CAAC"}