react-native-external-keyboard 0.1.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 (228) hide show
  1. package/LICENSE +20 -0
  2. package/README.md +113 -0
  3. package/android/Android.mk +45 -0
  4. package/android/build.gradle +139 -0
  5. package/android/gradle.properties +5 -0
  6. package/android/registration.cpp +18 -0
  7. package/android/src/main/AndroidManifest.xml +4 -0
  8. package/android/src/main/java/com/externalkeyboard/A11yKeyboardModule.java +46 -0
  9. package/android/src/main/java/com/externalkeyboard/ExternalKeyboardViewPackage.java +63 -0
  10. package/android/src/main/java/com/externalkeyboard/events/FocusChangeEvent.java +39 -0
  11. package/android/src/main/java/com/externalkeyboard/events/KeyPressDownEvent.java +49 -0
  12. package/android/src/main/java/com/externalkeyboard/events/KeyPressUpEvent.java +49 -0
  13. package/android/src/main/java/com/externalkeyboard/services/KeyboardKeyPressHandler.java +56 -0
  14. package/android/src/main/java/com/externalkeyboard/services/KeyboardService.java +52 -0
  15. package/android/src/main/java/com/externalkeyboard/views/ExternalKeyboardView/ExternalKeyboardView.java +28 -0
  16. package/android/src/main/java/com/externalkeyboard/views/ExternalKeyboardView/ExternalKeyboardViewManager.java +101 -0
  17. package/android/src/newarch/A11yKeyboardModuleSpec.java +9 -0
  18. package/android/src/newarch/ExternalKeyboardViewManagerSpec.java +31 -0
  19. package/android/src/oldarch/A11yKeyboardModuleSpec.java +15 -0
  20. package/android/src/oldarch/ExternalKeyboardViewManagerSpec.java +9 -0
  21. package/ios/ExternalKeyboard.xcodeproj/project.pbxproj +384 -0
  22. package/ios/ExternalKeyboard.xcodeproj/project.xcworkspace/contents.xcworkspacedata +4 -0
  23. package/ios/ExternalKeyboard.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  24. package/ios/ExternalKeyboard.xcodeproj/project.xcworkspace/xcuserdata/Artur_Kalach.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  25. package/ios/ExternalKeyboard.xcodeproj/xcuserdata/Artur_Kalach.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +24 -0
  26. package/ios/ExternalKeyboard.xcodeproj/xcuserdata/Artur_Kalach.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  27. package/ios/ExternalKeyboardView/ExternalKeyboardView.h +41 -0
  28. package/ios/ExternalKeyboardView/ExternalKeyboardView.mm +186 -0
  29. package/ios/Helpers/FocusWrapper/FocusWrapper.h +32 -0
  30. package/ios/Helpers/FocusWrapper/FocusWrapper.mm +63 -0
  31. package/ios/Helpers/KeyboardKeyPressHandler/KeyboardKeyPressHandler.h +27 -0
  32. package/ios/Helpers/KeyboardKeyPressHandler/KeyboardKeyPressHandler.mm +73 -0
  33. package/ios/Modules/A11yKeyboardModule/A11yKeyboardModule.h +20 -0
  34. package/ios/Modules/A11yKeyboardModule/A11yKeyboardModule.mm +86 -0
  35. package/ios/ViewManagers/ExternalKeyboardViewManager/ExternalKeyboardViewManager.h +16 -0
  36. package/ios/ViewManagers/ExternalKeyboardViewManager/ExternalKeyboardViewManager.mm +29 -0
  37. package/lib/commonjs/NativeModules/A11yKeyboardModule/A11yKeyboardModule.js +33 -0
  38. package/lib/commonjs/NativeModules/A11yKeyboardModule/A11yKeyboardModule.js.map +1 -0
  39. package/lib/commonjs/NativeModules/A11yKeyboardModule/index.js +13 -0
  40. package/lib/commonjs/NativeModules/A11yKeyboardModule/index.js.map +1 -0
  41. package/lib/commonjs/NativeModules/index.js +13 -0
  42. package/lib/commonjs/NativeModules/index.js.map +1 -0
  43. package/lib/commonjs/components/KeyboardFocusView/KeyboardFocusView.android.js +41 -0
  44. package/lib/commonjs/components/KeyboardFocusView/KeyboardFocusView.android.js.map +1 -0
  45. package/lib/commonjs/components/KeyboardFocusView/KeyboardFocusView.d.js +6 -0
  46. package/lib/commonjs/components/KeyboardFocusView/KeyboardFocusView.d.js.map +1 -0
  47. package/lib/commonjs/components/KeyboardFocusView/KeyboardFocusView.ios.js +46 -0
  48. package/lib/commonjs/components/KeyboardFocusView/KeyboardFocusView.ios.js.map +1 -0
  49. package/lib/commonjs/components/KeyboardFocusView/hooks/index.js +13 -0
  50. package/lib/commonjs/components/KeyboardFocusView/hooks/index.js.map +1 -0
  51. package/lib/commonjs/components/KeyboardFocusView/hooks/useFocusStyle/index.js +13 -0
  52. package/lib/commonjs/components/KeyboardFocusView/hooks/useFocusStyle/index.js.map +1 -0
  53. package/lib/commonjs/components/KeyboardFocusView/hooks/useFocusStyle/useFocusStyle.js +33 -0
  54. package/lib/commonjs/components/KeyboardFocusView/hooks/useFocusStyle/useFocusStyle.js.map +1 -0
  55. package/lib/commonjs/components/KeyboardFocusView/index.js +13 -0
  56. package/lib/commonjs/components/KeyboardFocusView/index.js.map +1 -0
  57. package/lib/commonjs/components/Pressable/Pressable.android.js +76 -0
  58. package/lib/commonjs/components/Pressable/Pressable.android.js.map +1 -0
  59. package/lib/commonjs/components/Pressable/Pressable.d.js +6 -0
  60. package/lib/commonjs/components/Pressable/Pressable.d.js.map +1 -0
  61. package/lib/commonjs/components/Pressable/Pressable.ios.js +157 -0
  62. package/lib/commonjs/components/Pressable/Pressable.ios.js.map +1 -0
  63. package/lib/commonjs/components/Pressable/index.js +13 -0
  64. package/lib/commonjs/components/Pressable/index.js.map +1 -0
  65. package/lib/commonjs/components/index.js +20 -0
  66. package/lib/commonjs/components/index.js.map +1 -0
  67. package/lib/commonjs/index.js +46 -0
  68. package/lib/commonjs/index.js.map +1 -0
  69. package/lib/commonjs/nativeSpec/ExternalKeyboardViewNativeComponent.js +11 -0
  70. package/lib/commonjs/nativeSpec/ExternalKeyboardViewNativeComponent.js.map +1 -0
  71. package/lib/commonjs/nativeSpec/NativeKeyboardModule.js +10 -0
  72. package/lib/commonjs/nativeSpec/NativeKeyboardModule.js.map +1 -0
  73. package/lib/commonjs/nativeSpec/index.js +21 -0
  74. package/lib/commonjs/nativeSpec/index.js.map +1 -0
  75. package/lib/commonjs/services/A11yModule/A11yModule.android.js +22 -0
  76. package/lib/commonjs/services/A11yModule/A11yModule.android.js.map +1 -0
  77. package/lib/commonjs/services/A11yModule/A11yModule.d.js +6 -0
  78. package/lib/commonjs/services/A11yModule/A11yModule.d.js.map +1 -0
  79. package/lib/commonjs/services/A11yModule/A11yModule.ios.js +28 -0
  80. package/lib/commonjs/services/A11yModule/A11yModule.ios.js.map +1 -0
  81. package/lib/commonjs/services/A11yModule/A11yModule.types.js +6 -0
  82. package/lib/commonjs/services/A11yModule/A11yModule.types.js.map +1 -0
  83. package/lib/commonjs/services/A11yModule/index.js +13 -0
  84. package/lib/commonjs/services/A11yModule/index.js.map +1 -0
  85. package/lib/commonjs/services/index.js +13 -0
  86. package/lib/commonjs/services/index.js.map +1 -0
  87. package/lib/commonjs/types/FocusStyle.js +6 -0
  88. package/lib/commonjs/types/FocusStyle.js.map +1 -0
  89. package/lib/commonjs/types/KeyboardFocusView.types.js +6 -0
  90. package/lib/commonjs/types/KeyboardFocusView.types.js.map +1 -0
  91. package/lib/commonjs/types/index.js +38 -0
  92. package/lib/commonjs/types/index.js.map +1 -0
  93. package/lib/module/NativeModules/A11yKeyboardModule/A11yKeyboardModule.js +26 -0
  94. package/lib/module/NativeModules/A11yKeyboardModule/A11yKeyboardModule.js.map +1 -0
  95. package/lib/module/NativeModules/A11yKeyboardModule/index.js +2 -0
  96. package/lib/module/NativeModules/A11yKeyboardModule/index.js.map +1 -0
  97. package/lib/module/NativeModules/index.js +2 -0
  98. package/lib/module/NativeModules/index.js.map +1 -0
  99. package/lib/module/components/KeyboardFocusView/KeyboardFocusView.android.js +33 -0
  100. package/lib/module/components/KeyboardFocusView/KeyboardFocusView.android.js.map +1 -0
  101. package/lib/module/components/KeyboardFocusView/KeyboardFocusView.d.js +2 -0
  102. package/lib/module/components/KeyboardFocusView/KeyboardFocusView.d.js.map +1 -0
  103. package/lib/module/components/KeyboardFocusView/KeyboardFocusView.ios.js +37 -0
  104. package/lib/module/components/KeyboardFocusView/KeyboardFocusView.ios.js.map +1 -0
  105. package/lib/module/components/KeyboardFocusView/hooks/index.js +2 -0
  106. package/lib/module/components/KeyboardFocusView/hooks/index.js.map +1 -0
  107. package/lib/module/components/KeyboardFocusView/hooks/useFocusStyle/index.js +2 -0
  108. package/lib/module/components/KeyboardFocusView/hooks/useFocusStyle/index.js.map +1 -0
  109. package/lib/module/components/KeyboardFocusView/hooks/useFocusStyle/useFocusStyle.js +26 -0
  110. package/lib/module/components/KeyboardFocusView/hooks/useFocusStyle/useFocusStyle.js.map +1 -0
  111. package/lib/module/components/KeyboardFocusView/index.js +2 -0
  112. package/lib/module/components/KeyboardFocusView/index.js.map +1 -0
  113. package/lib/module/components/Pressable/Pressable.android.js +70 -0
  114. package/lib/module/components/Pressable/Pressable.android.js.map +1 -0
  115. package/lib/module/components/Pressable/Pressable.d.js +2 -0
  116. package/lib/module/components/Pressable/Pressable.d.js.map +1 -0
  117. package/lib/module/components/Pressable/Pressable.ios.js +148 -0
  118. package/lib/module/components/Pressable/Pressable.ios.js.map +1 -0
  119. package/lib/module/components/Pressable/index.js +2 -0
  120. package/lib/module/components/Pressable/index.js.map +1 -0
  121. package/lib/module/components/index.js +3 -0
  122. package/lib/module/components/index.js.map +1 -0
  123. package/lib/module/index.js +5 -0
  124. package/lib/module/index.js.map +1 -0
  125. package/lib/module/nativeSpec/ExternalKeyboardViewNativeComponent.js +3 -0
  126. package/lib/module/nativeSpec/ExternalKeyboardViewNativeComponent.js.map +1 -0
  127. package/lib/module/nativeSpec/NativeKeyboardModule.js +3 -0
  128. package/lib/module/nativeSpec/NativeKeyboardModule.js.map +1 -0
  129. package/lib/module/nativeSpec/index.js +4 -0
  130. package/lib/module/nativeSpec/index.js.map +1 -0
  131. package/lib/module/services/A11yModule/A11yModule.android.js +15 -0
  132. package/lib/module/services/A11yModule/A11yModule.android.js.map +1 -0
  133. package/lib/module/services/A11yModule/A11yModule.d.js +2 -0
  134. package/lib/module/services/A11yModule/A11yModule.d.js.map +1 -0
  135. package/lib/module/services/A11yModule/A11yModule.ios.js +21 -0
  136. package/lib/module/services/A11yModule/A11yModule.ios.js.map +1 -0
  137. package/lib/module/services/A11yModule/A11yModule.types.js +2 -0
  138. package/lib/module/services/A11yModule/A11yModule.types.js.map +1 -0
  139. package/lib/module/services/A11yModule/index.js +2 -0
  140. package/lib/module/services/A11yModule/index.js.map +1 -0
  141. package/lib/module/services/index.js +2 -0
  142. package/lib/module/services/index.js.map +1 -0
  143. package/lib/module/types/FocusStyle.js +2 -0
  144. package/lib/module/types/FocusStyle.js.map +1 -0
  145. package/lib/module/types/KeyboardFocusView.types.js +2 -0
  146. package/lib/module/types/KeyboardFocusView.types.js.map +1 -0
  147. package/lib/module/types/index.js +3 -0
  148. package/lib/module/types/index.js.map +1 -0
  149. package/lib/typescript/NativeModules/A11yKeyboardModule/A11yKeyboardModule.d.ts +5 -0
  150. package/lib/typescript/NativeModules/A11yKeyboardModule/A11yKeyboardModule.d.ts.map +1 -0
  151. package/lib/typescript/NativeModules/A11yKeyboardModule/index.d.ts +2 -0
  152. package/lib/typescript/NativeModules/A11yKeyboardModule/index.d.ts.map +1 -0
  153. package/lib/typescript/NativeModules/index.d.ts +2 -0
  154. package/lib/typescript/NativeModules/index.d.ts.map +1 -0
  155. package/lib/typescript/components/KeyboardFocusView/KeyboardFocusView.android.d.ts +14 -0
  156. package/lib/typescript/components/KeyboardFocusView/KeyboardFocusView.android.d.ts.map +1 -0
  157. package/lib/typescript/components/KeyboardFocusView/KeyboardFocusView.ios.d.ts +14 -0
  158. package/lib/typescript/components/KeyboardFocusView/KeyboardFocusView.ios.d.ts.map +1 -0
  159. package/lib/typescript/components/KeyboardFocusView/hooks/index.d.ts +2 -0
  160. package/lib/typescript/components/KeyboardFocusView/hooks/index.d.ts.map +1 -0
  161. package/lib/typescript/components/KeyboardFocusView/hooks/useFocusStyle/index.d.ts +2 -0
  162. package/lib/typescript/components/KeyboardFocusView/hooks/useFocusStyle/index.d.ts.map +1 -0
  163. package/lib/typescript/components/KeyboardFocusView/hooks/useFocusStyle/useFocusStyle.d.ts +8 -0
  164. package/lib/typescript/components/KeyboardFocusView/hooks/useFocusStyle/useFocusStyle.d.ts.map +1 -0
  165. package/lib/typescript/components/KeyboardFocusView/index.d.ts +2 -0
  166. package/lib/typescript/components/KeyboardFocusView/index.d.ts.map +1 -0
  167. package/lib/typescript/components/Pressable/Pressable.android.d.ts +24 -0
  168. package/lib/typescript/components/Pressable/Pressable.android.d.ts.map +1 -0
  169. package/lib/typescript/components/Pressable/Pressable.ios.d.ts +88 -0
  170. package/lib/typescript/components/Pressable/Pressable.ios.d.ts.map +1 -0
  171. package/lib/typescript/components/Pressable/index.d.ts +2 -0
  172. package/lib/typescript/components/Pressable/index.d.ts.map +1 -0
  173. package/lib/typescript/components/index.d.ts +3 -0
  174. package/lib/typescript/components/index.d.ts.map +1 -0
  175. package/lib/typescript/index.d.ts +5 -0
  176. package/lib/typescript/index.d.ts.map +1 -0
  177. package/lib/typescript/nativeSpec/ExternalKeyboardViewNativeComponent.d.ts +30 -0
  178. package/lib/typescript/nativeSpec/ExternalKeyboardViewNativeComponent.d.ts.map +1 -0
  179. package/lib/typescript/nativeSpec/NativeKeyboardModule.d.ts +8 -0
  180. package/lib/typescript/nativeSpec/NativeKeyboardModule.d.ts.map +1 -0
  181. package/lib/typescript/nativeSpec/index.d.ts +5 -0
  182. package/lib/typescript/nativeSpec/index.d.ts.map +1 -0
  183. package/lib/typescript/services/A11yModule/A11yModule.android.d.ts +9 -0
  184. package/lib/typescript/services/A11yModule/A11yModule.android.d.ts.map +1 -0
  185. package/lib/typescript/services/A11yModule/A11yModule.ios.d.ts +10 -0
  186. package/lib/typescript/services/A11yModule/A11yModule.ios.d.ts.map +1 -0
  187. package/lib/typescript/services/A11yModule/A11yModule.types.d.ts +12 -0
  188. package/lib/typescript/services/A11yModule/A11yModule.types.d.ts.map +1 -0
  189. package/lib/typescript/services/A11yModule/index.d.ts +2 -0
  190. package/lib/typescript/services/A11yModule/index.d.ts.map +1 -0
  191. package/lib/typescript/services/index.d.ts +2 -0
  192. package/lib/typescript/services/index.d.ts.map +1 -0
  193. package/lib/typescript/types/FocusStyle.d.ts +6 -0
  194. package/lib/typescript/types/FocusStyle.d.ts.map +1 -0
  195. package/lib/typescript/types/KeyboardFocusView.types.d.ts +36 -0
  196. package/lib/typescript/types/KeyboardFocusView.types.d.ts.map +1 -0
  197. package/lib/typescript/types/index.d.ts +3 -0
  198. package/lib/typescript/types/index.d.ts.map +1 -0
  199. package/package.json +165 -0
  200. package/react-native-external-keyboard.podspec +36 -0
  201. package/src/NativeModules/A11yKeyboardModule/A11yKeyboardModule.ts +37 -0
  202. package/src/NativeModules/A11yKeyboardModule/index.ts +1 -0
  203. package/src/NativeModules/index.ts +1 -0
  204. package/src/components/KeyboardFocusView/KeyboardFocusView.android.tsx +41 -0
  205. package/src/components/KeyboardFocusView/KeyboardFocusView.d.ts +7 -0
  206. package/src/components/KeyboardFocusView/KeyboardFocusView.ios.tsx +51 -0
  207. package/src/components/KeyboardFocusView/hooks/index.ts +1 -0
  208. package/src/components/KeyboardFocusView/hooks/useFocusStyle/index.ts +1 -0
  209. package/src/components/KeyboardFocusView/hooks/useFocusStyle/useFocusStyle.ts +31 -0
  210. package/src/components/KeyboardFocusView/index.ts +1 -0
  211. package/src/components/Pressable/Pressable.android.tsx +95 -0
  212. package/src/components/Pressable/Pressable.d.ts +7 -0
  213. package/src/components/Pressable/Pressable.ios.tsx +282 -0
  214. package/src/components/Pressable/index.ts +1 -0
  215. package/src/components/index.ts +2 -0
  216. package/src/index.tsx +5 -0
  217. package/src/nativeSpec/ExternalKeyboardViewNativeComponent.ts +37 -0
  218. package/src/nativeSpec/NativeKeyboardModule.ts +9 -0
  219. package/src/nativeSpec/index.ts +6 -0
  220. package/src/services/A11yModule/A11yModule.android.ts +20 -0
  221. package/src/services/A11yModule/A11yModule.d.ts +3 -0
  222. package/src/services/A11yModule/A11yModule.ios.ts +33 -0
  223. package/src/services/A11yModule/A11yModule.types.ts +15 -0
  224. package/src/services/A11yModule/index.ts +1 -0
  225. package/src/services/index.ts +1 -0
  226. package/src/types/FocusStyle.ts +10 -0
  227. package/src/types/KeyboardFocusView.types.ts +43 -0
  228. package/src/types/index.ts +6 -0
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.KeyboardFocusView = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _useFocusStyle = require("./hooks/useFocusStyle");
10
+ var _nativeSpec = require("../../nativeSpec");
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
12
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
13
+ const KeyboardFocusView = /*#__PURE__*/_react.default.forwardRef((_ref, ref) => {
14
+ let {
15
+ canBeFocused = true,
16
+ onFocusChange,
17
+ focusStyle,
18
+ children,
19
+ style,
20
+ withView = true,
21
+ onKeyUpPress,
22
+ onKeyDownPress,
23
+ ...props
24
+ } = _ref;
25
+ const {
26
+ fStyle,
27
+ onFocusChangeHandler
28
+ } = (0, _useFocusStyle.useFocusStyle)(focusStyle, onFocusChange);
29
+ return /*#__PURE__*/_react.default.createElement(_nativeSpec.ExternalKeyboardView, _extends({
30
+ onFocusChange: onFocusChangeHandler,
31
+ style: [style, fStyle],
32
+ canBeFocused: canBeFocused,
33
+ ref: ref,
34
+ onKeyUpPress: onKeyUpPress,
35
+ onKeyDownPress: onKeyDownPress
36
+ }, props), withView ? /*#__PURE__*/_react.default.createElement(_reactNative.View, {
37
+ accessible: true
38
+ }, children) : children);
39
+ });
40
+ exports.KeyboardFocusView = KeyboardFocusView;
41
+ //# sourceMappingURL=KeyboardFocusView.android.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_useFocusStyle","_nativeSpec","obj","__esModule","default","_extends","Object","assign","bind","target","i","arguments","length","source","key","prototype","hasOwnProperty","call","apply","KeyboardFocusView","React","forwardRef","_ref","ref","canBeFocused","onFocusChange","focusStyle","children","style","withView","onKeyUpPress","onKeyDownPress","props","fStyle","onFocusChangeHandler","useFocusStyle","createElement","ExternalKeyboardView","View","accessible","exports"],"sourceRoot":"../../../../src","sources":["components/KeyboardFocusView/KeyboardFocusView.android.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,cAAA,GAAAF,OAAA;AACA,IAAAG,WAAA,GAAAH,OAAA;AAAwD,SAAAD,uBAAAK,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAAA,SAAAG,SAAA,IAAAA,QAAA,GAAAC,MAAA,CAAAC,MAAA,GAAAD,MAAA,CAAAC,MAAA,CAAAC,IAAA,eAAAC,MAAA,aAAAC,CAAA,MAAAA,CAAA,GAAAC,SAAA,CAAAC,MAAA,EAAAF,CAAA,UAAAG,MAAA,GAAAF,SAAA,CAAAD,CAAA,YAAAI,GAAA,IAAAD,MAAA,QAAAP,MAAA,CAAAS,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAJ,MAAA,EAAAC,GAAA,KAAAL,MAAA,CAAAK,GAAA,IAAAD,MAAA,CAAAC,GAAA,gBAAAL,MAAA,YAAAJ,QAAA,CAAAa,KAAA,OAAAP,SAAA;AAGjD,MAAMQ,iBAAiB,gBAAGC,cAAK,CAACC,UAAU,CAC/C,CAAAC,IAAA,EAYEC,GAAG,KACA;EAAA,IAZH;IACEC,YAAY,GAAG,IAAI;IACnBC,aAAa;IACbC,UAAU;IACVC,QAAQ;IACRC,KAAK;IACLC,QAAQ,GAAG,IAAI;IACfC,YAAY;IACZC,cAAc;IACd,GAAGC;EACL,CAAC,GAAAV,IAAA;EAGD,MAAM;IAAEW,MAAM;IAAEC;EAAqB,CAAC,GAAG,IAAAC,4BAAa,EACpDT,UAAU,EACVD,aACF,CAAC;EAED,oBACE7B,MAAA,CAAAQ,OAAA,CAAAgC,aAAA,CAACnC,WAAA,CAAAoC,oBAAoB,EAAAhC,QAAA;IACnBoB,aAAa,EAAES,oBAAqB;IACpCN,KAAK,EAAE,CAACA,KAAK,EAAEK,MAAM,CAAE;IACvBT,YAAY,EAAEA,YAAa;IAC3BD,GAAG,EAAEA,GAAI;IACTO,YAAY,EAAEA,YAAa;IAC3BC,cAAc,EAAEA;EAAe,GAC3BC,KAAK,GAERH,QAAQ,gBAAGjC,MAAA,CAAAQ,OAAA,CAAAgC,aAAA,CAACrC,YAAA,CAAAuC,IAAI;IAACC,UAAU;EAAA,GAAEZ,QAAe,CAAC,GAAGA,QAC7B,CAAC;AAE3B,CACF,CAAC;AAACa,OAAA,CAAArB,iBAAA,GAAAA,iBAAA"}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# sourceMappingURL=KeyboardFocusView.d.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/KeyboardFocusView/KeyboardFocusView.d.ts"],"mappings":""}
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.KeyboardFocusView = void 0;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _nativeSpec = require("../../nativeSpec");
9
+ var _services = require("../../services");
10
+ var _hooks = require("./hooks");
11
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
12
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
13
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
14
+ const KeyboardFocusView = /*#__PURE__*/_react.default.forwardRef((_ref, ref) => {
15
+ let {
16
+ onFocusChange,
17
+ style,
18
+ focusStyle,
19
+ canBeFocused = true,
20
+ onKeyUpPress,
21
+ onKeyDownPress,
22
+ ...props
23
+ } = _ref;
24
+ const setCurrentFocusTag = (0, _react.useCallback)(e => {
25
+ var _e$nativeEvent;
26
+ _services.A11yModule.currentFocusedTag = (e === null || e === void 0 ? void 0 : (_e$nativeEvent = e.nativeEvent) === null || _e$nativeEvent === void 0 ? void 0 : _e$nativeEvent.target) || undefined;
27
+ }, []);
28
+ const onFocus = (0, _react.useCallback)(e => {
29
+ setCurrentFocusTag(e);
30
+ onFocusChange === null || onFocusChange === void 0 ? void 0 : onFocusChange(e);
31
+ }, [onFocusChange, setCurrentFocusTag]);
32
+ const {
33
+ fStyle,
34
+ onFocusChangeHandler
35
+ } = (0, _hooks.useFocusStyle)(focusStyle, onFocus);
36
+ return /*#__PURE__*/_react.default.createElement(_nativeSpec.ExternalKeyboardView, _extends({
37
+ ref: ref,
38
+ style: [style, fStyle],
39
+ canBeFocused: canBeFocused,
40
+ onKeyUpPress: onKeyUpPress,
41
+ onKeyDownPress: onKeyDownPress,
42
+ onFocusChange: onFocusChangeHandler
43
+ }, props));
44
+ });
45
+ exports.KeyboardFocusView = KeyboardFocusView;
46
+ //# sourceMappingURL=KeyboardFocusView.ios.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_nativeSpec","_services","_hooks","_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","obj","__esModule","default","cache","has","get","newObj","hasPropertyDescriptor","Object","defineProperty","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","_extends","assign","bind","target","i","arguments","length","source","apply","KeyboardFocusView","React","forwardRef","_ref","ref","onFocusChange","style","focusStyle","canBeFocused","onKeyUpPress","onKeyDownPress","props","setCurrentFocusTag","useCallback","e","_e$nativeEvent","A11yModule","currentFocusedTag","nativeEvent","undefined","onFocus","fStyle","onFocusChangeHandler","useFocusStyle","createElement","ExternalKeyboardView","exports"],"sourceRoot":"../../../../src","sources":["components/KeyboardFocusView/KeyboardFocusView.ios.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,uBAAA,CAAAC,OAAA;AAEA,IAAAC,WAAA,GAAAD,OAAA;AAEA,IAAAE,SAAA,GAAAF,OAAA;AAEA,IAAAG,MAAA,GAAAH,OAAA;AAAwC,SAAAI,yBAAAC,WAAA,eAAAC,OAAA,kCAAAC,iBAAA,OAAAD,OAAA,QAAAE,gBAAA,OAAAF,OAAA,YAAAF,wBAAA,YAAAA,CAAAC,WAAA,WAAAA,WAAA,GAAAG,gBAAA,GAAAD,iBAAA,KAAAF,WAAA;AAAA,SAAAN,wBAAAU,GAAA,EAAAJ,WAAA,SAAAA,WAAA,IAAAI,GAAA,IAAAA,GAAA,CAAAC,UAAA,WAAAD,GAAA,QAAAA,GAAA,oBAAAA,GAAA,wBAAAA,GAAA,4BAAAE,OAAA,EAAAF,GAAA,UAAAG,KAAA,GAAAR,wBAAA,CAAAC,WAAA,OAAAO,KAAA,IAAAA,KAAA,CAAAC,GAAA,CAAAJ,GAAA,YAAAG,KAAA,CAAAE,GAAA,CAAAL,GAAA,SAAAM,MAAA,WAAAC,qBAAA,GAAAC,MAAA,CAAAC,cAAA,IAAAD,MAAA,CAAAE,wBAAA,WAAAC,GAAA,IAAAX,GAAA,QAAAW,GAAA,kBAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAd,GAAA,EAAAW,GAAA,SAAAI,IAAA,GAAAR,qBAAA,GAAAC,MAAA,CAAAE,wBAAA,CAAAV,GAAA,EAAAW,GAAA,cAAAI,IAAA,KAAAA,IAAA,CAAAV,GAAA,IAAAU,IAAA,CAAAC,GAAA,KAAAR,MAAA,CAAAC,cAAA,CAAAH,MAAA,EAAAK,GAAA,EAAAI,IAAA,YAAAT,MAAA,CAAAK,GAAA,IAAAX,GAAA,CAAAW,GAAA,SAAAL,MAAA,CAAAJ,OAAA,GAAAF,GAAA,MAAAG,KAAA,IAAAA,KAAA,CAAAa,GAAA,CAAAhB,GAAA,EAAAM,MAAA,YAAAA,MAAA;AAAA,SAAAW,SAAA,IAAAA,QAAA,GAAAT,MAAA,CAAAU,MAAA,GAAAV,MAAA,CAAAU,MAAA,CAAAC,IAAA,eAAAC,MAAA,aAAAC,CAAA,MAAAA,CAAA,GAAAC,SAAA,CAAAC,MAAA,EAAAF,CAAA,UAAAG,MAAA,GAAAF,SAAA,CAAAD,CAAA,YAAAV,GAAA,IAAAa,MAAA,QAAAhB,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAU,MAAA,EAAAb,GAAA,KAAAS,MAAA,CAAAT,GAAA,IAAAa,MAAA,CAAAb,GAAA,gBAAAS,MAAA,YAAAH,QAAA,CAAAQ,KAAA,OAAAH,SAAA;AAEjC,MAAMI,iBAAiB,gBAAGC,cAAK,CAACC,UAAU,CAC/C,CAAAC,IAAA,EAUEC,GAAG,KACA;EAAA,IAVH;IACEC,aAAa;IACbC,KAAK;IACLC,UAAU;IACVC,YAAY,GAAG,IAAI;IACnBC,YAAY;IACZC,cAAc;IACd,GAAGC;EACL,CAAC,GAAAR,IAAA;EAGD,MAAMS,kBAAkB,GAAG,IAAAC,kBAAW,EACnCC,CAAsC,IAAK;IAAA,IAAAC,cAAA;IAC1CC,oBAAU,CAACC,iBAAiB,GAAG,CAAAH,CAAC,aAADA,CAAC,wBAAAC,cAAA,GAADD,CAAC,CAAEI,WAAW,cAAAH,cAAA,uBAAdA,cAAA,CAAgBrB,MAAM,KAAIyB,SAAS;EACpE,CAAC,EACD,EACF,CAAC;EAED,MAAMC,OAAO,GAAG,IAAAP,kBAAW,EACxBC,CAAC,IAAK;IACLF,kBAAkB,CAACE,CAAC,CAAC;IACrBT,aAAa,aAAbA,aAAa,uBAAbA,aAAa,CAAGS,CAAC,CAAC;EACpB,CAAC,EACD,CAACT,aAAa,EAAEO,kBAAkB,CACpC,CAAC;EAED,MAAM;IAAES,MAAM;IAAEC;EAAqB,CAAC,GAAG,IAAAC,oBAAa,EAAChB,UAAU,EAAEa,OAAO,CAAC;EAE3E,oBACEzD,MAAA,CAAAa,OAAA,CAAAgD,aAAA,CAAC1D,WAAA,CAAA2D,oBAAoB,EAAAlC,QAAA;IACnBa,GAAG,EAAEA,GAAI;IACTE,KAAK,EAAE,CAACA,KAAK,EAAEe,MAAM,CAAE;IACvBb,YAAY,EAAEA,YAAa;IAC3BC,YAAY,EAAEA,YAAa;IAC3BC,cAAc,EAAEA,cAAe;IAC/BL,aAAa,EAAEiB;EAAqB,GAChCX,KAAK,CACV,CAAC;AAEN,CACF,CAAC;AAACe,OAAA,CAAA1B,iBAAA,GAAAA,iBAAA"}
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "useFocusStyle", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _useFocusStyle.useFocusStyle;
10
+ }
11
+ });
12
+ var _useFocusStyle = require("./useFocusStyle");
13
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_useFocusStyle","require"],"sourceRoot":"../../../../../src","sources":["components/KeyboardFocusView/hooks/index.ts"],"mappings":";;;;;;;;;;;AAAA,IAAAA,cAAA,GAAAC,OAAA"}
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "useFocusStyle", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _useFocusStyle.useFocusStyle;
10
+ }
11
+ });
12
+ var _useFocusStyle = require("./useFocusStyle");
13
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_useFocusStyle","require"],"sourceRoot":"../../../../../../src","sources":["components/KeyboardFocusView/hooks/useFocusStyle/index.ts"],"mappings":";;;;;;;;;;;AAAA,IAAAA,cAAA,GAAAC,OAAA"}
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.useFocusStyle = void 0;
7
+ var _react = require("react");
8
+ var _reactNative = require("react-native");
9
+ const useFocusStyle = (focusStyle, onFocusChange) => {
10
+ const [focused, setFocusStatus] = (0, _react.useState)(false);
11
+ const onFocusChangeHandler = event => {
12
+ setFocusStatus(event.nativeEvent.isFocused);
13
+ onFocusChange === null || onFocusChange === void 0 ? void 0 : onFocusChange(event);
14
+ };
15
+ const fStyle = (0, _react.useMemo)(() => {
16
+ if (!focusStyle) return focused ? styles.defaultHighlight : undefined;
17
+ const specificStyle = typeof focusStyle === 'function' ? focusStyle({
18
+ focused
19
+ }) : focusStyle;
20
+ return focused ? specificStyle : undefined;
21
+ }, [focused, focusStyle]);
22
+ return {
23
+ onFocusChangeHandler,
24
+ fStyle
25
+ };
26
+ };
27
+ exports.useFocusStyle = useFocusStyle;
28
+ const styles = _reactNative.StyleSheet.create({
29
+ defaultHighlight: {
30
+ backgroundColor: '#d8e2d9'
31
+ }
32
+ });
33
+ //# sourceMappingURL=useFocusStyle.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","require","_reactNative","useFocusStyle","focusStyle","onFocusChange","focused","setFocusStatus","useState","onFocusChangeHandler","event","nativeEvent","isFocused","fStyle","useMemo","styles","defaultHighlight","undefined","specificStyle","exports","StyleSheet","create","backgroundColor"],"sourceRoot":"../../../../../../src","sources":["components/KeyboardFocusView/hooks/useFocusStyle/useFocusStyle.ts"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAGO,MAAME,aAAa,GAAGA,CAC3BC,UAAuB,EACvBC,aAA+B,KAC5B;EACH,MAAM,CAACC,OAAO,EAAEC,cAAc,CAAC,GAAG,IAAAC,eAAQ,EAAC,KAAK,CAAC;EAEjD,MAAMC,oBAAqC,GAAIC,KAAK,IAAK;IACvDH,cAAc,CAACG,KAAK,CAACC,WAAW,CAACC,SAAS,CAAC;IAC3CP,aAAa,aAAbA,aAAa,uBAAbA,aAAa,CAAGK,KAAK,CAAC;EACxB,CAAC;EAED,MAAMG,MAAM,GAAG,IAAAC,cAAO,EAAC,MAAM;IAC3B,IAAI,CAACV,UAAU,EAAE,OAAOE,OAAO,GAAGS,MAAM,CAACC,gBAAgB,GAAGC,SAAS;IACrE,MAAMC,aAAa,GACjB,OAAOd,UAAU,KAAK,UAAU,GAAGA,UAAU,CAAC;MAAEE;IAAQ,CAAC,CAAC,GAAGF,UAAU;IACzE,OAAOE,OAAO,GAAGY,aAAa,GAAGD,SAAS;EAC5C,CAAC,EAAE,CAACX,OAAO,EAAEF,UAAU,CAAC,CAAC;EAEzB,OAAO;IACLK,oBAAoB;IACpBI;EACF,CAAC;AACH,CAAC;AAACM,OAAA,CAAAhB,aAAA,GAAAA,aAAA;AAEF,MAAMY,MAAM,GAAGK,uBAAU,CAACC,MAAM,CAAC;EAC/BL,gBAAgB,EAAE;IAAEM,eAAe,EAAE;EAAU;AACjD,CAAC,CAAC"}
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "KeyboardFocusView", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _KeyboardFocusView.KeyboardFocusView;
10
+ }
11
+ });
12
+ var _KeyboardFocusView = require("./KeyboardFocusView");
13
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_KeyboardFocusView","require"],"sourceRoot":"../../../../src","sources":["components/KeyboardFocusView/index.ts"],"mappings":";;;;;;;;;;;AAAA,IAAAA,kBAAA,GAAAC,OAAA"}
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Pressable = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _KeyboardFocusView = require("../KeyboardFocusView");
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } /**
12
+ * Copyright (c) Facebook, Inc. and its affiliates.
13
+ *
14
+ * This source code is licensed under the MIT license found in the
15
+ * LICENSE file in the root directory of this source tree.
16
+ *
17
+ *
18
+ * @format
19
+ */
20
+ const ANDROID_SPACE_KEY_CODE = 62;
21
+ const Pressable = /*#__PURE__*/_react.default.forwardRef((_ref, ref) => {
22
+ let {
23
+ canBeFocused,
24
+ focusStyle,
25
+ style,
26
+ onFocusChange,
27
+ onPress,
28
+ onLongPress,
29
+ onKeyDownPress,
30
+ onPressOut,
31
+ onPressIn,
32
+ ...props
33
+ } = _ref;
34
+ const onKeyUpPressHandler = _react.default.useCallback(e => {
35
+ const {
36
+ nativeEvent: {
37
+ keyCode,
38
+ isLongPress
39
+ }
40
+ } = e;
41
+ if (keyCode === ANDROID_SPACE_KEY_CODE) {
42
+ onPressOut === null || onPressOut === void 0 ? void 0 : onPressOut(e);
43
+ if (isLongPress) {
44
+ onLongPress === null || onLongPress === void 0 ? void 0 : onLongPress(e);
45
+ } else {
46
+ onPress === null || onPress === void 0 ? void 0 : onPress(e);
47
+ }
48
+ }
49
+ }, [onLongPress, onPress, onPressOut]);
50
+ const onPressablePressHandler = event => {
51
+ if (event.nativeEvent.identifier !== undefined) {
52
+ onPress === null || onPress === void 0 ? void 0 : onPress(event);
53
+ }
54
+ };
55
+ const onKeyDownHandler = _react.default.useCallback(e => {
56
+ onKeyDownPress === null || onKeyDownPress === void 0 ? void 0 : onKeyDownPress(e);
57
+ onPressIn === null || onPressIn === void 0 ? void 0 : onPressIn(e);
58
+ }, [onKeyDownPress, onPressIn]);
59
+ return /*#__PURE__*/_react.default.createElement(_KeyboardFocusView.KeyboardFocusView, {
60
+ style: style,
61
+ focusStyle: focusStyle,
62
+ ref: ref,
63
+ withView: false,
64
+ onKeyUpPress: onKeyUpPressHandler,
65
+ onKeyDownPress: onKeyDownHandler,
66
+ canBeFocused: canBeFocused,
67
+ onFocusChange: onFocusChange
68
+ }, /*#__PURE__*/_react.default.createElement(_reactNative.Pressable, _extends({
69
+ onPressOut: onPressOut,
70
+ onPressIn: onPressIn,
71
+ onPress: onPressablePressHandler,
72
+ onLongPress: onLongPress
73
+ }, props)));
74
+ });
75
+ exports.Pressable = Pressable;
76
+ //# sourceMappingURL=Pressable.android.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_KeyboardFocusView","obj","__esModule","default","_extends","Object","assign","bind","target","i","arguments","length","source","key","prototype","hasOwnProperty","call","apply","ANDROID_SPACE_KEY_CODE","Pressable","React","forwardRef","_ref","ref","canBeFocused","focusStyle","style","onFocusChange","onPress","onLongPress","onKeyDownPress","onPressOut","onPressIn","props","onKeyUpPressHandler","useCallback","e","nativeEvent","keyCode","isLongPress","onPressablePressHandler","event","identifier","undefined","onKeyDownHandler","createElement","KeyboardFocusView","withView","onKeyUpPress","exports"],"sourceRoot":"../../../../src","sources":["components/Pressable/Pressable.android.tsx"],"mappings":"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"}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ //# sourceMappingURL=Pressable.d.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/Pressable/Pressable.d.ts"],"mappings":""}
@@ -0,0 +1,157 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Pressable = void 0;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _Rect = require("react-native/Libraries/StyleSheet/Rect");
9
+ var _usePressability = _interopRequireDefault(require("react-native/Libraries/Pressability/usePressability"));
10
+ var _useAndroidRippleForView = _interopRequireDefault(require("react-native/Libraries/Components/Pressable/useAndroidRippleForView"));
11
+ var _KeyboardFocusView = require("../KeyboardFocusView");
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
13
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
14
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
15
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } // @ts-ignore: import from origin pressable
16
+ // @ts-ignore: import from origin pressable
17
+ // @ts-ignore: import from origin pressable
18
+ const IOS_SPACE_KEY_CODE = 44;
19
+ const Pressable = /*#__PURE__*/_react.default.memo( /*#__PURE__*/_react.default.forwardRef((props, forwardedRef) => {
20
+ var _props$accessibilityV, _props$accessibilityV2, _props$accessibilityV3, _props$accessibilityV4;
21
+ const {
22
+ accessibilityState,
23
+ 'aria-live': ariaLive,
24
+ android_disableSound,
25
+ android_ripple,
26
+ 'aria-busy': ariaBusy,
27
+ 'aria-checked': ariaChecked,
28
+ 'aria-disabled': ariaDisabled,
29
+ 'aria-expanded': ariaExpanded,
30
+ 'aria-label': ariaLabel,
31
+ 'aria-selected': ariaSelected,
32
+ cancelable,
33
+ children,
34
+ delayHoverIn,
35
+ delayHoverOut,
36
+ delayLongPress,
37
+ disabled,
38
+ focusable,
39
+ onHoverIn,
40
+ onHoverOut,
41
+ onLongPress,
42
+ onPress,
43
+ onPressIn,
44
+ onPressOut,
45
+ pressRetentionOffset,
46
+ style,
47
+ testOnly_pressed,
48
+ unstable_pressDelay,
49
+ canBeFocused,
50
+ onFocusChange,
51
+ ...restProps
52
+ } = props;
53
+ const viewRef = (0, _react.useRef)(null);
54
+ (0, _react.useImperativeHandle)(forwardedRef, () => viewRef.current);
55
+ const hitSlop = (0, _Rect.normalizeRect)(restProps === null || restProps === void 0 ? void 0 : restProps.hitSlop);
56
+ const android_rippleConfig = (0, _useAndroidRippleForView.default)(android_ripple, viewRef);
57
+ const [pressed, setPressed] = usePressState(testOnly_pressed === true);
58
+ let _accessibilityState = {
59
+ busy: ariaBusy ?? (accessibilityState === null || accessibilityState === void 0 ? void 0 : accessibilityState.busy),
60
+ checked: ariaChecked ?? (accessibilityState === null || accessibilityState === void 0 ? void 0 : accessibilityState.checked),
61
+ disabled: ariaDisabled ?? (accessibilityState === null || accessibilityState === void 0 ? void 0 : accessibilityState.disabled),
62
+ expanded: ariaExpanded ?? (accessibilityState === null || accessibilityState === void 0 ? void 0 : accessibilityState.expanded),
63
+ selected: ariaSelected ?? (accessibilityState === null || accessibilityState === void 0 ? void 0 : accessibilityState.selected)
64
+ };
65
+ _accessibilityState = disabled != null ? {
66
+ ..._accessibilityState,
67
+ disabled
68
+ } : _accessibilityState;
69
+ const accessibilityValue = {
70
+ max: props['aria-valuemax'] ?? ((_props$accessibilityV = props.accessibilityValue) === null || _props$accessibilityV === void 0 ? void 0 : _props$accessibilityV.max),
71
+ min: props['aria-valuemin'] ?? ((_props$accessibilityV2 = props.accessibilityValue) === null || _props$accessibilityV2 === void 0 ? void 0 : _props$accessibilityV2.min),
72
+ now: props['aria-valuenow'] ?? ((_props$accessibilityV3 = props.accessibilityValue) === null || _props$accessibilityV3 === void 0 ? void 0 : _props$accessibilityV3.now),
73
+ text: props['aria-valuetext'] ?? ((_props$accessibilityV4 = props.accessibilityValue) === null || _props$accessibilityV4 === void 0 ? void 0 : _props$accessibilityV4.text)
74
+ };
75
+ const accessibilityLiveRegion = ariaLive === 'off' ? 'none' : ariaLive ?? props.accessibilityLiveRegion;
76
+ const accessibilityLabel = ariaLabel ?? props.accessibilityLabel;
77
+ const restPropsWithDefaults = {
78
+ ...restProps,
79
+ ...(android_rippleConfig === null || android_rippleConfig === void 0 ? void 0 : android_rippleConfig.viewProps),
80
+ accessibilityState: _accessibilityState,
81
+ accessibilityValue,
82
+ accessibilityViewIsModal: restProps['aria-modal'] ?? restProps.accessibilityViewIsModal,
83
+ accessibilityLiveRegion,
84
+ accessibilityLabel,
85
+ focusable: focusable !== false,
86
+ hitSlop
87
+ };
88
+ const config = (0, _react.useMemo)(() => ({
89
+ cancelable,
90
+ disabled,
91
+ hitSlop,
92
+ pressRectOffset: pressRetentionOffset,
93
+ android_disableSound,
94
+ delayHoverIn,
95
+ delayHoverOut,
96
+ delayLongPress,
97
+ delayPressIn: unstable_pressDelay,
98
+ onHoverIn,
99
+ onHoverOut,
100
+ onLongPress,
101
+ onPress,
102
+ onPressIn(event) {
103
+ if (android_rippleConfig != null) {
104
+ android_rippleConfig.onPressIn(event);
105
+ }
106
+ setPressed(true);
107
+ if (onPressIn != null) {
108
+ onPressIn(event);
109
+ }
110
+ },
111
+ onPressMove: android_rippleConfig === null || android_rippleConfig === void 0 ? void 0 : android_rippleConfig.onPressMove,
112
+ onPressOut(event) {
113
+ if (android_rippleConfig != null) {
114
+ android_rippleConfig.onPressOut(event);
115
+ }
116
+ setPressed(false);
117
+ if (onPressOut != null) {
118
+ onPressOut(event);
119
+ }
120
+ }
121
+ }), [android_disableSound, android_rippleConfig, cancelable, delayHoverIn, delayHoverOut, delayLongPress, disabled, hitSlop, onHoverIn, onHoverOut, onLongPress, onPress, onPressIn, onPressOut, pressRetentionOffset, setPressed, unstable_pressDelay]);
122
+ const eventHandlers = (0, _usePressability.default)(config);
123
+ const onKeyUpPress = _react.default.useCallback(e => {
124
+ if (e.nativeEvent.keyCode === IOS_SPACE_KEY_CODE) {
125
+ onPressOut(e);
126
+ if (e.nativeEvent.isLongPress) {
127
+ onLongPress === null || onLongPress === void 0 ? void 0 : onLongPress(e);
128
+ } else {
129
+ onPress === null || onPress === void 0 ? void 0 : onPress(e);
130
+ }
131
+ }
132
+ }, [onLongPress, onPress, onPressOut]);
133
+ const onKeyDownPress = _react.default.useCallback(e => {
134
+ if (e.nativeEvent.keyCode === IOS_SPACE_KEY_CODE) {
135
+ onPressIn(e);
136
+ }
137
+ }, [onPressIn]);
138
+ return /*#__PURE__*/_react.default.createElement(_KeyboardFocusView.KeyboardFocusView, _extends({}, restPropsWithDefaults, eventHandlers, {
139
+ canBeFocused: canBeFocused,
140
+ onFocusChange: onFocusChange,
141
+ onKeyUpPress: onKeyUpPress,
142
+ onKeyDownPress: onKeyDownPress,
143
+ ref: viewRef,
144
+ style: typeof style === 'function' ? style({
145
+ pressed
146
+ }) : style,
147
+ collapsable: false
148
+ }), typeof children === 'function' ? children({
149
+ pressed
150
+ }) : children);
151
+ }));
152
+ exports.Pressable = Pressable;
153
+ function usePressState(forcePressed) {
154
+ const [pressed, setPressed] = (0, _react.useState)(false);
155
+ return [pressed || forcePressed, setPressed];
156
+ }
157
+ //# sourceMappingURL=Pressable.ios.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_Rect","_usePressability","_interopRequireDefault","_useAndroidRippleForView","_KeyboardFocusView","obj","__esModule","default","_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","cache","has","get","newObj","hasPropertyDescriptor","Object","defineProperty","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","_extends","assign","bind","target","i","arguments","length","source","apply","IOS_SPACE_KEY_CODE","Pressable","React","memo","forwardRef","props","forwardedRef","_props$accessibilityV","_props$accessibilityV2","_props$accessibilityV3","_props$accessibilityV4","accessibilityState","ariaLive","android_disableSound","android_ripple","ariaBusy","ariaChecked","ariaDisabled","ariaExpanded","ariaLabel","ariaSelected","cancelable","children","delayHoverIn","delayHoverOut","delayLongPress","disabled","focusable","onHoverIn","onHoverOut","onLongPress","onPress","onPressIn","onPressOut","pressRetentionOffset","style","testOnly_pressed","unstable_pressDelay","canBeFocused","onFocusChange","restProps","viewRef","useRef","useImperativeHandle","current","hitSlop","normalizeRect","android_rippleConfig","useAndroidRippleForView","pressed","setPressed","usePressState","_accessibilityState","busy","checked","expanded","selected","accessibilityValue","max","min","now","text","accessibilityLiveRegion","accessibilityLabel","restPropsWithDefaults","viewProps","accessibilityViewIsModal","config","useMemo","pressRectOffset","delayPressIn","event","onPressMove","eventHandlers","usePressability","onKeyUpPress","useCallback","e","nativeEvent","keyCode","isLongPress","onKeyDownPress","createElement","KeyboardFocusView","ref","collapsable","exports","forcePressed","useState"],"sourceRoot":"../../../../src","sources":["components/Pressable/Pressable.ios.tsx"],"mappings":"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"}
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "Pressable", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _Pressable.Pressable;
10
+ }
11
+ });
12
+ var _Pressable = require("./Pressable");
13
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_Pressable","require"],"sourceRoot":"../../../../src","sources":["components/Pressable/index.ts"],"mappings":";;;;;;;;;;;AAAA,IAAAA,UAAA,GAAAC,OAAA"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "KeyboardFocusView", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _KeyboardFocusView.KeyboardFocusView;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "Pressable", {
13
+ enumerable: true,
14
+ get: function () {
15
+ return _Pressable.Pressable;
16
+ }
17
+ });
18
+ var _KeyboardFocusView = require("./KeyboardFocusView");
19
+ var _Pressable = require("./Pressable");
20
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_KeyboardFocusView","require","_Pressable"],"sourceRoot":"../../../src","sources":["components/index.ts"],"mappings":";;;;;;;;;;;;;;;;;AAAA,IAAAA,kBAAA,GAAAC,OAAA;AACA,IAAAC,UAAA,GAAAD,OAAA"}
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "A11yKeyboardModule", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _NativeModules.A11yKeyboardModule;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "A11yModule", {
13
+ enumerable: true,
14
+ get: function () {
15
+ return _services.A11yModule;
16
+ }
17
+ });
18
+ Object.defineProperty(exports, "ExternalKeyboardView", {
19
+ enumerable: true,
20
+ get: function () {
21
+ return _nativeSpec.ExternalKeyboardView;
22
+ }
23
+ });
24
+ Object.defineProperty(exports, "KeyPress", {
25
+ enumerable: true,
26
+ get: function () {
27
+ return _nativeSpec.KeyPress;
28
+ }
29
+ });
30
+ Object.defineProperty(exports, "KeyboardFocusView", {
31
+ enumerable: true,
32
+ get: function () {
33
+ return _components.KeyboardFocusView;
34
+ }
35
+ });
36
+ Object.defineProperty(exports, "Pressable", {
37
+ enumerable: true,
38
+ get: function () {
39
+ return _components.Pressable;
40
+ }
41
+ });
42
+ var _NativeModules = require("./NativeModules");
43
+ var _nativeSpec = require("./nativeSpec");
44
+ var _components = require("./components");
45
+ var _services = require("./services");
46
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_NativeModules","require","_nativeSpec","_components","_services"],"sourceRoot":"../../src","sources":["index.tsx"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,cAAA,GAAAC,OAAA;AACA,IAAAC,WAAA,GAAAD,OAAA;AAEA,IAAAE,WAAA,GAAAF,OAAA;AACA,IAAAG,SAAA,GAAAH,OAAA"}
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _codegenNativeComponent = _interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));
8
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
9
+ var _default = (0, _codegenNativeComponent.default)('ExternalKeyboardView');
10
+ exports.default = _default;
11
+ //# sourceMappingURL=ExternalKeyboardViewNativeComponent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_codegenNativeComponent","_interopRequireDefault","require","obj","__esModule","default","_default","codegenNativeComponent","exports"],"sourceRoot":"../../../src","sources":["nativeSpec/ExternalKeyboardViewNativeComponent.ts"],"mappings":";;;;;;AAAA,IAAAA,uBAAA,GAAAC,sBAAA,CAAAC,OAAA;AAA6F,SAAAD,uBAAAE,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAAA,IAAAG,QAAA,GAkC9E,IAAAC,+BAAsB,EACnC,sBACF,CAAC;AAAAC,OAAA,CAAAH,OAAA,GAAAC,QAAA"}
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _reactNative = require("react-native");
8
+ var _default = _reactNative.TurboModuleRegistry.get('A11yKeyboardModule');
9
+ exports.default = _default;
10
+ //# sourceMappingURL=NativeKeyboardModule.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_reactNative","require","_default","TurboModuleRegistry","get","exports","default"],"sourceRoot":"../../../src","sources":["nativeSpec/NativeKeyboardModule.ts"],"mappings":";;;;;;AACA,IAAAA,YAAA,GAAAC,OAAA;AAAmD,IAAAC,QAAA,GAOpCC,gCAAmB,CAACC,GAAG,CAAO,oBAAoB,CAAC;AAAAC,OAAA,CAAAC,OAAA,GAAAJ,QAAA"}