react-native-a11y-order 0.9.1 → 0.11.0-alpha.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 (268) hide show
  1. package/README.md +35 -345
  2. package/android/src/main/java/com/a11yorder/A11yOrderPackage.java +2 -6
  3. package/android/src/main/java/com/a11yorder/core/A11yAutoFocusView.java +61 -0
  4. package/android/src/main/java/com/a11yorder/{views/A11yView/A11yView.java → core/A11yScreenReaderView.java} +3 -45
  5. package/android/src/main/java/com/a11yorder/core/A11yViewOrder.java +37 -0
  6. package/android/src/main/java/com/a11yorder/views/A11yCardView/A11yCardViewManager.java +18 -0
  7. package/android/src/main/java/com/a11yorder/views/A11yIndexView/A11yIndexView.java +2 -65
  8. package/android/src/main/java/com/a11yorder/views/A11yIndexView/A11yIndexViewManager.java +27 -0
  9. package/android/src/newarch/A11yCardViewManagerSpec.java +9 -0
  10. package/android/src/oldarch/A11yCardViewManagerSpec.java +8 -0
  11. package/android/src/oldarch/A11yIndexViewManagerSpec.java +9 -0
  12. package/ios/helpers/RNAOFabricEventHelper/RNAOFabricEventHelper.mm +5 -5
  13. package/ios/views/RNAOA11yCardView/RNAOA11yCardView.h +29 -0
  14. package/ios/views/RNAOA11yCardView/RNAOA11yCardView.mm +83 -0
  15. package/ios/views/RNAOA11yCardView/RNAOA11yCardViewManager.h +14 -0
  16. package/ios/views/RNAOA11yCardView/RNAOA11yCardViewManager.mm +17 -0
  17. package/ios/views/RNAOA11yIndexView/RNAOA11yIndexView.h +2 -41
  18. package/ios/views/RNAOA11yIndexView/RNAOA11yIndexView.mm +27 -127
  19. package/ios/views/RNAOA11yIndexView/RNAOA11yIndexViewManager.mm +21 -0
  20. package/ios/views/base/RNAOA11yAutoFocusView.h +30 -0
  21. package/ios/views/{RNAOA11yView/RNAOA11yView.mm → base/RNAOA11yAutoFocusView.mm} +66 -168
  22. package/ios/views/base/RNAOA11yGroupChildrenView.h +21 -0
  23. package/ios/views/base/RNAOA11yGroupChildrenView.mm +19 -0
  24. package/ios/views/base/RNAOA11yScreenReaderView.h +24 -0
  25. package/ios/views/base/RNAOA11yScreenReaderView.mm +32 -0
  26. package/ios/views/base/RNAOA11yViewGroup.h +35 -0
  27. package/ios/views/base/RNAOA11yViewGroup.mm +46 -0
  28. package/ios/views/base/RNAOA11yViewOrder.h +40 -0
  29. package/ios/views/base/RNAOA11yViewOrder.mm +92 -0
  30. package/lib/commonjs/components/A11yCard/A11yCard.ios.js +49 -0
  31. package/lib/commonjs/components/A11yCard/A11yCard.ios.js.map +1 -0
  32. package/lib/commonjs/components/A11yCard/A11yCard.js +41 -0
  33. package/lib/commonjs/components/A11yCard/A11yCard.js.map +1 -0
  34. package/lib/commonjs/{types/A11yGroup.types.js → components/A11yCard/A11yCard.types.js} +1 -1
  35. package/lib/commonjs/components/A11yCard/A11yCard.types.js.map +1 -0
  36. package/lib/commonjs/components/A11yIndex/A11yIndex.js +88 -28
  37. package/lib/commonjs/components/A11yIndex/A11yIndex.js.map +1 -1
  38. package/lib/commonjs/components/A11yIndex/A11yIndex.types.js +39 -0
  39. package/lib/commonjs/components/A11yIndex/A11yIndex.types.js.map +1 -0
  40. package/lib/commonjs/components/A11yIndex/A11yIndex.web.js.map +1 -1
  41. package/lib/commonjs/components/A11yLock/A11yFocusFrame/A11yFocusFrame.js.map +1 -1
  42. package/lib/commonjs/components/A11yLock/A11yFocusTrap/A11yFocusTrap.js.map +1 -1
  43. package/lib/commonjs/components/A11yLock/A11yLock.types.js.map +1 -0
  44. package/lib/commonjs/components/{A11ySequence/A11ySequence.js → A11yOrder/A11yOrder.js} +3 -3
  45. package/lib/commonjs/components/A11yOrder/A11yOrder.js.map +1 -0
  46. package/lib/commonjs/{types/A11yModule.types.js → components/A11yOrder/A11yOrder.types.js} +1 -1
  47. package/lib/commonjs/components/A11yOrder/A11yOrder.types.js.map +1 -0
  48. package/lib/commonjs/components/A11yPaneTitle/A11yPaneTitle.js +6 -7
  49. package/lib/commonjs/components/A11yPaneTitle/A11yPaneTitle.js.map +1 -1
  50. package/lib/commonjs/components/A11yPaneTitle/A11yPaneTitle.types.js +6 -0
  51. package/lib/commonjs/components/A11yPaneTitle/A11yPaneTitle.types.js.map +1 -0
  52. package/lib/commonjs/components/A11yView/A11yView.js +7 -33
  53. package/lib/commonjs/components/A11yView/A11yView.js.map +1 -1
  54. package/lib/commonjs/components/A11yView/A11yView.types.js.map +1 -0
  55. package/lib/commonjs/index.js +17 -8
  56. package/lib/commonjs/index.js.map +1 -1
  57. package/lib/commonjs/index.web.js +10 -4
  58. package/lib/commonjs/index.web.js.map +1 -1
  59. package/lib/commonjs/nativeSpecs/{A11yGroupNativeComponent.ts → A11yCardNativeComponent.ts} +3 -3
  60. package/lib/commonjs/nativeSpecs/A11yIndexNativeComponent.ts +12 -3
  61. package/lib/module/components/A11yCard/A11yCard.ios.js +43 -0
  62. package/lib/module/components/A11yCard/A11yCard.ios.js.map +1 -0
  63. package/lib/module/components/A11yCard/A11yCard.js +35 -0
  64. package/lib/module/components/A11yCard/A11yCard.js.map +1 -0
  65. package/lib/module/components/A11yCard/A11yCard.types.js +4 -0
  66. package/lib/module/components/A11yCard/A11yCard.types.js.map +1 -0
  67. package/lib/module/components/A11yIndex/A11yIndex.js +88 -28
  68. package/lib/module/components/A11yIndex/A11yIndex.js.map +1 -1
  69. package/lib/module/components/A11yIndex/A11yIndex.types.js +35 -0
  70. package/lib/module/components/A11yIndex/A11yIndex.types.js.map +1 -0
  71. package/lib/module/components/A11yIndex/A11yIndex.web.js.map +1 -1
  72. package/lib/module/components/A11yLock/A11yFocusFrame/A11yFocusFrame.js.map +1 -1
  73. package/lib/module/components/A11yLock/A11yFocusTrap/A11yFocusTrap.js.map +1 -1
  74. package/lib/module/components/A11yLock/A11yLock.types.js.map +1 -0
  75. package/lib/module/components/{A11ySequence/A11ySequence.js → A11yOrder/A11yOrder.js} +2 -2
  76. package/lib/module/components/A11yOrder/A11yOrder.js.map +1 -0
  77. package/lib/module/components/A11yOrder/A11yOrder.types.js +4 -0
  78. package/lib/module/components/A11yOrder/A11yOrder.types.js.map +1 -0
  79. package/lib/module/components/A11yPaneTitle/A11yPaneTitle.js +6 -7
  80. package/lib/module/components/A11yPaneTitle/A11yPaneTitle.js.map +1 -1
  81. package/lib/module/components/A11yPaneTitle/A11yPaneTitle.types.js +4 -0
  82. package/lib/module/components/A11yPaneTitle/A11yPaneTitle.types.js.map +1 -0
  83. package/lib/module/components/A11yView/A11yView.js +7 -31
  84. package/lib/module/components/A11yView/A11yView.js.map +1 -1
  85. package/lib/module/components/A11yView/A11yView.types.js.map +1 -0
  86. package/lib/module/index.js +12 -8
  87. package/lib/module/index.js.map +1 -1
  88. package/lib/module/index.web.js +4 -4
  89. package/lib/module/index.web.js.map +1 -1
  90. package/{src/nativeSpecs/A11yGroupNativeComponent.ts → lib/module/nativeSpecs/A11yCardNativeComponent.ts} +3 -3
  91. package/lib/module/nativeSpecs/A11yIndexNativeComponent.ts +12 -3
  92. package/lib/typescript/src/components/A11yCard/A11yCard.d.ts +5 -0
  93. package/lib/typescript/src/components/A11yCard/A11yCard.d.ts.map +1 -0
  94. package/lib/typescript/src/components/A11yCard/A11yCard.ios.d.ts +5 -0
  95. package/lib/typescript/src/components/A11yCard/A11yCard.ios.d.ts.map +1 -0
  96. package/lib/typescript/src/components/A11yCard/A11yCard.types.d.ts +14 -0
  97. package/lib/typescript/src/components/A11yCard/A11yCard.types.d.ts.map +1 -0
  98. package/lib/typescript/src/components/A11yIndex/A11yIndex.d.ts +15 -10
  99. package/lib/typescript/src/components/A11yIndex/A11yIndex.d.ts.map +1 -1
  100. package/lib/typescript/src/components/A11yIndex/A11yIndex.types.d.ts +83 -0
  101. package/lib/typescript/src/components/A11yIndex/A11yIndex.types.d.ts.map +1 -0
  102. package/lib/typescript/src/components/A11yIndex/A11yIndex.web.d.ts +14 -10
  103. package/lib/typescript/src/components/A11yIndex/A11yIndex.web.d.ts.map +1 -1
  104. package/lib/typescript/src/components/A11yLock/A11yBaseLock/A11yBaseLock.d.ts +1 -1
  105. package/lib/typescript/src/components/A11yLock/A11yBaseLock/A11yBaseLock.d.ts.map +1 -1
  106. package/lib/typescript/src/components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.d.ts +1 -1
  107. package/lib/typescript/src/components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.d.ts.map +1 -1
  108. package/lib/typescript/src/components/A11yLock/A11yFocusFrame/A11yFocusFrame.d.ts +2 -2
  109. package/lib/typescript/src/components/A11yLock/A11yFocusFrame/A11yFocusFrame.d.ts.map +1 -1
  110. package/lib/typescript/src/components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.d.ts +1 -1
  111. package/lib/typescript/src/components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.d.ts.map +1 -1
  112. package/lib/typescript/src/components/A11yLock/A11yFocusTrap/A11yFocusTrap.d.ts +2 -2
  113. package/lib/typescript/src/components/A11yLock/A11yFocusTrap/A11yFocusTrap.d.ts.map +1 -1
  114. package/lib/typescript/src/components/A11yLock/A11yLock.types.d.ts +31 -0
  115. package/lib/typescript/src/components/A11yLock/A11yLock.types.d.ts.map +1 -0
  116. package/lib/typescript/src/components/{A11ySequence/A11ySequence.d.ts → A11yOrder/A11yOrder.d.ts} +4 -2
  117. package/lib/typescript/src/components/A11yOrder/A11yOrder.d.ts.map +1 -0
  118. package/lib/typescript/src/components/A11yOrder/A11yOrder.types.d.ts +11 -0
  119. package/lib/typescript/src/components/A11yOrder/A11yOrder.types.d.ts.map +1 -0
  120. package/lib/typescript/src/components/A11yPaneTitle/A11yPaneTitle.d.ts +3 -17
  121. package/lib/typescript/src/components/A11yPaneTitle/A11yPaneTitle.d.ts.map +1 -1
  122. package/lib/typescript/src/components/A11yPaneTitle/A11yPaneTitle.types.d.ts +43 -0
  123. package/lib/typescript/src/components/A11yPaneTitle/A11yPaneTitle.types.d.ts.map +1 -0
  124. package/lib/typescript/src/components/A11yView/A11yView.d.ts +13 -6
  125. package/lib/typescript/src/components/A11yView/A11yView.d.ts.map +1 -1
  126. package/lib/typescript/src/components/A11yView/A11yView.types.d.ts +10 -0
  127. package/lib/typescript/src/components/A11yView/A11yView.types.d.ts.map +1 -0
  128. package/lib/typescript/src/index.d.ts +32 -36
  129. package/lib/typescript/src/index.d.ts.map +1 -1
  130. package/lib/typescript/src/index.web.d.ts +22 -22
  131. package/lib/typescript/src/index.web.d.ts.map +1 -1
  132. package/lib/typescript/src/nativeSpecs/A11yCardNativeComponent.d.ts +8 -0
  133. package/lib/typescript/src/nativeSpecs/A11yCardNativeComponent.d.ts.map +1 -0
  134. package/lib/typescript/src/nativeSpecs/A11yIndexNativeComponent.d.ts +10 -3
  135. package/lib/typescript/src/nativeSpecs/A11yIndexNativeComponent.d.ts.map +1 -1
  136. package/package.json +12 -11
  137. package/src/components/A11yCard/A11yCard.ios.tsx +44 -0
  138. package/src/components/A11yCard/A11yCard.tsx +35 -0
  139. package/src/components/A11yCard/A11yCard.types.ts +39 -0
  140. package/src/components/A11yIndex/A11yIndex.tsx +144 -52
  141. package/src/components/A11yIndex/A11yIndex.types.ts +102 -0
  142. package/src/components/A11yIndex/A11yIndex.web.tsx +12 -17
  143. package/src/components/A11yLock/A11yBaseLock/A11yBaseLock.tsx +1 -1
  144. package/src/components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.tsx +1 -1
  145. package/src/components/A11yLock/A11yFocusFrame/A11yFocusFrame.tsx +3 -2
  146. package/src/components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.tsx +1 -1
  147. package/src/components/A11yLock/A11yFocusTrap/A11yFocusTrap.tsx +2 -2
  148. package/src/components/A11yLock/A11yLock.types.ts +34 -0
  149. package/src/components/{A11ySequence/A11ySequence.tsx → A11yOrder/A11yOrder.tsx} +4 -2
  150. package/src/components/A11yOrder/A11yOrder.types.ts +11 -0
  151. package/src/components/A11yPaneTitle/A11yPaneTitle.tsx +13 -19
  152. package/src/components/A11yPaneTitle/A11yPaneTitle.types.ts +49 -0
  153. package/src/components/A11yView/A11yView.tsx +8 -63
  154. package/src/components/A11yView/A11yView.types.ts +11 -0
  155. package/src/index.ts +26 -19
  156. package/src/index.web.ts +6 -13
  157. package/{lib/module/nativeSpecs/A11yGroupNativeComponent.ts → src/nativeSpecs/A11yCardNativeComponent.ts} +3 -3
  158. package/src/nativeSpecs/A11yIndexNativeComponent.ts +12 -3
  159. package/android/src/main/java/com/a11yorder/views/A11yGroupView/A11yGroupViewManager.java +0 -25
  160. package/android/src/main/java/com/a11yorder/views/A11yUIContainerView/A11yUIContainerViewManager.java +0 -30
  161. package/android/src/main/java/com/a11yorder/views/A11yView/A11yViewManager.java +0 -67
  162. package/android/src/newarch/A11yGroupViewManagerSpec.java +0 -9
  163. package/android/src/newarch/A11yUIContainerViewManagerSpec.java +0 -8
  164. package/android/src/newarch/A11yViewSpec.java +0 -13
  165. package/android/src/oldarch/A11yGroupViewManagerSpec.java +0 -8
  166. package/android/src/oldarch/A11yUIContainerViewManagerSpec.java +0 -9
  167. package/android/src/oldarch/A11yViewSpec.java +0 -18
  168. package/ios/views/RNAOA11yGroupView/RNAOA11yGroupView.h +0 -37
  169. package/ios/views/RNAOA11yGroupView/RNAOA11yGroupView.mm +0 -67
  170. package/ios/views/RNAOA11yGroupView/RNAOA11yGroupViewManager.h +0 -18
  171. package/ios/views/RNAOA11yGroupView/RNAOA11yGroupViewManager.mm +0 -25
  172. package/ios/views/RNAOA11yUIContainerView/RNAOA11yUIContainerView.h +0 -35
  173. package/ios/views/RNAOA11yUIContainerView/RNAOA11yUIContainerView.mm +0 -79
  174. package/ios/views/RNAOA11yUIContainerView/RNAOA11yUIContainerViewManager.h +0 -18
  175. package/ios/views/RNAOA11yUIContainerView/RNAOA11yUIContainerViewManager.mm +0 -27
  176. package/ios/views/RNAOA11yView/RNAOA11yView.h +0 -45
  177. package/ios/views/RNAOA11yView/RNAOA11yViewManager.h +0 -14
  178. package/ios/views/RNAOA11yView/RNAOA11yViewManager.mm +0 -53
  179. package/lib/commonjs/components/A11yGroup/A11yGroup.android.js +0 -18
  180. package/lib/commonjs/components/A11yGroup/A11yGroup.android.js.map +0 -1
  181. package/lib/commonjs/components/A11yGroup/A11yGroup.ios.js +0 -24
  182. package/lib/commonjs/components/A11yGroup/A11yGroup.ios.js.map +0 -1
  183. package/lib/commonjs/components/A11yGroup/A11yGroup.js +0 -9
  184. package/lib/commonjs/components/A11yGroup/A11yGroup.js.map +0 -1
  185. package/lib/commonjs/components/A11ySequence/A11ySequence.js.map +0 -1
  186. package/lib/commonjs/components/A11yUIContainer/A11yUIContainer.ios.js +0 -22
  187. package/lib/commonjs/components/A11yUIContainer/A11yUIContainer.ios.js.map +0 -1
  188. package/lib/commonjs/components/A11yUIContainer/A11yUIContainer.js +0 -9
  189. package/lib/commonjs/components/A11yUIContainer/A11yUIContainer.js.map +0 -1
  190. package/lib/commonjs/nativeSpecs/A11yUIContainerNativeComponent.ts +0 -12
  191. package/lib/commonjs/nativeSpecs/A11yViewNativeComponent.ts +0 -36
  192. package/lib/commonjs/types/A11yGroup.types.js.map +0 -1
  193. package/lib/commonjs/types/A11yIndex.types.js +0 -13
  194. package/lib/commonjs/types/A11yIndex.types.js.map +0 -1
  195. package/lib/commonjs/types/A11yLock.types.js.map +0 -1
  196. package/lib/commonjs/types/A11yModule.types.js.map +0 -1
  197. package/lib/commonjs/types/A11yUIContainerView.types.js +0 -15
  198. package/lib/commonjs/types/A11yUIContainerView.types.js.map +0 -1
  199. package/lib/commonjs/types/A11yView.types.js.map +0 -1
  200. package/lib/module/components/A11yGroup/A11yGroup.android.js +0 -12
  201. package/lib/module/components/A11yGroup/A11yGroup.android.js.map +0 -1
  202. package/lib/module/components/A11yGroup/A11yGroup.ios.js +0 -18
  203. package/lib/module/components/A11yGroup/A11yGroup.ios.js.map +0 -1
  204. package/lib/module/components/A11yGroup/A11yGroup.js +0 -5
  205. package/lib/module/components/A11yGroup/A11yGroup.js.map +0 -1
  206. package/lib/module/components/A11ySequence/A11ySequence.js.map +0 -1
  207. package/lib/module/components/A11yUIContainer/A11yUIContainer.ios.js +0 -17
  208. package/lib/module/components/A11yUIContainer/A11yUIContainer.ios.js.map +0 -1
  209. package/lib/module/components/A11yUIContainer/A11yUIContainer.js +0 -5
  210. package/lib/module/components/A11yUIContainer/A11yUIContainer.js.map +0 -1
  211. package/lib/module/nativeSpecs/A11yUIContainerNativeComponent.ts +0 -12
  212. package/lib/module/nativeSpecs/A11yViewNativeComponent.ts +0 -36
  213. package/lib/module/types/A11yGroup.types.js +0 -4
  214. package/lib/module/types/A11yGroup.types.js.map +0 -1
  215. package/lib/module/types/A11yIndex.types.js +0 -9
  216. package/lib/module/types/A11yIndex.types.js.map +0 -1
  217. package/lib/module/types/A11yLock.types.js.map +0 -1
  218. package/lib/module/types/A11yModule.types.js +0 -4
  219. package/lib/module/types/A11yModule.types.js.map +0 -1
  220. package/lib/module/types/A11yUIContainerView.types.js +0 -11
  221. package/lib/module/types/A11yUIContainerView.types.js.map +0 -1
  222. package/lib/module/types/A11yView.types.js.map +0 -1
  223. package/lib/typescript/src/components/A11yGroup/A11yGroup.android.d.ts +0 -4
  224. package/lib/typescript/src/components/A11yGroup/A11yGroup.android.d.ts.map +0 -1
  225. package/lib/typescript/src/components/A11yGroup/A11yGroup.d.ts +0 -3
  226. package/lib/typescript/src/components/A11yGroup/A11yGroup.d.ts.map +0 -1
  227. package/lib/typescript/src/components/A11yGroup/A11yGroup.ios.d.ts +0 -4
  228. package/lib/typescript/src/components/A11yGroup/A11yGroup.ios.d.ts.map +0 -1
  229. package/lib/typescript/src/components/A11ySequence/A11ySequence.d.ts.map +0 -1
  230. package/lib/typescript/src/components/A11yUIContainer/A11yUIContainer.d.ts +0 -3
  231. package/lib/typescript/src/components/A11yUIContainer/A11yUIContainer.d.ts.map +0 -1
  232. package/lib/typescript/src/components/A11yUIContainer/A11yUIContainer.ios.d.ts +0 -4
  233. package/lib/typescript/src/components/A11yUIContainer/A11yUIContainer.ios.d.ts.map +0 -1
  234. package/lib/typescript/src/nativeSpecs/A11yGroupNativeComponent.d.ts +0 -8
  235. package/lib/typescript/src/nativeSpecs/A11yGroupNativeComponent.d.ts.map +0 -1
  236. package/lib/typescript/src/nativeSpecs/A11yUIContainerNativeComponent.d.ts +0 -10
  237. package/lib/typescript/src/nativeSpecs/A11yUIContainerNativeComponent.d.ts.map +0 -1
  238. package/lib/typescript/src/nativeSpecs/A11yViewNativeComponent.d.ts +0 -26
  239. package/lib/typescript/src/nativeSpecs/A11yViewNativeComponent.d.ts.map +0 -1
  240. package/lib/typescript/src/types/A11yGroup.types.d.ts +0 -7
  241. package/lib/typescript/src/types/A11yGroup.types.d.ts.map +0 -1
  242. package/lib/typescript/src/types/A11yIndex.types.d.ts +0 -19
  243. package/lib/typescript/src/types/A11yIndex.types.d.ts.map +0 -1
  244. package/lib/typescript/src/types/A11yLock.types.d.ts +0 -8
  245. package/lib/typescript/src/types/A11yLock.types.d.ts.map +0 -1
  246. package/lib/typescript/src/types/A11yModule.types.d.ts +0 -7
  247. package/lib/typescript/src/types/A11yModule.types.d.ts.map +0 -1
  248. package/lib/typescript/src/types/A11yUIContainerView.types.d.ts +0 -13
  249. package/lib/typescript/src/types/A11yUIContainerView.types.d.ts.map +0 -1
  250. package/lib/typescript/src/types/A11yView.types.d.ts +0 -12
  251. package/lib/typescript/src/types/A11yView.types.d.ts.map +0 -1
  252. package/src/components/A11yGroup/A11yGroup.android.tsx +0 -8
  253. package/src/components/A11yGroup/A11yGroup.ios.tsx +0 -11
  254. package/src/components/A11yGroup/A11yGroup.tsx +0 -5
  255. package/src/components/A11yUIContainer/A11yUIContainer.ios.tsx +0 -20
  256. package/src/components/A11yUIContainer/A11yUIContainer.tsx +0 -5
  257. package/src/nativeSpecs/A11yUIContainerNativeComponent.ts +0 -12
  258. package/src/nativeSpecs/A11yViewNativeComponent.ts +0 -36
  259. package/src/types/A11yGroup.types.ts +0 -9
  260. package/src/types/A11yIndex.types.ts +0 -21
  261. package/src/types/A11yLock.types.ts +0 -8
  262. package/src/types/A11yModule.types.ts +0 -7
  263. package/src/types/A11yUIContainerView.types.ts +0 -15
  264. package/src/types/A11yView.types.ts +0 -19
  265. /package/lib/commonjs/{types → components/A11yLock}/A11yLock.types.js +0 -0
  266. /package/lib/commonjs/{types → components/A11yView}/A11yView.types.js +0 -0
  267. /package/lib/module/{types → components/A11yLock}/A11yLock.types.js +0 -0
  268. /package/lib/module/{types → components/A11yView}/A11yView.types.js +0 -0
@@ -1,13 +1,6 @@
1
1
  import React from 'react';
2
- import { type IndexCommands } from '../../types/A11yIndex.types';
3
- export declare const A11yIndex: React.NamedExoticComponent<{
4
- children: React.ReactNode;
5
- index: number;
6
- orderType?: import("../..").A11yOrderType;
7
- onScreenReaderSubViewFocusChange?: (isFocused: boolean) => void;
8
- onScreenReaderSubViewFocused?: () => void;
9
- onScreenReaderSubViewBlurred?: () => void;
10
- } & Readonly<Omit<Readonly<{
2
+ import { type A11yOrderType, type IndexCommands } from './A11yIndex.types';
3
+ export declare const A11yIndex: React.NamedExoticComponent<Readonly<Omit<Readonly<{
11
4
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
12
5
  onAccessibilityTap?: (() => unknown) | undefined;
13
6
  onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
@@ -130,5 +123,17 @@ export declare const A11yIndex: React.NamedExoticComponent<{
130
123
  pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
131
124
  removeClippedSubviews?: boolean | undefined;
132
125
  experimental_accessibilityOrder?: Array<string> | undefined;
133
- }>, never>> & React.RefAttributes<IndexCommands>>;
126
+ }>, never>> & {
127
+ children: React.ReactNode;
128
+ index?: number;
129
+ orderType?: A11yOrderType;
130
+ a11yUIContainer?: import("./A11yIndex.types").A11yUIContainerType;
131
+ shouldGroupAccessibilityChildren?: boolean;
132
+ autoFocus?: boolean;
133
+ onScreenReaderFocused?: () => void;
134
+ onScreenReaderSubViewFocusChange?: (isFocused: boolean) => void;
135
+ onScreenReaderSubViewFocused?: () => void;
136
+ onScreenReaderSubViewBlurred?: () => void;
137
+ onScreenReaderDescendantFocusChanged?: (e: import("./A11yIndex.types").ScreenReaderDescendantFocusChangedEvent) => void;
138
+ } & React.RefAttributes<IndexCommands>>;
134
139
  //# sourceMappingURL=A11yIndex.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"A11yIndex.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yIndex/A11yIndex.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAK3D,OAAO,EAGL,KAAK,aAAa,EACnB,MAAM,6BAA6B,CAAC;AAErC,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iDA8ErB,CAAC"}
1
+ {"version":3,"file":"A11yIndex.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yIndex/A11yIndex.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAM3D,OAAO,EAGL,KAAK,aAAa,EAClB,KAAK,aAAa,EAEnB,MAAM,mBAAmB,CAAC;AAyG3B,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uCAgErB,CAAC"}
@@ -0,0 +1,83 @@
1
+ import React from 'react';
2
+ import type { NativeSyntheticEvent, View, ViewProps } from 'react-native';
3
+ import type { ScreenReaderDescendantFocusChanged } from '../../nativeSpecs/A11yIndexNativeComponent';
4
+ /** Ref handle for {@link A11y.Index} — exposes `focus()` to move screen reader focus programmatically. */
5
+ export type IndexCommands = Omit<React.ComponentRef<typeof View>, 'focus'> & {
6
+ /** Moves screen reader focus to this element. */
7
+ focus: () => void;
8
+ };
9
+ /** Numeric backing values for {@link A11yOrderType}. Kept for consumers who need the raw number. */
10
+ export declare const A11yOrderTypeEnum: {
11
+ readonly default: 0;
12
+ readonly child: 1;
13
+ readonly subview: 2;
14
+ };
15
+ /** @internal Numeric backing values for {@link A11yUIContainerType}. */
16
+ export declare const A11yContainerTypeEnum: {
17
+ readonly none: 0;
18
+ readonly table: 1;
19
+ readonly list: 2;
20
+ readonly landmark: 3;
21
+ readonly group: 4;
22
+ };
23
+ /**
24
+ * iOS only — sets `UIAccessibilityContainerType` on the wrapping view.
25
+ * Tells VoiceOver what kind of container this is: `'list'`, `'table'`, `'landmark'`, etc.
26
+ */
27
+ export type A11yUIContainerType = keyof typeof A11yContainerTypeEnum;
28
+ /**
29
+ * Controls which element receives screen reader focus for this index slot.
30
+ *
31
+ * - `'default'` — the `A11y.Index` view itself
32
+ * - `'child'` — the first accessible child (useful when the index wrapper has no visual presence)
33
+ * - `'subview'` — first accessible child via an older traversal path
34
+ */
35
+ export type A11yOrderType = keyof typeof A11yOrderTypeEnum;
36
+ /** The native event payload emitted by `onScreenReaderDescendantFocusChanged`. */
37
+ export type ScreenReaderDescendantFocusChangedEvent = NativeSyntheticEvent<ScreenReaderDescendantFocusChanged>;
38
+ export type A11yIndexProps = ViewProps & {
39
+ children: React.ReactNode;
40
+ /**
41
+ * Numeric position of this element in the parent `A11y.Order` sequence.
42
+ * Lower numbers are focused first; ties are resolved by render order.
43
+ */
44
+ index?: number;
45
+ /**
46
+ * Controls which element VoiceOver / TalkBack actually focuses.
47
+ * Defaults to `'default'` (the index view itself).
48
+ */
49
+ orderType?: A11yOrderType;
50
+ /**
51
+ * iOS only — sets `UIAccessibilityContainerType`.
52
+ * Helps VoiceOver understand the semantic container type (list, table, landmark…).
53
+ */
54
+ a11yUIContainer?: A11yUIContainerType;
55
+ /**
56
+ * iOS only — controls the wrapping view's `shouldGroupAccessibilityChildren`.
57
+ * Determines whether VoiceOver treats descendants as one grouped unit
58
+ * or navigates them individually.
59
+ *
60
+ * - `true` — group descendants; VoiceOver focuses the wrapper as a single
61
+ * element with a combined label built from its children.
62
+ * - `false` — force descendants to remain individually focusable even when
63
+ * iOS would otherwise group them.
64
+ * - omitted — defer to the wrapping view's default behavior.
65
+ */
66
+ shouldGroupAccessibilityChildren?: boolean;
67
+ /** When `true`, requests screen reader focus on this element immediately after mount. */
68
+ autoFocus?: boolean;
69
+ /** Called when the screen reader focuses this element directly. */
70
+ onScreenReaderFocused?: () => void;
71
+ /**
72
+ * Called whenever screen reader focus enters or leaves any descendant.
73
+ * `isFocused` is `true` on enter, `false` on leave.
74
+ */
75
+ onScreenReaderSubViewFocusChange?: (isFocused: boolean) => void;
76
+ /** Called when screen reader focus enters any descendant. */
77
+ onScreenReaderSubViewFocused?: () => void;
78
+ /** Called when screen reader focus leaves any descendant. */
79
+ onScreenReaderSubViewBlurred?: () => void;
80
+ /** Called with the native event when screen reader focus changes on any descendant. */
81
+ onScreenReaderDescendantFocusChanged?: (e: ScreenReaderDescendantFocusChangedEvent) => void;
82
+ };
83
+ //# sourceMappingURL=A11yIndex.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"A11yIndex.types.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yIndex/A11yIndex.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,oBAAoB,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC1E,OAAO,KAAK,EAAE,kCAAkC,EAAE,MAAM,4CAA4C,CAAC;AAErG,0GAA0G;AAC1G,MAAM,MAAM,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,OAAO,IAAI,CAAC,EAAE,OAAO,CAAC,GAAG;IAC3E,iDAAiD;IACjD,KAAK,EAAE,MAAM,IAAI,CAAC;CACnB,CAAC;AAEF,oGAAoG;AACpG,eAAO,MAAM,iBAAiB;;;;CAIpB,CAAC;AAEX,wEAAwE;AACxE,eAAO,MAAM,qBAAqB;;;;;;CAMxB,CAAC;AAEX;;;GAGG;AACH,MAAM,MAAM,mBAAmB,GAAG,MAAM,OAAO,qBAAqB,CAAC;AAErE;;;;;;GAMG;AACH,MAAM,MAAM,aAAa,GAAG,MAAM,OAAO,iBAAiB,CAAC;AAE3D,kFAAkF;AAClF,MAAM,MAAM,uCAAuC,GACjD,oBAAoB,CAAC,kCAAkC,CAAC,CAAC;AAE3D,MAAM,MAAM,cAAc,GAAG,SAAS,GAAG;IACvC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAE1B;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;OAGG;IACH,SAAS,CAAC,EAAE,aAAa,CAAC;IAE1B;;;OAGG;IACH,eAAe,CAAC,EAAE,mBAAmB,CAAC;IAEtC;;;;;;;;;;OAUG;IACH,gCAAgC,CAAC,EAAE,OAAO,CAAC;IAE3C,yFAAyF;IACzF,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB,mEAAmE;IACnE,qBAAqB,CAAC,EAAE,MAAM,IAAI,CAAC;IAEnC;;;OAGG;IACH,gCAAgC,CAAC,EAAE,CAAC,SAAS,EAAE,OAAO,KAAK,IAAI,CAAC;IAEhE,6DAA6D;IAC7D,4BAA4B,CAAC,EAAE,MAAM,IAAI,CAAC;IAE1C,6DAA6D;IAC7D,4BAA4B,CAAC,EAAE,MAAM,IAAI,CAAC;IAE1C,uFAAuF;IACvF,oCAAoC,CAAC,EAAE,CACrC,CAAC,EAAE,uCAAuC,KACvC,IAAI,CAAC;CACX,CAAC"}
@@ -1,13 +1,5 @@
1
1
  import React from 'react';
2
- import type { IndexCommands } from '../../types/A11yIndex.types';
3
- export declare const A11yIndex: React.ForwardRefExoticComponent<{
4
- children: React.ReactNode;
5
- index: number;
6
- orderType?: import("../..").A11yOrderType;
7
- onScreenReaderSubViewFocusChange?: (isFocused: boolean) => void;
8
- onScreenReaderSubViewFocused?: () => void;
9
- onScreenReaderSubViewBlurred?: () => void;
10
- } & Readonly<Omit<Readonly<{
2
+ export declare const A11yIndex: React.ForwardRefExoticComponent<Readonly<Omit<Readonly<{
11
3
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
12
4
  onAccessibilityTap?: (() => unknown) | undefined;
13
5
  onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
@@ -130,5 +122,17 @@ export declare const A11yIndex: React.ForwardRefExoticComponent<{
130
122
  pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
131
123
  removeClippedSubviews?: boolean | undefined;
132
124
  experimental_accessibilityOrder?: Array<string> | undefined;
133
- }>, never>> & React.RefAttributes<IndexCommands>>;
125
+ }>, never>> & {
126
+ children: React.ReactNode;
127
+ index?: number;
128
+ orderType?: import("./A11yIndex.types").A11yOrderType;
129
+ a11yUIContainer?: import("./A11yIndex.types").A11yUIContainerType;
130
+ shouldGroupAccessibilityChildren?: boolean;
131
+ autoFocus?: boolean;
132
+ onScreenReaderFocused?: () => void;
133
+ onScreenReaderSubViewFocusChange?: (isFocused: boolean) => void;
134
+ onScreenReaderSubViewFocused?: () => void;
135
+ onScreenReaderSubViewBlurred?: () => void;
136
+ onScreenReaderDescendantFocusChanged?: (e: import("./A11yIndex.types").ScreenReaderDescendantFocusChangedEvent) => void;
137
+ } & React.RefAttributes<{}>>;
134
138
  //# sourceMappingURL=A11yIndex.web.d.ts.map
@@ -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;AAE1B,OAAO,KAAK,EACV,aAAa,EAEd,MAAM,6BAA6B,CAAC;AAQrC,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iDAarB,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,4 +1,4 @@
1
1
  import React from 'react';
2
- import type { A11yLockProps } from '../../../types/A11yLock.types';
2
+ import type { A11yLockProps } from '../A11yLock.types';
3
3
  export declare const A11yBaseLock: React.NamedExoticComponent<A11yLockProps>;
4
4
  //# sourceMappingURL=A11yBaseLock.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"A11yBaseLock.d.ts","sourceRoot":"","sources":["../../../../../../src/components/A11yLock/A11yBaseLock/A11yBaseLock.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAEnE,eAAO,MAAM,YAAY,2CAiBxB,CAAC"}
1
+ {"version":3,"file":"A11yBaseLock.d.ts","sourceRoot":"","sources":["../../../../../../src/components/A11yLock/A11yBaseLock/A11yBaseLock.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAEvD,eAAO,MAAM,YAAY,2CAiBxB,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
- import type { A11yLockProps } from '../../../types/A11yLock.types';
2
+ import type { A11yLockProps } from '../A11yLock.types';
3
3
  export declare const A11yFocusFrame: React.NamedExoticComponent<A11yLockProps>;
4
4
  //# sourceMappingURL=A11yFocusFrame.android.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"A11yFocusFrame.android.d.ts","sourceRoot":"","sources":["../../../../../../src/components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAInE,eAAO,MAAM,cAAc,2CAY1B,CAAC"}
1
+ {"version":3,"file":"A11yFocusFrame.android.d.ts","sourceRoot":"","sources":["../../../../../../src/components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAIvD,eAAO,MAAM,cAAc,2CAY1B,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
- import { type ViewProps } from 'react-native';
3
- export declare const A11yFocusFrame: (props: ViewProps) => React.JSX.Element;
2
+ import type { A11yFocusFrameProps } from '../A11yLock.types';
3
+ export declare const A11yFocusFrame: (props: A11yFocusFrameProps) => React.JSX.Element;
4
4
  //# sourceMappingURL=A11yFocusFrame.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"A11yFocusFrame.d.ts","sourceRoot":"","sources":["../../../../../../src/components/A11yLock/A11yFocusFrame/A11yFocusFrame.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAQ,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAGpD,eAAO,MAAM,cAAc,GAAI,OAAO,SAAS,sBAI9C,CAAC"}
1
+ {"version":3,"file":"A11yFocusFrame.d.ts","sourceRoot":"","sources":["../../../../../../src/components/A11yLock/A11yFocusFrame/A11yFocusFrame.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAE7D,eAAO,MAAM,cAAc,GAAI,OAAO,mBAAmB,sBAIxD,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
- import type { A11yLockProps } from '../../../types/A11yLock.types';
2
+ import type { A11yLockProps } from '../A11yLock.types';
3
3
  export declare const A11yFocusTrap: React.NamedExoticComponent<A11yLockProps>;
4
4
  //# sourceMappingURL=A11yFocusTrap.android.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"A11yFocusTrap.android.d.ts","sourceRoot":"","sources":["../../../../../../src/components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAInE,eAAO,MAAM,aAAa,2CAMzB,CAAC"}
1
+ {"version":3,"file":"A11yFocusTrap.android.d.ts","sourceRoot":"","sources":["../../../../../../src/components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAIvD,eAAO,MAAM,aAAa,2CAMzB,CAAC"}
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
- import type { A11yLockProps } from '../../../types/A11yLock.types';
3
- export declare const A11yFocusTrap: ({ forceLock, ...props }: A11yLockProps) => React.JSX.Element;
2
+ import type { A11yFocusTrapProps } from '../A11yLock.types';
3
+ export declare const A11yFocusTrap: ({ forceLock, ...props }: A11yFocusTrapProps) => React.JSX.Element;
4
4
  //# sourceMappingURL=A11yFocusTrap.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"A11yFocusTrap.d.ts","sourceRoot":"","sources":["../../../../../../src/components/A11yLock/A11yFocusTrap/A11yFocusTrap.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AAInE,eAAO,MAAM,aAAa,GAAI,yBAG3B,aAAa,sBAmBf,CAAC"}
1
+ {"version":3,"file":"A11yFocusTrap.d.ts","sourceRoot":"","sources":["../../../../../../src/components/A11yLock/A11yFocusTrap/A11yFocusTrap.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAI5D,eAAO,MAAM,aAAa,GAAI,yBAG3B,kBAAkB,sBAmBpB,CAAC"}
@@ -0,0 +1,31 @@
1
+ import type { ViewProps } from 'react-native';
2
+ /**
3
+ * Props for {@link A11y.FocusTrap} — confines VoiceOver / TalkBack focus to this subtree.
4
+ * Useful for modals, bottom sheets, and overlays where focus must not leak out.
5
+ */
6
+ export type A11yFocusTrapProps = ViewProps & {
7
+ /**
8
+ * When `true`, the focus trap is inactive — the screen reader can navigate freely
9
+ * outside this container. Defaults to `false`.
10
+ */
11
+ lockDisabled?: boolean;
12
+ /**
13
+ * When `true`, focus is trapped immediately on mount rather than waiting for
14
+ * the next accessibility navigation gesture. Use for programmatically-opened modals.
15
+ * Defaults to `false`.
16
+ */
17
+ forceLock?: boolean;
18
+ };
19
+ /**
20
+ * Props for {@link A11y.FocusFrame} — detects when screen reader focus escapes
21
+ * this subtree, enabling focus-leak detection in complex UIs.
22
+ */
23
+ export type A11yFocusFrameProps = ViewProps;
24
+ /** @internal Full props accepted by the native lock component. Not part of the public API. */
25
+ export type A11yLockProps = ViewProps & {
26
+ componentType?: number;
27
+ containerKey?: string;
28
+ lockDisabled?: boolean;
29
+ forceLock?: boolean;
30
+ };
31
+ //# sourceMappingURL=A11yLock.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"A11yLock.types.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yLock/A11yLock.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAE9C;;;GAGG;AACH,MAAM,MAAM,kBAAkB,GAAG,SAAS,GAAG;IAC3C;;;OAGG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IAEvB;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,mBAAmB,GAAG,SAAS,CAAC;AAE5C,8FAA8F;AAC9F,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG;IACtC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB,CAAC"}
@@ -1,5 +1,7 @@
1
1
  import React from 'react';
2
- export declare const A11yIndexSequence: React.NamedExoticComponent<Readonly<Omit<Readonly<{
2
+ import type { A11yOrderProps } from './A11yOrder.types';
3
+ export type { A11yOrderProps };
4
+ export declare const A11yOrder: React.NamedExoticComponent<Readonly<Omit<Readonly<{
3
5
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
4
6
  onAccessibilityTap?: (() => unknown) | undefined;
5
7
  onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
@@ -123,4 +125,4 @@ export declare const A11yIndexSequence: React.NamedExoticComponent<Readonly<Omit
123
125
  removeClippedSubviews?: boolean | undefined;
124
126
  experimental_accessibilityOrder?: Array<string> | undefined;
125
127
  }>, never>>>;
126
- //# sourceMappingURL=A11ySequence.d.ts.map
128
+ //# sourceMappingURL=A11yOrder.d.ts.map
@@ -0,0 +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"}
@@ -0,0 +1,11 @@
1
+ import type { ViewProps } from 'react-native';
2
+ /**
3
+ * Props for {@link A11y.Order} — a container that defines an explicit screen reader
4
+ * focus sequence for its `A11y.Index` children.
5
+ *
6
+ * All standard `View` props are accepted and forwarded to the underlying native view.
7
+ * The `orderKey` that links child `A11y.Index` elements to this container is generated
8
+ * internally via `React.useId` and requires no prop.
9
+ */
10
+ export type A11yOrderProps = ViewProps;
11
+ //# sourceMappingURL=A11yOrder.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"A11yOrder.types.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yOrder/A11yOrder.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAE9C;;;;;;;GAOG;AACH,MAAM,MAAM,cAAc,GAAG,SAAS,CAAC"}
@@ -1,19 +1,5 @@
1
1
  import React from 'react';
2
- import { type ViewProps } from 'react-native';
3
- declare enum PaneEnum {
4
- activity = 0,
5
- pane = 1,
6
- announce = 2
7
- }
8
- type PaneType = keyof typeof PaneEnum;
9
- type A11yPaneTitleType = React.PropsWithChildren<{
10
- title?: string;
11
- detachMessage?: string;
12
- type?: PaneType;
13
- withFocusRestore?: boolean;
14
- displayed?: boolean;
15
- }>;
16
- export declare const A11yPaneTitle: ({ title, detachMessage, type, children, displayed, withFocusRestore, }: ViewProps & A11yPaneTitleType) => React.JSX.Element | null;
17
- export declare const A11yScreenChange: (props: Omit<A11yPaneTitleType, "type">) => React.JSX.Element;
18
- export {};
2
+ import type { A11yPaneTitleProps, A11yScreenChangeProps } from './A11yPaneTitle.types';
3
+ export declare const A11yPaneTitle: ({ title, detachMessage, type, children, displayed, withFocusRestore, }: A11yPaneTitleProps) => React.JSX.Element | null;
4
+ export declare const A11yScreenChange: (props: A11yScreenChangeProps) => React.JSX.Element;
19
5
  //# sourceMappingURL=A11yPaneTitle.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"A11yPaneTitle.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yPaneTitle/A11yPaneTitle.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAG9C,aAAK,QAAQ;IACX,QAAQ,IAAI;IACZ,IAAI,IAAI;IACR,QAAQ,IAAI;CACb;AAED,KAAK,QAAQ,GAAG,MAAM,OAAO,QAAQ,CAAC;AAEtC,KAAK,iBAAiB,GAAG,KAAK,CAAC,iBAAiB,CAAC;IAC/C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB,CAAC,CAAC;AAEH,eAAO,MAAM,aAAa,GAAI,wEAO3B,SAAS,GAAG,iBAAiB,6BAY/B,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAAI,OAAO,IAAI,CAAC,iBAAiB,EAAE,MAAM,CAAC,sBAOtE,CAAC"}
1
+ {"version":3,"file":"A11yPaneTitle.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yPaneTitle/A11yPaneTitle.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EACV,kBAAkB,EAElB,qBAAqB,EACtB,MAAM,uBAAuB,CAAC;AAQ/B,eAAO,MAAM,aAAa,GAAI,wEAO3B,kBAAkB,6BAYpB,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAAI,OAAO,qBAAqB,sBAO5D,CAAC"}
@@ -0,0 +1,43 @@
1
+ import React from 'react';
2
+ /**
3
+ * Controls the native accessibility announcement mechanism.
4
+ *
5
+ * - `'pane'` — layout-changed notification with a title (default, use for panels/sheets)
6
+ * - `'activity'` — screen-change notification (use for full-screen transitions)
7
+ * - `'announce'` — plain announcement with no focus shift (use for status updates)
8
+ */
9
+ export type A11yPaneType = 'activity' | 'pane' | 'announce';
10
+ /**
11
+ * Props for {@link A11y.PaneTitle} — announces a screen or panel transition to
12
+ * VoiceOver / TalkBack and optionally restores focus when the view unmounts.
13
+ */
14
+ export type A11yPaneTitleProps = React.PropsWithChildren<{
15
+ /** The title announced to the screen reader when this component mounts. */
16
+ title?: string;
17
+ /** A message announced when this component unmounts, e.g. `"Drawer closed"`. */
18
+ detachMessage?: string;
19
+ /**
20
+ * Controls the native announcement type. Defaults to `'pane'`.
21
+ *
22
+ * - `'pane'` — layout-changed notification with a title
23
+ * - `'activity'` — screen-change notification for full-screen transitions
24
+ * - `'announce'` — plain announcement, no focus shift
25
+ */
26
+ type?: A11yPaneType;
27
+ /**
28
+ * When `true` (default), VoiceOver / TalkBack restores focus to the previously
29
+ * focused element when this component unmounts.
30
+ */
31
+ withFocusRestore?: boolean;
32
+ /**
33
+ * When `false`, the component renders nothing and posts no announcement.
34
+ * Use to conditionally suppress the view without unmounting the subtree.
35
+ */
36
+ displayed?: boolean;
37
+ }>;
38
+ /**
39
+ * Props for {@link A11y.ScreenChange} — shorthand for `A11y.PaneTitle` with
40
+ * `type="activity"` pre-set for full-screen navigation transitions.
41
+ */
42
+ export type A11yScreenChangeProps = Omit<A11yPaneTitleProps, 'type'>;
43
+ //# sourceMappingURL=A11yPaneTitle.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"A11yPaneTitle.types.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yPaneTitle/A11yPaneTitle.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B;;;;;;GAMG;AACH,MAAM,MAAM,YAAY,GAAG,UAAU,GAAG,MAAM,GAAG,UAAU,CAAC;AAE5D;;;GAGG;AACH,MAAM,MAAM,kBAAkB,GAAG,KAAK,CAAC,iBAAiB,CAAC;IACvD,2EAA2E;IAC3E,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,gFAAgF;IAChF,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,YAAY,CAAC;IAEpB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAE3B;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB,CAAC,CAAC;AAEH;;;GAGG;AACH,MAAM,MAAM,qBAAqB,GAAG,IAAI,CAAC,kBAAkB,EAAE,MAAM,CAAC,CAAC"}
@@ -1,6 +1,9 @@
1
- import React from 'react';
2
- type ViewRefType = {};
3
- export declare const A11yView: React.NamedExoticComponent<Readonly<Omit<Readonly<{
1
+ /**
2
+ * Standalone focus-tracking view with no ordering context.
3
+ * Use when you need screen reader focus events but no position in a sequence.
4
+ * For ordered elements, use {@link A11yIndex} inside an Order container.
5
+ */
6
+ export declare const A11yView: import("react").NamedExoticComponent<Readonly<Omit<Readonly<{
4
7
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
5
8
  onAccessibilityTap?: (() => unknown) | undefined;
6
9
  onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
@@ -124,12 +127,16 @@ export declare const A11yView: React.NamedExoticComponent<Readonly<Omit<Readonly
124
127
  removeClippedSubviews?: boolean | undefined;
125
128
  experimental_accessibilityOrder?: Array<string> | undefined;
126
129
  }>, never>> & {
130
+ children: React.ReactNode;
131
+ index?: number;
132
+ orderType?: import("../..").A11yOrderType;
133
+ a11yUIContainer?: import("../A11yIndex/A11yIndex.types").A11yUIContainerType;
134
+ shouldGroupAccessibilityChildren?: boolean;
127
135
  autoFocus?: boolean;
128
136
  onScreenReaderFocused?: () => void;
129
137
  onScreenReaderSubViewFocusChange?: (isFocused: boolean) => void;
130
138
  onScreenReaderSubViewFocused?: () => void;
131
139
  onScreenReaderSubViewBlurred?: () => void;
132
- onScreenReaderDescendantFocusChanged?: (e: import("../..").ScreenReaderDescendantFocusChangedEvent) => void;
133
- } & React.RefAttributes<ViewRefType>>;
134
- export {};
140
+ onScreenReaderDescendantFocusChanged?: (e: import("./A11yView.types").ScreenReaderDescendantFocusChangedEvent) => void;
141
+ } & import("react").RefAttributes<import("../..").IndexCommands>>;
135
142
  //# sourceMappingURL=A11yView.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"A11yView.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yView/A11yView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,KAAK,WAAW,GAAG,EAAE,CAAC;AAEtB,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCAuDpB,CAAC"}
1
+ {"version":3,"file":"A11yView.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yView/A11yView.tsx"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iEAAY,CAAC"}
@@ -0,0 +1,10 @@
1
+ import type { A11yIndexProps } from '../A11yIndex/A11yIndex.types';
2
+ export type { ScreenReaderDescendantFocusChangedEvent } from '../A11yIndex/A11yIndex.types';
3
+ /**
4
+ * Props for {@link A11y.View} — a standalone focus-tracking view with no ordering context.
5
+ *
6
+ * All screen reader focus events from {@link A11yIndexProps} are available.
7
+ * `index` and `orderType` are omitted because they only apply inside an `A11y.Order` sequence.
8
+ */
9
+ export type A11yViewProps = Omit<A11yIndexProps, 'index' | 'orderType'>;
10
+ //# sourceMappingURL=A11yView.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"A11yView.types.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yView/A11yView.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAEnE,YAAY,EAAE,uCAAuC,EAAE,MAAM,8BAA8B,CAAC;AAE5F;;;;;GAKG;AACH,MAAM,MAAM,aAAa,GAAG,IAAI,CAAC,cAAc,EAAE,OAAO,GAAG,WAAW,CAAC,CAAC"}
@@ -1,7 +1,10 @@
1
- export type { IndexCommands, A11yOrderType, A11yOrderTypeEnum, A11yIndexProps, } from './types/A11yIndex.types';
2
- export type { A11yContainerTypeEnum, A11yUIContainerType, A11yUIContainerProps, } from './types/A11yUIContainerView.types';
3
- export type { ScreenReaderDescendantFocusChangedEvent } from './types/A11yView.types';
4
- export type { A11yViewProps } from './types/A11yView.types';
1
+ export type { A11yCardProps } from './components/A11yCard/A11yCard.types';
2
+ export type { A11yOrderProps } from './components/A11yOrder/A11yOrder.types';
3
+ export type { A11yIndexProps, A11yOrderType, IndexCommands, } from './components/A11yIndex/A11yIndex.types';
4
+ export { A11yOrderTypeEnum } from './components/A11yIndex/A11yIndex.types';
5
+ export type { A11yViewProps, ScreenReaderDescendantFocusChangedEvent, } from './components/A11yView/A11yView.types';
6
+ export type { A11yFocusTrapProps, A11yFocusFrameProps, } from './components/A11yLock/A11yLock.types';
7
+ export type { A11yPaneTitleProps, A11yScreenChangeProps, A11yPaneType, } from './components/A11yPaneTitle/A11yPaneTitle.types';
5
8
  export declare const A11y: {
6
9
  Order: import("react").NamedExoticComponent<Readonly<Omit<Readonly<{
7
10
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
@@ -127,14 +130,7 @@ export declare const A11y: {
127
130
  removeClippedSubviews?: boolean | undefined;
128
131
  experimental_accessibilityOrder?: Array<string> | undefined;
129
132
  }>, never>>>;
130
- Index: import("react").NamedExoticComponent<{
131
- children: React.ReactNode;
132
- index: number;
133
- orderType?: import(".").A11yOrderType;
134
- onScreenReaderSubViewFocusChange?: (isFocused: boolean) => void;
135
- onScreenReaderSubViewFocused?: () => void;
136
- onScreenReaderSubViewBlurred?: () => void;
137
- } & Readonly<Omit<Readonly<{
133
+ Index: import("react").NamedExoticComponent<Readonly<Omit<Readonly<{
138
134
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
139
135
  onAccessibilityTap?: (() => unknown) | undefined;
140
136
  onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
@@ -257,27 +253,19 @@ export declare const A11y: {
257
253
  pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
258
254
  removeClippedSubviews?: boolean | undefined;
259
255
  experimental_accessibilityOrder?: Array<string> | undefined;
260
- }>, never>> & import("react").RefAttributes<import(".").IndexCommands>>;
261
- Group: import("react").ExoticComponent<import("./types/A11yGroup.types").A11yGroupProps>;
262
- Container: import("react").ExoticComponent<import(".").A11yUIContainerProps>;
263
- PaneTitle: ({ title, detachMessage, type, children, displayed, withFocusRestore, }: import("react-native").ViewProps & ({
264
- title?: string;
265
- detachMessage?: string;
266
- type?: "activity" | "pane" | "announce";
267
- withFocusRestore?: boolean;
268
- displayed?: boolean;
269
- } & {
270
- children?: import("react").ReactNode | undefined;
271
- })) => import("react").JSX.Element | null;
272
- ScreenChange: (props: Omit<{
273
- title?: string;
274
- detachMessage?: string;
275
- type?: "activity" | "pane" | "announce";
276
- withFocusRestore?: boolean;
277
- displayed?: boolean;
278
- } & {
279
- children?: import("react").ReactNode | undefined;
280
- }, "type">) => import("react").JSX.Element;
256
+ }>, never>> & {
257
+ children: React.ReactNode;
258
+ index?: number;
259
+ orderType?: import(".").A11yOrderType;
260
+ a11yUIContainer?: import("./components/A11yIndex/A11yIndex.types").A11yUIContainerType;
261
+ shouldGroupAccessibilityChildren?: boolean;
262
+ autoFocus?: boolean;
263
+ onScreenReaderFocused?: () => void;
264
+ onScreenReaderSubViewFocusChange?: (isFocused: boolean) => void;
265
+ onScreenReaderSubViewFocused?: () => void;
266
+ onScreenReaderSubViewBlurred?: () => void;
267
+ onScreenReaderDescendantFocusChanged?: (e: import(".").ScreenReaderDescendantFocusChangedEvent) => void;
268
+ } & import("react").RefAttributes<import(".").IndexCommands>>;
281
269
  View: import("react").NamedExoticComponent<Readonly<Omit<Readonly<{
282
270
  onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
283
271
  onAccessibilityTap?: (() => unknown) | undefined;
@@ -402,15 +390,23 @@ export declare const A11y: {
402
390
  removeClippedSubviews?: boolean | undefined;
403
391
  experimental_accessibilityOrder?: Array<string> | undefined;
404
392
  }>, never>> & {
393
+ children: React.ReactNode;
394
+ index?: number;
395
+ orderType?: import(".").A11yOrderType;
396
+ a11yUIContainer?: import("./components/A11yIndex/A11yIndex.types").A11yUIContainerType;
397
+ shouldGroupAccessibilityChildren?: boolean;
405
398
  autoFocus?: boolean;
406
399
  onScreenReaderFocused?: () => void;
407
400
  onScreenReaderSubViewFocusChange?: (isFocused: boolean) => void;
408
401
  onScreenReaderSubViewFocused?: () => void;
409
402
  onScreenReaderSubViewBlurred?: () => void;
410
403
  onScreenReaderDescendantFocusChanged?: (e: import(".").ScreenReaderDescendantFocusChangedEvent) => void;
411
- } & import("react").RefAttributes<{}>>;
412
- FocusFrame: (props: import("react-native").ViewProps) => import("react").JSX.Element;
413
- FocusTrap: ({ forceLock, ...props }: import("./types/A11yLock.types").A11yLockProps) => import("react").JSX.Element;
404
+ } & import("react").RefAttributes<import(".").IndexCommands>>;
405
+ PaneTitle: ({ title, detachMessage, type, children, displayed, withFocusRestore, }: import(".").A11yPaneTitleProps) => import("react").JSX.Element | null;
406
+ ScreenChange: (props: import(".").A11yScreenChangeProps) => import("react").JSX.Element;
407
+ FocusFrame: (props: import(".").A11yFocusFrameProps) => import("react").JSX.Element;
408
+ FocusTrap: ({ forceLock, ...props }: import(".").A11yFocusTrapProps) => import("react").JSX.Element;
409
+ Card: ({ containerProps, style, testID, onPress, accessibility, pressableProps, children, }: import(".").A11yCardProps) => import("react").JSX.Element;
414
410
  };
415
411
  export { A11yModule } from './modules/A11yAnnounceModule';
416
412
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAYA,YAAY,EACV,aAAa,EACb,aAAa,EACb,iBAAiB,EACjB,cAAc,GACf,MAAM,yBAAyB,CAAC;AAEjC,YAAY,EACV,qBAAqB,EACrB,mBAAmB,EACnB,oBAAoB,GACrB,MAAM,mCAAmC,CAAC;AAE3C,YAAY,EAAE,uCAAuC,EAAE,MAAM,wBAAwB,CAAC;AAEtF,YAAY,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAE5D,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAUhB,CAAC;AAEF,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAaA,YAAY,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AAC1E,YAAY,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AAC7E,YAAY,EACV,cAAc,EACd,aAAa,EACb,aAAa,GACd,MAAM,wCAAwC,CAAC;AAChD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAC3E,YAAY,EACV,aAAa,EACb,uCAAuC,GACxC,MAAM,sCAAsC,CAAC;AAC9C,YAAY,EACV,kBAAkB,EAClB,mBAAmB,GACpB,MAAM,sCAAsC,CAAC;AAC9C,YAAY,EACV,kBAAkB,EAClB,qBAAqB,EACrB,YAAY,GACb,MAAM,gDAAgD,CAAC;AAIxD,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAShB,CAAC;AAEF,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC"}