react-native-external-keyboard 0.9.1 → 0.11.1

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