react-native-external-keyboard 0.9.1 → 1.0.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 (372) hide show
  1. package/README.md +95 -600
  2. package/android/build.gradle +0 -18
  3. package/android/src/main/java/com/externalkeyboard/ExternalKeyboardViewPackage.java +24 -22
  4. package/android/src/main/java/com/externalkeyboard/events/EventHelper.java +10 -13
  5. package/android/src/main/java/com/externalkeyboard/helper/FocusHelper.java +1 -2
  6. package/android/src/main/java/com/externalkeyboard/services/FocusMemoryService.java +64 -0
  7. package/android/src/main/java/com/externalkeyboard/services/KeyboardFocusService.java +41 -0
  8. package/android/src/main/java/com/externalkeyboard/services/KeyboardService.java +4 -13
  9. package/android/src/main/java/com/externalkeyboard/views/ExternalKeyboardView/ExternalKeyboardView.java +2 -8
  10. package/android/src/main/java/com/externalkeyboard/views/ExternalKeyboardView/ExternalKeyboardViewManager.java +20 -13
  11. package/android/src/main/java/com/externalkeyboard/views/TextInputFocusWrapper/TextInputFocusWrapper.java +99 -21
  12. package/android/src/main/java/com/externalkeyboard/views/TextInputFocusWrapper/TextInputFocusWrapperManager.java +11 -0
  13. package/android/src/main/java/com/externalkeyboard/views/base/FocusHighlightBase.java +11 -5
  14. package/android/src/main/java/com/externalkeyboard/views/base/FocusableBase.java +36 -0
  15. package/android/src/main/java/com/externalkeyboard/views/base/keyboard/ViewFocusChangeBase.java +2 -3
  16. package/android/src/main/java/com/externalkeyboard/views/base/keyboard/ViewFocusRequestBase.java +10 -61
  17. package/android/src/newarch/ExternalKeyboardLockViewManagerInterface.java +11 -0
  18. package/android/src/newarch/ExternalKeyboardLockViewManagerSpec.java +0 -1
  19. package/android/src/newarch/ExternalKeyboardViewManagerInterface.java +42 -0
  20. package/android/src/newarch/ExternalKeyboardViewManagerSpec.java +0 -1
  21. package/android/src/newarch/KeyboardFocusGroupManagerInterface.java +12 -0
  22. package/android/src/newarch/KeyboardFocusGroupManagerSpec.java +0 -1
  23. package/android/src/newarch/TextInputFocusWrapperManagerInterface.java +34 -0
  24. package/android/src/newarch/TextInputFocusWrapperManagerSpec.java +0 -10
  25. package/android/src/newarch/helper/ReactNativeEventDispatcher.java +28 -0
  26. package/android/src/oldarch/ExternalKeyboardViewManagerSpec.java +6 -4
  27. package/android/src/oldarch/TextInputFocusWrapperManagerSpec.java +4 -0
  28. package/android/src/oldarch/helper/ReactNativeEventDispatcher.java +15 -0
  29. package/ios/Delegates/RNCEKVFocusDelegate/RNCEKVFocusDelegate.mm +1 -1
  30. package/ios/Delegates/RNCEKVFocusDelegate/RNCEKVFocusProtocol.h +1 -1
  31. package/ios/Delegates/RNCEKVHaloDelegate/RNCEKVHaloDelegate.h +2 -1
  32. package/ios/Delegates/RNCEKVHaloDelegate/RNCEKVHaloDelegate.mm +41 -5
  33. package/ios/Delegates/RNCEKVHaloDelegate/RNCEKVHaloProtocol.h +1 -0
  34. package/ios/Extensions/RCTCustomScrollView+RNCEKVExternalKeyboard.mm +5 -6
  35. package/ios/Extensions/RCTEnhancedScrollView+RNCEKVExternalKeyboard.mm +8 -9
  36. package/ios/Extensions/RCTTextInputComponentView+RNCEKVExternalKeyboard.mm +1 -1
  37. package/ios/Extensions/RCTViewComponentView+RNCEKVExternalKeyboard.h +0 -1
  38. package/ios/Extensions/RCTViewComponentView+RNCEKVExternalKeyboard.mm +16 -4
  39. package/ios/Extensions/UIViewController+RNCEKVExternalKeyboard.mm +7 -10
  40. package/ios/Helpers/RNCEKVNativeProps/RNCEKVNativeProps.h +4 -4
  41. package/ios/Helpers/RNCEKVSwizzleInstanceMethod/RNCEKVSwizzleInstanceMethod.h +19 -0
  42. package/ios/Protocols/RNCEKVCustomFocusEffectProtocol.h +1 -1
  43. package/ios/Services/RNCEKVFocusMemoryService.h +39 -0
  44. package/ios/Services/RNCEKVFocusMemoryService.mm +42 -0
  45. package/ios/Services/RNCEKVKeyboardFocusService.h +28 -0
  46. package/ios/Services/RNCEKVKeyboardFocusService.mm +54 -0
  47. package/ios/Views/Base/FocusChange/RNCEKVViewFocusChangeBase.h +2 -0
  48. package/ios/Views/Base/FocusChange/RNCEKVViewFocusChangeBase.mm +12 -10
  49. package/ios/Views/Base/FocusRequest/RNCEKVViewFocusRequestBase.h +1 -1
  50. package/ios/Views/Base/FocusRequest/RNCEKVViewFocusRequestBase.mm +6 -17
  51. package/ios/Views/Base/KeyboardHallo/RNCEKVExternalKeyboardHalloBase.h +1 -0
  52. package/ios/Views/Base/KeyboardHallo/RNCEKVExternalKeyboardHalloBase.mm +146 -6
  53. package/ios/Views/Base/ViewGroup/RNCEKVViewGroupBase.h +2 -0
  54. package/ios/Views/Base/ViewGroup/RNCEKVViewGroupBase.mm +4 -0
  55. package/ios/Views/RNCEKVExternalKeyboardView/RNCEKVExternalKeyboardView.h +1 -1
  56. package/ios/Views/RNCEKVExternalKeyboardView/RNCEKVExternalKeyboardView.mm +8 -4
  57. package/ios/Views/RNCEKVExternalKeyboardView/RNCEKVExternalKeyboardViewManager.mm +22 -11
  58. package/ios/Views/RNCEKVTextInputFocusWrapper/RNCEKVTextInputFocusWrapper.mm +17 -0
  59. package/ios/Views/RNCEKVTextInputFocusWrapper/RNCEKVTextInputFocusWrapperManager.mm +12 -0
  60. package/lib/commonjs/components/BaseKeyboardView/BaseKeyboardView.js +67 -65
  61. package/lib/commonjs/components/BaseKeyboardView/BaseKeyboardView.js.map +1 -1
  62. package/lib/commonjs/components/KeyboardExtendedInput/KeyboardExtendedInput.js +49 -97
  63. package/lib/commonjs/components/KeyboardExtendedInput/KeyboardExtendedInput.js.map +1 -1
  64. package/lib/commonjs/components/KeyboardFocusGroup/KeyboardFocusGroup.android.js.map +1 -1
  65. package/lib/commonjs/components/KeyboardFocusGroup/KeyboardFocusGroup.ios.js.map +1 -1
  66. package/lib/commonjs/components/KeyboardFocusGroup/KeyboardFocusGroup.js.map +1 -1
  67. package/lib/commonjs/components/{KeyboardExtendedInput/KeyboardExtendedInput.types.js → KeyboardFocusGroup/KeyboardFocusGroup.types.js} +1 -1
  68. package/lib/commonjs/components/KeyboardFocusGroup/KeyboardFocusGroup.types.js.map +1 -0
  69. package/lib/commonjs/components/KeyboardFocusLock/FocusFrame/FocusFrame.android.js +2 -1
  70. package/lib/commonjs/components/KeyboardFocusLock/FocusFrame/FocusFrame.android.js.map +1 -1
  71. package/lib/commonjs/components/KeyboardFocusLock/FocusTrap/FocusTrap.android.js +2 -1
  72. package/lib/commonjs/components/KeyboardFocusLock/FocusTrap/FocusTrap.android.js.map +1 -1
  73. package/lib/commonjs/components/KeyboardFocusLock/KeyboardFocusLockBase/KeyboardFocusLockBase.js +2 -1
  74. package/lib/commonjs/components/KeyboardFocusLock/KeyboardFocusLockBase/KeyboardFocusLockBase.js.map +1 -1
  75. package/lib/commonjs/components/KeyboardFocusView/KeyboardFocusView.js +14 -51
  76. package/lib/commonjs/components/KeyboardFocusView/KeyboardFocusView.js.map +1 -1
  77. package/lib/commonjs/components/index.js +47 -0
  78. package/lib/commonjs/components/index.js.map +1 -1
  79. package/lib/commonjs/index.js +37 -19
  80. package/lib/commonjs/index.js.map +1 -1
  81. package/lib/commonjs/nativeSpec/ExternalKeyboardLockViewNativeComponent.ts +1 -3
  82. package/lib/commonjs/nativeSpec/ExternalKeyboardViewNativeComponent.ts +12 -9
  83. package/lib/commonjs/nativeSpec/KeyboardFocusGroupNativeComponent.ts +5 -3
  84. package/lib/commonjs/nativeSpec/TextInputFocusWrapperNativeComponent.ts +7 -3
  85. package/lib/commonjs/types/KeyboardFocusLock.types.js +13 -0
  86. package/lib/commonjs/types/KeyboardFocusLock.types.js.map +1 -1
  87. package/lib/commonjs/types/baseKeyboardView.types.js +6 -0
  88. package/lib/commonjs/types/baseKeyboardView.types.js.map +1 -0
  89. package/lib/commonjs/types/{FocusStyle.js → focus.types.js} +1 -1
  90. package/lib/commonjs/types/{FocusStyle.js.map → focus.types.js.map} +1 -1
  91. package/lib/commonjs/types/focusOrder.types.js +33 -0
  92. package/lib/commonjs/types/focusOrder.types.js.map +1 -0
  93. package/lib/commonjs/types/{WithKeyboardFocus.js → focusStyle.types.js} +1 -1
  94. package/lib/commonjs/types/{WithKeyboardFocus.js.map → focusStyle.types.js.map} +1 -1
  95. package/lib/commonjs/types/index.js +18 -0
  96. package/lib/commonjs/types/index.js.map +1 -1
  97. package/lib/commonjs/types/keyPress.types.js +6 -0
  98. package/lib/{module/types/WithKeyboardFocus.js.map → commonjs/types/keyPress.types.js.map} +1 -1
  99. package/lib/commonjs/types/keyboardInput.types.js +6 -0
  100. package/lib/commonjs/types/keyboardInput.types.js.map +1 -0
  101. package/lib/commonjs/types/withKeyboardFocus.types.js +6 -0
  102. package/lib/commonjs/types/withKeyboardFocus.types.js.map +1 -0
  103. package/lib/commonjs/utils/mapLockFocus.js +37 -0
  104. package/lib/commonjs/utils/mapLockFocus.js.map +1 -0
  105. package/lib/commonjs/utils/useFocusStyle.js +4 -21
  106. package/lib/commonjs/utils/useFocusStyle.js.map +1 -1
  107. package/lib/commonjs/utils/useKeyboardFocusContainer.js +79 -0
  108. package/lib/commonjs/utils/useKeyboardFocusContainer.js.map +1 -0
  109. package/lib/commonjs/utils/useKeyboardPress/useKeyboardPress.android.js +4 -7
  110. package/lib/commonjs/utils/useKeyboardPress/useKeyboardPress.android.js.map +1 -1
  111. package/lib/commonjs/utils/useKeyboardPress/useKeyboardPress.ios.js +3 -6
  112. package/lib/commonjs/utils/useKeyboardPress/useKeyboardPress.ios.js.map +1 -1
  113. package/lib/commonjs/utils/useKeyboardPress/useKeyboardPress.js +9 -7
  114. package/lib/commonjs/utils/useKeyboardPress/useKeyboardPress.js.map +1 -1
  115. package/lib/commonjs/utils/useKeyboardPressState.js +65 -0
  116. package/lib/commonjs/utils/useKeyboardPressState.js.map +1 -0
  117. package/lib/commonjs/utils/useOnFocusChange.js +1 -1
  118. package/lib/commonjs/utils/useOnFocusChange.js.map +1 -1
  119. package/lib/commonjs/utils/useOrderValidation.js +35 -0
  120. package/lib/commonjs/utils/useOrderValidation.js.map +1 -0
  121. package/lib/commonjs/utils/useRenderedChildren.js +34 -0
  122. package/lib/commonjs/utils/useRenderedChildren.js.map +1 -0
  123. package/lib/commonjs/utils/useWrappedOrderProps.js +35 -0
  124. package/lib/commonjs/utils/useWrappedOrderProps.js.map +1 -0
  125. package/lib/commonjs/utils/withKeyboardFocus.js +81 -96
  126. package/lib/commonjs/utils/withKeyboardFocus.js.map +1 -1
  127. package/lib/module/components/BaseKeyboardView/BaseKeyboardView.js +57 -55
  128. package/lib/module/components/BaseKeyboardView/BaseKeyboardView.js.map +1 -1
  129. package/lib/module/components/KeyboardExtendedInput/KeyboardExtendedInput.js +51 -99
  130. package/lib/module/components/KeyboardExtendedInput/KeyboardExtendedInput.js.map +1 -1
  131. package/lib/module/components/KeyboardFocusGroup/KeyboardFocusGroup.android.js.map +1 -1
  132. package/lib/module/components/KeyboardFocusGroup/KeyboardFocusGroup.ios.js.map +1 -1
  133. package/lib/module/components/KeyboardFocusGroup/KeyboardFocusGroup.js.map +1 -1
  134. package/lib/module/components/KeyboardFocusGroup/KeyboardFocusGroup.types.js +4 -0
  135. package/lib/module/components/KeyboardFocusGroup/KeyboardFocusGroup.types.js.map +1 -0
  136. package/lib/module/components/KeyboardFocusLock/FocusFrame/FocusFrame.android.js +2 -1
  137. package/lib/module/components/KeyboardFocusLock/FocusFrame/FocusFrame.android.js.map +1 -1
  138. package/lib/module/components/KeyboardFocusLock/FocusTrap/FocusTrap.android.js +2 -1
  139. package/lib/module/components/KeyboardFocusLock/FocusTrap/FocusTrap.android.js.map +1 -1
  140. package/lib/module/components/KeyboardFocusLock/KeyboardFocusLockBase/KeyboardFocusLockBase.js +2 -1
  141. package/lib/module/components/KeyboardFocusLock/KeyboardFocusLockBase/KeyboardFocusLockBase.js.map +1 -1
  142. package/lib/module/components/KeyboardFocusView/KeyboardFocusView.js +16 -53
  143. package/lib/module/components/KeyboardFocusView/KeyboardFocusView.js.map +1 -1
  144. package/lib/module/components/index.js +5 -0
  145. package/lib/module/components/index.js.map +1 -1
  146. package/lib/module/index.js +20 -7
  147. package/lib/module/index.js.map +1 -1
  148. package/lib/module/nativeSpec/ExternalKeyboardLockViewNativeComponent.ts +1 -3
  149. package/lib/module/nativeSpec/ExternalKeyboardViewNativeComponent.ts +12 -9
  150. package/lib/module/nativeSpec/KeyboardFocusGroupNativeComponent.ts +5 -3
  151. package/lib/module/nativeSpec/TextInputFocusWrapperNativeComponent.ts +7 -3
  152. package/lib/module/types/KeyboardFocusLock.types.js +12 -1
  153. package/lib/module/types/KeyboardFocusLock.types.js.map +1 -1
  154. package/lib/module/types/baseKeyboardView.types.js +4 -0
  155. package/lib/module/types/baseKeyboardView.types.js.map +1 -0
  156. package/lib/module/types/focus.types.js +4 -0
  157. package/lib/module/types/{FocusStyle.js.map → focus.types.js.map} +1 -1
  158. package/lib/module/types/focusOrder.types.js +31 -0
  159. package/lib/module/types/focusOrder.types.js.map +1 -0
  160. package/lib/module/types/focusStyle.types.js +4 -0
  161. package/lib/module/types/focusStyle.types.js.map +1 -0
  162. package/lib/module/types/index.js +3 -0
  163. package/lib/module/types/index.js.map +1 -1
  164. package/lib/module/types/keyPress.types.js +4 -0
  165. package/lib/module/types/keyPress.types.js.map +1 -0
  166. package/lib/module/types/keyboardInput.types.js +4 -0
  167. package/lib/module/types/keyboardInput.types.js.map +1 -0
  168. package/lib/module/types/withKeyboardFocus.types.js +4 -0
  169. package/lib/module/types/withKeyboardFocus.types.js.map +1 -0
  170. package/lib/module/utils/mapLockFocus.js +32 -0
  171. package/lib/module/utils/mapLockFocus.js.map +1 -0
  172. package/lib/module/utils/useFocusStyle.js +4 -21
  173. package/lib/module/utils/useFocusStyle.js.map +1 -1
  174. package/lib/module/utils/useKeyboardFocusContainer.js +74 -0
  175. package/lib/module/utils/useKeyboardFocusContainer.js.map +1 -0
  176. package/lib/module/utils/useKeyboardPress/useKeyboardPress.android.js +4 -7
  177. package/lib/module/utils/useKeyboardPress/useKeyboardPress.android.js.map +1 -1
  178. package/lib/module/utils/useKeyboardPress/useKeyboardPress.ios.js +3 -6
  179. package/lib/module/utils/useKeyboardPress/useKeyboardPress.ios.js.map +1 -1
  180. package/lib/module/utils/useKeyboardPress/useKeyboardPress.js +9 -7
  181. package/lib/module/utils/useKeyboardPress/useKeyboardPress.js.map +1 -1
  182. package/lib/module/utils/useKeyboardPressState.js +60 -0
  183. package/lib/module/utils/useKeyboardPressState.js.map +1 -0
  184. package/lib/module/utils/useOnFocusChange.js +1 -1
  185. package/lib/module/utils/useOnFocusChange.js.map +1 -1
  186. package/lib/module/utils/useOrderValidation.js +30 -0
  187. package/lib/module/utils/useOrderValidation.js.map +1 -0
  188. package/lib/module/utils/useRenderedChildren.js +29 -0
  189. package/lib/module/utils/useRenderedChildren.js.map +1 -0
  190. package/lib/module/utils/useWrappedOrderProps.js +30 -0
  191. package/lib/module/utils/useWrappedOrderProps.js.map +1 -0
  192. package/lib/module/utils/withKeyboardFocus.js +84 -99
  193. package/lib/module/utils/withKeyboardFocus.js.map +1 -1
  194. package/lib/typescript/src/components/BaseKeyboardView/BaseKeyboardView.d.ts +30 -10
  195. package/lib/typescript/src/components/BaseKeyboardView/BaseKeyboardView.d.ts.map +1 -1
  196. package/lib/typescript/src/components/KeyboardExtendedInput/KeyboardExtendedInput.d.ts +187 -12
  197. package/lib/typescript/src/components/KeyboardExtendedInput/KeyboardExtendedInput.d.ts.map +1 -1
  198. package/lib/typescript/src/components/KeyboardFocusGroup/KeyboardFocusGroup.android.d.ts +4 -146
  199. package/lib/typescript/src/components/KeyboardFocusGroup/KeyboardFocusGroup.android.d.ts.map +1 -1
  200. package/lib/typescript/src/components/KeyboardFocusGroup/KeyboardFocusGroup.d.ts +2 -12
  201. package/lib/typescript/src/components/KeyboardFocusGroup/KeyboardFocusGroup.d.ts.map +1 -1
  202. package/lib/typescript/src/components/KeyboardFocusGroup/KeyboardFocusGroup.ios.d.ts +4 -146
  203. package/lib/typescript/src/components/KeyboardFocusGroup/KeyboardFocusGroup.ios.d.ts.map +1 -1
  204. package/lib/typescript/src/components/KeyboardFocusGroup/KeyboardFocusGroup.types.d.ts +13 -0
  205. package/lib/typescript/src/components/KeyboardFocusGroup/KeyboardFocusGroup.types.d.ts.map +1 -0
  206. package/lib/typescript/src/components/KeyboardFocusLock/FocusFrame/FocusFrame.android.d.ts +1 -1
  207. package/lib/typescript/src/components/KeyboardFocusLock/FocusFrame/FocusFrame.android.d.ts.map +1 -1
  208. package/lib/typescript/src/components/KeyboardFocusLock/FocusTrap/FocusTrap.android.d.ts +1 -1
  209. package/lib/typescript/src/components/KeyboardFocusLock/FocusTrap/FocusTrap.android.d.ts.map +1 -1
  210. package/lib/typescript/src/components/KeyboardFocusLock/FocusTrap/FocusTrap.d.ts +1 -1
  211. package/lib/typescript/src/components/KeyboardFocusLock/FocusTrap/FocusTrap.d.ts.map +1 -1
  212. package/lib/typescript/src/components/KeyboardFocusLock/KeyboardFocusLockBase/KeyboardFocusLockBase.d.ts +1 -1
  213. package/lib/typescript/src/components/KeyboardFocusLock/KeyboardFocusLockBase/KeyboardFocusLockBase.d.ts.map +1 -1
  214. package/lib/typescript/src/components/KeyboardFocusView/KeyboardFocusView.d.ts +28 -18
  215. package/lib/typescript/src/components/KeyboardFocusView/KeyboardFocusView.d.ts.map +1 -1
  216. package/lib/typescript/src/components/Touchable/Pressable.d.ts +14 -14
  217. package/lib/typescript/src/components/Touchable/Pressable.d.ts.map +1 -1
  218. package/lib/typescript/src/components/index.d.ts +5 -0
  219. package/lib/typescript/src/components/index.d.ts.map +1 -1
  220. package/lib/typescript/src/index.d.ts +694 -9
  221. package/lib/typescript/src/index.d.ts.map +1 -1
  222. package/lib/typescript/src/nativeSpec/ExternalKeyboardLockViewNativeComponent.d.ts +2 -4
  223. package/lib/typescript/src/nativeSpec/ExternalKeyboardLockViewNativeComponent.d.ts.map +1 -1
  224. package/lib/typescript/src/nativeSpec/ExternalKeyboardViewNativeComponent.d.ts +6 -7
  225. package/lib/typescript/src/nativeSpec/ExternalKeyboardViewNativeComponent.d.ts.map +1 -1
  226. package/lib/typescript/src/nativeSpec/KeyboardFocusGroupNativeComponent.d.ts +2 -4
  227. package/lib/typescript/src/nativeSpec/KeyboardFocusGroupNativeComponent.d.ts.map +1 -1
  228. package/lib/typescript/src/nativeSpec/TextInputFocusWrapperNativeComponent.d.ts +4 -4
  229. package/lib/typescript/src/nativeSpec/TextInputFocusWrapperNativeComponent.d.ts.map +1 -1
  230. package/lib/typescript/src/types/KeyboardFocusLock.types.d.ts +15 -1
  231. package/lib/typescript/src/types/KeyboardFocusLock.types.d.ts.map +1 -1
  232. package/lib/typescript/src/types/KeyboardFocusView.types.d.ts +16 -14
  233. package/lib/typescript/src/types/KeyboardFocusView.types.d.ts.map +1 -1
  234. package/lib/typescript/src/types/baseKeyboardView.types.d.ts +119 -0
  235. package/lib/typescript/src/types/baseKeyboardView.types.d.ts.map +1 -0
  236. package/lib/typescript/src/types/focus.types.d.ts +35 -0
  237. package/lib/typescript/src/types/focus.types.d.ts.map +1 -0
  238. package/lib/typescript/src/types/focusOrder.types.d.ts +57 -0
  239. package/lib/typescript/src/types/focusOrder.types.d.ts.map +1 -0
  240. package/lib/typescript/src/types/focusStyle.types.d.ts +11 -0
  241. package/lib/typescript/src/types/focusStyle.types.d.ts.map +1 -0
  242. package/lib/typescript/src/types/index.d.ts +11 -2
  243. package/lib/typescript/src/types/index.d.ts.map +1 -1
  244. package/lib/typescript/src/types/keyPress.types.d.ts +7 -0
  245. package/lib/typescript/src/types/keyPress.types.d.ts.map +1 -0
  246. package/lib/typescript/src/types/keyboardInput.types.d.ts +53 -0
  247. package/lib/typescript/src/types/keyboardInput.types.d.ts.map +1 -0
  248. package/lib/typescript/src/types/withKeyboardFocus.types.d.ts +109 -0
  249. package/lib/typescript/src/types/withKeyboardFocus.types.d.ts.map +1 -0
  250. package/lib/typescript/src/utils/mapLockFocus.d.ts +3 -0
  251. package/lib/typescript/src/utils/mapLockFocus.d.ts.map +1 -0
  252. package/lib/typescript/src/utils/useFocusStyle.d.ts +26 -34
  253. package/lib/typescript/src/utils/useFocusStyle.d.ts.map +1 -1
  254. package/lib/typescript/src/utils/useKeyboardFocusContainer.d.ts +898 -0
  255. package/lib/typescript/src/utils/useKeyboardFocusContainer.d.ts.map +1 -0
  256. package/lib/typescript/src/utils/useKeyboardPress/useKeyboardPress.android.d.ts +2 -2
  257. package/lib/typescript/src/utils/useKeyboardPress/useKeyboardPress.android.d.ts.map +1 -1
  258. package/lib/typescript/src/utils/useKeyboardPress/useKeyboardPress.d.ts +4 -3
  259. package/lib/typescript/src/utils/useKeyboardPress/useKeyboardPress.d.ts.map +1 -1
  260. package/lib/typescript/src/utils/useKeyboardPress/useKeyboardPress.ios.d.ts +3 -3
  261. package/lib/typescript/src/utils/useKeyboardPress/useKeyboardPress.ios.d.ts.map +1 -1
  262. package/lib/typescript/src/utils/useKeyboardPress/useKeyboardPress.types.d.ts +1 -2
  263. package/lib/typescript/src/utils/useKeyboardPress/useKeyboardPress.types.d.ts.map +1 -1
  264. package/lib/typescript/src/utils/useKeyboardPressState.d.ts +29 -0
  265. package/lib/typescript/src/utils/useKeyboardPressState.d.ts.map +1 -0
  266. package/lib/typescript/src/utils/useOnFocusChange.d.ts +3 -3
  267. package/lib/typescript/src/utils/useOnFocusChange.d.ts.map +1 -1
  268. package/lib/typescript/src/utils/useOrderValidation.d.ts +8 -0
  269. package/lib/typescript/src/utils/useOrderValidation.d.ts.map +1 -0
  270. package/lib/typescript/src/utils/useRenderedChildren.d.ts +18 -0
  271. package/lib/typescript/src/utils/useRenderedChildren.d.ts.map +1 -0
  272. package/lib/typescript/src/utils/useWrappedOrderProps.d.ts +13 -0
  273. package/lib/typescript/src/utils/useWrappedOrderProps.d.ts.map +1 -0
  274. package/lib/typescript/src/utils/withKeyboardFocus.d.ts +3 -4
  275. package/lib/typescript/src/utils/withKeyboardFocus.d.ts.map +1 -1
  276. package/package.json +4 -2
  277. package/src/components/BaseKeyboardView/BaseKeyboardView.tsx +74 -94
  278. package/src/components/KeyboardExtendedInput/KeyboardExtendedInput.tsx +49 -149
  279. package/src/components/KeyboardFocusGroup/KeyboardFocusGroup.android.tsx +23 -32
  280. package/src/components/KeyboardFocusGroup/KeyboardFocusGroup.ios.tsx +32 -41
  281. package/src/components/KeyboardFocusGroup/KeyboardFocusGroup.tsx +3 -14
  282. package/src/components/KeyboardFocusGroup/KeyboardFocusGroup.types.ts +15 -0
  283. package/src/components/KeyboardFocusLock/FocusFrame/FocusFrame.android.tsx +2 -2
  284. package/src/components/KeyboardFocusLock/FocusTrap/FocusTrap.android.tsx +2 -2
  285. package/src/components/KeyboardFocusLock/FocusTrap/FocusTrap.tsx +1 -1
  286. package/src/components/KeyboardFocusLock/KeyboardFocusLockBase/KeyboardFocusLockBase.tsx +2 -2
  287. package/src/components/KeyboardFocusView/KeyboardFocusView.tsx +29 -68
  288. package/src/components/Touchable/Pressable.tsx +2 -2
  289. package/src/components/index.ts +12 -0
  290. package/src/index.tsx +44 -32
  291. package/src/nativeSpec/ExternalKeyboardLockViewNativeComponent.ts +1 -3
  292. package/src/nativeSpec/ExternalKeyboardViewNativeComponent.ts +12 -9
  293. package/src/nativeSpec/KeyboardFocusGroupNativeComponent.ts +5 -3
  294. package/src/nativeSpec/TextInputFocusWrapperNativeComponent.ts +7 -3
  295. package/src/types/KeyboardFocusLock.types.ts +16 -1
  296. package/src/types/KeyboardFocusView.types.ts +17 -18
  297. package/src/types/baseKeyboardView.types.ts +122 -0
  298. package/src/types/focus.types.ts +40 -0
  299. package/src/types/focusOrder.types.ts +59 -0
  300. package/src/types/{FocusStyle.ts → focusStyle.types.ts} +5 -0
  301. package/src/types/index.ts +32 -2
  302. package/src/types/keyPress.types.ts +8 -0
  303. package/src/types/keyboardInput.types.ts +81 -0
  304. package/src/types/withKeyboardFocus.types.ts +178 -0
  305. package/src/utils/mapLockFocus.ts +31 -0
  306. package/src/utils/useFocusStyle.tsx +13 -41
  307. package/src/utils/useKeyboardFocusContainer.ts +102 -0
  308. package/src/utils/useKeyboardPress/useKeyboardPress.android.ts +4 -7
  309. package/src/utils/useKeyboardPress/useKeyboardPress.ios.ts +3 -6
  310. package/src/utils/useKeyboardPress/useKeyboardPress.ts +9 -7
  311. package/src/utils/useKeyboardPress/useKeyboardPress.types.ts +1 -2
  312. package/src/utils/useKeyboardPressState.ts +81 -0
  313. package/src/utils/useOnFocusChange.ts +4 -7
  314. package/src/utils/useOrderValidation.ts +74 -0
  315. package/src/utils/useRenderedChildren.ts +42 -0
  316. package/src/utils/useWrappedOrderProps.ts +48 -0
  317. package/src/utils/withKeyboardFocus.tsx +105 -125
  318. package/lib/commonjs/components/KeyboardExtendedInput/KeyboardExtendedInput.types.js.map +0 -1
  319. package/lib/commonjs/components/KeyboardFocusView/hooks/index.js +0 -13
  320. package/lib/commonjs/components/KeyboardFocusView/hooks/index.js.map +0 -1
  321. package/lib/commonjs/components/KeyboardFocusView/hooks/useFocusStyle/index.js +0 -13
  322. package/lib/commonjs/components/KeyboardFocusView/hooks/useFocusStyle/index.js.map +0 -1
  323. package/lib/commonjs/components/KeyboardFocusView/hooks/useFocusStyle/useFocusStyle.js +0 -33
  324. package/lib/commonjs/components/KeyboardFocusView/hooks/useFocusStyle/useFocusStyle.js.map +0 -1
  325. package/lib/commonjs/components/KeyboardFocusView/hooks/useFocusStyle/useTintStyle.js +0 -39
  326. package/lib/commonjs/components/KeyboardFocusView/hooks/useFocusStyle/useTintStyle.js.map +0 -1
  327. package/lib/commonjs/components/RenderPropComponent/RenderPropComponent.js +0 -23
  328. package/lib/commonjs/components/RenderPropComponent/RenderPropComponent.js.map +0 -1
  329. package/lib/commonjs/types/BaseKeyboardView.js +0 -18
  330. package/lib/commonjs/types/BaseKeyboardView.js.map +0 -1
  331. package/lib/module/components/KeyboardExtendedInput/KeyboardExtendedInput.types.js +0 -4
  332. package/lib/module/components/KeyboardExtendedInput/KeyboardExtendedInput.types.js.map +0 -1
  333. package/lib/module/components/KeyboardFocusView/hooks/index.js +0 -4
  334. package/lib/module/components/KeyboardFocusView/hooks/index.js.map +0 -1
  335. package/lib/module/components/KeyboardFocusView/hooks/useFocusStyle/index.js +0 -4
  336. package/lib/module/components/KeyboardFocusView/hooks/useFocusStyle/index.js.map +0 -1
  337. package/lib/module/components/KeyboardFocusView/hooks/useFocusStyle/useFocusStyle.js +0 -28
  338. package/lib/module/components/KeyboardFocusView/hooks/useFocusStyle/useFocusStyle.js.map +0 -1
  339. package/lib/module/components/KeyboardFocusView/hooks/useFocusStyle/useTintStyle.js +0 -34
  340. package/lib/module/components/KeyboardFocusView/hooks/useFocusStyle/useTintStyle.js.map +0 -1
  341. package/lib/module/components/RenderPropComponent/RenderPropComponent.js +0 -17
  342. package/lib/module/components/RenderPropComponent/RenderPropComponent.js.map +0 -1
  343. package/lib/module/types/BaseKeyboardView.js +0 -14
  344. package/lib/module/types/BaseKeyboardView.js.map +0 -1
  345. package/lib/module/types/FocusStyle.js +0 -4
  346. package/lib/module/types/WithKeyboardFocus.js +0 -4
  347. package/lib/typescript/src/components/KeyboardExtendedInput/KeyboardExtendedInput.types.d.ts +0 -45
  348. package/lib/typescript/src/components/KeyboardExtendedInput/KeyboardExtendedInput.types.d.ts.map +0 -1
  349. package/lib/typescript/src/components/KeyboardFocusView/hooks/index.d.ts +0 -2
  350. package/lib/typescript/src/components/KeyboardFocusView/hooks/index.d.ts.map +0 -1
  351. package/lib/typescript/src/components/KeyboardFocusView/hooks/useFocusStyle/index.d.ts +0 -2
  352. package/lib/typescript/src/components/KeyboardFocusView/hooks/useFocusStyle/index.d.ts.map +0 -1
  353. package/lib/typescript/src/components/KeyboardFocusView/hooks/useFocusStyle/useFocusStyle.d.ts +0 -175
  354. package/lib/typescript/src/components/KeyboardFocusView/hooks/useFocusStyle/useFocusStyle.d.ts.map +0 -1
  355. package/lib/typescript/src/components/KeyboardFocusView/hooks/useFocusStyle/useTintStyle.d.ts +0 -181
  356. package/lib/typescript/src/components/KeyboardFocusView/hooks/useFocusStyle/useTintStyle.d.ts.map +0 -1
  357. package/lib/typescript/src/components/RenderPropComponent/RenderPropComponent.d.ts +0 -6
  358. package/lib/typescript/src/components/RenderPropComponent/RenderPropComponent.d.ts.map +0 -1
  359. package/lib/typescript/src/types/BaseKeyboardView.d.ts +0 -70
  360. package/lib/typescript/src/types/BaseKeyboardView.d.ts.map +0 -1
  361. package/lib/typescript/src/types/FocusStyle.d.ts +0 -6
  362. package/lib/typescript/src/types/FocusStyle.d.ts.map +0 -1
  363. package/lib/typescript/src/types/WithKeyboardFocus.d.ts +0 -47
  364. package/lib/typescript/src/types/WithKeyboardFocus.d.ts.map +0 -1
  365. package/src/components/KeyboardExtendedInput/KeyboardExtendedInput.types.ts +0 -73
  366. package/src/components/KeyboardFocusView/hooks/index.ts +0 -1
  367. package/src/components/KeyboardFocusView/hooks/useFocusStyle/index.ts +0 -1
  368. package/src/components/KeyboardFocusView/hooks/useFocusStyle/useFocusStyle.ts +0 -34
  369. package/src/components/KeyboardFocusView/hooks/useFocusStyle/useTintStyle.ts +0 -41
  370. package/src/components/RenderPropComponent/RenderPropComponent.tsx +0 -18
  371. package/src/types/BaseKeyboardView.ts +0 -74
  372. package/src/types/WithKeyboardFocus.ts +0 -115
@@ -0,0 +1,898 @@
1
+ import type { PressableProps } from 'react-native';
2
+ import type { FocusStyle, OnKeyPressFn } from '../types';
3
+ type AnyPressHandler = (event?: any) => void;
4
+ export type UseKeyboardFocusContainerProps<TPress extends AnyPressHandler = AnyPressHandler, TKeyOnlyPress extends AnyPressHandler = AnyPressHandler> = {
5
+ focusStyle?: FocusStyle;
6
+ containerFocusStyle?: FocusStyle;
7
+ onFocusChange?: (isFocused: boolean) => void;
8
+ style?: PressableProps['style'];
9
+ pressedStyleSignature?: boolean;
10
+ onKeyUpPress?: OnKeyPressFn;
11
+ onKeyDownPress?: OnKeyPressFn;
12
+ onPress?: TPress;
13
+ onLongPress?: TPress;
14
+ onPressIn?: TKeyOnlyPress;
15
+ onPressOut?: TKeyOnlyPress;
16
+ triggerCodes?: number[];
17
+ androidKeyboardPressState?: boolean;
18
+ };
19
+ export declare const useKeyboardFocusContainer: <TPress extends AnyPressHandler = AnyPressHandler, TKeyOnlyPress extends AnyPressHandler = AnyPressHandler>({ focusStyle, containerFocusStyle, onFocusChange, style, pressedStyleSignature, onKeyUpPress, onKeyDownPress, onPress, onLongPress, onPressIn, onPressOut, triggerCodes, androidKeyboardPressState, }: UseKeyboardFocusContainerProps<TPress, TKeyOnlyPress>) => {
20
+ focused: boolean;
21
+ keyboardPressed: boolean;
22
+ containerFocusedStyle: import("react-native").StyleProp<Readonly<Omit<Readonly<Omit<Readonly<{
23
+ display?: "none" | "flex" | "contents";
24
+ width?: import("react-native").DimensionValue;
25
+ height?: import("react-native").DimensionValue;
26
+ bottom?: import("react-native").DimensionValue;
27
+ end?: import("react-native").DimensionValue;
28
+ left?: import("react-native").DimensionValue;
29
+ right?: import("react-native").DimensionValue;
30
+ start?: import("react-native").DimensionValue;
31
+ top?: import("react-native").DimensionValue;
32
+ inset?: import("react-native").DimensionValue;
33
+ insetBlock?: import("react-native").DimensionValue;
34
+ insetBlockEnd?: import("react-native").DimensionValue;
35
+ insetBlockStart?: import("react-native").DimensionValue;
36
+ insetInline?: import("react-native").DimensionValue;
37
+ insetInlineEnd?: import("react-native").DimensionValue;
38
+ insetInlineStart?: import("react-native").DimensionValue;
39
+ minWidth?: import("react-native").DimensionValue;
40
+ maxWidth?: import("react-native").DimensionValue;
41
+ minHeight?: import("react-native").DimensionValue;
42
+ maxHeight?: import("react-native").DimensionValue;
43
+ margin?: import("react-native").DimensionValue;
44
+ marginBlock?: import("react-native").DimensionValue;
45
+ marginBlockEnd?: import("react-native").DimensionValue;
46
+ marginBlockStart?: import("react-native").DimensionValue;
47
+ marginBottom?: import("react-native").DimensionValue;
48
+ marginEnd?: import("react-native").DimensionValue;
49
+ marginHorizontal?: import("react-native").DimensionValue;
50
+ marginInline?: import("react-native").DimensionValue;
51
+ marginInlineEnd?: import("react-native").DimensionValue;
52
+ marginInlineStart?: import("react-native").DimensionValue;
53
+ marginLeft?: import("react-native").DimensionValue;
54
+ marginRight?: import("react-native").DimensionValue;
55
+ marginStart?: import("react-native").DimensionValue;
56
+ marginTop?: import("react-native").DimensionValue;
57
+ marginVertical?: import("react-native").DimensionValue;
58
+ padding?: import("react-native").DimensionValue;
59
+ paddingBlock?: import("react-native").DimensionValue;
60
+ paddingBlockEnd?: import("react-native").DimensionValue;
61
+ paddingBlockStart?: import("react-native").DimensionValue;
62
+ paddingBottom?: import("react-native").DimensionValue;
63
+ paddingEnd?: import("react-native").DimensionValue;
64
+ paddingHorizontal?: import("react-native").DimensionValue;
65
+ paddingInline?: import("react-native").DimensionValue;
66
+ paddingInlineEnd?: import("react-native").DimensionValue;
67
+ paddingInlineStart?: import("react-native").DimensionValue;
68
+ paddingLeft?: import("react-native").DimensionValue;
69
+ paddingRight?: import("react-native").DimensionValue;
70
+ paddingStart?: import("react-native").DimensionValue;
71
+ paddingTop?: import("react-native").DimensionValue;
72
+ paddingVertical?: import("react-native").DimensionValue;
73
+ borderWidth?: number;
74
+ borderBottomWidth?: number;
75
+ borderEndWidth?: number;
76
+ borderLeftWidth?: number;
77
+ borderRightWidth?: number;
78
+ borderStartWidth?: number;
79
+ borderTopWidth?: number;
80
+ position?: "absolute" | "relative" | "static";
81
+ flexDirection?: "row" | "row-reverse" | "column" | "column-reverse";
82
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse";
83
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
84
+ alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
85
+ alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
86
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
87
+ overflow?: "visible" | "hidden" | "scroll";
88
+ flex?: number;
89
+ flexGrow?: number;
90
+ flexShrink?: number;
91
+ flexBasis?: number | string;
92
+ aspectRatio?: number | string;
93
+ boxSizing?: "border-box" | "content-box";
94
+ zIndex?: number;
95
+ direction?: "inherit" | "ltr" | "rtl";
96
+ rowGap?: number | string;
97
+ columnGap?: number | string;
98
+ gap?: number | string;
99
+ }>, "pointerEvents" | "filter" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<Omit<Readonly<{
100
+ shadowColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
101
+ shadowOffset?: Readonly<{
102
+ width?: number;
103
+ height?: number;
104
+ }>;
105
+ shadowOpacity?: number;
106
+ shadowRadius?: number;
107
+ }>, never> & Omit<Readonly<{}>, never>>, "pointerEvents" | "filter" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
108
+ transform?: ReadonlyArray<Readonly<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MaximumOneOf<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MergeUnion<{
109
+ readonly perspective: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
110
+ } | {
111
+ readonly rotate: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
112
+ } | {
113
+ readonly rotateX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
114
+ } | {
115
+ readonly rotateY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
116
+ } | {
117
+ readonly rotateZ: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
118
+ } | {
119
+ readonly scale: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
120
+ } | {
121
+ readonly scaleX: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
122
+ } | {
123
+ readonly scaleY: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
124
+ } | {
125
+ readonly translateX: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
126
+ } | {
127
+ readonly translateY: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
128
+ } | {
129
+ readonly translate: [number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node, number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node] | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
130
+ } | {
131
+ readonly skewX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
132
+ } | {
133
+ readonly skewY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
134
+ } | {
135
+ readonly matrix: ReadonlyArray<number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node> | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
136
+ }>>>> | string;
137
+ transformOrigin?: [string | number, string | number, string | number] | string;
138
+ }>, "pointerEvents" | "filter" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
139
+ backfaceVisibility?: "visible" | "hidden";
140
+ backgroundColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
141
+ borderColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
142
+ borderCurve?: "circular" | "continuous";
143
+ borderBottomColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
144
+ borderEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
145
+ borderLeftColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
146
+ borderRightColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
147
+ borderStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
148
+ borderTopColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
149
+ borderBlockColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
150
+ borderBlockEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
151
+ borderBlockStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
152
+ borderRadius?: number | string;
153
+ borderBottomEndRadius?: number | string;
154
+ borderBottomLeftRadius?: number | string;
155
+ borderBottomRightRadius?: number | string;
156
+ borderBottomStartRadius?: number | string;
157
+ borderEndEndRadius?: number | string;
158
+ borderEndStartRadius?: number | string;
159
+ borderStartEndRadius?: number | string;
160
+ borderStartStartRadius?: number | string;
161
+ borderTopEndRadius?: number | string;
162
+ borderTopLeftRadius?: number | string;
163
+ borderTopRightRadius?: number | string;
164
+ borderTopStartRadius?: number | string;
165
+ borderStyle?: "solid" | "dotted" | "dashed";
166
+ borderWidth?: number;
167
+ borderBottomWidth?: number;
168
+ borderEndWidth?: number;
169
+ borderLeftWidth?: number;
170
+ borderRightWidth?: number;
171
+ borderStartWidth?: number;
172
+ borderTopWidth?: number;
173
+ opacity?: number;
174
+ outlineColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
175
+ outlineOffset?: number;
176
+ outlineStyle?: "solid" | "dotted" | "dashed";
177
+ outlineWidth?: number;
178
+ elevation?: number;
179
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only";
180
+ cursor?: import("react-native").CursorValue;
181
+ boxShadow?: ReadonlyArray<import("react-native").BoxShadowValue> | string;
182
+ filter?: ReadonlyArray<import("react-native").FilterFunction> | string;
183
+ mixBlendMode?: "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity";
184
+ experimental_backgroundImage?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundImageValue> | string;
185
+ experimental_backgroundSize?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundSizeValue> | string;
186
+ experimental_backgroundPosition?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundPositionValue> | string;
187
+ experimental_backgroundRepeat?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundRepeatValue> | string;
188
+ isolation?: "auto" | "isolate";
189
+ }>, never>>, never> & Omit<Readonly<{}>, never>>>;
190
+ componentStyleViewStyle: (({ pressed }: {
191
+ pressed: boolean;
192
+ }) => (false | void | "" | Readonly<Omit<Readonly<Omit<Readonly<{
193
+ display?: "none" | "flex" | "contents";
194
+ width?: import("react-native").DimensionValue;
195
+ height?: import("react-native").DimensionValue;
196
+ bottom?: import("react-native").DimensionValue;
197
+ end?: import("react-native").DimensionValue;
198
+ left?: import("react-native").DimensionValue;
199
+ right?: import("react-native").DimensionValue;
200
+ start?: import("react-native").DimensionValue;
201
+ top?: import("react-native").DimensionValue;
202
+ inset?: import("react-native").DimensionValue;
203
+ insetBlock?: import("react-native").DimensionValue;
204
+ insetBlockEnd?: import("react-native").DimensionValue;
205
+ insetBlockStart?: import("react-native").DimensionValue;
206
+ insetInline?: import("react-native").DimensionValue;
207
+ insetInlineEnd?: import("react-native").DimensionValue;
208
+ insetInlineStart?: import("react-native").DimensionValue;
209
+ minWidth?: import("react-native").DimensionValue;
210
+ maxWidth?: import("react-native").DimensionValue;
211
+ minHeight?: import("react-native").DimensionValue;
212
+ maxHeight?: import("react-native").DimensionValue;
213
+ margin?: import("react-native").DimensionValue;
214
+ marginBlock?: import("react-native").DimensionValue;
215
+ marginBlockEnd?: import("react-native").DimensionValue;
216
+ marginBlockStart?: import("react-native").DimensionValue;
217
+ marginBottom?: import("react-native").DimensionValue;
218
+ marginEnd?: import("react-native").DimensionValue;
219
+ marginHorizontal?: import("react-native").DimensionValue;
220
+ marginInline?: import("react-native").DimensionValue;
221
+ marginInlineEnd?: import("react-native").DimensionValue;
222
+ marginInlineStart?: import("react-native").DimensionValue;
223
+ marginLeft?: import("react-native").DimensionValue;
224
+ marginRight?: import("react-native").DimensionValue;
225
+ marginStart?: import("react-native").DimensionValue;
226
+ marginTop?: import("react-native").DimensionValue;
227
+ marginVertical?: import("react-native").DimensionValue;
228
+ padding?: import("react-native").DimensionValue;
229
+ paddingBlock?: import("react-native").DimensionValue;
230
+ paddingBlockEnd?: import("react-native").DimensionValue;
231
+ paddingBlockStart?: import("react-native").DimensionValue;
232
+ paddingBottom?: import("react-native").DimensionValue;
233
+ paddingEnd?: import("react-native").DimensionValue;
234
+ paddingHorizontal?: import("react-native").DimensionValue;
235
+ paddingInline?: import("react-native").DimensionValue;
236
+ paddingInlineEnd?: import("react-native").DimensionValue;
237
+ paddingInlineStart?: import("react-native").DimensionValue;
238
+ paddingLeft?: import("react-native").DimensionValue;
239
+ paddingRight?: import("react-native").DimensionValue;
240
+ paddingStart?: import("react-native").DimensionValue;
241
+ paddingTop?: import("react-native").DimensionValue;
242
+ paddingVertical?: import("react-native").DimensionValue;
243
+ borderWidth?: number;
244
+ borderBottomWidth?: number;
245
+ borderEndWidth?: number;
246
+ borderLeftWidth?: number;
247
+ borderRightWidth?: number;
248
+ borderStartWidth?: number;
249
+ borderTopWidth?: number;
250
+ position?: "absolute" | "relative" | "static";
251
+ flexDirection?: "row" | "row-reverse" | "column" | "column-reverse";
252
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse";
253
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
254
+ alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
255
+ alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
256
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
257
+ overflow?: "visible" | "hidden" | "scroll";
258
+ flex?: number;
259
+ flexGrow?: number;
260
+ flexShrink?: number;
261
+ flexBasis?: number | string;
262
+ aspectRatio?: number | string;
263
+ boxSizing?: "border-box" | "content-box";
264
+ zIndex?: number;
265
+ direction?: "inherit" | "ltr" | "rtl";
266
+ rowGap?: number | string;
267
+ columnGap?: number | string;
268
+ gap?: number | string;
269
+ }>, "pointerEvents" | "filter" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<Omit<Readonly<{
270
+ shadowColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
271
+ shadowOffset?: Readonly<{
272
+ width?: number;
273
+ height?: number;
274
+ }>;
275
+ shadowOpacity?: number;
276
+ shadowRadius?: number;
277
+ }>, never> & Omit<Readonly<{}>, never>>, "pointerEvents" | "filter" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
278
+ transform?: ReadonlyArray<Readonly<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MaximumOneOf<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MergeUnion<{
279
+ readonly perspective: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
280
+ } | {
281
+ readonly rotate: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
282
+ } | {
283
+ readonly rotateX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
284
+ } | {
285
+ readonly rotateY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
286
+ } | {
287
+ readonly rotateZ: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
288
+ } | {
289
+ readonly scale: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
290
+ } | {
291
+ readonly scaleX: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
292
+ } | {
293
+ readonly scaleY: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
294
+ } | {
295
+ readonly translateX: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
296
+ } | {
297
+ readonly translateY: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
298
+ } | {
299
+ readonly translate: [number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node, number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node] | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
300
+ } | {
301
+ readonly skewX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
302
+ } | {
303
+ readonly skewY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
304
+ } | {
305
+ readonly matrix: ReadonlyArray<number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node> | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
306
+ }>>>> | string;
307
+ transformOrigin?: [string | number, string | number, string | number] | string;
308
+ }>, "pointerEvents" | "filter" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
309
+ backfaceVisibility?: "visible" | "hidden";
310
+ backgroundColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
311
+ borderColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
312
+ borderCurve?: "circular" | "continuous";
313
+ borderBottomColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
314
+ borderEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
315
+ borderLeftColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
316
+ borderRightColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
317
+ borderStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
318
+ borderTopColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
319
+ borderBlockColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
320
+ borderBlockEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
321
+ borderBlockStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
322
+ borderRadius?: number | string;
323
+ borderBottomEndRadius?: number | string;
324
+ borderBottomLeftRadius?: number | string;
325
+ borderBottomRightRadius?: number | string;
326
+ borderBottomStartRadius?: number | string;
327
+ borderEndEndRadius?: number | string;
328
+ borderEndStartRadius?: number | string;
329
+ borderStartEndRadius?: number | string;
330
+ borderStartStartRadius?: number | string;
331
+ borderTopEndRadius?: number | string;
332
+ borderTopLeftRadius?: number | string;
333
+ borderTopRightRadius?: number | string;
334
+ borderTopStartRadius?: number | string;
335
+ borderStyle?: "solid" | "dotted" | "dashed";
336
+ borderWidth?: number;
337
+ borderBottomWidth?: number;
338
+ borderEndWidth?: number;
339
+ borderLeftWidth?: number;
340
+ borderRightWidth?: number;
341
+ borderStartWidth?: number;
342
+ borderTopWidth?: number;
343
+ opacity?: number;
344
+ outlineColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
345
+ outlineOffset?: number;
346
+ outlineStyle?: "solid" | "dotted" | "dashed";
347
+ outlineWidth?: number;
348
+ elevation?: number;
349
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only";
350
+ cursor?: import("react-native").CursorValue;
351
+ boxShadow?: ReadonlyArray<import("react-native").BoxShadowValue> | string;
352
+ filter?: ReadonlyArray<import("react-native").FilterFunction> | string;
353
+ mixBlendMode?: "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity";
354
+ experimental_backgroundImage?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundImageValue> | string;
355
+ experimental_backgroundSize?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundSizeValue> | string;
356
+ experimental_backgroundPosition?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundPositionValue> | string;
357
+ experimental_backgroundRepeat?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundRepeatValue> | string;
358
+ isolation?: "auto" | "isolate";
359
+ }>, never>>, never> & Omit<Readonly<{}>, never>> | readonly import("react-native").StyleProp<Readonly<Omit<Readonly<Omit<Readonly<{
360
+ display?: "none" | "flex" | "contents";
361
+ width?: import("react-native").DimensionValue;
362
+ height?: import("react-native").DimensionValue;
363
+ bottom?: import("react-native").DimensionValue;
364
+ end?: import("react-native").DimensionValue;
365
+ left?: import("react-native").DimensionValue;
366
+ right?: import("react-native").DimensionValue;
367
+ start?: import("react-native").DimensionValue;
368
+ top?: import("react-native").DimensionValue;
369
+ inset?: import("react-native").DimensionValue;
370
+ insetBlock?: import("react-native").DimensionValue;
371
+ insetBlockEnd?: import("react-native").DimensionValue;
372
+ insetBlockStart?: import("react-native").DimensionValue;
373
+ insetInline?: import("react-native").DimensionValue;
374
+ insetInlineEnd?: import("react-native").DimensionValue;
375
+ insetInlineStart?: import("react-native").DimensionValue;
376
+ minWidth?: import("react-native").DimensionValue;
377
+ maxWidth?: import("react-native").DimensionValue;
378
+ minHeight?: import("react-native").DimensionValue;
379
+ maxHeight?: import("react-native").DimensionValue;
380
+ margin?: import("react-native").DimensionValue;
381
+ marginBlock?: import("react-native").DimensionValue;
382
+ marginBlockEnd?: import("react-native").DimensionValue;
383
+ marginBlockStart?: import("react-native").DimensionValue;
384
+ marginBottom?: import("react-native").DimensionValue;
385
+ marginEnd?: import("react-native").DimensionValue;
386
+ marginHorizontal?: import("react-native").DimensionValue;
387
+ marginInline?: import("react-native").DimensionValue;
388
+ marginInlineEnd?: import("react-native").DimensionValue;
389
+ marginInlineStart?: import("react-native").DimensionValue;
390
+ marginLeft?: import("react-native").DimensionValue;
391
+ marginRight?: import("react-native").DimensionValue;
392
+ marginStart?: import("react-native").DimensionValue;
393
+ marginTop?: import("react-native").DimensionValue;
394
+ marginVertical?: import("react-native").DimensionValue;
395
+ padding?: import("react-native").DimensionValue;
396
+ paddingBlock?: import("react-native").DimensionValue;
397
+ paddingBlockEnd?: import("react-native").DimensionValue;
398
+ paddingBlockStart?: import("react-native").DimensionValue;
399
+ paddingBottom?: import("react-native").DimensionValue;
400
+ paddingEnd?: import("react-native").DimensionValue;
401
+ paddingHorizontal?: import("react-native").DimensionValue;
402
+ paddingInline?: import("react-native").DimensionValue;
403
+ paddingInlineEnd?: import("react-native").DimensionValue;
404
+ paddingInlineStart?: import("react-native").DimensionValue;
405
+ paddingLeft?: import("react-native").DimensionValue;
406
+ paddingRight?: import("react-native").DimensionValue;
407
+ paddingStart?: import("react-native").DimensionValue;
408
+ paddingTop?: import("react-native").DimensionValue;
409
+ paddingVertical?: import("react-native").DimensionValue;
410
+ borderWidth?: number;
411
+ borderBottomWidth?: number;
412
+ borderEndWidth?: number;
413
+ borderLeftWidth?: number;
414
+ borderRightWidth?: number;
415
+ borderStartWidth?: number;
416
+ borderTopWidth?: number;
417
+ position?: "absolute" | "relative" | "static";
418
+ flexDirection?: "row" | "row-reverse" | "column" | "column-reverse";
419
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse";
420
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
421
+ alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
422
+ alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
423
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
424
+ overflow?: "visible" | "hidden" | "scroll";
425
+ flex?: number;
426
+ flexGrow?: number;
427
+ flexShrink?: number;
428
+ flexBasis?: number | string;
429
+ aspectRatio?: number | string;
430
+ boxSizing?: "border-box" | "content-box";
431
+ zIndex?: number;
432
+ direction?: "inherit" | "ltr" | "rtl";
433
+ rowGap?: number | string;
434
+ columnGap?: number | string;
435
+ gap?: number | string;
436
+ }>, "pointerEvents" | "filter" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<Omit<Readonly<{
437
+ shadowColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
438
+ shadowOffset?: Readonly<{
439
+ width?: number;
440
+ height?: number;
441
+ }>;
442
+ shadowOpacity?: number;
443
+ shadowRadius?: number;
444
+ }>, never> & Omit<Readonly<{}>, never>>, "pointerEvents" | "filter" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
445
+ transform?: ReadonlyArray<Readonly<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MaximumOneOf<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MergeUnion<{
446
+ readonly perspective: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
447
+ } | {
448
+ readonly rotate: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
449
+ } | {
450
+ readonly rotateX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
451
+ } | {
452
+ readonly rotateY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
453
+ } | {
454
+ readonly rotateZ: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
455
+ } | {
456
+ readonly scale: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
457
+ } | {
458
+ readonly scaleX: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
459
+ } | {
460
+ readonly scaleY: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
461
+ } | {
462
+ readonly translateX: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
463
+ } | {
464
+ readonly translateY: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
465
+ } | {
466
+ readonly translate: [number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node, number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node] | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
467
+ } | {
468
+ readonly skewX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
469
+ } | {
470
+ readonly skewY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
471
+ } | {
472
+ readonly matrix: ReadonlyArray<number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node> | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
473
+ }>>>> | string;
474
+ transformOrigin?: [string | number, string | number, string | number] | string;
475
+ }>, "pointerEvents" | "filter" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
476
+ backfaceVisibility?: "visible" | "hidden";
477
+ backgroundColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
478
+ borderColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
479
+ borderCurve?: "circular" | "continuous";
480
+ borderBottomColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
481
+ borderEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
482
+ borderLeftColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
483
+ borderRightColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
484
+ borderStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
485
+ borderTopColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
486
+ borderBlockColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
487
+ borderBlockEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
488
+ borderBlockStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
489
+ borderRadius?: number | string;
490
+ borderBottomEndRadius?: number | string;
491
+ borderBottomLeftRadius?: number | string;
492
+ borderBottomRightRadius?: number | string;
493
+ borderBottomStartRadius?: number | string;
494
+ borderEndEndRadius?: number | string;
495
+ borderEndStartRadius?: number | string;
496
+ borderStartEndRadius?: number | string;
497
+ borderStartStartRadius?: number | string;
498
+ borderTopEndRadius?: number | string;
499
+ borderTopLeftRadius?: number | string;
500
+ borderTopRightRadius?: number | string;
501
+ borderTopStartRadius?: number | string;
502
+ borderStyle?: "solid" | "dotted" | "dashed";
503
+ borderWidth?: number;
504
+ borderBottomWidth?: number;
505
+ borderEndWidth?: number;
506
+ borderLeftWidth?: number;
507
+ borderRightWidth?: number;
508
+ borderStartWidth?: number;
509
+ borderTopWidth?: number;
510
+ opacity?: number;
511
+ outlineColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
512
+ outlineOffset?: number;
513
+ outlineStyle?: "solid" | "dotted" | "dashed";
514
+ outlineWidth?: number;
515
+ elevation?: number;
516
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only";
517
+ cursor?: import("react-native").CursorValue;
518
+ boxShadow?: ReadonlyArray<import("react-native").BoxShadowValue> | string;
519
+ filter?: ReadonlyArray<import("react-native").FilterFunction> | string;
520
+ mixBlendMode?: "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity";
521
+ experimental_backgroundImage?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundImageValue> | string;
522
+ experimental_backgroundSize?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundSizeValue> | string;
523
+ experimental_backgroundPosition?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundPositionValue> | string;
524
+ experimental_backgroundRepeat?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundRepeatValue> | string;
525
+ isolation?: "auto" | "isolate";
526
+ }>, never>>, never> & Omit<Readonly<{}>, never>>>[] | null)[]) | (false | void | "" | Readonly<Omit<Readonly<Omit<Readonly<{
527
+ display?: "none" | "flex" | "contents";
528
+ width?: import("react-native").DimensionValue;
529
+ height?: import("react-native").DimensionValue;
530
+ bottom?: import("react-native").DimensionValue;
531
+ end?: import("react-native").DimensionValue;
532
+ left?: import("react-native").DimensionValue;
533
+ right?: import("react-native").DimensionValue;
534
+ start?: import("react-native").DimensionValue;
535
+ top?: import("react-native").DimensionValue;
536
+ inset?: import("react-native").DimensionValue;
537
+ insetBlock?: import("react-native").DimensionValue;
538
+ insetBlockEnd?: import("react-native").DimensionValue;
539
+ insetBlockStart?: import("react-native").DimensionValue;
540
+ insetInline?: import("react-native").DimensionValue;
541
+ insetInlineEnd?: import("react-native").DimensionValue;
542
+ insetInlineStart?: import("react-native").DimensionValue;
543
+ minWidth?: import("react-native").DimensionValue;
544
+ maxWidth?: import("react-native").DimensionValue;
545
+ minHeight?: import("react-native").DimensionValue;
546
+ maxHeight?: import("react-native").DimensionValue;
547
+ margin?: import("react-native").DimensionValue;
548
+ marginBlock?: import("react-native").DimensionValue;
549
+ marginBlockEnd?: import("react-native").DimensionValue;
550
+ marginBlockStart?: import("react-native").DimensionValue;
551
+ marginBottom?: import("react-native").DimensionValue;
552
+ marginEnd?: import("react-native").DimensionValue;
553
+ marginHorizontal?: import("react-native").DimensionValue;
554
+ marginInline?: import("react-native").DimensionValue;
555
+ marginInlineEnd?: import("react-native").DimensionValue;
556
+ marginInlineStart?: import("react-native").DimensionValue;
557
+ marginLeft?: import("react-native").DimensionValue;
558
+ marginRight?: import("react-native").DimensionValue;
559
+ marginStart?: import("react-native").DimensionValue;
560
+ marginTop?: import("react-native").DimensionValue;
561
+ marginVertical?: import("react-native").DimensionValue;
562
+ padding?: import("react-native").DimensionValue;
563
+ paddingBlock?: import("react-native").DimensionValue;
564
+ paddingBlockEnd?: import("react-native").DimensionValue;
565
+ paddingBlockStart?: import("react-native").DimensionValue;
566
+ paddingBottom?: import("react-native").DimensionValue;
567
+ paddingEnd?: import("react-native").DimensionValue;
568
+ paddingHorizontal?: import("react-native").DimensionValue;
569
+ paddingInline?: import("react-native").DimensionValue;
570
+ paddingInlineEnd?: import("react-native").DimensionValue;
571
+ paddingInlineStart?: import("react-native").DimensionValue;
572
+ paddingLeft?: import("react-native").DimensionValue;
573
+ paddingRight?: import("react-native").DimensionValue;
574
+ paddingStart?: import("react-native").DimensionValue;
575
+ paddingTop?: import("react-native").DimensionValue;
576
+ paddingVertical?: import("react-native").DimensionValue;
577
+ borderWidth?: number;
578
+ borderBottomWidth?: number;
579
+ borderEndWidth?: number;
580
+ borderLeftWidth?: number;
581
+ borderRightWidth?: number;
582
+ borderStartWidth?: number;
583
+ borderTopWidth?: number;
584
+ position?: "absolute" | "relative" | "static";
585
+ flexDirection?: "row" | "row-reverse" | "column" | "column-reverse";
586
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse";
587
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
588
+ alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
589
+ alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
590
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
591
+ overflow?: "visible" | "hidden" | "scroll";
592
+ flex?: number;
593
+ flexGrow?: number;
594
+ flexShrink?: number;
595
+ flexBasis?: number | string;
596
+ aspectRatio?: number | string;
597
+ boxSizing?: "border-box" | "content-box";
598
+ zIndex?: number;
599
+ direction?: "inherit" | "ltr" | "rtl";
600
+ rowGap?: number | string;
601
+ columnGap?: number | string;
602
+ gap?: number | string;
603
+ }>, "pointerEvents" | "filter" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<Omit<Readonly<{
604
+ shadowColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
605
+ shadowOffset?: Readonly<{
606
+ width?: number;
607
+ height?: number;
608
+ }>;
609
+ shadowOpacity?: number;
610
+ shadowRadius?: number;
611
+ }>, never> & Omit<Readonly<{}>, never>>, "pointerEvents" | "filter" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
612
+ transform?: ReadonlyArray<Readonly<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MaximumOneOf<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MergeUnion<{
613
+ readonly perspective: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
614
+ } | {
615
+ readonly rotate: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
616
+ } | {
617
+ readonly rotateX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
618
+ } | {
619
+ readonly rotateY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
620
+ } | {
621
+ readonly rotateZ: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
622
+ } | {
623
+ readonly scale: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
624
+ } | {
625
+ readonly scaleX: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
626
+ } | {
627
+ readonly scaleY: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
628
+ } | {
629
+ readonly translateX: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
630
+ } | {
631
+ readonly translateY: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
632
+ } | {
633
+ readonly translate: [number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node, number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node] | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
634
+ } | {
635
+ readonly skewX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
636
+ } | {
637
+ readonly skewY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
638
+ } | {
639
+ readonly matrix: ReadonlyArray<number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node> | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
640
+ }>>>> | string;
641
+ transformOrigin?: [string | number, string | number, string | number] | string;
642
+ }>, "pointerEvents" | "filter" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
643
+ backfaceVisibility?: "visible" | "hidden";
644
+ backgroundColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
645
+ borderColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
646
+ borderCurve?: "circular" | "continuous";
647
+ borderBottomColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
648
+ borderEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
649
+ borderLeftColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
650
+ borderRightColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
651
+ borderStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
652
+ borderTopColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
653
+ borderBlockColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
654
+ borderBlockEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
655
+ borderBlockStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
656
+ borderRadius?: number | string;
657
+ borderBottomEndRadius?: number | string;
658
+ borderBottomLeftRadius?: number | string;
659
+ borderBottomRightRadius?: number | string;
660
+ borderBottomStartRadius?: number | string;
661
+ borderEndEndRadius?: number | string;
662
+ borderEndStartRadius?: number | string;
663
+ borderStartEndRadius?: number | string;
664
+ borderStartStartRadius?: number | string;
665
+ borderTopEndRadius?: number | string;
666
+ borderTopLeftRadius?: number | string;
667
+ borderTopRightRadius?: number | string;
668
+ borderTopStartRadius?: number | string;
669
+ borderStyle?: "solid" | "dotted" | "dashed";
670
+ borderWidth?: number;
671
+ borderBottomWidth?: number;
672
+ borderEndWidth?: number;
673
+ borderLeftWidth?: number;
674
+ borderRightWidth?: number;
675
+ borderStartWidth?: number;
676
+ borderTopWidth?: number;
677
+ opacity?: number;
678
+ outlineColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
679
+ outlineOffset?: number;
680
+ outlineStyle?: "solid" | "dotted" | "dashed";
681
+ outlineWidth?: number;
682
+ elevation?: number;
683
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only";
684
+ cursor?: import("react-native").CursorValue;
685
+ boxShadow?: ReadonlyArray<import("react-native").BoxShadowValue> | string;
686
+ filter?: ReadonlyArray<import("react-native").FilterFunction> | string;
687
+ mixBlendMode?: "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity";
688
+ experimental_backgroundImage?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundImageValue> | string;
689
+ experimental_backgroundSize?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundSizeValue> | string;
690
+ experimental_backgroundPosition?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundPositionValue> | string;
691
+ experimental_backgroundRepeat?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundRepeatValue> | string;
692
+ isolation?: "auto" | "isolate";
693
+ }>, never>>, never> & Omit<Readonly<{}>, never>> | readonly import("react-native").StyleProp<Readonly<Omit<Readonly<Omit<Readonly<{
694
+ display?: "none" | "flex" | "contents";
695
+ width?: import("react-native").DimensionValue;
696
+ height?: import("react-native").DimensionValue;
697
+ bottom?: import("react-native").DimensionValue;
698
+ end?: import("react-native").DimensionValue;
699
+ left?: import("react-native").DimensionValue;
700
+ right?: import("react-native").DimensionValue;
701
+ start?: import("react-native").DimensionValue;
702
+ top?: import("react-native").DimensionValue;
703
+ inset?: import("react-native").DimensionValue;
704
+ insetBlock?: import("react-native").DimensionValue;
705
+ insetBlockEnd?: import("react-native").DimensionValue;
706
+ insetBlockStart?: import("react-native").DimensionValue;
707
+ insetInline?: import("react-native").DimensionValue;
708
+ insetInlineEnd?: import("react-native").DimensionValue;
709
+ insetInlineStart?: import("react-native").DimensionValue;
710
+ minWidth?: import("react-native").DimensionValue;
711
+ maxWidth?: import("react-native").DimensionValue;
712
+ minHeight?: import("react-native").DimensionValue;
713
+ maxHeight?: import("react-native").DimensionValue;
714
+ margin?: import("react-native").DimensionValue;
715
+ marginBlock?: import("react-native").DimensionValue;
716
+ marginBlockEnd?: import("react-native").DimensionValue;
717
+ marginBlockStart?: import("react-native").DimensionValue;
718
+ marginBottom?: import("react-native").DimensionValue;
719
+ marginEnd?: import("react-native").DimensionValue;
720
+ marginHorizontal?: import("react-native").DimensionValue;
721
+ marginInline?: import("react-native").DimensionValue;
722
+ marginInlineEnd?: import("react-native").DimensionValue;
723
+ marginInlineStart?: import("react-native").DimensionValue;
724
+ marginLeft?: import("react-native").DimensionValue;
725
+ marginRight?: import("react-native").DimensionValue;
726
+ marginStart?: import("react-native").DimensionValue;
727
+ marginTop?: import("react-native").DimensionValue;
728
+ marginVertical?: import("react-native").DimensionValue;
729
+ padding?: import("react-native").DimensionValue;
730
+ paddingBlock?: import("react-native").DimensionValue;
731
+ paddingBlockEnd?: import("react-native").DimensionValue;
732
+ paddingBlockStart?: import("react-native").DimensionValue;
733
+ paddingBottom?: import("react-native").DimensionValue;
734
+ paddingEnd?: import("react-native").DimensionValue;
735
+ paddingHorizontal?: import("react-native").DimensionValue;
736
+ paddingInline?: import("react-native").DimensionValue;
737
+ paddingInlineEnd?: import("react-native").DimensionValue;
738
+ paddingInlineStart?: import("react-native").DimensionValue;
739
+ paddingLeft?: import("react-native").DimensionValue;
740
+ paddingRight?: import("react-native").DimensionValue;
741
+ paddingStart?: import("react-native").DimensionValue;
742
+ paddingTop?: import("react-native").DimensionValue;
743
+ paddingVertical?: import("react-native").DimensionValue;
744
+ borderWidth?: number;
745
+ borderBottomWidth?: number;
746
+ borderEndWidth?: number;
747
+ borderLeftWidth?: number;
748
+ borderRightWidth?: number;
749
+ borderStartWidth?: number;
750
+ borderTopWidth?: number;
751
+ position?: "absolute" | "relative" | "static";
752
+ flexDirection?: "row" | "row-reverse" | "column" | "column-reverse";
753
+ flexWrap?: "wrap" | "nowrap" | "wrap-reverse";
754
+ justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
755
+ alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
756
+ alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
757
+ alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
758
+ overflow?: "visible" | "hidden" | "scroll";
759
+ flex?: number;
760
+ flexGrow?: number;
761
+ flexShrink?: number;
762
+ flexBasis?: number | string;
763
+ aspectRatio?: number | string;
764
+ boxSizing?: "border-box" | "content-box";
765
+ zIndex?: number;
766
+ direction?: "inherit" | "ltr" | "rtl";
767
+ rowGap?: number | string;
768
+ columnGap?: number | string;
769
+ gap?: number | string;
770
+ }>, "pointerEvents" | "filter" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<Omit<Readonly<{
771
+ shadowColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
772
+ shadowOffset?: Readonly<{
773
+ width?: number;
774
+ height?: number;
775
+ }>;
776
+ shadowOpacity?: number;
777
+ shadowRadius?: number;
778
+ }>, never> & Omit<Readonly<{}>, never>>, "pointerEvents" | "filter" | "transform" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
779
+ transform?: ReadonlyArray<Readonly<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MaximumOneOf<import("react-native/types_generated/Libraries/StyleSheet/private/_TransformStyle").MergeUnion<{
780
+ readonly perspective: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
781
+ } | {
782
+ readonly rotate: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
783
+ } | {
784
+ readonly rotateX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
785
+ } | {
786
+ readonly rotateY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
787
+ } | {
788
+ readonly rotateZ: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
789
+ } | {
790
+ readonly scale: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
791
+ } | {
792
+ readonly scaleX: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
793
+ } | {
794
+ readonly scaleY: number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
795
+ } | {
796
+ readonly translateX: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
797
+ } | {
798
+ readonly translateY: number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
799
+ } | {
800
+ readonly translate: [number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node, number | string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node] | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
801
+ } | {
802
+ readonly skewX: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
803
+ } | {
804
+ readonly skewY: string | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
805
+ } | {
806
+ readonly matrix: ReadonlyArray<number | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node> | import("react-native/types_generated/Libraries/Animated/AnimatedExports").Node;
807
+ }>>>> | string;
808
+ transformOrigin?: [string | number, string | number, string | number] | string;
809
+ }>, "pointerEvents" | "filter" | "backfaceVisibility" | "backgroundColor" | "borderColor" | "borderCurve" | "borderBottomColor" | "borderEndColor" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderTopColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderRadius" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderEndEndRadius" | "borderEndStartRadius" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderStyle" | "borderWidth" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "opacity" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "elevation" | "cursor" | "boxShadow" | "mixBlendMode" | "experimental_backgroundImage" | "experimental_backgroundSize" | "experimental_backgroundPosition" | "experimental_backgroundRepeat" | "isolation"> & Omit<Readonly<{
810
+ backfaceVisibility?: "visible" | "hidden";
811
+ backgroundColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
812
+ borderColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
813
+ borderCurve?: "circular" | "continuous";
814
+ borderBottomColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
815
+ borderEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
816
+ borderLeftColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
817
+ borderRightColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
818
+ borderStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
819
+ borderTopColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
820
+ borderBlockColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
821
+ borderBlockEndColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
822
+ borderBlockStartColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
823
+ borderRadius?: number | string;
824
+ borderBottomEndRadius?: number | string;
825
+ borderBottomLeftRadius?: number | string;
826
+ borderBottomRightRadius?: number | string;
827
+ borderBottomStartRadius?: number | string;
828
+ borderEndEndRadius?: number | string;
829
+ borderEndStartRadius?: number | string;
830
+ borderStartEndRadius?: number | string;
831
+ borderStartStartRadius?: number | string;
832
+ borderTopEndRadius?: number | string;
833
+ borderTopLeftRadius?: number | string;
834
+ borderTopRightRadius?: number | string;
835
+ borderTopStartRadius?: number | string;
836
+ borderStyle?: "solid" | "dotted" | "dashed";
837
+ borderWidth?: number;
838
+ borderBottomWidth?: number;
839
+ borderEndWidth?: number;
840
+ borderLeftWidth?: number;
841
+ borderRightWidth?: number;
842
+ borderStartWidth?: number;
843
+ borderTopWidth?: number;
844
+ opacity?: number;
845
+ outlineColor?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").____ColorValue_Internal;
846
+ outlineOffset?: number;
847
+ outlineStyle?: "solid" | "dotted" | "dashed";
848
+ outlineWidth?: number;
849
+ elevation?: number;
850
+ pointerEvents?: "auto" | "none" | "box-none" | "box-only";
851
+ cursor?: import("react-native").CursorValue;
852
+ boxShadow?: ReadonlyArray<import("react-native").BoxShadowValue> | string;
853
+ filter?: ReadonlyArray<import("react-native").FilterFunction> | string;
854
+ mixBlendMode?: "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity";
855
+ experimental_backgroundImage?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundImageValue> | string;
856
+ experimental_backgroundSize?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundSizeValue> | string;
857
+ experimental_backgroundPosition?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundPositionValue> | string;
858
+ experimental_backgroundRepeat?: ReadonlyArray<import("react-native/types_generated/Libraries/StyleSheet/StyleSheetTypes").BackgroundRepeatValue> | string;
859
+ isolation?: "auto" | "isolate";
860
+ }>, never>>, never> & Omit<Readonly<{}>, never>>>[] | ((state: import("react-native").PressableStateCallbackType) => import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp) | null)[] | undefined;
861
+ onFocusChangeHandler: (isFocused: boolean) => void;
862
+ onKeyUpPressHandler: (e: Readonly<{
863
+ bubbles: boolean | undefined;
864
+ cancelable: boolean | undefined;
865
+ currentTarget: number | import("react-native").HostInstance;
866
+ defaultPrevented: boolean | undefined;
867
+ dispatchConfig: Readonly<{
868
+ registrationName: string;
869
+ }>;
870
+ eventPhase: number | undefined;
871
+ preventDefault: () => void;
872
+ isDefaultPrevented: () => boolean;
873
+ stopPropagation: () => void;
874
+ isPropagationStopped: () => boolean;
875
+ isTrusted: boolean | undefined;
876
+ nativeEvent: Readonly<{
877
+ keyCode: import("react-native/Libraries/Types/CodegenTypes").Int32;
878
+ unicode: import("react-native/Libraries/Types/CodegenTypes").Int32;
879
+ unicodeChar: string;
880
+ isLongPress: boolean;
881
+ isAltPressed: boolean;
882
+ isShiftPressed: boolean;
883
+ isCtrlPressed: boolean;
884
+ isCapsLockOn: boolean;
885
+ hasNoModifiers: boolean;
886
+ }>;
887
+ persist: () => void;
888
+ target: (number | undefined) | import("react-native").HostInstance;
889
+ timeStamp: number;
890
+ type: string | undefined;
891
+ }>) => void;
892
+ onKeyDownPressHandler: OnKeyPressFn | undefined;
893
+ onPressHandler: TPress | undefined;
894
+ onContextMenuHandler: () => void;
895
+ enableContextMenu: boolean;
896
+ };
897
+ export {};
898
+ //# sourceMappingURL=useKeyboardFocusContainer.d.ts.map