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,41 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.A11yCard = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _reactNative = require("react-native");
9
- var _jsxRuntime = require("react/jsx-runtime");
10
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
11
- const A11yCard = ({
12
- containerProps,
13
- style,
14
- testID,
15
- onPress,
16
- accessibility,
17
- pressableProps,
18
- children
19
- }) => {
20
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
21
- collapsable: false,
22
- ...containerProps,
23
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Pressable, {
24
- ...pressableProps,
25
- accessibilityRole: "button",
26
- ...accessibility,
27
- accessible: true,
28
- onPress: onPress,
29
- testID: testID,
30
- style: [style, styles.container],
31
- children: children
32
- })
33
- });
34
- };
35
- exports.A11yCard = A11yCard;
36
- const styles = _reactNative.StyleSheet.create({
37
- container: {
38
- position: 'relative'
39
- }
40
- });
41
- //# sourceMappingURL=A11yCard.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_jsxRuntime","e","__esModule","default","A11yCard","containerProps","style","testID","onPress","accessibility","pressableProps","children","jsx","View","collapsable","Pressable","accessibilityRole","accessible","styles","container","exports","StyleSheet","create","position"],"sourceRoot":"../../../../src","sources":["components/A11yCard/A11yCard.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAA2D,IAAAE,WAAA,GAAAF,OAAA;AAAA,SAAAD,uBAAAI,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAKpD,MAAMG,QAAQ,GAAGA,CAAC;EACvBC,cAAc;EACdC,KAAK;EACLC,MAAM;EACNC,OAAO;EACPC,aAAa;EACbC,cAAc;EACdC;AACa,CAAC,KAAK;EACnB,oBACE,IAAAX,WAAA,CAAAY,GAAA,EAACb,YAAA,CAAAc,IAAI;IAACC,WAAW,EAAE,KAAM;IAAA,GAAKT,cAAc;IAAAM,QAAA,eAC1C,IAAAX,WAAA,CAAAY,GAAA,EAACb,YAAA,CAAAgB,SAAS;MAAA,GACJL,cAAc;MAClBM,iBAAiB,EAAC,QAAQ;MAAA,GACtBP,aAAa;MACjBQ,UAAU;MACVT,OAAO,EAAEA,OAAQ;MACjBD,MAAM,EAAEA,MAAO;MACfD,KAAK,EAAE,CAACA,KAAK,EAAEY,MAAM,CAACC,SAAS,CAAE;MAAAR,QAAA,EAEhCA;IAAQ,CACA;EAAC,CACR,CAAC;AAEX,CAAC;AAACS,OAAA,CAAAhB,QAAA,GAAAA,QAAA;AAEF,MAAMc,MAAM,GAAGG,uBAAU,CAACC,MAAM,CAAC;EAC/BH,SAAS,EAAE;IAAEI,QAAQ,EAAE;EAAW;AACpC,CAAC,CAAC","ignoreList":[]}
@@ -1,6 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- //# sourceMappingURL=A11yCard.types.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/A11yCard/A11yCard.types.ts"],"mappings":"","ignoreList":[]}
@@ -1,118 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.A11yIndex = void 0;
7
- var _react = _interopRequireWildcard(require("react"));
8
- var _A11ySequenceOrderContext = require("../../context/A11ySequenceOrderContext");
9
- var _A11yIndexNativeComponent = _interopRequireWildcard(require("../../nativeSpecs/A11yIndexNativeComponent"));
10
- var _A11yIndex = require("./A11yIndex.types");
11
- var _jsxRuntime = require("react/jsx-runtime");
12
- function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
13
- function useScreenReaderProps({
14
- onScreenReaderFocused,
15
- onScreenReaderSubViewFocusChange,
16
- onScreenReaderSubViewFocused,
17
- onScreenReaderSubViewBlurred,
18
- onScreenReaderDescendantFocusChanged
19
- }) {
20
- const hasHandler = Boolean(onScreenReaderSubViewBlurred || onScreenReaderSubViewFocused || onScreenReaderSubViewFocusChange);
21
- const onScreenReaderFocusChange = _react.default.useCallback(event => {
22
- const {
23
- isFocused
24
- } = event.nativeEvent;
25
- onScreenReaderSubViewFocusChange?.(isFocused);
26
- if (isFocused) {
27
- onScreenReaderSubViewFocused?.();
28
- } else {
29
- onScreenReaderSubViewBlurred?.();
30
- }
31
- }, [onScreenReaderSubViewFocusChange, onScreenReaderSubViewBlurred, onScreenReaderSubViewFocused]);
32
- return {
33
- onScreenReaderFocused,
34
- onScreenReaderFocusChange: hasHandler ? onScreenReaderFocusChange : undefined,
35
- descendantFocusChangedEnabled: Boolean(onScreenReaderDescendantFocusChanged),
36
- onScreenReaderDescendantFocusChanged
37
- };
38
- }
39
- function useFocusRef(ref) {
40
- const localRef = (0, _react.useRef)(null);
41
- (0, _react.useImperativeHandle)(ref, () => {
42
- const native = localRef.current;
43
- return new Proxy({}, {
44
- get(_target, prop) {
45
- if (prop === 'focus') {
46
- return () => {
47
- if (localRef.current) {
48
- _A11yIndexNativeComponent.Commands.focus(localRef.current);
49
- }
50
- };
51
- }
52
- return native?.[prop];
53
- }
54
- });
55
- });
56
- return localRef;
57
- }
58
- function useOrderProps(index, orderType, importantForAccessibilityProp) {
59
- const orderKey = _react.default.useContext(_A11ySequenceOrderContext.A11ySequenceOrderContext);
60
- const hasOrderInfo = typeof index === 'number' || !!orderKey;
61
- if (hasOrderInfo && !orderKey) {
62
- throw new Error('<A11y.Index> element should be used inside of <A11y.Order> container');
63
- }
64
- const resolvedOrderType = orderType ?? 'default';
65
- const isDefaultOrderType = resolvedOrderType === 'default';
66
- const importantForAccessibility = hasOrderInfo && isDefaultOrderType ? 'yes' : importantForAccessibilityProp;
67
- return {
68
- orderKey,
69
- orderFocusType: hasOrderInfo ? _A11yIndex.A11yOrderTypeEnum[resolvedOrderType] : undefined,
70
- importantForAccessibility
71
- };
72
- }
73
- const A11yIndex = exports.A11yIndex = /*#__PURE__*/_react.default.memo(/*#__PURE__*/_react.default.forwardRef(({
74
- children,
75
- index,
76
- orderType,
77
- a11yUIContainer,
78
- shouldGroupAccessibilityChildren,
79
- ...props
80
- }, ref) => {
81
- const {
82
- onScreenReaderFocused,
83
- onScreenReaderSubViewFocusChange,
84
- onScreenReaderSubViewFocused,
85
- onScreenReaderSubViewBlurred,
86
- onScreenReaderDescendantFocusChanged,
87
- importantForAccessibility: importantForAccessibilityProp,
88
- ...viewProps
89
- } = props;
90
- const containerTypeValue = a11yUIContainer ? _A11yIndex.A11yContainerTypeEnum[a11yUIContainer] : undefined;
91
- const shouldGroupChildrenValue = shouldGroupAccessibilityChildren === undefined ? -1 : shouldGroupAccessibilityChildren ? 1 : 0;
92
- const screenReaderNativeProps = useScreenReaderProps({
93
- onScreenReaderFocused,
94
- onScreenReaderSubViewFocusChange,
95
- onScreenReaderSubViewFocused,
96
- onScreenReaderSubViewBlurred,
97
- onScreenReaderDescendantFocusChanged
98
- });
99
- const {
100
- orderKey,
101
- orderFocusType,
102
- importantForAccessibility
103
- } = useOrderProps(index, orderType, importantForAccessibilityProp);
104
- const localRef = useFocusRef(ref);
105
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_A11yIndexNativeComponent.default, {
106
- ref: localRef,
107
- ...viewProps,
108
- containerType: containerTypeValue,
109
- shouldGroupAccessibilityChildren: shouldGroupChildrenValue,
110
- importantForAccessibility: importantForAccessibility,
111
- orderFocusType: orderFocusType,
112
- orderIndex: index,
113
- orderKey: orderKey,
114
- ...screenReaderNativeProps,
115
- children: children
116
- });
117
- }));
118
- //# sourceMappingURL=A11yIndex.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireWildcard","require","_A11ySequenceOrderContext","_A11yIndexNativeComponent","_A11yIndex","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","useScreenReaderProps","onScreenReaderFocused","onScreenReaderSubViewFocusChange","onScreenReaderSubViewFocused","onScreenReaderSubViewBlurred","onScreenReaderDescendantFocusChanged","hasHandler","Boolean","onScreenReaderFocusChange","React","useCallback","event","isFocused","nativeEvent","undefined","descendantFocusChangedEnabled","useFocusRef","ref","localRef","useRef","useImperativeHandle","native","current","Proxy","_target","prop","Commands","focus","useOrderProps","index","orderType","importantForAccessibilityProp","orderKey","useContext","A11ySequenceOrderContext","hasOrderInfo","Error","resolvedOrderType","isDefaultOrderType","importantForAccessibility","orderFocusType","A11yOrderTypeEnum","A11yIndex","exports","memo","forwardRef","children","a11yUIContainer","shouldGroupAccessibilityChildren","props","viewProps","containerTypeValue","A11yContainerTypeEnum","shouldGroupChildrenValue","screenReaderNativeProps","jsx","containerType","orderIndex"],"sourceRoot":"../../../../src","sources":["components/A11yIndex/A11yIndex.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,uBAAA,CAAAC,OAAA;AAEA,IAAAC,yBAAA,GAAAD,OAAA;AACA,IAAAE,yBAAA,GAAAH,uBAAA,CAAAC,OAAA;AAGA,IAAAG,UAAA,GAAAH,OAAA;AAM2B,IAAAI,WAAA,GAAAJ,OAAA;AAAA,SAAAD,wBAAAM,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAR,uBAAA,YAAAA,CAAAM,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAW3B,SAASkB,oBAAoBA,CAAC;EAC5BC,qBAAqB;EACrBC,gCAAgC;EAChCC,4BAA4B;EAC5BC,4BAA4B;EAC5BC;AACqB,CAAC,EAAE;EACxB,MAAMC,UAAU,GAAGC,OAAO,CACxBH,4BAA4B,IAC1BD,4BAA4B,IAC5BD,gCACJ,CAAC;EAED,MAAMM,yBAAyB,GAAGC,cAAK,CAACC,WAAW,CAChDC,KAA8C,IAAK;IAClD,MAAM;MAAEC;IAAU,CAAC,GAAGD,KAAK,CAACE,WAAW;IACvCX,gCAAgC,GAAGU,SAAS,CAAC;IAC7C,IAAIA,SAAS,EAAE;MACbT,4BAA4B,GAAG,CAAC;IAClC,CAAC,MAAM;MACLC,4BAA4B,GAAG,CAAC;IAClC;EACF,CAAC,EACD,CACEF,gCAAgC,EAChCE,4BAA4B,EAC5BD,4BAA4B,CAEhC,CAAC;EAED,OAAO;IACLF,qBAAqB;IACrBO,yBAAyB,EAAEF,UAAU,GACjCE,yBAAyB,GACzBM,SAAS;IACbC,6BAA6B,EAAER,OAAO,CACpCF,oCACF,CAAC;IACDA;EACF,CAAC;AACH;AAEA,SAASW,WAAWA,CAACC,GAAsC,EAAE;EAC3D,MAAMC,QAAQ,GAAG,IAAAC,aAAM,EAA2C,IAAI,CAAC;EAEvE,IAAAC,0BAAmB,EAACH,GAAG,EAAE,MAAM;IAC7B,MAAMI,MAAM,GAAGH,QAAQ,CAACI,OAA6C;IAErE,OAAO,IAAIC,KAAK,CAAC,CAAC,CAAC,EAAmB;MACpC9B,GAAGA,CAAC+B,OAAO,EAAEC,IAAY,EAAE;QACzB,IAAIA,IAAI,KAAK,OAAO,EAAE;UACpB,OAAO,MAAM;YACX,IAAIP,QAAQ,CAACI,OAAO,EAAE;cACpBI,kCAAQ,CAACC,KAAK,CACZT,QAAQ,CAACI,OACX,CAAC;YACH;UACF,CAAC;QACH;QACA,OAAOD,MAAM,GAAGI,IAAI,CAAC;MACvB;IACF,CAAC,CAAC;EACJ,CAAC,CAAC;EAEF,OAAOP,QAAQ;AACjB;AAEA,SAASU,aAAaA,CACpBC,KAAyB,EACzBC,SAAoC,EACpCC,6BAAqE,EACrE;EACA,MAAMC,QAAQ,GAAGvB,cAAK,CAACwB,UAAU,CAACC,kDAAwB,CAAC;EAC3D,MAAMC,YAAY,GAAG,OAAON,KAAK,KAAK,QAAQ,IAAI,CAAC,CAACG,QAAQ;EAE5D,IAAIG,YAAY,IAAI,CAACH,QAAQ,EAAE;IAC7B,MAAM,IAAII,KAAK,CACb,sEACF,CAAC;EACH;EAEA,MAAMC,iBAAiB,GAAGP,SAAS,IAAI,SAAS;EAChD,MAAMQ,kBAAkB,GAAGD,iBAAiB,KAAK,SAAS;EAE1D,MAAME,yBAAyB,GAC7BJ,YAAY,IAAIG,kBAAkB,GAAG,KAAK,GAAGP,6BAA6B;EAE5E,OAAO;IACLC,QAAQ;IACRQ,cAAc,EAAEL,YAAY,GACxBM,4BAAiB,CAACJ,iBAAiB,CAAC,GACpCvB,SAAS;IACbyB;EACF,CAAC;AACH;AAEO,MAAMG,SAAS,GAAAC,OAAA,CAAAD,SAAA,gBAAGjC,cAAK,CAACmC,IAAI,cACjCnC,cAAK,CAACoC,UAAU,CACd,CACE;EACEC,QAAQ;EACRjB,KAAK;EACLC,SAAS;EACTiB,eAAe;EACfC,gCAAgC;EAChC,GAAGC;AACL,CAAC,EACDhC,GAAG,KACA;EACH,MAAM;IACJhB,qBAAqB;IACrBC,gCAAgC;IAChCC,4BAA4B;IAC5BC,4BAA4B;IAC5BC,oCAAoC;IACpCkC,yBAAyB,EAAER,6BAA6B;IACxD,GAAGmB;EACL,CAAC,GAAGD,KAAK;EAET,MAAME,kBAAkB,GAAGJ,eAAe,GACtCK,gCAAqB,CAACL,eAAe,CAAC,GACtCjC,SAAS;EAEb,MAAMuC,wBAAwB,GAC5BL,gCAAgC,KAAKlC,SAAS,GAC1C,CAAC,CAAC,GACFkC,gCAAgC,GAChC,CAAC,GACD,CAAC;EAEP,MAAMM,uBAAuB,GAAGtD,oBAAoB,CAAC;IACnDC,qBAAqB;IACrBC,gCAAgC;IAChCC,4BAA4B;IAC5BC,4BAA4B;IAC5BC;EACF,CAAC,CAAC;EAEF,MAAM;IAAE2B,QAAQ;IAAEQ,cAAc;IAAED;EAA0B,CAAC,GAC3DX,aAAa,CAACC,KAAK,EAAEC,SAAS,EAAEC,6BAA6B,CAAC;EAEhE,MAAMb,QAAQ,GAAGF,WAAW,CAACC,GAAG,CAAC;EAEjC,oBACE,IAAArC,WAAA,CAAA2E,GAAA,EAAC7E,yBAAA,CAAAa,OAAa;IACZ0B,GAAG,EAAEC,QAA2B;IAAA,GAC5BgC,SAAS;IACbM,aAAa,EAAEL,kBAAmB;IAClCH,gCAAgC,EAAEK,wBAAyB;IAC3Dd,yBAAyB,EAAEA,yBAA0B;IACrDC,cAAc,EAAEA,cAAe;IAC/BiB,UAAU,EAAE5B,KAAM;IAClBG,QAAQ,EAAEA,QAAS;IAAA,GACfsB,uBAAuB;IAAAR,QAAA,EAE1BA;EAAQ,CACI,CAAC;AAEpB,CACF,CACF,CAAC","ignoreList":[]}
@@ -1,39 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.A11yOrderTypeEnum = exports.A11yContainerTypeEnum = void 0;
7
- /** Ref handle for {@link A11y.Index} — exposes `focus()` to move screen reader focus programmatically. */
8
-
9
- /** Numeric backing values for {@link A11yOrderType}. Kept for consumers who need the raw number. */
10
- const A11yOrderTypeEnum = exports.A11yOrderTypeEnum = {
11
- default: 0,
12
- child: 1,
13
- subview: 2
14
- };
15
-
16
- /** @internal Numeric backing values for {@link A11yUIContainerType}. */
17
- const A11yContainerTypeEnum = exports.A11yContainerTypeEnum = {
18
- none: 0,
19
- table: 1,
20
- list: 2,
21
- landmark: 3,
22
- group: 4
23
- };
24
-
25
- /**
26
- * iOS only — sets `UIAccessibilityContainerType` on the wrapping view.
27
- * Tells VoiceOver what kind of container this is: `'list'`, `'table'`, `'landmark'`, etc.
28
- */
29
-
30
- /**
31
- * Controls which element receives screen reader focus for this index slot.
32
- *
33
- * - `'default'` — the `A11y.Index` view itself
34
- * - `'child'` — the first accessible child (useful when the index wrapper has no visual presence)
35
- * - `'subview'` — first accessible child via an older traversal path
36
- */
37
-
38
- /** The native event payload emitted by `onScreenReaderDescendantFocusChanged`. */
39
- //# sourceMappingURL=A11yIndex.types.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["A11yOrderTypeEnum","exports","default","child","subview","A11yContainerTypeEnum","none","table","list","landmark","group"],"sourceRoot":"../../../../src","sources":["components/A11yIndex/A11yIndex.types.ts"],"mappings":";;;;;;AAIA;;AAMA;AACO,MAAMA,iBAAiB,GAAAC,OAAA,CAAAD,iBAAA,GAAG;EAC/BE,OAAO,EAAE,CAAC;EACVC,KAAK,EAAE,CAAC;EACRC,OAAO,EAAE;AACX,CAAU;;AAEV;AACO,MAAMC,qBAAqB,GAAAJ,OAAA,CAAAI,qBAAA,GAAG;EACnCC,IAAI,EAAE,CAAC;EACPC,KAAK,EAAE,CAAC;EACRC,IAAI,EAAE,CAAC;EACPC,QAAQ,EAAE,CAAC;EACXC,KAAK,EAAE;AACT,CAAU;;AAEV;AACA;AACA;AACA;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;;AAGA","ignoreList":[]}
@@ -1,26 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.A11yIndex = void 0;
7
- var _react = _interopRequireWildcard(require("react"));
8
- var _reactNative = require("react-native");
9
- var _jsxRuntime = require("react/jsx-runtime");
10
- function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
11
- const WebUiManager = _reactNative.UIManager;
12
- const A11yIndex = exports.A11yIndex = /*#__PURE__*/(0, _react.forwardRef)((props, ref) => {
13
- const viewRef = (0, _react.useRef)(null);
14
- (0, _react.useImperativeHandle)(ref, () => ({
15
- focus: () => {
16
- if (viewRef.current) {
17
- WebUiManager.focus(viewRef.current);
18
- }
19
- }
20
- }));
21
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
22
- ...props,
23
- ref: viewRef
24
- });
25
- });
26
- //# sourceMappingURL=A11yIndex.web.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","WebUiManager","UIManager","A11yIndex","exports","forwardRef","props","ref","viewRef","useRef","useImperativeHandle","focus","current","jsx","View"],"sourceRoot":"../../../../src","sources":["components/A11yIndex/A11yIndex.web.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,uBAAA,CAAAC,OAAA;AAGA,IAAAC,YAAA,GAAAD,OAAA;AAAyC,IAAAE,WAAA,GAAAF,OAAA;AAAA,SAAAD,wBAAAI,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAN,uBAAA,YAAAA,CAAAI,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAGzC,MAAMkB,YAAY,GAAGC,sBAEpB;AAEM,MAAMC,SAAS,GAAAC,OAAA,CAAAD,SAAA,gBAAG,IAAAE,iBAAU,EAAqB,CAACC,KAAK,EAAEC,GAAG,KAAK;EACtE,MAAMC,OAAO,GAAG,IAAAC,aAAM,EAAO,IAAI,CAAC;EAClC,IAAAC,0BAAmB,EAACH,GAAG,EAAE,OAAO;IAC9BI,KAAK,EAAEA,CAAA,KAAM;MACX,IAAIH,OAAO,CAACI,OAAO,EAAE;QACnBX,YAAY,CAACU,KAAK,CAACH,OAAO,CAACI,OAAO,CAAC;MACrC;IACF;EACF,CAAC,CAAC,CAAC;EAEH,oBAAO,IAAA/B,WAAA,CAAAgC,GAAA,EAACjC,YAAA,CAAAkC,IAAI;IAAA,GAAKR,KAAK;IAAEC,GAAG,EAAEC;EAAe,CAAE,CAAC;AACjD,CAAC,CAAC","ignoreList":[]}
@@ -1,25 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.A11yBaseLock = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _A11yLockNativeComponent = _interopRequireDefault(require("../../../nativeSpecs/A11yLockNativeComponent"));
9
- var _jsxRuntime = require("react/jsx-runtime");
10
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
11
- const A11yBaseLock = exports.A11yBaseLock = /*#__PURE__*/_react.default.memo(({
12
- lockDisabled = false,
13
- componentType = 0,
14
- forceLock = false,
15
- ...props
16
- }) => {
17
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_A11yLockNativeComponent.default, {
18
- ...props,
19
- containerKey: "is-not-needed",
20
- componentType: componentType,
21
- lockDisabled: lockDisabled,
22
- forceLock: forceLock
23
- });
24
- });
25
- //# sourceMappingURL=A11yBaseLock.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_A11yLockNativeComponent","_jsxRuntime","e","__esModule","default","A11yBaseLock","exports","React","memo","lockDisabled","componentType","forceLock","props","jsx","containerKey"],"sourceRoot":"../../../../../src","sources":["components/A11yLock/A11yBaseLock/A11yBaseLock.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,wBAAA,GAAAF,sBAAA,CAAAC,OAAA;AAAmF,IAAAE,WAAA,GAAAF,OAAA;AAAA,SAAAD,uBAAAI,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAG5E,MAAMG,YAAY,GAAAC,OAAA,CAAAD,YAAA,gBAAGE,cAAK,CAACC,IAAI,CACpC,CAAC;EACCC,YAAY,GAAG,KAAK;EACpBC,aAAa,GAAG,CAAC;EACjBC,SAAS,GAAG,KAAK;EACjB,GAAGC;AACL,CAAC,KAAK;EACJ,oBACE,IAAAX,WAAA,CAAAY,GAAA,EAACb,wBAAA,CAAAI,OAAuB;IAAA,GAClBQ,KAAK;IACTE,YAAY,EAAC,eAAe;IAC5BJ,aAAa,EAAEA,aAAc;IAC7BD,YAAY,EAAEA,YAAa;IAC3BE,SAAS,EAAEA;EAAU,CACtB,CAAC;AAEN,CACF,CAAC","ignoreList":[]}
@@ -1,24 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.A11yFocusFrame = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _A11yBaseLock = require("../A11yBaseLock/A11yBaseLock");
9
- var _A11yFocusFrameProviderContext = require("../../../context/A11yFocusFrameProviderContext");
10
- var _jsxRuntime = require("react/jsx-runtime");
11
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
12
- const A11yFocusFrame = exports.A11yFocusFrame = /*#__PURE__*/_react.default.memo(({
13
- lockDisabled = false,
14
- ...props
15
- }) => {
16
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_A11yFocusFrameProviderContext.A11yFrameProvider, {
17
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_A11yBaseLock.A11yBaseLock, {
18
- ...props,
19
- componentType: 1,
20
- lockDisabled: lockDisabled
21
- })
22
- });
23
- });
24
- //# sourceMappingURL=A11yFocusFrame.android.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_A11yBaseLock","_A11yFocusFrameProviderContext","_jsxRuntime","e","__esModule","default","A11yFocusFrame","exports","React","memo","lockDisabled","props","jsx","A11yFrameProvider","children","A11yBaseLock","componentType"],"sourceRoot":"../../../../../src","sources":["components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AAEA,IAAAC,aAAA,GAAAD,OAAA;AACA,IAAAE,8BAAA,GAAAF,OAAA;AAAmF,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAD,uBAAAK,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAE5E,MAAMG,cAAc,GAAAC,OAAA,CAAAD,cAAA,gBAAGE,cAAK,CAACC,IAAI,CACtC,CAAC;EAAEC,YAAY,GAAG,KAAK;EAAE,GAAGC;AAAM,CAAC,KAAK;EACtC,oBACE,IAAAT,WAAA,CAAAU,GAAA,EAACX,8BAAA,CAAAY,iBAAiB;IAAAC,QAAA,eAChB,IAAAZ,WAAA,CAAAU,GAAA,EAACZ,aAAA,CAAAe,YAAY;MAAA,GACPJ,KAAK;MACTK,aAAa,EAAE,CAAE;MACjBN,YAAY,EAAEA;IAAa,CAC5B;EAAC,CACe,CAAC;AAExB,CACF,CAAC","ignoreList":[]}
@@ -1,18 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.A11yFocusFrame = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _reactNative = require("react-native");
9
- var _A11yFocusFrameProviderContext = require("../../../context/A11yFocusFrameProviderContext");
10
- var _jsxRuntime = require("react/jsx-runtime");
11
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
12
- const A11yFocusFrame = props => /*#__PURE__*/(0, _jsxRuntime.jsx)(_A11yFocusFrameProviderContext.A11yFrameProvider, {
13
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
14
- ...props
15
- })
16
- });
17
- exports.A11yFocusFrame = A11yFocusFrame;
18
- //# sourceMappingURL=A11yFocusFrame.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_A11yFocusFrameProviderContext","_jsxRuntime","e","__esModule","default","A11yFocusFrame","props","jsx","A11yFrameProvider","children","View","exports"],"sourceRoot":"../../../../../src","sources":["components/A11yLock/A11yFocusFrame/A11yFocusFrame.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,8BAAA,GAAAF,OAAA;AAAmF,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAD,uBAAAK,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAG5E,MAAMG,cAAc,GAAIC,KAA0B,iBACvD,IAAAL,WAAA,CAAAM,GAAA,EAACP,8BAAA,CAAAQ,iBAAiB;EAAAC,QAAA,eAChB,IAAAR,WAAA,CAAAM,GAAA,EAACR,YAAA,CAAAW,IAAI;IAAA,GAAKJ;EAAK,CAAG;AAAC,CACF,CACpB;AAACK,OAAA,CAAAN,cAAA,GAAAA,cAAA","ignoreList":[]}
@@ -1,22 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.A11yFocusTrap = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _A11yBaseLock = require("../A11yBaseLock/A11yBaseLock");
9
- var _A11yFocusTrapMountWrapper = require("./A11yFocusTrapMountWrapper");
10
- var _jsxRuntime = require("react/jsx-runtime");
11
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
12
- const A11yFocusTrap = exports.A11yFocusTrap = /*#__PURE__*/_react.default.memo(({
13
- lockDisabled = false,
14
- ...props
15
- }) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_A11yFocusTrapMountWrapper.A11yFocusTrapMountWrapper, {
16
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_A11yBaseLock.A11yBaseLock, {
17
- ...props,
18
- componentType: 0,
19
- lockDisabled: lockDisabled
20
- })
21
- }));
22
- //# sourceMappingURL=A11yFocusTrap.android.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_A11yBaseLock","_A11yFocusTrapMountWrapper","_jsxRuntime","e","__esModule","default","A11yFocusTrap","exports","React","memo","lockDisabled","props","jsx","A11yFocusTrapMountWrapper","children","A11yBaseLock","componentType"],"sourceRoot":"../../../../../src","sources":["components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AAEA,IAAAC,aAAA,GAAAD,OAAA;AACA,IAAAE,0BAAA,GAAAF,OAAA;AAAwE,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAD,uBAAAK,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAEjE,MAAMG,aAAa,GAAAC,OAAA,CAAAD,aAAA,gBAAGE,cAAK,CAACC,IAAI,CACrC,CAAC;EAAEC,YAAY,GAAG,KAAK;EAAE,GAAGC;AAAM,CAAC,kBACjC,IAAAT,WAAA,CAAAU,GAAA,EAACX,0BAAA,CAAAY,yBAAyB;EAAAC,QAAA,eACxB,IAAAZ,WAAA,CAAAU,GAAA,EAACZ,aAAA,CAAAe,YAAY;IAAA,GAAKJ,KAAK;IAAEK,aAAa,EAAE,CAAE;IAACN,YAAY,EAAEA;EAAa,CAAE;AAAC,CAChD,CAE/B,CAAC","ignoreList":[]}
@@ -1,36 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.A11yFocusTrap = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _reactNative = require("react-native");
9
- var _A11yFocusTrapMountWrapper = require("./A11yFocusTrapMountWrapper");
10
- var _A11yBaseLock = require("../A11yBaseLock/A11yBaseLock");
11
- var _jsxRuntime = require("react/jsx-runtime");
12
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
13
- const A11yFocusTrap = ({
14
- forceLock = false,
15
- ...props
16
- }) => {
17
- if (forceLock) {
18
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_A11yFocusTrapMountWrapper.A11yFocusTrapMountWrapper, {
19
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_A11yBaseLock.A11yBaseLock, {
20
- collapsable: false,
21
- accessibilityViewIsModal: true,
22
- forceLock: forceLock,
23
- ...props
24
- })
25
- });
26
- }
27
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_A11yFocusTrapMountWrapper.A11yFocusTrapMountWrapper, {
28
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
29
- collapsable: false,
30
- accessibilityViewIsModal: true,
31
- ...props
32
- })
33
- });
34
- };
35
- exports.A11yFocusTrap = A11yFocusTrap;
36
- //# sourceMappingURL=A11yFocusTrap.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_A11yFocusTrapMountWrapper","_A11yBaseLock","_jsxRuntime","e","__esModule","default","A11yFocusTrap","forceLock","props","jsx","A11yFocusTrapMountWrapper","children","A11yBaseLock","collapsable","accessibilityViewIsModal","View","exports"],"sourceRoot":"../../../../../src","sources":["components/A11yLock/A11yFocusTrap/A11yFocusTrap.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAEA,IAAAE,0BAAA,GAAAF,OAAA;AACA,IAAAG,aAAA,GAAAH,OAAA;AAA4D,IAAAI,WAAA,GAAAJ,OAAA;AAAA,SAAAD,uBAAAM,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAErD,MAAMG,aAAa,GAAGA,CAAC;EAC5BC,SAAS,GAAG,KAAK;EACjB,GAAGC;AACe,CAAC,KAAK;EACxB,IAAID,SAAS,EAAE;IACb,oBACE,IAAAL,WAAA,CAAAO,GAAA,EAACT,0BAAA,CAAAU,yBAAyB;MAAAC,QAAA,eACxB,IAAAT,WAAA,CAAAO,GAAA,EAACR,aAAA,CAAAW,YAAY;QACXC,WAAW,EAAE,KAAM;QACnBC,wBAAwB,EAAE,IAAK;QAC/BP,SAAS,EAAEA,SAAU;QAAA,GACjBC;MAAK,CACV;IAAC,CACuB,CAAC;EAEhC;EAEA,oBACE,IAAAN,WAAA,CAAAO,GAAA,EAACT,0BAAA,CAAAU,yBAAyB;IAAAC,QAAA,eACxB,IAAAT,WAAA,CAAAO,GAAA,EAACV,YAAA,CAAAgB,IAAI;MAACF,WAAW,EAAE,KAAM;MAACC,wBAAwB,EAAE,IAAK;MAAA,GAAKN;IAAK,CAAG;EAAC,CAC9C,CAAC;AAEhC,CAAC;AAACQ,OAAA,CAAAV,aAAA,GAAAA,aAAA","ignoreList":[]}
@@ -1,46 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.A11yFocusTrapMountWrapper = void 0;
7
- var _react = require("react");
8
- var _A11yFocusFrameProviderContext = require("../../../context/A11yFocusFrameProviderContext");
9
- const A11yFocusTrapMountWrapper = ({
10
- children
11
- }) => {
12
- const a11yFrameContext = (0, _A11yFocusFrameProviderContext.useFocusFrameContext)();
13
- const instanceId = (0, _react.useRef)(Symbol('FocusLock'));
14
- if (!a11yFrameContext) {
15
- console.warn('A11y.FocusTrap must be used within a A11y.FocusFrame');
16
- return children;
17
- }
18
- const {
19
- hasFocusLock,
20
- setHasFocusLock,
21
- focusLockId,
22
- setFocusLockId
23
- } = a11yFrameContext;
24
- const isActive = !hasFocusLock || focusLockId === instanceId.current;
25
-
26
- // eslint-disable-next-line react-hooks/rules-of-hooks
27
- (0, _react.useEffect)(() => {
28
- const id = instanceId.current;
29
- if (!hasFocusLock) {
30
- setHasFocusLock(true);
31
- setFocusLockId(id);
32
- }
33
- return () => {
34
- if (focusLockId === id) {
35
- setHasFocusLock(false);
36
- setFocusLockId(null);
37
- }
38
- };
39
- }, [hasFocusLock, setHasFocusLock, focusLockId, setFocusLockId]);
40
- if (!isActive) {
41
- console.warn('Multiple A11y.FocusTrap components may cause unstable behavior');
42
- }
43
- return children;
44
- };
45
- exports.A11yFocusTrapMountWrapper = A11yFocusTrapMountWrapper;
46
- //# sourceMappingURL=A11yFocusTrapMountWrapper.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","require","_A11yFocusFrameProviderContext","A11yFocusTrapMountWrapper","children","a11yFrameContext","useFocusFrameContext","instanceId","useRef","Symbol","console","warn","hasFocusLock","setHasFocusLock","focusLockId","setFocusLockId","isActive","current","useEffect","id","exports"],"sourceRoot":"../../../../../src","sources":["components/A11yLock/A11yFocusTrap/A11yFocusTrapMountWrapper.ts"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,8BAAA,GAAAD,OAAA;AAEO,MAAME,yBAAsD,GAAGA,CAAC;EACrEC;AACF,CAAC,KAAK;EACJ,MAAMC,gBAAgB,GAAG,IAAAC,mDAAoB,EAAC,CAAC;EAC/C,MAAMC,UAAU,GAAG,IAAAC,aAAM,EAACC,MAAM,CAAC,WAAW,CAAC,CAAC;EAE9C,IAAI,CAACJ,gBAAgB,EAAE;IACrBK,OAAO,CAACC,IAAI,CAAC,sDAAsD,CAAC;IACpE,OAAOP,QAAQ;EACjB;EAEA,MAAM;IAAEQ,YAAY;IAAEC,eAAe;IAAEC,WAAW;IAAEC;EAAe,CAAC,GAClEV,gBAAgB;EAClB,MAAMW,QAAQ,GAAG,CAACJ,YAAY,IAAIE,WAAW,KAAKP,UAAU,CAACU,OAAO;;EAEpE;EACA,IAAAC,gBAAS,EAAC,MAAM;IACd,MAAMC,EAAE,GAAGZ,UAAU,CAACU,OAAO;IAE7B,IAAI,CAACL,YAAY,EAAE;MACjBC,eAAe,CAAC,IAAI,CAAC;MACrBE,cAAc,CAACI,EAAE,CAAC;IACpB;IACA,OAAO,MAAM;MACX,IAAIL,WAAW,KAAKK,EAAE,EAAE;QACtBN,eAAe,CAAC,KAAK,CAAC;QACtBE,cAAc,CAAC,IAAI,CAAC;MACtB;IACF,CAAC;EACH,CAAC,EAAE,CAACH,YAAY,EAAEC,eAAe,EAAEC,WAAW,EAAEC,cAAc,CAAC,CAAC;EAEhE,IAAI,CAACC,QAAQ,EAAE;IACbN,OAAO,CAACC,IAAI,CACV,gEACF,CAAC;EACH;EAEA,OAAOP,QAAQ;AACjB,CAAC;AAACgB,OAAA,CAAAjB,yBAAA,GAAAA,yBAAA","ignoreList":[]}
@@ -1,6 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- //# sourceMappingURL=A11yLock.types.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/A11yLock/A11yLock.types.ts"],"mappings":"","ignoreList":[]}
@@ -1,22 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.A11yOrder = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _A11ySequenceOrderContext = require("../../context/A11ySequenceOrderContext");
9
- var _A11yOrderNativeComponent = _interopRequireDefault(require("../../nativeSpecs/A11yOrderNativeComponent"));
10
- var _jsxRuntime = require("react/jsx-runtime");
11
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
12
- const A11yOrder = exports.A11yOrder = /*#__PURE__*/_react.default.memo(props => {
13
- const orderKey = _react.default.useId();
14
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_A11ySequenceOrderContext.A11ySequenceOrderContext.Provider, {
15
- value: orderKey,
16
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_A11yOrderNativeComponent.default, {
17
- ...props,
18
- orderKey: orderKey
19
- })
20
- });
21
- });
22
- //# sourceMappingURL=A11yOrder.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_A11ySequenceOrderContext","_A11yOrderNativeComponent","_jsxRuntime","e","__esModule","default","A11yOrder","exports","React","memo","props","orderKey","useId","jsx","A11ySequenceOrderContext","Provider","value","children"],"sourceRoot":"../../../../src","sources":["components/A11yOrder/A11yOrder.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,yBAAA,GAAAD,OAAA;AACA,IAAAE,yBAAA,GAAAH,sBAAA,CAAAC,OAAA;AAAkF,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAD,uBAAAK,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAK3E,MAAMG,SAAS,GAAAC,OAAA,CAAAD,SAAA,gBAAGE,cAAK,CAACC,IAAI,CAAkBC,KAAK,IAAK;EAC7D,MAAMC,QAAQ,GAAGH,cAAK,CAACI,KAAK,CAAC,CAAC;EAC9B,oBACE,IAAAV,WAAA,CAAAW,GAAA,EAACb,yBAAA,CAAAc,wBAAwB,CAACC,QAAQ;IAACC,KAAK,EAAEL,QAAS;IAAAM,QAAA,eACjD,IAAAf,WAAA,CAAAW,GAAA,EAACZ,yBAAA,CAAAI,OAAwB;MAAA,GAAKK,KAAK;MAAEC,QAAQ,EAAEA;IAAS,CAAE;EAAC,CAC1B,CAAC;AAExC,CAAC,CAAC","ignoreList":[]}
@@ -1,6 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- //# sourceMappingURL=A11yOrder.types.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/A11yOrder/A11yOrder.types.ts"],"mappings":"","ignoreList":[]}
@@ -1,41 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.A11yScreenChange = exports.A11yPaneTitle = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _A11yPaneTitleNativeComponent = _interopRequireDefault(require("../../nativeSpecs/A11yPaneTitleNativeComponent"));
9
- var _jsxRuntime = require("react/jsx-runtime");
10
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
11
- const PaneTypeValue = {
12
- activity: 0,
13
- pane: 1,
14
- announce: 2
15
- };
16
- const A11yPaneTitle = ({
17
- title,
18
- detachMessage,
19
- type = 'pane',
20
- children,
21
- displayed,
22
- withFocusRestore = true
23
- }) => {
24
- if (displayed === false) return null;
25
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_A11yPaneTitleNativeComponent.default, {
26
- title: title,
27
- detachMessage: detachMessage,
28
- type: PaneTypeValue[type],
29
- children: children,
30
- withFocusRestore: withFocusRestore
31
- });
32
- };
33
- exports.A11yPaneTitle = A11yPaneTitle;
34
- const A11yScreenChange = props => /*#__PURE__*/(0, _jsxRuntime.jsx)(A11yPaneTitle, {
35
- title: props.title,
36
- detachMessage: props.detachMessage,
37
- displayed: props.displayed,
38
- type: "activity"
39
- });
40
- exports.A11yScreenChange = A11yScreenChange;
41
- //# sourceMappingURL=A11yPaneTitle.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_A11yPaneTitleNativeComponent","_jsxRuntime","e","__esModule","default","PaneTypeValue","activity","pane","announce","A11yPaneTitle","title","detachMessage","type","children","displayed","withFocusRestore","jsx","exports","A11yScreenChange","props"],"sourceRoot":"../../../../src","sources":["components/A11yPaneTitle/A11yPaneTitle.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,6BAAA,GAAAF,sBAAA,CAAAC,OAAA;AAAiF,IAAAE,WAAA,GAAAF,OAAA;AAAA,SAAAD,uBAAAI,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAOjF,MAAMG,aAA2C,GAAG;EAClDC,QAAQ,EAAE,CAAC;EACXC,IAAI,EAAE,CAAC;EACPC,QAAQ,EAAE;AACZ,CAAC;AAEM,MAAMC,aAAa,GAAGA,CAAC;EAC5BC,KAAK;EACLC,aAAa;EACbC,IAAI,GAAG,MAAM;EACbC,QAAQ;EACRC,SAAS;EACTC,gBAAgB,GAAG;AACD,CAAC,KAAK;EACxB,IAAID,SAAS,KAAK,KAAK,EAAE,OAAO,IAAI;EAEpC,oBACE,IAAAb,WAAA,CAAAe,GAAA,EAAChB,6BAAA,CAAAI,OAAmB;IAClBM,KAAK,EAAEA,KAAM;IACbC,aAAa,EAAEA,aAAc;IAC7BC,IAAI,EAAEP,aAAa,CAACO,IAAI,CAAE;IAC1BC,QAAQ,EAAEA,QAAS;IACnBE,gBAAgB,EAAEA;EAAiB,CACpC,CAAC;AAEN,CAAC;AAACE,OAAA,CAAAR,aAAA,GAAAA,aAAA;AAEK,MAAMS,gBAAgB,GAAIC,KAA4B,iBAC3D,IAAAlB,WAAA,CAAAe,GAAA,EAACP,aAAa;EACZC,KAAK,EAAES,KAAK,CAACT,KAAM;EACnBC,aAAa,EAAEQ,KAAK,CAACR,aAAc;EACnCG,SAAS,EAAEK,KAAK,CAACL,SAAU;EAC3BF,IAAI,EAAC;AAAU,CAChB,CACF;AAACK,OAAA,CAAAC,gBAAA,GAAAA,gBAAA","ignoreList":[]}
@@ -1,6 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- //# sourceMappingURL=A11yPaneTitle.types.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/A11yPaneTitle/A11yPaneTitle.types.ts"],"mappings":"","ignoreList":[]}
@@ -1,14 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.A11yView = void 0;
7
- var _A11yIndex = require("../A11yIndex/A11yIndex");
8
- /**
9
- * Standalone focus-tracking view with no ordering context.
10
- * Use when you need screen reader focus events but no position in a sequence.
11
- * For ordered elements, use {@link A11yIndex} inside an Order container.
12
- */
13
- const A11yView = exports.A11yView = _A11yIndex.A11yIndex;
14
- //# sourceMappingURL=A11yView.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_A11yIndex","require","A11yView","exports","A11yIndex"],"sourceRoot":"../../../../src","sources":["components/A11yView/A11yView.tsx"],"mappings":";;;;;;AAAA,IAAAA,UAAA,GAAAC,OAAA;AAEA;AACA;AACA;AACA;AACA;AACO,MAAMC,QAAQ,GAAAC,OAAA,CAAAD,QAAA,GAAGE,oBAAS","ignoreList":[]}
@@ -1,6 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- //# sourceMappingURL=A11yView.types.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/A11yView/A11yView.types.ts"],"mappings":"","ignoreList":[]}