@tamagui/react-native-web-lite 1.129.12 → 1.129.14

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 (984) hide show
  1. package/dist/cjs/InteractionManager/index.cjs +3 -2
  2. package/dist/cjs/InteractionManager/index.js +2 -2
  3. package/dist/cjs/InteractionManager/index.js.map +2 -2
  4. package/dist/cjs/InteractionManager/index.native.js +2 -2
  5. package/dist/cjs/InteractionManager/index.native.js.map +1 -1
  6. package/dist/cjs/ScrollView/index.cjs +172 -4
  7. package/dist/cjs/ScrollView/index.js +153 -5
  8. package/dist/cjs/ScrollView/index.js.map +2 -2
  9. package/dist/cjs/ScrollView/index.native.js +155 -7
  10. package/dist/cjs/ScrollView/index.native.js.map +2 -2
  11. package/dist/cjs/SectionList.cjs +38 -0
  12. package/dist/cjs/SectionList.js +29 -0
  13. package/dist/cjs/SectionList.js.map +6 -0
  14. package/dist/cjs/SectionList.native.js +30 -0
  15. package/dist/cjs/SectionList.native.js.map +6 -0
  16. package/dist/cjs/TextInput/index.cjs +18 -2
  17. package/dist/cjs/TextInput/index.js +20 -3
  18. package/dist/cjs/TextInput/index.js.map +1 -1
  19. package/dist/cjs/TextInput/index.native.js +19 -4
  20. package/dist/cjs/TextInput/index.native.js.map +2 -2
  21. package/dist/cjs/TouchableNativeFeedback.cjs +38 -0
  22. package/dist/cjs/TouchableNativeFeedback.js +29 -0
  23. package/dist/cjs/TouchableNativeFeedback.js.map +6 -0
  24. package/dist/cjs/TouchableNativeFeedback.native.js +30 -0
  25. package/dist/cjs/TouchableNativeFeedback.native.js.map +6 -0
  26. package/dist/cjs/VirtualizedList.cjs +38 -0
  27. package/dist/cjs/VirtualizedList.js +29 -0
  28. package/dist/cjs/VirtualizedList.js.map +6 -0
  29. package/dist/cjs/VirtualizedList.native.js +30 -0
  30. package/dist/cjs/VirtualizedList.native.js.map +6 -0
  31. package/dist/cjs/createElement/index.cjs +3 -3
  32. package/dist/cjs/createElement/index.js +3 -3
  33. package/dist/cjs/createElement/index.js.map +1 -1
  34. package/dist/cjs/createElement/index.native.js +3 -3
  35. package/dist/cjs/createElement/index.native.js.map +1 -1
  36. package/dist/cjs/index.cjs +6 -4
  37. package/dist/cjs/index.js +3 -3
  38. package/dist/cjs/index.js.map +1 -1
  39. package/dist/cjs/index.native.js +3 -3
  40. package/dist/cjs/index.native.js.map +1 -1
  41. package/dist/cjs/modules/requestIdleCallback.cjs +44 -0
  42. package/dist/cjs/modules/requestIdleCallback.js +35 -0
  43. package/dist/cjs/modules/requestIdleCallback.js.map +6 -0
  44. package/dist/cjs/modules/requestIdleCallback.native.js +39 -0
  45. package/dist/cjs/modules/requestIdleCallback.native.js.map +6 -0
  46. package/dist/cjs/vendor/react-native/Animated/Animated.cjs +15 -12
  47. package/dist/cjs/vendor/react-native/Animated/Animated.js +6 -2
  48. package/dist/cjs/vendor/react-native/Animated/Animated.js.map +2 -2
  49. package/dist/cjs/vendor/react-native/Animated/Animated.native.js +4 -2
  50. package/dist/cjs/vendor/react-native/Animated/Animated.native.js.map +2 -2
  51. package/dist/cjs/vendor/react-native/Animated/AnimatedEvent.cjs +26 -27
  52. package/dist/cjs/vendor/react-native/Animated/AnimatedEvent.js +24 -28
  53. package/dist/cjs/vendor/react-native/Animated/AnimatedEvent.js.map +2 -2
  54. package/dist/cjs/vendor/react-native/Animated/AnimatedEvent.native.js +23 -20
  55. package/dist/cjs/vendor/react-native/Animated/AnimatedEvent.native.js.map +2 -2
  56. package/dist/cjs/vendor/react-native/Animated/AnimatedImplementation.cjs +236 -234
  57. package/dist/cjs/vendor/react-native/Animated/AnimatedImplementation.js +59 -79
  58. package/dist/cjs/vendor/react-native/Animated/AnimatedImplementation.js.map +2 -2
  59. package/dist/cjs/vendor/react-native/Animated/AnimatedImplementation.native.js +34 -29
  60. package/dist/cjs/vendor/react-native/Animated/AnimatedImplementation.native.js.map +2 -2
  61. package/dist/cjs/vendor/react-native/Animated/AnimatedMock.cjs +39 -40
  62. package/dist/cjs/vendor/react-native/Animated/AnimatedMock.js +13 -18
  63. package/dist/cjs/vendor/react-native/Animated/AnimatedMock.js.map +1 -1
  64. package/dist/cjs/vendor/react-native/Animated/AnimatedMock.native.js +6 -4
  65. package/dist/cjs/vendor/react-native/Animated/AnimatedMock.native.js.map +2 -2
  66. package/dist/cjs/vendor/react-native/Animated/Easing.cjs +11 -12
  67. package/dist/cjs/vendor/react-native/Animated/Easing.js +11 -11
  68. package/dist/cjs/vendor/react-native/Animated/Easing.js.map +2 -2
  69. package/dist/cjs/vendor/react-native/Animated/Easing.native.js +11 -11
  70. package/dist/cjs/vendor/react-native/Animated/Easing.native.js.map +2 -2
  71. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedHelper.cjs +28 -36
  72. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedHelper.js +26 -33
  73. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedHelper.js.map +2 -2
  74. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedHelper.native.js +48 -48
  75. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedHelper.native.js.map +2 -2
  76. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedModule.cjs +40 -2
  77. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedModule.js +61 -1
  78. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedModule.js.map +1 -1
  79. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedModule.native.js +67 -1
  80. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedModule.native.js.map +2 -2
  81. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedTurboModule.cjs +37 -2
  82. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedTurboModule.js +56 -1
  83. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedTurboModule.js.map +1 -1
  84. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedTurboModule.native.js +62 -1
  85. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedTurboModule.native.js.map +2 -2
  86. package/dist/cjs/vendor/react-native/Animated/SpringConfig.cjs +5 -7
  87. package/dist/cjs/vendor/react-native/Animated/SpringConfig.js +5 -6
  88. package/dist/cjs/vendor/react-native/Animated/SpringConfig.js.map +1 -1
  89. package/dist/cjs/vendor/react-native/Animated/SpringConfig.native.js.map +2 -2
  90. package/dist/cjs/vendor/react-native/Animated/animations/Animation.cjs +10 -5
  91. package/dist/cjs/vendor/react-native/Animated/animations/Animation.js +16 -6
  92. package/dist/cjs/vendor/react-native/Animated/animations/Animation.js.map +1 -1
  93. package/dist/cjs/vendor/react-native/Animated/animations/Animation.native.js +10 -2
  94. package/dist/cjs/vendor/react-native/Animated/animations/Animation.native.js.map +2 -2
  95. package/dist/cjs/vendor/react-native/Animated/animations/DecayAnimation.cjs +12 -5
  96. package/dist/cjs/vendor/react-native/Animated/animations/DecayAnimation.js +13 -10
  97. package/dist/cjs/vendor/react-native/Animated/animations/DecayAnimation.js.map +1 -1
  98. package/dist/cjs/vendor/react-native/Animated/animations/DecayAnimation.native.js +17 -3
  99. package/dist/cjs/vendor/react-native/Animated/animations/DecayAnimation.native.js.map +2 -2
  100. package/dist/cjs/vendor/react-native/Animated/animations/SpringAnimation.cjs +53 -42
  101. package/dist/cjs/vendor/react-native/Animated/animations/SpringAnimation.js +55 -39
  102. package/dist/cjs/vendor/react-native/Animated/animations/SpringAnimation.js.map +1 -1
  103. package/dist/cjs/vendor/react-native/Animated/animations/SpringAnimation.native.js +41 -13
  104. package/dist/cjs/vendor/react-native/Animated/animations/SpringAnimation.native.js.map +2 -2
  105. package/dist/cjs/vendor/react-native/Animated/animations/TimingAnimation.cjs +20 -9
  106. package/dist/cjs/vendor/react-native/Animated/animations/TimingAnimation.js +21 -16
  107. package/dist/cjs/vendor/react-native/Animated/animations/TimingAnimation.js.map +1 -1
  108. package/dist/cjs/vendor/react-native/Animated/animations/TimingAnimation.native.js +22 -3
  109. package/dist/cjs/vendor/react-native/Animated/animations/TimingAnimation.native.js.map +2 -2
  110. package/dist/cjs/vendor/react-native/Animated/bezier.cjs +16 -18
  111. package/dist/cjs/vendor/react-native/Animated/bezier.js +22 -13
  112. package/dist/cjs/vendor/react-native/Animated/bezier.js.map +1 -1
  113. package/dist/cjs/vendor/react-native/Animated/bezier.native.js.map +1 -1
  114. package/dist/cjs/vendor/react-native/Animated/components/AnimatedFlatList.cjs +46 -0
  115. package/dist/cjs/vendor/react-native/Animated/components/AnimatedFlatList.js +31 -0
  116. package/dist/cjs/vendor/react-native/Animated/components/AnimatedFlatList.js.map +6 -0
  117. package/dist/cjs/vendor/react-native/Animated/components/AnimatedFlatList.native.js +36 -0
  118. package/dist/cjs/vendor/react-native/Animated/components/AnimatedFlatList.native.js.map +6 -0
  119. package/dist/cjs/vendor/react-native/Animated/components/AnimatedImage.js +1 -1
  120. package/dist/cjs/vendor/react-native/Animated/components/AnimatedImage.js.map +1 -1
  121. package/dist/cjs/vendor/react-native/Animated/components/AnimatedImage.native.js +1 -1
  122. package/dist/cjs/vendor/react-native/Animated/components/AnimatedImage.native.js.map +1 -1
  123. package/dist/cjs/vendor/react-native/Animated/components/AnimatedScrollView.cjs +7 -6
  124. package/dist/cjs/vendor/react-native/Animated/components/AnimatedScrollView.js +3 -10
  125. package/dist/cjs/vendor/react-native/Animated/components/AnimatedScrollView.js.map +2 -2
  126. package/dist/cjs/vendor/react-native/Animated/components/AnimatedScrollView.native.js +2 -2
  127. package/dist/cjs/vendor/react-native/Animated/components/AnimatedScrollView.native.js.map +3 -3
  128. package/dist/cjs/vendor/react-native/Animated/components/AnimatedSectionList.cjs +46 -0
  129. package/dist/cjs/vendor/react-native/Animated/components/AnimatedSectionList.js +31 -0
  130. package/dist/cjs/vendor/react-native/Animated/components/AnimatedSectionList.js.map +6 -0
  131. package/dist/cjs/vendor/react-native/Animated/components/AnimatedSectionList.native.js +36 -0
  132. package/dist/cjs/vendor/react-native/Animated/components/AnimatedSectionList.native.js.map +6 -0
  133. package/dist/cjs/vendor/react-native/Animated/components/AnimatedText.cjs +1 -2
  134. package/dist/cjs/vendor/react-native/Animated/components/AnimatedText.js +1 -1
  135. package/dist/cjs/vendor/react-native/Animated/components/AnimatedText.js.map +1 -1
  136. package/dist/cjs/vendor/react-native/Animated/components/AnimatedText.native.js +1 -1
  137. package/dist/cjs/vendor/react-native/Animated/components/AnimatedText.native.js.map +1 -1
  138. package/dist/cjs/vendor/react-native/Animated/components/AnimatedView.cjs +1 -2
  139. package/dist/cjs/vendor/react-native/Animated/components/AnimatedView.js +1 -1
  140. package/dist/cjs/vendor/react-native/Animated/components/AnimatedView.js.map +1 -1
  141. package/dist/cjs/vendor/react-native/Animated/components/AnimatedView.native.js +1 -1
  142. package/dist/cjs/vendor/react-native/Animated/components/AnimatedView.native.js.map +1 -1
  143. package/dist/cjs/vendor/react-native/Animated/createAnimatedComponent.cjs +17 -18
  144. package/dist/cjs/vendor/react-native/Animated/createAnimatedComponent.js +14 -11
  145. package/dist/cjs/vendor/react-native/Animated/createAnimatedComponent.js.map +3 -3
  146. package/dist/cjs/vendor/react-native/Animated/createAnimatedComponent.native.js +3 -3
  147. package/dist/cjs/vendor/react-native/Animated/createAnimatedComponent.native.js.map +3 -3
  148. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedAddition.cjs +2 -0
  149. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedAddition.js +2 -0
  150. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedAddition.js.map +1 -1
  151. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedAddition.native.js +9 -1
  152. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedAddition.native.js.map +2 -2
  153. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedColor.cjs +35 -49
  154. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedColor.js +32 -51
  155. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedColor.js.map +2 -2
  156. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedColor.native.js +23 -32
  157. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedColor.native.js.map +2 -2
  158. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDiffClamp.cjs +6 -3
  159. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDiffClamp.js +6 -2
  160. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDiffClamp.js.map +1 -1
  161. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDiffClamp.native.js +10 -1
  162. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDiffClamp.native.js.map +1 -1
  163. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDivision.cjs +5 -2
  164. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDivision.js +5 -2
  165. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDivision.js.map +1 -1
  166. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDivision.native.js +9 -1
  167. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedDivision.native.js.map +2 -2
  168. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedInterpolation.cjs +26 -31
  169. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedInterpolation.js +24 -25
  170. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedInterpolation.js.map +3 -3
  171. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedInterpolation.native.js +13 -13
  172. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedInterpolation.native.js.map +2 -2
  173. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedModulo.cjs +2 -2
  174. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedModulo.js +2 -1
  175. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedModulo.js.map +1 -1
  176. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedModulo.native.js +10 -1
  177. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedModulo.native.js.map +1 -1
  178. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedMultiplication.cjs +2 -0
  179. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedMultiplication.js +2 -0
  180. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedMultiplication.js.map +1 -1
  181. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedMultiplication.native.js +9 -1
  182. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedMultiplication.native.js.map +2 -2
  183. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedNode.cjs +14 -9
  184. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedNode.js +14 -9
  185. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedNode.js.map +1 -1
  186. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedNode.native.js +13 -6
  187. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedNode.native.js.map +2 -2
  188. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedProps.cjs +21 -23
  189. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedProps.js +22 -20
  190. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedProps.js.map +1 -1
  191. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedProps.native.js +2 -1
  192. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedProps.native.js.map +1 -1
  193. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedStyle.cjs +25 -25
  194. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedStyle.js +23 -21
  195. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedStyle.js.map +1 -1
  196. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedStyle.native.js +12 -3
  197. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedStyle.native.js.map +2 -2
  198. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedSubtraction.cjs +2 -0
  199. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedSubtraction.js +2 -0
  200. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedSubtraction.js.map +1 -1
  201. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedSubtraction.native.js +9 -1
  202. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedSubtraction.native.js.map +2 -2
  203. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTracking.cjs +14 -9
  204. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTracking.js +12 -12
  205. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTracking.js.map +1 -1
  206. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTracking.native.js +14 -4
  207. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTracking.native.js.map +2 -2
  208. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTransform.cjs +20 -19
  209. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTransform.js +18 -17
  210. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTransform.js.map +1 -1
  211. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTransform.native.js +10 -2
  212. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedTransform.native.js.map +1 -1
  213. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValue.cjs +12 -7
  214. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValue.js +10 -4
  215. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValue.js.map +1 -1
  216. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValue.native.js +10 -2
  217. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValue.native.js.map +2 -2
  218. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValueXY.cjs +8 -76
  219. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValueXY.js +5 -83
  220. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValueXY.js.map +1 -1
  221. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValueXY.native.js +4 -70
  222. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedValueXY.native.js.map +2 -2
  223. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedWithChildren.cjs +5 -11
  224. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedWithChildren.js +17 -11
  225. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedWithChildren.js.map +2 -2
  226. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedWithChildren.native.js +42 -9
  227. package/dist/cjs/vendor/react-native/Animated/nodes/AnimatedWithChildren.native.js.map +2 -2
  228. package/dist/cjs/vendor/react-native/Animated/useAnimatedProps.cjs +16 -25
  229. package/dist/cjs/vendor/react-native/Animated/useAnimatedProps.js +14 -22
  230. package/dist/cjs/vendor/react-native/Animated/useAnimatedProps.js.map +2 -2
  231. package/dist/cjs/vendor/react-native/Animated/useAnimatedProps.native.js +24 -16
  232. package/dist/cjs/vendor/react-native/Animated/useAnimatedProps.native.js.map +2 -2
  233. package/dist/cjs/{Batchinator → vendor/react-native/Batchinator}/index.cjs +9 -18
  234. package/dist/cjs/{Batchinator → vendor/react-native/Batchinator}/index.js +6 -13
  235. package/dist/cjs/vendor/react-native/Batchinator/index.js.map +6 -0
  236. package/dist/cjs/{Batchinator → vendor/react-native/Batchinator}/index.native.js +5 -14
  237. package/dist/cjs/vendor/react-native/Batchinator/index.native.js.map +6 -0
  238. package/dist/cjs/vendor/react-native/{NativeEventEmitter/index.cjs → EventEmitter/NativeEventEmitter.cjs} +8 -15
  239. package/dist/cjs/vendor/react-native/{NativeEventEmitter/index.js → EventEmitter/NativeEventEmitter.js} +10 -17
  240. package/dist/cjs/vendor/react-native/EventEmitter/NativeEventEmitter.js.map +6 -0
  241. package/dist/cjs/vendor/react-native/{NativeEventEmitter/index.native.js → EventEmitter/NativeEventEmitter.native.js} +19 -11
  242. package/dist/cjs/vendor/react-native/EventEmitter/NativeEventEmitter.native.js.map +6 -0
  243. package/dist/cjs/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.js.map +6 -0
  244. package/dist/cjs/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.native.js.map +6 -0
  245. package/dist/cjs/vendor/react-native/FillRateHelper/index.cjs +3 -3
  246. package/dist/cjs/vendor/react-native/FillRateHelper/index.js +3 -3
  247. package/dist/cjs/vendor/react-native/FillRateHelper/index.js.map +2 -2
  248. package/dist/cjs/vendor/react-native/FillRateHelper/index.native.js +5 -4
  249. package/dist/cjs/vendor/react-native/FillRateHelper/index.native.js.map +3 -3
  250. package/dist/cjs/vendor/react-native/FlatList/index.cjs +262 -0
  251. package/dist/cjs/vendor/react-native/FlatList/index.js +270 -0
  252. package/dist/cjs/vendor/react-native/FlatList/index.js.map +6 -0
  253. package/dist/cjs/vendor/react-native/FlatList/index.native.js +352 -0
  254. package/dist/cjs/vendor/react-native/FlatList/index.native.js.map +6 -0
  255. package/dist/cjs/vendor/react-native/JSEventLoopWatchdog/index.cjs +88 -0
  256. package/dist/cjs/vendor/react-native/JSEventLoopWatchdog/index.js +64 -0
  257. package/dist/cjs/vendor/react-native/JSEventLoopWatchdog/index.js.map +6 -0
  258. package/dist/cjs/vendor/react-native/JSEventLoopWatchdog/index.native.js +69 -0
  259. package/dist/cjs/vendor/react-native/JSEventLoopWatchdog/index.native.js.map +6 -0
  260. package/dist/cjs/vendor/react-native/LayoutAnimation/index.cjs +121 -0
  261. package/dist/cjs/vendor/react-native/LayoutAnimation/index.js +108 -0
  262. package/dist/cjs/vendor/react-native/LayoutAnimation/index.js.map +6 -0
  263. package/dist/cjs/vendor/react-native/LayoutAnimation/index.native.js +112 -0
  264. package/dist/cjs/vendor/react-native/LayoutAnimation/index.native.js.map +6 -0
  265. package/dist/cjs/vendor/react-native/PanResponder/index.cjs +22 -209
  266. package/dist/cjs/vendor/react-native/PanResponder/index.js +16 -212
  267. package/dist/cjs/vendor/react-native/PanResponder/index.js.map +3 -3
  268. package/dist/cjs/vendor/react-native/PanResponder/index.native.js +29 -200
  269. package/dist/cjs/vendor/react-native/PanResponder/index.native.js.map +3 -3
  270. package/dist/cjs/vendor/react-native/PooledClass/index.cjs +47 -0
  271. package/dist/cjs/vendor/react-native/PooledClass/index.js +37 -0
  272. package/dist/cjs/vendor/react-native/PooledClass/index.js.map +6 -0
  273. package/dist/cjs/vendor/react-native/PooledClass/index.native.js +38 -0
  274. package/dist/cjs/vendor/react-native/PooledClass/index.native.js.map +6 -0
  275. package/dist/cjs/vendor/react-native/ReactNative/ReactNativeFeatureFlags.cjs +33 -0
  276. package/dist/cjs/vendor/react-native/ReactNative/ReactNativeFeatureFlags.js +28 -0
  277. package/dist/cjs/vendor/react-native/ReactNative/ReactNativeFeatureFlags.js.map +6 -0
  278. package/dist/cjs/vendor/react-native/ReactNative/ReactNativeFeatureFlags.native.js +38 -0
  279. package/dist/cjs/vendor/react-native/ReactNative/ReactNativeFeatureFlags.native.js.map +6 -0
  280. package/dist/cjs/vendor/react-native/SectionList/index.cjs +102 -0
  281. package/dist/cjs/vendor/react-native/SectionList/index.js +85 -0
  282. package/dist/cjs/vendor/react-native/SectionList/index.js.map +6 -0
  283. package/dist/cjs/vendor/react-native/SectionList/index.native.js +190 -0
  284. package/dist/cjs/vendor/react-native/SectionList/index.native.js.map +6 -0
  285. package/dist/cjs/vendor/react-native/StaticContainer/index.cjs +49 -0
  286. package/dist/cjs/vendor/react-native/StaticContainer/index.js +40 -0
  287. package/dist/cjs/vendor/react-native/StaticContainer/index.js.map +6 -0
  288. package/dist/cjs/vendor/react-native/StaticContainer/index.native.js +110 -0
  289. package/dist/cjs/vendor/react-native/StaticContainer/index.native.js.map +6 -0
  290. package/dist/cjs/vendor/react-native/StaticRenderer/index.cjs +48 -0
  291. package/dist/cjs/vendor/react-native/StaticRenderer/index.js +39 -0
  292. package/dist/cjs/vendor/react-native/StaticRenderer/index.js.map +6 -0
  293. package/dist/cjs/vendor/react-native/StaticRenderer/index.native.js +109 -0
  294. package/dist/cjs/vendor/react-native/StaticRenderer/index.native.js.map +6 -0
  295. package/dist/cjs/vendor/react-native/TouchHistoryMath/index.js.map +2 -2
  296. package/dist/cjs/vendor/react-native/TouchHistoryMath/index.native.js.map +2 -2
  297. package/dist/cjs/vendor/react-native/TurboModule/RCTExport.cjs +34 -1
  298. package/dist/cjs/vendor/react-native/TurboModule/RCTExport.js +25 -0
  299. package/dist/cjs/vendor/react-native/TurboModule/RCTExport.js.map +2 -2
  300. package/dist/cjs/vendor/react-native/TurboModule/RCTExport.native.js +32 -0
  301. package/dist/cjs/vendor/react-native/TurboModule/RCTExport.native.js.map +3 -3
  302. package/dist/cjs/vendor/react-native/TurboModule/TurboModuleRegistry.cjs +3 -1
  303. package/dist/cjs/vendor/react-native/TurboModule/TurboModuleRegistry.js +6 -1
  304. package/dist/cjs/vendor/react-native/TurboModule/TurboModuleRegistry.js.map +2 -2
  305. package/dist/cjs/vendor/react-native/TurboModule/TurboModuleRegistry.native.js +3 -1
  306. package/dist/cjs/vendor/react-native/TurboModule/TurboModuleRegistry.native.js.map +2 -2
  307. package/dist/cjs/vendor/react-native/Types/CoreEventTypes.cjs +158 -8
  308. package/dist/cjs/vendor/react-native/Types/CoreEventTypes.js +123 -1
  309. package/dist/cjs/vendor/react-native/Types/CoreEventTypes.js.map +2 -2
  310. package/dist/cjs/vendor/react-native/Types/CoreEventTypes.native.js +159 -1
  311. package/dist/cjs/vendor/react-native/Types/CoreEventTypes.native.js.map +3 -3
  312. package/dist/cjs/vendor/react-native/Utilities/Platform.cjs +27 -0
  313. package/dist/cjs/vendor/react-native/Utilities/Platform.js +21 -0
  314. package/dist/cjs/vendor/react-native/Utilities/Platform.js.map +6 -0
  315. package/dist/cjs/vendor/react-native/Utilities/Platform.native.js +22 -0
  316. package/dist/cjs/vendor/react-native/Utilities/Platform.native.js.map +6 -0
  317. package/dist/cjs/vendor/react-native/Utilities/clamp.cjs +2 -0
  318. package/dist/cjs/vendor/react-native/Utilities/clamp.js +1 -0
  319. package/dist/cjs/vendor/react-native/Utilities/clamp.js.map +2 -2
  320. package/dist/cjs/vendor/react-native/Utilities/clamp.native.js.map +2 -2
  321. package/dist/cjs/vendor/react-native/Utilities/setAndForwardRef.cjs +5 -4
  322. package/dist/cjs/vendor/react-native/Utilities/setAndForwardRef.js +5 -3
  323. package/dist/cjs/vendor/react-native/Utilities/setAndForwardRef.js.map +1 -1
  324. package/dist/cjs/vendor/react-native/Utilities/setAndForwardRef.native.js +2 -2
  325. package/dist/cjs/vendor/react-native/Utilities/setAndForwardRef.native.js.map +2 -2
  326. package/dist/cjs/vendor/react-native/Utilities/useMergeRefs.cjs +33 -0
  327. package/dist/cjs/vendor/react-native/Utilities/useMergeRefs.js +31 -0
  328. package/dist/cjs/vendor/react-native/Utilities/useMergeRefs.js.map +6 -0
  329. package/dist/cjs/vendor/react-native/Utilities/useMergeRefs.native.js +46 -0
  330. package/dist/cjs/vendor/react-native/Utilities/useMergeRefs.native.js.map +6 -0
  331. package/dist/cjs/vendor/react-native/Utilities/useRefEffect.cjs +32 -0
  332. package/dist/cjs/vendor/react-native/Utilities/useRefEffect.js +30 -0
  333. package/dist/cjs/vendor/react-native/Utilities/useRefEffect.js.map +6 -0
  334. package/dist/cjs/vendor/react-native/Utilities/useRefEffect.native.js +30 -0
  335. package/dist/cjs/vendor/react-native/Utilities/useRefEffect.native.js.map +6 -0
  336. package/dist/cjs/vendor/react-native/ViewabilityHelper/index.cjs +142 -0
  337. package/dist/cjs/vendor/react-native/ViewabilityHelper/index.js +152 -0
  338. package/dist/cjs/vendor/react-native/ViewabilityHelper/index.js.map +6 -0
  339. package/dist/cjs/vendor/react-native/ViewabilityHelper/index.native.js +205 -0
  340. package/dist/cjs/vendor/react-native/ViewabilityHelper/index.native.js.map +6 -0
  341. package/dist/cjs/vendor/react-native/VirtualizeUtils/index.js.map +2 -2
  342. package/dist/cjs/vendor/react-native/VirtualizeUtils/index.native.js.map +2 -2
  343. package/dist/cjs/vendor/react-native/VirtualizedList/CellRenderMask.cjs +1 -3
  344. package/dist/cjs/vendor/react-native/VirtualizedList/CellRenderMask.js +2 -8
  345. package/dist/cjs/vendor/react-native/VirtualizedList/CellRenderMask.js.map +2 -2
  346. package/dist/cjs/vendor/react-native/VirtualizedList/CellRenderMask.native.js +1 -9
  347. package/dist/cjs/vendor/react-native/VirtualizedList/CellRenderMask.native.js.map +3 -3
  348. package/dist/cjs/vendor/react-native/VirtualizedList/ChildListCollection.js.map +2 -2
  349. package/dist/cjs/vendor/react-native/VirtualizedList/ChildListCollection.native.js.map +2 -2
  350. package/dist/cjs/vendor/react-native/VirtualizedList/StateSafePureComponent.cjs +3 -3
  351. package/dist/cjs/vendor/react-native/VirtualizedList/StateSafePureComponent.js +3 -3
  352. package/dist/cjs/vendor/react-native/VirtualizedList/StateSafePureComponent.js.map +3 -3
  353. package/dist/cjs/vendor/react-native/VirtualizedList/StateSafePureComponent.native.js +3 -3
  354. package/dist/cjs/vendor/react-native/VirtualizedList/StateSafePureComponent.native.js.map +2 -2
  355. package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.cjs +16 -9
  356. package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.js +16 -7
  357. package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.js.map +3 -3
  358. package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.native.js +19 -11
  359. package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.native.js.map +2 -2
  360. package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListContext.cjs +4 -3
  361. package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListContext.js +6 -13
  362. package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListContext.js.map +2 -2
  363. package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListContext.native.js +2 -1
  364. package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListContext.native.js.map +3 -3
  365. package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListProps.cjs +56 -8
  366. package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListProps.js +46 -1
  367. package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListProps.js.map +2 -2
  368. package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListProps.native.js +49 -1
  369. package/dist/cjs/vendor/react-native/VirtualizedList/VirtualizedListProps.native.js.map +3 -3
  370. package/dist/cjs/vendor/react-native/VirtualizedList/index.cjs +136 -865
  371. package/dist/cjs/vendor/react-native/VirtualizedList/index.js +126 -894
  372. package/dist/cjs/vendor/react-native/VirtualizedList/index.js.map +3 -3
  373. package/dist/cjs/vendor/react-native/VirtualizedList/index.native.js +92 -853
  374. package/dist/cjs/vendor/react-native/VirtualizedList/index.native.js.map +3 -3
  375. package/dist/cjs/vendor/react-native/VirtualizedSectionList/index.cjs +129 -0
  376. package/dist/cjs/vendor/react-native/VirtualizedSectionList/index.js +118 -0
  377. package/dist/cjs/vendor/react-native/VirtualizedSectionList/index.js.map +6 -0
  378. package/dist/cjs/vendor/react-native/VirtualizedSectionList/index.native.js +219 -0
  379. package/dist/cjs/vendor/react-native/VirtualizedSectionList/index.native.js.map +6 -0
  380. package/dist/cjs/vendor/react-native/deepDiffer/index.cjs +5 -3
  381. package/dist/cjs/vendor/react-native/deepDiffer/index.js +4 -3
  382. package/dist/cjs/vendor/react-native/deepDiffer/index.js.map +3 -3
  383. package/dist/cjs/vendor/react-native/deepDiffer/index.native.js +3 -3
  384. package/dist/cjs/vendor/react-native/deepDiffer/index.native.js.map +2 -2
  385. package/dist/cjs/vendor/react-native/infoLog/index.js.map +2 -2
  386. package/dist/cjs/vendor/react-native/infoLog/index.native.js.map +2 -2
  387. package/dist/cjs/vendor/react-native/vendor/emitter/EventEmitter.cjs +86 -0
  388. package/dist/cjs/vendor/react-native/vendor/emitter/EventEmitter.js +85 -0
  389. package/dist/cjs/vendor/react-native/vendor/emitter/EventEmitter.js.map +6 -0
  390. package/dist/cjs/vendor/react-native/vendor/emitter/EventEmitter.native.js +163 -0
  391. package/dist/cjs/vendor/react-native/vendor/emitter/EventEmitter.native.js.map +6 -0
  392. package/dist/cjs/without-animated.cjs +1 -1
  393. package/dist/cjs/without-animated.js +1 -1
  394. package/dist/cjs/without-animated.js.map +1 -1
  395. package/dist/cjs/without-animated.native.js +1 -1
  396. package/dist/cjs/without-animated.native.js.map +1 -1
  397. package/dist/esm/InteractionManager/index.js +1 -0
  398. package/dist/esm/InteractionManager/index.js.map +1 -1
  399. package/dist/esm/InteractionManager/index.mjs +1 -0
  400. package/dist/esm/InteractionManager/index.mjs.map +1 -1
  401. package/dist/esm/InteractionManager/index.native.js +1 -0
  402. package/dist/esm/InteractionManager/index.native.js.map +1 -1
  403. package/dist/esm/ScrollView/index.js +155 -4
  404. package/dist/esm/ScrollView/index.js.map +1 -1
  405. package/dist/esm/ScrollView/index.mjs +173 -5
  406. package/dist/esm/ScrollView/index.mjs.map +1 -1
  407. package/dist/esm/ScrollView/index.native.js +176 -7
  408. package/dist/esm/ScrollView/index.native.js.map +1 -1
  409. package/dist/esm/SectionList.js +6 -0
  410. package/dist/esm/SectionList.js.map +6 -0
  411. package/dist/esm/SectionList.mjs +4 -0
  412. package/dist/esm/SectionList.mjs.map +1 -0
  413. package/dist/esm/SectionList.native.js +4 -0
  414. package/dist/esm/SectionList.native.js.map +1 -0
  415. package/dist/esm/TextInput/index.js +20 -3
  416. package/dist/esm/TextInput/index.js.map +1 -1
  417. package/dist/esm/TextInput/index.mjs +18 -2
  418. package/dist/esm/TextInput/index.mjs.map +1 -1
  419. package/dist/esm/TextInput/index.native.js +18 -2
  420. package/dist/esm/TextInput/index.native.js.map +1 -1
  421. package/dist/esm/TouchableNativeFeedback.js +6 -0
  422. package/dist/esm/TouchableNativeFeedback.js.map +6 -0
  423. package/dist/esm/TouchableNativeFeedback.mjs +4 -0
  424. package/dist/esm/TouchableNativeFeedback.mjs.map +1 -0
  425. package/dist/esm/TouchableNativeFeedback.native.js +4 -0
  426. package/dist/esm/TouchableNativeFeedback.native.js.map +1 -0
  427. package/dist/esm/VirtualizedList.js +6 -0
  428. package/dist/esm/VirtualizedList.js.map +6 -0
  429. package/dist/esm/VirtualizedList.mjs +4 -0
  430. package/dist/esm/VirtualizedList.mjs.map +1 -0
  431. package/dist/esm/VirtualizedList.native.js +4 -0
  432. package/dist/esm/VirtualizedList.native.js.map +1 -0
  433. package/dist/esm/createElement/index.js +3 -3
  434. package/dist/esm/createElement/index.js.map +1 -1
  435. package/dist/esm/createElement/index.mjs +3 -3
  436. package/dist/esm/createElement/index.mjs.map +1 -1
  437. package/dist/esm/createElement/index.native.js +3 -3
  438. package/dist/esm/createElement/index.native.js.map +1 -1
  439. package/dist/esm/index.js +12 -12
  440. package/dist/esm/index.js.map +1 -1
  441. package/dist/esm/index.mjs +6 -4
  442. package/dist/esm/index.mjs.map +1 -1
  443. package/dist/esm/index.native.js +6 -4
  444. package/dist/esm/index.native.js.map +1 -1
  445. package/dist/esm/modules/requestIdleCallback.js +19 -0
  446. package/dist/esm/modules/requestIdleCallback.js.map +6 -0
  447. package/dist/esm/modules/requestIdleCallback.mjs +20 -0
  448. package/dist/esm/modules/requestIdleCallback.mjs.map +1 -0
  449. package/dist/esm/modules/requestIdleCallback.native.js +20 -0
  450. package/dist/esm/modules/requestIdleCallback.native.js.map +1 -0
  451. package/dist/esm/vendor/react-native/Animated/Animated.js +9 -5
  452. package/dist/esm/vendor/react-native/Animated/Animated.js.map +1 -1
  453. package/dist/esm/vendor/react-native/Animated/Animated.mjs +14 -11
  454. package/dist/esm/vendor/react-native/Animated/Animated.mjs.map +1 -1
  455. package/dist/esm/vendor/react-native/Animated/Animated.native.js +7 -4
  456. package/dist/esm/vendor/react-native/Animated/Animated.native.js.map +1 -1
  457. package/dist/esm/vendor/react-native/Animated/AnimatedEvent.js +25 -30
  458. package/dist/esm/vendor/react-native/Animated/AnimatedEvent.js.map +2 -2
  459. package/dist/esm/vendor/react-native/Animated/AnimatedEvent.mjs +25 -26
  460. package/dist/esm/vendor/react-native/Animated/AnimatedEvent.mjs.map +1 -1
  461. package/dist/esm/vendor/react-native/Animated/AnimatedEvent.native.js +21 -14
  462. package/dist/esm/vendor/react-native/Animated/AnimatedEvent.native.js.map +1 -1
  463. package/dist/esm/vendor/react-native/Animated/AnimatedImplementation.js +65 -84
  464. package/dist/esm/vendor/react-native/Animated/AnimatedImplementation.js.map +2 -2
  465. package/dist/esm/vendor/react-native/Animated/AnimatedImplementation.mjs +236 -234
  466. package/dist/esm/vendor/react-native/Animated/AnimatedImplementation.mjs.map +1 -1
  467. package/dist/esm/vendor/react-native/Animated/AnimatedImplementation.native.js +49 -43
  468. package/dist/esm/vendor/react-native/Animated/AnimatedImplementation.native.js.map +1 -1
  469. package/dist/esm/vendor/react-native/Animated/AnimatedMock.js +14 -20
  470. package/dist/esm/vendor/react-native/Animated/AnimatedMock.js.map +1 -1
  471. package/dist/esm/vendor/react-native/Animated/AnimatedMock.mjs +38 -39
  472. package/dist/esm/vendor/react-native/Animated/AnimatedMock.mjs.map +1 -1
  473. package/dist/esm/vendor/react-native/Animated/AnimatedMock.native.js +8 -7
  474. package/dist/esm/vendor/react-native/Animated/AnimatedMock.native.js.map +1 -1
  475. package/dist/esm/vendor/react-native/Animated/Easing.js +10 -11
  476. package/dist/esm/vendor/react-native/Animated/Easing.js.map +2 -2
  477. package/dist/esm/vendor/react-native/Animated/Easing.mjs +10 -11
  478. package/dist/esm/vendor/react-native/Animated/Easing.mjs.map +1 -1
  479. package/dist/esm/vendor/react-native/Animated/Easing.native.js +12 -11
  480. package/dist/esm/vendor/react-native/Animated/Easing.native.js.map +1 -1
  481. package/dist/esm/vendor/react-native/Animated/NativeAnimatedHelper.js +27 -34
  482. package/dist/esm/vendor/react-native/Animated/NativeAnimatedHelper.js.map +1 -1
  483. package/dist/esm/vendor/react-native/Animated/NativeAnimatedHelper.mjs +24 -32
  484. package/dist/esm/vendor/react-native/Animated/NativeAnimatedHelper.mjs.map +1 -1
  485. package/dist/esm/vendor/react-native/Animated/NativeAnimatedHelper.native.js +45 -44
  486. package/dist/esm/vendor/react-native/Animated/NativeAnimatedHelper.native.js.map +1 -1
  487. package/dist/esm/vendor/react-native/Animated/NativeAnimatedModule.js +60 -1
  488. package/dist/esm/vendor/react-native/Animated/NativeAnimatedModule.js.map +1 -1
  489. package/dist/esm/vendor/react-native/Animated/NativeAnimatedModule.mjs +35 -2
  490. package/dist/esm/vendor/react-native/Animated/NativeAnimatedModule.mjs.map +1 -1
  491. package/dist/esm/vendor/react-native/Animated/NativeAnimatedModule.native.js +35 -2
  492. package/dist/esm/vendor/react-native/Animated/NativeAnimatedModule.native.js.map +1 -1
  493. package/dist/esm/vendor/react-native/Animated/NativeAnimatedTurboModule.js +55 -1
  494. package/dist/esm/vendor/react-native/Animated/NativeAnimatedTurboModule.js.map +1 -1
  495. package/dist/esm/vendor/react-native/Animated/NativeAnimatedTurboModule.mjs +32 -2
  496. package/dist/esm/vendor/react-native/Animated/NativeAnimatedTurboModule.mjs.map +1 -1
  497. package/dist/esm/vendor/react-native/Animated/NativeAnimatedTurboModule.native.js +32 -2
  498. package/dist/esm/vendor/react-native/Animated/NativeAnimatedTurboModule.native.js.map +1 -1
  499. package/dist/esm/vendor/react-native/Animated/SpringConfig.js +5 -5
  500. package/dist/esm/vendor/react-native/Animated/SpringConfig.js.map +1 -1
  501. package/dist/esm/vendor/react-native/Animated/SpringConfig.mjs +5 -5
  502. package/dist/esm/vendor/react-native/Animated/SpringConfig.mjs.map +1 -1
  503. package/dist/esm/vendor/react-native/Animated/SpringConfig.native.js.map +1 -1
  504. package/dist/esm/vendor/react-native/Animated/animations/Animation.js +15 -6
  505. package/dist/esm/vendor/react-native/Animated/animations/Animation.js.map +1 -1
  506. package/dist/esm/vendor/react-native/Animated/animations/Animation.mjs +9 -4
  507. package/dist/esm/vendor/react-native/Animated/animations/Animation.mjs.map +1 -1
  508. package/dist/esm/vendor/react-native/Animated/animations/Animation.native.js +10 -2
  509. package/dist/esm/vendor/react-native/Animated/animations/Animation.native.js.map +1 -1
  510. package/dist/esm/vendor/react-native/Animated/animations/DecayAnimation.js +13 -10
  511. package/dist/esm/vendor/react-native/Animated/animations/DecayAnimation.js.map +1 -1
  512. package/dist/esm/vendor/react-native/Animated/animations/DecayAnimation.mjs +11 -4
  513. package/dist/esm/vendor/react-native/Animated/animations/DecayAnimation.mjs.map +1 -1
  514. package/dist/esm/vendor/react-native/Animated/animations/DecayAnimation.native.js +17 -3
  515. package/dist/esm/vendor/react-native/Animated/animations/DecayAnimation.native.js.map +1 -1
  516. package/dist/esm/vendor/react-native/Animated/animations/SpringAnimation.js +56 -40
  517. package/dist/esm/vendor/react-native/Animated/animations/SpringAnimation.js.map +1 -1
  518. package/dist/esm/vendor/react-native/Animated/animations/SpringAnimation.mjs +52 -41
  519. package/dist/esm/vendor/react-native/Animated/animations/SpringAnimation.mjs.map +1 -1
  520. package/dist/esm/vendor/react-native/Animated/animations/SpringAnimation.native.js +46 -16
  521. package/dist/esm/vendor/react-native/Animated/animations/SpringAnimation.native.js.map +1 -1
  522. package/dist/esm/vendor/react-native/Animated/animations/TimingAnimation.js +21 -16
  523. package/dist/esm/vendor/react-native/Animated/animations/TimingAnimation.js.map +1 -1
  524. package/dist/esm/vendor/react-native/Animated/animations/TimingAnimation.mjs +20 -7
  525. package/dist/esm/vendor/react-native/Animated/animations/TimingAnimation.mjs.map +1 -1
  526. package/dist/esm/vendor/react-native/Animated/animations/TimingAnimation.native.js +23 -3
  527. package/dist/esm/vendor/react-native/Animated/animations/TimingAnimation.native.js.map +1 -1
  528. package/dist/esm/vendor/react-native/Animated/bezier.js +22 -13
  529. package/dist/esm/vendor/react-native/Animated/bezier.js.map +1 -1
  530. package/dist/esm/vendor/react-native/Animated/bezier.mjs +16 -18
  531. package/dist/esm/vendor/react-native/Animated/bezier.mjs.map +1 -1
  532. package/dist/esm/vendor/react-native/Animated/bezier.native.js.map +1 -1
  533. package/dist/esm/vendor/react-native/Animated/components/AnimatedFlatList.js +10 -0
  534. package/dist/esm/vendor/react-native/Animated/components/AnimatedFlatList.js.map +6 -0
  535. package/dist/esm/vendor/react-native/Animated/components/AnimatedFlatList.mjs +12 -0
  536. package/dist/esm/vendor/react-native/Animated/components/AnimatedFlatList.mjs.map +1 -0
  537. package/dist/esm/vendor/react-native/Animated/components/AnimatedFlatList.native.js +14 -0
  538. package/dist/esm/vendor/react-native/Animated/components/AnimatedFlatList.native.js.map +1 -0
  539. package/dist/esm/vendor/react-native/Animated/components/AnimatedImage.js +1 -1
  540. package/dist/esm/vendor/react-native/Animated/components/AnimatedImage.mjs +1 -1
  541. package/dist/esm/vendor/react-native/Animated/components/AnimatedImage.native.js +1 -1
  542. package/dist/esm/vendor/react-native/Animated/components/AnimatedScrollView.js +4 -11
  543. package/dist/esm/vendor/react-native/Animated/components/AnimatedScrollView.js.map +2 -2
  544. package/dist/esm/vendor/react-native/Animated/components/AnimatedScrollView.mjs +8 -7
  545. package/dist/esm/vendor/react-native/Animated/components/AnimatedScrollView.mjs.map +1 -1
  546. package/dist/esm/vendor/react-native/Animated/components/AnimatedScrollView.native.js +3 -2
  547. package/dist/esm/vendor/react-native/Animated/components/AnimatedScrollView.native.js.map +1 -1
  548. package/dist/esm/vendor/react-native/Animated/components/AnimatedSectionList.js +10 -0
  549. package/dist/esm/vendor/react-native/Animated/components/AnimatedSectionList.js.map +6 -0
  550. package/dist/esm/vendor/react-native/Animated/components/AnimatedSectionList.mjs +12 -0
  551. package/dist/esm/vendor/react-native/Animated/components/AnimatedSectionList.mjs.map +1 -0
  552. package/dist/esm/vendor/react-native/Animated/components/AnimatedSectionList.native.js +14 -0
  553. package/dist/esm/vendor/react-native/Animated/components/AnimatedSectionList.native.js.map +1 -0
  554. package/dist/esm/vendor/react-native/Animated/components/AnimatedText.js +1 -2
  555. package/dist/esm/vendor/react-native/Animated/components/AnimatedText.js.map +1 -1
  556. package/dist/esm/vendor/react-native/Animated/components/AnimatedText.mjs +1 -2
  557. package/dist/esm/vendor/react-native/Animated/components/AnimatedText.mjs.map +1 -1
  558. package/dist/esm/vendor/react-native/Animated/components/AnimatedText.native.js +1 -2
  559. package/dist/esm/vendor/react-native/Animated/components/AnimatedText.native.js.map +1 -1
  560. package/dist/esm/vendor/react-native/Animated/components/AnimatedView.js +1 -2
  561. package/dist/esm/vendor/react-native/Animated/components/AnimatedView.js.map +1 -1
  562. package/dist/esm/vendor/react-native/Animated/components/AnimatedView.mjs +1 -2
  563. package/dist/esm/vendor/react-native/Animated/components/AnimatedView.mjs.map +1 -1
  564. package/dist/esm/vendor/react-native/Animated/components/AnimatedView.native.js +1 -2
  565. package/dist/esm/vendor/react-native/Animated/components/AnimatedView.native.js.map +1 -1
  566. package/dist/esm/vendor/react-native/Animated/createAnimatedComponent.js +16 -12
  567. package/dist/esm/vendor/react-native/Animated/createAnimatedComponent.js.map +2 -2
  568. package/dist/esm/vendor/react-native/Animated/createAnimatedComponent.mjs +15 -16
  569. package/dist/esm/vendor/react-native/Animated/createAnimatedComponent.mjs.map +1 -1
  570. package/dist/esm/vendor/react-native/Animated/createAnimatedComponent.native.js +11 -11
  571. package/dist/esm/vendor/react-native/Animated/createAnimatedComponent.native.js.map +1 -1
  572. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedAddition.js +2 -0
  573. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedAddition.js.map +1 -1
  574. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedAddition.mjs +2 -0
  575. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedAddition.mjs.map +1 -1
  576. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedAddition.native.js +9 -1
  577. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedAddition.native.js.map +1 -1
  578. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedColor.js +33 -52
  579. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedColor.js.map +1 -1
  580. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedColor.mjs +34 -46
  581. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedColor.mjs.map +1 -1
  582. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedColor.native.js +27 -32
  583. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedColor.native.js.map +1 -1
  584. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDiffClamp.js +6 -1
  585. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDiffClamp.js.map +1 -1
  586. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDiffClamp.mjs +6 -1
  587. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDiffClamp.mjs.map +1 -1
  588. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDiffClamp.native.js +11 -1
  589. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDiffClamp.native.js.map +1 -1
  590. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDivision.js +5 -2
  591. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDivision.js.map +1 -1
  592. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDivision.mjs +5 -2
  593. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDivision.mjs.map +1 -1
  594. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDivision.native.js +9 -1
  595. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedDivision.native.js.map +1 -1
  596. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedInterpolation.js +25 -28
  597. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedInterpolation.js.map +2 -2
  598. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedInterpolation.mjs +26 -31
  599. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedInterpolation.mjs.map +1 -1
  600. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedInterpolation.native.js +13 -12
  601. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedInterpolation.native.js.map +1 -1
  602. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedModulo.js +2 -0
  603. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedModulo.js.map +1 -1
  604. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedModulo.mjs +2 -0
  605. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedModulo.mjs.map +1 -1
  606. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedModulo.native.js +11 -1
  607. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedModulo.native.js.map +1 -1
  608. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedMultiplication.js +2 -0
  609. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedMultiplication.js.map +1 -1
  610. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedMultiplication.mjs +2 -0
  611. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedMultiplication.mjs.map +1 -1
  612. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedMultiplication.native.js +9 -1
  613. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedMultiplication.native.js.map +1 -1
  614. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedNode.js +14 -10
  615. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedNode.js.map +1 -1
  616. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedNode.mjs +13 -8
  617. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedNode.mjs.map +1 -1
  618. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedNode.native.js +13 -5
  619. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedNode.native.js.map +1 -1
  620. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedProps.js +23 -20
  621. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedProps.js.map +1 -1
  622. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedProps.mjs +19 -19
  623. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedProps.mjs.map +1 -1
  624. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedProps.native.js +4 -2
  625. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedProps.native.js.map +1 -1
  626. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedStyle.js +24 -22
  627. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedStyle.js.map +1 -1
  628. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedStyle.mjs +24 -22
  629. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedStyle.mjs.map +1 -1
  630. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedStyle.native.js +14 -4
  631. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedStyle.native.js.map +1 -1
  632. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedSubtraction.js +2 -0
  633. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedSubtraction.js.map +1 -1
  634. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedSubtraction.mjs +2 -0
  635. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedSubtraction.mjs.map +1 -1
  636. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedSubtraction.native.js +9 -1
  637. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedSubtraction.native.js.map +1 -1
  638. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTracking.js +13 -11
  639. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTracking.js.map +1 -1
  640. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTracking.mjs +13 -6
  641. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTracking.mjs.map +1 -1
  642. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTracking.native.js +16 -4
  643. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTracking.native.js.map +1 -1
  644. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTransform.js +18 -17
  645. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTransform.js.map +1 -1
  646. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTransform.mjs +18 -17
  647. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTransform.mjs.map +1 -1
  648. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTransform.native.js +10 -2
  649. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedTransform.native.js.map +1 -1
  650. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValue.js +11 -6
  651. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValue.js.map +1 -1
  652. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValue.mjs +11 -6
  653. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValue.mjs.map +1 -1
  654. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValue.native.js +11 -3
  655. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValue.native.js.map +1 -1
  656. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValueXY.js +5 -83
  657. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValueXY.js.map +1 -1
  658. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValueXY.mjs +7 -73
  659. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValueXY.mjs.map +1 -1
  660. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValueXY.native.js +7 -70
  661. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedValueXY.native.js.map +1 -1
  662. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedWithChildren.js +16 -11
  663. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedWithChildren.js.map +1 -1
  664. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedWithChildren.mjs +4 -10
  665. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedWithChildren.mjs.map +1 -1
  666. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedWithChildren.native.js +43 -8
  667. package/dist/esm/vendor/react-native/Animated/nodes/AnimatedWithChildren.native.js.map +1 -1
  668. package/dist/esm/vendor/react-native/Animated/useAnimatedProps.js +15 -31
  669. package/dist/esm/vendor/react-native/Animated/useAnimatedProps.js.map +1 -1
  670. package/dist/esm/vendor/react-native/Animated/useAnimatedProps.mjs +14 -23
  671. package/dist/esm/vendor/react-native/Animated/useAnimatedProps.mjs.map +1 -1
  672. package/dist/esm/vendor/react-native/Animated/useAnimatedProps.native.js +25 -19
  673. package/dist/esm/vendor/react-native/Animated/useAnimatedProps.native.js.map +1 -1
  674. package/dist/esm/{Batchinator → vendor/react-native/Batchinator}/index.js +2 -2
  675. package/dist/esm/vendor/react-native/Batchinator/index.js.map +6 -0
  676. package/dist/esm/{Batchinator → vendor/react-native/Batchinator}/index.mjs +2 -2
  677. package/dist/esm/vendor/react-native/Batchinator/index.mjs.map +1 -0
  678. package/dist/esm/{Batchinator → vendor/react-native/Batchinator}/index.native.js +2 -4
  679. package/dist/esm/vendor/react-native/Batchinator/index.native.js.map +1 -0
  680. package/dist/esm/vendor/react-native/EventEmitter/NativeEventEmitter.js +42 -0
  681. package/dist/esm/vendor/react-native/EventEmitter/NativeEventEmitter.js.map +6 -0
  682. package/dist/esm/vendor/react-native/EventEmitter/NativeEventEmitter.mjs +34 -0
  683. package/dist/esm/vendor/react-native/EventEmitter/NativeEventEmitter.mjs.map +1 -0
  684. package/dist/esm/vendor/react-native/{NativeEventEmitter/index.native.js → EventEmitter/NativeEventEmitter.native.js} +19 -12
  685. package/dist/esm/vendor/react-native/EventEmitter/NativeEventEmitter.native.js.map +1 -0
  686. package/dist/esm/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.js.map +6 -0
  687. package/dist/esm/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.mjs.map +1 -0
  688. package/dist/esm/vendor/react-native/EventEmitter/RCTDeviceEventEmitter.native.js.map +1 -0
  689. package/dist/esm/vendor/react-native/FillRateHelper/index.js +3 -3
  690. package/dist/esm/vendor/react-native/FillRateHelper/index.js.map +2 -2
  691. package/dist/esm/vendor/react-native/FillRateHelper/index.mjs +3 -3
  692. package/dist/esm/vendor/react-native/FillRateHelper/index.mjs.map +1 -1
  693. package/dist/esm/vendor/react-native/FillRateHelper/index.native.js +7 -7
  694. package/dist/esm/vendor/react-native/FillRateHelper/index.native.js.map +1 -1
  695. package/dist/esm/vendor/react-native/FlatList/index.js +254 -0
  696. package/dist/esm/vendor/react-native/FlatList/index.js.map +6 -0
  697. package/dist/esm/vendor/react-native/FlatList/index.mjs +228 -0
  698. package/dist/esm/vendor/react-native/FlatList/index.mjs.map +1 -0
  699. package/dist/esm/vendor/react-native/FlatList/index.native.js +330 -0
  700. package/dist/esm/vendor/react-native/FlatList/index.native.js.map +1 -0
  701. package/dist/esm/vendor/react-native/JSEventLoopWatchdog/index.js +39 -0
  702. package/dist/esm/vendor/react-native/JSEventLoopWatchdog/index.js.map +6 -0
  703. package/dist/esm/vendor/react-native/JSEventLoopWatchdog/index.mjs +52 -0
  704. package/dist/esm/vendor/react-native/JSEventLoopWatchdog/index.mjs.map +1 -0
  705. package/dist/esm/vendor/react-native/JSEventLoopWatchdog/index.native.js +53 -0
  706. package/dist/esm/vendor/react-native/JSEventLoopWatchdog/index.native.js.map +1 -0
  707. package/dist/esm/vendor/react-native/LayoutAnimation/index.js +84 -0
  708. package/dist/esm/vendor/react-native/LayoutAnimation/index.js.map +6 -0
  709. package/dist/esm/vendor/react-native/LayoutAnimation/index.mjs +85 -0
  710. package/dist/esm/vendor/react-native/LayoutAnimation/index.mjs.map +1 -0
  711. package/dist/esm/vendor/react-native/LayoutAnimation/index.native.js +86 -0
  712. package/dist/esm/vendor/react-native/LayoutAnimation/index.native.js.map +1 -0
  713. package/dist/esm/vendor/react-native/PanResponder/index.js +14 -202
  714. package/dist/esm/vendor/react-native/PanResponder/index.js.map +2 -2
  715. package/dist/esm/vendor/react-native/PanResponder/index.mjs +18 -192
  716. package/dist/esm/vendor/react-native/PanResponder/index.mjs.map +1 -1
  717. package/dist/esm/vendor/react-native/PanResponder/index.native.js +33 -192
  718. package/dist/esm/vendor/react-native/PanResponder/index.native.js.map +1 -1
  719. package/dist/esm/vendor/react-native/PooledClass/index.js +21 -0
  720. package/dist/esm/vendor/react-native/PooledClass/index.js.map +6 -0
  721. package/dist/esm/vendor/react-native/PooledClass/index.mjs +24 -0
  722. package/dist/esm/vendor/react-native/PooledClass/index.mjs.map +1 -0
  723. package/dist/esm/vendor/react-native/PooledClass/index.native.js +24 -0
  724. package/dist/esm/vendor/react-native/PooledClass/index.native.js.map +1 -0
  725. package/dist/esm/vendor/react-native/ReactNative/ReactNativeFeatureFlags.js +12 -0
  726. package/dist/esm/vendor/react-native/ReactNative/ReactNativeFeatureFlags.js.map +6 -0
  727. package/dist/esm/vendor/react-native/ReactNative/ReactNativeFeatureFlags.mjs +10 -0
  728. package/dist/esm/vendor/react-native/ReactNative/ReactNativeFeatureFlags.mjs.map +1 -0
  729. package/dist/esm/vendor/react-native/ReactNative/ReactNativeFeatureFlags.native.js +20 -0
  730. package/dist/esm/vendor/react-native/ReactNative/ReactNativeFeatureFlags.native.js.map +1 -0
  731. package/dist/esm/vendor/react-native/SectionList/index.js +63 -0
  732. package/dist/esm/vendor/react-native/SectionList/index.js.map +6 -0
  733. package/dist/esm/vendor/react-native/SectionList/index.mjs +68 -0
  734. package/dist/esm/vendor/react-native/SectionList/index.mjs.map +1 -0
  735. package/dist/esm/vendor/react-native/SectionList/index.native.js +161 -0
  736. package/dist/esm/vendor/react-native/SectionList/index.native.js.map +1 -0
  737. package/dist/esm/vendor/react-native/StaticContainer/index.js +15 -0
  738. package/dist/esm/vendor/react-native/StaticContainer/index.js.map +6 -0
  739. package/dist/esm/vendor/react-native/StaticContainer/index.mjs +13 -0
  740. package/dist/esm/vendor/react-native/StaticContainer/index.mjs.map +1 -0
  741. package/dist/esm/vendor/react-native/StaticContainer/index.native.js +77 -0
  742. package/dist/esm/vendor/react-native/StaticContainer/index.native.js.map +1 -0
  743. package/dist/esm/vendor/react-native/StaticRenderer/index.js +14 -0
  744. package/dist/esm/vendor/react-native/StaticRenderer/index.js.map +6 -0
  745. package/dist/esm/vendor/react-native/StaticRenderer/index.mjs +12 -0
  746. package/dist/esm/vendor/react-native/StaticRenderer/index.mjs.map +1 -0
  747. package/dist/esm/vendor/react-native/StaticRenderer/index.native.js +76 -0
  748. package/dist/esm/vendor/react-native/StaticRenderer/index.native.js.map +1 -0
  749. package/dist/esm/vendor/react-native/TouchHistoryMath/index.js.map +2 -2
  750. package/dist/esm/vendor/react-native/TouchHistoryMath/index.mjs.map +1 -1
  751. package/dist/esm/vendor/react-native/TouchHistoryMath/index.native.js.map +1 -1
  752. package/dist/esm/vendor/react-native/TurboModule/RCTExport.js +9 -0
  753. package/dist/esm/vendor/react-native/TurboModule/RCTExport.js.map +2 -2
  754. package/dist/esm/vendor/react-native/TurboModule/RCTExport.mjs +7 -1
  755. package/dist/esm/vendor/react-native/TurboModule/RCTExport.mjs.map +1 -1
  756. package/dist/esm/vendor/react-native/TurboModule/RCTExport.native.js +9 -1
  757. package/dist/esm/vendor/react-native/TurboModule/RCTExport.native.js.map +1 -1
  758. package/dist/esm/vendor/react-native/TurboModule/TurboModuleRegistry.js +6 -1
  759. package/dist/esm/vendor/react-native/TurboModule/TurboModuleRegistry.js.map +1 -1
  760. package/dist/esm/vendor/react-native/TurboModule/TurboModuleRegistry.mjs +3 -1
  761. package/dist/esm/vendor/react-native/TurboModule/TurboModuleRegistry.mjs.map +1 -1
  762. package/dist/esm/vendor/react-native/TurboModule/TurboModuleRegistry.native.js +3 -1
  763. package/dist/esm/vendor/react-native/TurboModule/TurboModuleRegistry.native.js.map +1 -1
  764. package/dist/esm/vendor/react-native/Types/CoreEventTypes.js +119 -0
  765. package/dist/esm/vendor/react-native/Types/CoreEventTypes.js.map +2 -2
  766. package/dist/esm/vendor/react-native/Types/CoreEventTypes.mjs +131 -1
  767. package/dist/esm/vendor/react-native/Types/CoreEventTypes.mjs.map +1 -1
  768. package/dist/esm/vendor/react-native/Types/CoreEventTypes.native.js +135 -1
  769. package/dist/esm/vendor/react-native/Types/CoreEventTypes.native.js.map +1 -1
  770. package/dist/esm/vendor/react-native/Utilities/Platform.js +6 -0
  771. package/dist/esm/vendor/react-native/Utilities/Platform.js.map +6 -0
  772. package/dist/esm/vendor/react-native/Utilities/Platform.mjs +4 -0
  773. package/dist/esm/vendor/react-native/Utilities/Platform.mjs.map +1 -0
  774. package/dist/esm/vendor/react-native/Utilities/Platform.native.js +4 -0
  775. package/dist/esm/vendor/react-native/Utilities/Platform.native.js.map +1 -0
  776. package/dist/esm/vendor/react-native/Utilities/clamp.js.map +2 -2
  777. package/dist/esm/vendor/react-native/Utilities/clamp.mjs.map +1 -1
  778. package/dist/esm/vendor/react-native/Utilities/clamp.native.js.map +1 -1
  779. package/dist/esm/vendor/react-native/Utilities/setAndForwardRef.js +5 -3
  780. package/dist/esm/vendor/react-native/Utilities/setAndForwardRef.js.map +1 -1
  781. package/dist/esm/vendor/react-native/Utilities/setAndForwardRef.mjs +5 -4
  782. package/dist/esm/vendor/react-native/Utilities/setAndForwardRef.mjs.map +1 -1
  783. package/dist/esm/vendor/react-native/Utilities/setAndForwardRef.native.js +5 -3
  784. package/dist/esm/vendor/react-native/Utilities/setAndForwardRef.native.js.map +1 -1
  785. package/dist/esm/vendor/react-native/Utilities/useMergeRefs.js +15 -0
  786. package/dist/esm/vendor/react-native/Utilities/useMergeRefs.js.map +6 -0
  787. package/dist/esm/vendor/react-native/Utilities/useMergeRefs.mjs +10 -0
  788. package/dist/esm/vendor/react-native/Utilities/useMergeRefs.mjs.map +1 -0
  789. package/dist/esm/vendor/react-native/Utilities/useMergeRefs.native.js +25 -0
  790. package/dist/esm/vendor/react-native/Utilities/useMergeRefs.native.js.map +1 -0
  791. package/dist/esm/vendor/react-native/Utilities/useRefEffect.js +14 -0
  792. package/dist/esm/vendor/react-native/Utilities/useRefEffect.js.map +6 -0
  793. package/dist/esm/vendor/react-native/Utilities/useRefEffect.mjs +9 -0
  794. package/dist/esm/vendor/react-native/Utilities/useRefEffect.mjs.map +1 -0
  795. package/dist/esm/vendor/react-native/Utilities/useRefEffect.native.js +9 -0
  796. package/dist/esm/vendor/react-native/Utilities/useRefEffect.native.js.map +1 -0
  797. package/dist/esm/vendor/react-native/ViewabilityHelper/index.js +135 -0
  798. package/dist/esm/vendor/react-native/ViewabilityHelper/index.js.map +6 -0
  799. package/dist/esm/vendor/react-native/ViewabilityHelper/index.mjs +117 -0
  800. package/dist/esm/vendor/react-native/ViewabilityHelper/index.mjs.map +1 -0
  801. package/dist/esm/vendor/react-native/ViewabilityHelper/index.native.js +185 -0
  802. package/dist/esm/vendor/react-native/ViewabilityHelper/index.native.js.map +1 -0
  803. package/dist/esm/vendor/react-native/VirtualizeUtils/index.js.map +2 -2
  804. package/dist/esm/vendor/react-native/VirtualizeUtils/index.mjs.map +1 -1
  805. package/dist/esm/vendor/react-native/VirtualizeUtils/index.native.js.map +1 -1
  806. package/dist/esm/vendor/react-native/VirtualizedList/CellRenderMask.js +2 -8
  807. package/dist/esm/vendor/react-native/VirtualizedList/CellRenderMask.js.map +2 -2
  808. package/dist/esm/vendor/react-native/VirtualizedList/CellRenderMask.mjs +1 -3
  809. package/dist/esm/vendor/react-native/VirtualizedList/CellRenderMask.mjs.map +1 -1
  810. package/dist/esm/vendor/react-native/VirtualizedList/CellRenderMask.native.js +1 -9
  811. package/dist/esm/vendor/react-native/VirtualizedList/CellRenderMask.native.js.map +1 -1
  812. package/dist/esm/vendor/react-native/VirtualizedList/ChildListCollection.js.map +2 -2
  813. package/dist/esm/vendor/react-native/VirtualizedList/ChildListCollection.mjs.map +1 -1
  814. package/dist/esm/vendor/react-native/VirtualizedList/ChildListCollection.native.js.map +1 -1
  815. package/dist/esm/vendor/react-native/VirtualizedList/StateSafePureComponent.js +2 -2
  816. package/dist/esm/vendor/react-native/VirtualizedList/StateSafePureComponent.js.map +2 -2
  817. package/dist/esm/vendor/react-native/VirtualizedList/StateSafePureComponent.mjs +2 -2
  818. package/dist/esm/vendor/react-native/VirtualizedList/StateSafePureComponent.mjs.map +1 -1
  819. package/dist/esm/vendor/react-native/VirtualizedList/StateSafePureComponent.native.js +2 -2
  820. package/dist/esm/vendor/react-native/VirtualizedList/StateSafePureComponent.native.js.map +1 -1
  821. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.js +16 -10
  822. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.js.map +2 -2
  823. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.mjs +14 -7
  824. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.mjs.map +1 -1
  825. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.native.js +16 -9
  826. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListCellRenderer.native.js.map +1 -1
  827. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListContext.js +6 -12
  828. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListContext.js.map +2 -2
  829. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListContext.mjs +3 -2
  830. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListContext.mjs.map +1 -1
  831. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListContext.native.js +3 -2
  832. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListContext.native.js.map +1 -1
  833. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListProps.js +42 -0
  834. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListProps.js.map +2 -2
  835. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListProps.mjs +39 -1
  836. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListProps.mjs.map +1 -1
  837. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListProps.native.js +39 -1
  838. package/dist/esm/vendor/react-native/VirtualizedList/VirtualizedListProps.native.js.map +1 -1
  839. package/dist/esm/vendor/react-native/VirtualizedList/index.js +135 -910
  840. package/dist/esm/vendor/react-native/VirtualizedList/index.js.map +2 -2
  841. package/dist/esm/vendor/react-native/VirtualizedList/index.mjs +138 -867
  842. package/dist/esm/vendor/react-native/VirtualizedList/index.mjs.map +1 -1
  843. package/dist/esm/vendor/react-native/VirtualizedList/index.native.js +128 -912
  844. package/dist/esm/vendor/react-native/VirtualizedList/index.native.js.map +1 -1
  845. package/dist/esm/vendor/react-native/VirtualizedSectionList/index.js +96 -0
  846. package/dist/esm/vendor/react-native/VirtualizedSectionList/index.js.map +6 -0
  847. package/dist/esm/vendor/react-native/VirtualizedSectionList/index.mjs +95 -0
  848. package/dist/esm/vendor/react-native/VirtualizedSectionList/index.mjs.map +1 -0
  849. package/dist/esm/vendor/react-native/VirtualizedSectionList/index.native.js +204 -0
  850. package/dist/esm/vendor/react-native/VirtualizedSectionList/index.native.js.map +1 -0
  851. package/dist/esm/vendor/react-native/deepDiffer/index.js +3 -3
  852. package/dist/esm/vendor/react-native/deepDiffer/index.js.map +3 -3
  853. package/dist/esm/vendor/react-native/deepDiffer/index.mjs +3 -3
  854. package/dist/esm/vendor/react-native/deepDiffer/index.mjs.map +1 -1
  855. package/dist/esm/vendor/react-native/deepDiffer/index.native.js +3 -3
  856. package/dist/esm/vendor/react-native/deepDiffer/index.native.js.map +1 -1
  857. package/dist/esm/vendor/react-native/infoLog/index.js.map +2 -2
  858. package/dist/esm/vendor/react-native/infoLog/index.mjs.map +1 -1
  859. package/dist/esm/vendor/react-native/infoLog/index.native.js.map +1 -1
  860. package/dist/esm/vendor/react-native/vendor/emitter/EventEmitter.js +69 -0
  861. package/dist/esm/vendor/react-native/vendor/emitter/EventEmitter.js.map +6 -0
  862. package/dist/esm/vendor/react-native/vendor/emitter/EventEmitter.mjs +61 -0
  863. package/dist/esm/vendor/react-native/vendor/emitter/EventEmitter.mjs.map +1 -0
  864. package/dist/esm/vendor/react-native/vendor/emitter/EventEmitter.native.js +122 -0
  865. package/dist/esm/vendor/react-native/vendor/emitter/EventEmitter.native.js.map +1 -0
  866. package/dist/esm/without-animated.js +1 -1
  867. package/dist/esm/without-animated.mjs +1 -1
  868. package/dist/esm/without-animated.native.js +1 -1
  869. package/package.json +6 -6
  870. package/src/InteractionManager/index.tsx +1 -0
  871. package/src/ScrollView/index.tsx +238 -1
  872. package/src/SectionList.tsx +9 -0
  873. package/src/TextInput/index.tsx +20 -1
  874. package/src/TextInput/types.tsx +2 -0
  875. package/src/TouchableNativeFeedback.tsx +9 -0
  876. package/src/VirtualizedList.tsx +9 -0
  877. package/src/createElement/index.tsx +4 -4
  878. package/src/index.tsx +7 -5
  879. package/src/modules/requestIdleCallback.ts +34 -0
  880. package/src/vendor/react-native/Animated/Animated.js +17 -13
  881. package/src/vendor/react-native/Animated/AnimatedEvent.js +40 -65
  882. package/src/vendor/react-native/Animated/AnimatedImplementation.js +151 -190
  883. package/src/vendor/react-native/Animated/AnimatedMock.js +30 -44
  884. package/src/vendor/react-native/Animated/AnimatedPlatformConfig.js +4 -2
  885. package/src/vendor/react-native/Animated/Easing.js +60 -65
  886. package/src/vendor/react-native/Animated/NativeAnimatedHelper.js +87 -123
  887. package/src/vendor/react-native/Animated/NativeAnimatedModule.js +59 -3
  888. package/src/vendor/react-native/Animated/NativeAnimatedTurboModule.js +55 -3
  889. package/src/vendor/react-native/Animated/SpringConfig.js +14 -9
  890. package/src/vendor/react-native/Animated/animations/Animation.js +44 -31
  891. package/src/vendor/react-native/Animated/animations/DecayAnimation.js +52 -54
  892. package/src/vendor/react-native/Animated/animations/SpringAnimation.js +84 -140
  893. package/src/vendor/react-native/Animated/animations/TimingAnimation.js +29 -57
  894. package/src/vendor/react-native/Animated/bezier.js +80 -71
  895. package/src/vendor/react-native/Animated/components/AnimatedFlatList.jsx +23 -0
  896. package/src/vendor/react-native/Animated/components/AnimatedImage.js +2 -2
  897. package/src/vendor/react-native/Animated/components/{AnimatedScrollView.js → AnimatedScrollView.jsx} +9 -15
  898. package/src/vendor/react-native/Animated/components/AnimatedSectionList.jsx +23 -0
  899. package/src/vendor/react-native/Animated/components/AnimatedText.js +1 -3
  900. package/src/vendor/react-native/Animated/components/AnimatedView.js +1 -3
  901. package/src/vendor/react-native/Animated/createAnimatedComponent.jsx +46 -0
  902. package/src/vendor/react-native/Animated/nodes/AnimatedAddition.js +28 -26
  903. package/src/vendor/react-native/Animated/nodes/AnimatedColor.js +56 -122
  904. package/src/vendor/react-native/Animated/nodes/AnimatedDiffClamp.js +10 -7
  905. package/src/vendor/react-native/Animated/nodes/AnimatedDivision.js +36 -41
  906. package/src/vendor/react-native/Animated/nodes/{AnimatedInterpolation.js → AnimatedInterpolation.jsx} +55 -70
  907. package/src/vendor/react-native/Animated/nodes/AnimatedModulo.js +4 -4
  908. package/src/vendor/react-native/Animated/nodes/AnimatedMultiplication.js +28 -27
  909. package/src/vendor/react-native/Animated/nodes/AnimatedNode.js +23 -40
  910. package/src/vendor/react-native/Animated/nodes/AnimatedProps.js +25 -45
  911. package/src/vendor/react-native/Animated/nodes/AnimatedStyle.js +32 -46
  912. package/src/vendor/react-native/Animated/nodes/AnimatedSubtraction.js +27 -26
  913. package/src/vendor/react-native/Animated/nodes/AnimatedTracking.js +16 -22
  914. package/src/vendor/react-native/Animated/nodes/AnimatedTransform.js +53 -62
  915. package/src/vendor/react-native/Animated/nodes/AnimatedValue.js +33 -59
  916. package/src/vendor/react-native/Animated/nodes/AnimatedValueXY.js +8 -101
  917. package/src/vendor/react-native/Animated/nodes/AnimatedWithChildren.js +21 -25
  918. package/src/vendor/react-native/Animated/useAnimatedProps.js +45 -93
  919. package/src/{Batchinator/index.tsx → vendor/react-native/Batchinator/index.js} +10 -12
  920. package/src/vendor/react-native/{NativeEventEmitter/index.js → EventEmitter/NativeEventEmitter.js} +14 -34
  921. package/src/vendor/react-native/{NativeEventEmitter → EventEmitter}/RCTDeviceEventEmitter.js +4 -2
  922. package/src/vendor/react-native/FillRateHelper/{index.tsx → index.js} +41 -47
  923. package/src/vendor/react-native/FlatList/index.jsx +529 -0
  924. package/src/vendor/react-native/JSEventLoopWatchdog/index.js +84 -0
  925. package/src/vendor/react-native/LayoutAnimation/index.js +121 -0
  926. package/src/vendor/react-native/PanResponder/index.js +131 -0
  927. package/src/vendor/react-native/PooledClass/index.js +61 -0
  928. package/src/vendor/react-native/ReactNative/ReactNativeFeatureFlags.js +19 -0
  929. package/src/vendor/react-native/SectionList/index.jsx +97 -0
  930. package/src/vendor/react-native/StaticContainer/index.js +45 -0
  931. package/src/vendor/react-native/StaticRenderer/index.js +26 -0
  932. package/src/vendor/react-native/TouchHistoryMath/{index.tsx → index.js} +53 -36
  933. package/src/vendor/react-native/TurboModule/RCTExport.js +13 -2
  934. package/src/vendor/react-native/TurboModule/TurboModuleRegistry.js +12 -2
  935. package/src/vendor/react-native/Types/CoreEventTypes.js +153 -0
  936. package/src/vendor/react-native/Utilities/Platform.js +2 -0
  937. package/src/vendor/react-native/Utilities/{clamp.ts → clamp.js} +8 -6
  938. package/src/vendor/react-native/Utilities/setAndForwardRef.js +18 -11
  939. package/src/vendor/react-native/Utilities/useMergeRefs.js +41 -0
  940. package/src/vendor/react-native/Utilities/useRefEffect.js +44 -0
  941. package/src/vendor/react-native/ViewabilityHelper/index.js +250 -0
  942. package/src/vendor/react-native/ViewabilityHelper.ts +1 -1
  943. package/src/vendor/react-native/VirtualizeUtils/{index.tsx → index.js} +40 -48
  944. package/src/vendor/react-native/VirtualizedList/{CellRenderMask.ts → CellRenderMask.js} +14 -26
  945. package/src/vendor/react-native/VirtualizedList/{ChildListCollection.tsx → ChildListCollection.js} +10 -11
  946. package/src/vendor/react-native/VirtualizedList/{StateSafePureComponent.tsx → StateSafePureComponent.js} +19 -19
  947. package/src/vendor/react-native/VirtualizedList/{VirtualizedListCellRenderer.tsx → VirtualizedListCellRenderer.jsx} +43 -70
  948. package/src/vendor/react-native/VirtualizedList/{VirtualizedListContext.tsx → VirtualizedListContext.jsx} +24 -44
  949. package/src/vendor/react-native/VirtualizedList/VirtualizedListProps.js +46 -0
  950. package/src/vendor/react-native/VirtualizedList/index.jsx +395 -0
  951. package/src/vendor/react-native/VirtualizedSectionList/index.jsx +148 -0
  952. package/src/vendor/react-native/deepDiffer/{index.tsx → index.js} +32 -16
  953. package/src/vendor/react-native/infoLog/{index.tsx → index.js} +7 -3
  954. package/src/vendor/react-native/useRefEffect.js +1 -1
  955. package/src/vendor/react-native/vendor/emitter/EventEmitter.js +118 -0
  956. package/src/without-animated.tsx +1 -1
  957. package/dist/cjs/Batchinator/index.js.map +0 -6
  958. package/dist/cjs/Batchinator/index.native.js.map +0 -6
  959. package/dist/cjs/vendor/react-native/NativeEventEmitter/RCTDeviceEventEmitter.js.map +0 -6
  960. package/dist/cjs/vendor/react-native/NativeEventEmitter/RCTDeviceEventEmitter.native.js.map +0 -6
  961. package/dist/cjs/vendor/react-native/NativeEventEmitter/index.js.map +0 -6
  962. package/dist/cjs/vendor/react-native/NativeEventEmitter/index.native.js.map +0 -6
  963. package/dist/esm/Batchinator/index.js.map +0 -6
  964. package/dist/esm/Batchinator/index.mjs.map +0 -1
  965. package/dist/esm/Batchinator/index.native.js.map +0 -1
  966. package/dist/esm/vendor/react-native/NativeEventEmitter/RCTDeviceEventEmitter.js.map +0 -6
  967. package/dist/esm/vendor/react-native/NativeEventEmitter/RCTDeviceEventEmitter.mjs.map +0 -1
  968. package/dist/esm/vendor/react-native/NativeEventEmitter/RCTDeviceEventEmitter.native.js.map +0 -1
  969. package/dist/esm/vendor/react-native/NativeEventEmitter/index.js +0 -50
  970. package/dist/esm/vendor/react-native/NativeEventEmitter/index.js.map +0 -6
  971. package/dist/esm/vendor/react-native/NativeEventEmitter/index.mjs +0 -41
  972. package/dist/esm/vendor/react-native/NativeEventEmitter/index.mjs.map +0 -1
  973. package/dist/esm/vendor/react-native/NativeEventEmitter/index.native.js.map +0 -1
  974. package/src/vendor/react-native/Animated/createAnimatedComponent.js +0 -51
  975. package/src/vendor/react-native/PanResponder/index.tsx +0 -594
  976. package/src/vendor/react-native/Types/CoreEventTypes.tsx +0 -88
  977. package/src/vendor/react-native/VirtualizedList/VirtualizedListProps.ts +0 -130
  978. package/src/vendor/react-native/VirtualizedList/index.tsx +0 -1797
  979. /package/dist/cjs/vendor/react-native/{NativeEventEmitter → EventEmitter}/RCTDeviceEventEmitter.cjs +0 -0
  980. /package/dist/cjs/vendor/react-native/{NativeEventEmitter → EventEmitter}/RCTDeviceEventEmitter.js +0 -0
  981. /package/dist/cjs/vendor/react-native/{NativeEventEmitter → EventEmitter}/RCTDeviceEventEmitter.native.js +0 -0
  982. /package/dist/esm/vendor/react-native/{NativeEventEmitter → EventEmitter}/RCTDeviceEventEmitter.js +0 -0
  983. /package/dist/esm/vendor/react-native/{NativeEventEmitter → EventEmitter}/RCTDeviceEventEmitter.mjs +0 -0
  984. /package/dist/esm/vendor/react-native/{NativeEventEmitter → EventEmitter}/RCTDeviceEventEmitter.native.js +0 -0
@@ -26,7 +26,7 @@ __export(ScrollView_exports, {
26
26
  default: () => ScrollView_default
27
27
  });
28
28
  module.exports = __toCommonJS(ScrollView_exports);
29
- var import_jsx_runtime = require("react/jsx-runtime"), import_react = __toESM(require("react")), import_react_native_web_internals = require("@tamagui/react-native-web-internals"), import_View = __toESM(require("../View/index")), import_ScrollViewBase = __toESM(require("./ScrollViewBase"));
29
+ var import_jsx_runtime = require("react/jsx-runtime"), import_react = __toESM(require("react")), import_react_native_web_internals = require("@tamagui/react-native-web-internals"), import_Dimensions = __toESM(require("../Dimensions/index")), import_View = __toESM(require("../View/index")), import_ScrollViewBase = __toESM(require("./ScrollViewBase"));
30
30
  function _assert_this_initialized(self) {
31
31
  if (self === void 0)
32
32
  throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
@@ -94,18 +94,145 @@ function _is_native_reflect_construct() {
94
94
  return !!result;
95
95
  })();
96
96
  }
97
- var IS_ANIMATING_TOUCH_START_THRESHOLD_MS = 16, ScrollView = /* @__PURE__ */ function(_React_Component) {
97
+ var emptyObject = {}, IS_ANIMATING_TOUCH_START_THRESHOLD_MS = 16, ScrollView = /* @__PURE__ */ function(_React_Component) {
98
98
  "use strict";
99
99
  _inherits(ScrollView2, _React_Component);
100
100
  function ScrollView2() {
101
101
  _class_call_check(this, ScrollView2);
102
102
  var _this;
103
- return _this = _call_super(this, ScrollView2, arguments), _define_property(_this, "_scrollNodeRef", void 0), _define_property(_this, "_innerViewRef", void 0), _define_property(_this, "keyboardWillOpenTo", null), _define_property(_this, "additionalScrollOffset", 0), _define_property(_this, "isTouching", !1), _define_property(_this, "lastMomentumScrollBeginTime", 0), _define_property(_this, "lastMomentumScrollEndTime", 0), // Reset to false every time becomes responder. This is used to:
103
+ return _this = _call_super(this, ScrollView2, arguments), _define_property(_this, "_scrollNodeRef", void 0), _define_property(_this, "_innerViewRef", void 0), _define_property(_this, "keyboardWillOpenTo", null), _define_property(_this, "additionalScrollOffset", 0), _define_property(_this, "preventNegativeScrollOffset", !1), _define_property(_this, "isTouching", !1), _define_property(_this, "lastMomentumScrollBeginTime", 0), _define_property(_this, "lastMomentumScrollEndTime", 0), // Reset to false every time becomes responder. This is used to:
104
104
  // - Determine if the scroll view has been scrolled and therefore should
105
105
  // refuse to give up its responder lock.
106
106
  // - Determine if releasing should dismiss the keyboard when we are in
107
107
  // tap-to-dismiss mode (!this.props.keyboardShouldPersistTaps).
108
- _define_property(_this, "observedScrollSinceBecomingResponder", !1), _define_property(_this, "becameResponderWhileAnimating", !1), _this;
108
+ _define_property(_this, "observedScrollSinceBecomingResponder", !1), _define_property(_this, "becameResponderWhileAnimating", !1), _define_property(_this, "flashScrollIndicators", function() {
109
+ _this.scrollResponderFlashScrollIndicators();
110
+ }), /**
111
+ * Scrolls to a given x, y offset, either immediately or with a smooth animation.
112
+ * Syntax:
113
+ *
114
+ * scrollTo(options: {x: number = 0; y: number = 0; animated: boolean = true})
115
+ *
116
+ * Note: The weird argument signature is due to the fact that, for historical reasons,
117
+ * the function also accepts separate arguments as as alternative to the options object.
118
+ * This is deprecated due to ambiguity (y before x), and SHOULD NOT BE USED.
119
+ */
120
+ _define_property(_this, "scrollTo", function(y, x, animated) {
121
+ typeof y == "number" ? console.warn("`scrollTo(y, x, animated)` is deprecated. Use `scrollTo({x: 5, y: 5, animated: true})` instead.") : { x, y, animated } = y || emptyObject, _this.scrollResponderScrollTo({
122
+ x: x || 0,
123
+ y: y || 0,
124
+ animated: animated !== !1
125
+ });
126
+ }), /**
127
+ * If this is a vertical ScrollView scrolls to the bottom.
128
+ * If this is a horizontal ScrollView scrolls to the right.
129
+ *
130
+ * Use `scrollToEnd({ animated: true })` for smooth animated scrolling,
131
+ * `scrollToEnd({ animated: false })` for immediate scrolling.
132
+ * If no options are passed, `animated` defaults to true.
133
+ */
134
+ _define_property(_this, "scrollToEnd", function(options) {
135
+ var animated = (options && options.animated) !== !1, { horizontal } = _this.props, scrollResponderNode = _this.getScrollableNode(), x = horizontal ? scrollResponderNode.scrollWidth : 0, y = horizontal ? 0 : scrollResponderNode.scrollHeight;
136
+ _this.scrollResponderScrollTo({
137
+ x,
138
+ y,
139
+ animated
140
+ });
141
+ }), /**
142
+ * A helper function to scroll to a specific point in the scrollview.
143
+ * This is currently used to help focus on child textviews, but can also
144
+ * be used to quickly scroll to any element we want to focus. Syntax:
145
+ *
146
+ * scrollResponderScrollTo(options: {x: number = 0; y: number = 0; animated: boolean = true})
147
+ *
148
+ * Note: The weird argument signature is due to the fact that, for historical reasons,
149
+ * the function also accepts separate arguments as as alternative to the options object.
150
+ * This is deprecated due to ambiguity (y before x), and SHOULD NOT BE USED.
151
+ */
152
+ _define_property(_this, "scrollResponderScrollTo", function(x, y, animated) {
153
+ typeof x == "number" ? console.warn("`scrollResponderScrollTo(x, y, animated)` is deprecated. Use `scrollResponderScrollTo({x: 5, y: 5, animated: true})` instead.") : { x, y, animated } = x || emptyObject;
154
+ var node = _this.getScrollableNode(), left = x || 0, top = y || 0;
155
+ node != null && (typeof node.scroll == "function" ? node.scroll({
156
+ top,
157
+ left,
158
+ behavior: animated ? "smooth" : "auto"
159
+ }) : (node.scrollLeft = left, node.scrollTop = top));
160
+ }), /**
161
+ * A helper function to zoom to a specific rect in the scrollview. The argument has the shape
162
+ * {x: number; y: number; width: number; height: number; animated: boolean = true}
163
+ *
164
+ * @platform ios
165
+ */
166
+ _define_property(_this, "scrollResponderZoomTo", function(rect, animated) {
167
+ import_react_native_web_internals.Platform.OS !== "ios" && (0, import_react_native_web_internals.invariant)("zoomToRect is not implemented");
168
+ }), /**
169
+ * This method should be used as the callback to onFocus in a TextInputs'
170
+ * parent view. Note that any module using this mixin needs to return
171
+ * the parent view's ref in getScrollViewRef() in order to use this method.
172
+ * @param {any} nodeHandle The TextInput node handle
173
+ * @param {number} additionalOffset The scroll view's top "contentInset".
174
+ * Default is 0.
175
+ * @param {bool} preventNegativeScrolling Whether to allow pulling the content
176
+ * down to make it meet the keyboard's top. Default is false.
177
+ */
178
+ _define_property(_this, "scrollResponderScrollNativeHandleToKeyboard", function(nodeHandle, additionalOffset, preventNegativeScrollOffset) {
179
+ _this.additionalScrollOffset = additionalOffset || 0, _this.preventNegativeScrollOffset = !!preventNegativeScrollOffset, import_react_native_web_internals.UIManager.measureLayout(nodeHandle, _this.getInnerViewNode(), _this.scrollResponderTextInputFocusError, _this.scrollResponderInputMeasureAndScrollToKeyboard);
180
+ }), /**
181
+ * The calculations performed here assume the scroll view takes up the entire
182
+ * screen - even if has some content inset. We then measure the offsets of the
183
+ * keyboard, and compensate both for the scroll view's "contentInset".
184
+ *
185
+ * @param {number} left Position of input w.r.t. table view.
186
+ * @param {number} top Position of input w.r.t. table view.
187
+ * @param {number} width Width of the text input.
188
+ * @param {number} height Height of the text input.
189
+ */
190
+ _define_property(_this, "scrollResponderInputMeasureAndScrollToKeyboard", function(left, top, width, height) {
191
+ var keyboardScreenY = import_Dimensions.default.get("window").height;
192
+ _this.keyboardWillOpenTo && (keyboardScreenY = _this.keyboardWillOpenTo.endCoordinates.screenY);
193
+ var scrollOffsetY = top - keyboardScreenY + height + _this.additionalScrollOffset;
194
+ _this.preventNegativeScrollOffset && (scrollOffsetY = Math.max(0, scrollOffsetY)), _this.scrollResponderScrollTo({
195
+ x: 0,
196
+ y: scrollOffsetY,
197
+ animated: !0
198
+ }), _this.additionalScrollOffset = 0, _this.preventNegativeScrollOffset = !1;
199
+ }), /**
200
+ * Warning, this may be called several times for a single keyboard opening.
201
+ * It's best to store the information in this method and then take any action
202
+ * at a later point (either in `keyboardDidShow` or other).
203
+ *
204
+ * Here's the order that events occur in:
205
+ * - focus
206
+ * - willShow {startCoordinates, endCoordinates} several times
207
+ * - didShow several times
208
+ * - blur
209
+ * - willHide {startCoordinates, endCoordinates} several times
210
+ * - didHide several times
211
+ *
212
+ * The `ScrollResponder` providesModule callbacks for each of these events.
213
+ * Even though any user could have easily listened to keyboard events
214
+ * themselves, using these `props` callbacks ensures that ordering of events
215
+ * is consistent - and not dependent on the order that the keyboard events are
216
+ * subscribed to. This matters when telling the scroll view to scroll to where
217
+ * the keyboard is headed - the scroll responder better have been notified of
218
+ * the keyboard destination before being instructed to scroll to where the
219
+ * keyboard will be. Stick to the `ScrollResponder` callbacks, and everything
220
+ * will work.
221
+ *
222
+ * WARNING: These callbacks will fire even if a keyboard is displayed in a
223
+ * different navigation pane. Filter out the events to determine if they are
224
+ * relevant to you. (For example, only if you receive these callbacks after
225
+ * you had explicitly focused a node etc).
226
+ */
227
+ _define_property(_this, "scrollResponderKeyboardWillShow", function(e) {
228
+ _this.keyboardWillOpenTo = e, _this.props.onKeyboardWillShow && _this.props.onKeyboardWillShow(e);
229
+ }), _define_property(_this, "scrollResponderKeyboardWillHide", function(e) {
230
+ _this.keyboardWillOpenTo = null, _this.props.onKeyboardWillHide && _this.props.onKeyboardWillHide(e);
231
+ }), _define_property(_this, "scrollResponderKeyboardDidShow", function(e) {
232
+ e && (_this.keyboardWillOpenTo = e), _this.props.onKeyboardDidShow && _this.props.onKeyboardDidShow(e);
233
+ }), _define_property(_this, "scrollResponderKeyboardDidHide", function(e) {
234
+ _this.keyboardWillOpenTo = null, _this.props.onKeyboardDidHide && _this.props.onKeyboardDidHide(e);
235
+ }), _this;
109
236
  }
110
237
  return _create_class(ScrollView2, [
111
238
  {
@@ -117,7 +244,7 @@ var IS_ANIMATING_TOUCH_START_THRESHOLD_MS = 16, ScrollView = /* @__PURE__ */ fun
117
244
  */
118
245
  key: "getScrollResponder",
119
246
  value: function() {
120
- return this.mixin;
247
+ return this;
121
248
  }
122
249
  },
123
250
  {
@@ -213,7 +340,8 @@ var IS_ANIMATING_TOUCH_START_THRESHOLD_MS = 16, ScrollView = /* @__PURE__ */ fun
213
340
  onResponderGrant: this.scrollResponderHandleResponderGrant.bind(this),
214
341
  onResponderTerminationRequest: this.scrollResponderHandleTerminationRequest.bind(this),
215
342
  onResponderRelease: this.scrollResponderHandleResponderRelease.bind(this),
216
- onResponderReject: this.scrollResponderHandleResponderReject.bind(this)
343
+ onResponderReject: this.scrollResponderHandleResponderReject.bind(this),
344
+ onResponderTerminate: this.scrollResponderHandleTerminate.bind(this)
217
345
  }, ScrollViewClass = import_ScrollViewBase.default;
218
346
  (0, import_react_native_web_internals.invariant)(ScrollViewClass !== void 0, "ScrollViewClass must not be undefined");
219
347
  var scrollView = /* @__PURE__ */ (0, import_jsx_runtime.jsx)(ScrollViewClass, {
@@ -248,7 +376,7 @@ var IS_ANIMATING_TOUCH_START_THRESHOLD_MS = 16, ScrollView = /* @__PURE__ */ fun
248
376
  {
249
377
  key: "_setScrollNodeRef",
250
378
  value: function(node) {
251
- this._scrollNodeRef = node, node != null && (node.getScrollResponder = this.getScrollResponder, node.getInnerViewNode = this.getInnerViewNode, node.getInnerViewRef = this.getInnerViewRef, node.getNativeScrollRef = this.getNativeScrollRef, node.getScrollableNode = this.getScrollableNode, node.scrollTo = this.scrollTo, node.scrollToEnd = this.scrollToEnd, node.scrollResponderZoomTo = this.scrollResponderZoomTo, node.scrollResponderScrollNativeHandleToKeyboard = this.scrollResponderScrollNativeHandleToKeyboard);
379
+ this._scrollNodeRef = node, node != null && (node.getScrollResponder = this.getScrollResponder, node.getInnerViewNode = this.getInnerViewNode, node.getInnerViewRef = this.getInnerViewRef, node.getNativeScrollRef = this.getNativeScrollRef, node.getScrollableNode = this.getScrollableNode, node.scrollTo = this.scrollTo, node.scrollToEnd = this.scrollToEnd, node.flashScrollIndicators = this.flashScrollIndicators, node.scrollResponderZoomTo = this.scrollResponderZoomTo, node.scrollResponderScrollNativeHandleToKeyboard = this.scrollResponderScrollNativeHandleToKeyboard);
252
380
  var ref = (0, import_react_native_web_internals.mergeRefs)(this.props.forwardedRef);
253
381
  ref(node);
254
382
  }
@@ -459,6 +587,12 @@ var IS_ANIMATING_TOUCH_START_THRESHOLD_MS = 16, ScrollView = /* @__PURE__ */ fun
459
587
  this.props.onTouchMove && this.props.onTouchMove(e);
460
588
  }
461
589
  },
590
+ {
591
+ key: "scrollResponderHandleTerminate",
592
+ value: function(e) {
593
+ this.props.onResponderTerminate && this.props.onResponderTerminate(e);
594
+ }
595
+ },
462
596
  {
463
597
  /**
464
598
  * A helper function for this class that lets us quickly determine if the
@@ -470,6 +604,20 @@ var IS_ANIMATING_TOUCH_START_THRESHOLD_MS = 16, ScrollView = /* @__PURE__ */ fun
470
604
  var now = Date.now(), timeSinceLastMomentumScrollEnd = now - this.lastMomentumScrollEndTime, isAnimating = timeSinceLastMomentumScrollEnd < IS_ANIMATING_TOUCH_START_THRESHOLD_MS || this.lastMomentumScrollEndTime < this.lastMomentumScrollBeginTime;
471
605
  return isAnimating;
472
606
  }
607
+ },
608
+ {
609
+ /**
610
+ * Displays the scroll indicators momentarily.
611
+ */
612
+ key: "scrollResponderFlashScrollIndicators",
613
+ value: function() {
614
+ }
615
+ },
616
+ {
617
+ key: "scrollResponderTextInputFocusError",
618
+ value: function(e) {
619
+ console.error("Error measuring text field: ", e);
620
+ }
473
621
  }
474
622
  ]), ScrollView2;
475
623
  }(import_react.default.Component), commonStyle = {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/ScrollView/index.tsx"],
4
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;AAAA;;;;;uDAWA,eAAkB,2BAClB,oCASO,gDAGP,cAAiB,mCACjB,wBAA2B;AAhB1B,SAAA,yBAAA,MAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmBD,IAAMA,wCAAwC,IAIxCC,aAAN,yBAAA,kBAAA;;YAAMA,aAAAA,gBAAAA;WAAAA,cAAAA;4BAAAA,WAAAA;;mBAAN,YAAA,MAAMA,aAAAA,SAAAA,GACJC,iBAAAA,OAAAA,kBAAAA,MAAAA,GACAC,iBAAAA,OAAAA,iBAAAA,MAAAA,GAEAC,iBAAAA,OAAAA,sBAA0B,IAAA,GAC1BC,iBAAAA,OAAAA,0BAAyB,CAAA,GACzBC,iBAAAA,OAAAA,cAAa,EAAA,GACbC,iBAAAA,OAAAA,+BAA8B,CAAA,GAC9BC,iBAAAA,OAAAA,6BAA4B,CAAA;;;;;IAO5BC,iBAAAA,OAAAA,wCAAuC,EAAA,GACvCC,iBAAAA,OAAAA,iCAAgC,EAAA;;uBAhB5BT,aAAAA;;;;;;;;MAwBJU,KAAAA;aAAAA,WAAAA;AACE,eAAO,KAAKC;MACd;;;MAEAC,KAAAA;aAAAA,WAAAA;AACE,eAAO,KAAKX;MACd;;;MAEAY,KAAAA;aAAAA,WAAAA;AACE,eAAO,KAAKX;MACd;;;MAEAY,KAAAA;aAAAA,WAAAA;AACE,eAAO,KAAKZ;MACd;;;MAEAa,KAAAA;aAAAA,WAAAA;AACE,eAAO,KAAKd;MACd;;;MAEAe,KAAAA;aAAAA,WAAAA;AACE,YAAM;UACJC;UACAC;UACAC;UACAC;UACAC;UACAC;;UAEAC;UACAC;UACAC;UACAC;;UAEA,GAAGC;QAAAA,IACD,KAAKC;AAET,YAAIC,QAAQC,IAAIC,aAAa,gBAAgB,KAAKH,MAAMI,OAAO;AAC7D,cAAMA,QAAQC,6CAAWC,QAAQ,KAAKN,MAAMI,KAAK,GAC3CG,mBAAmB;YAAC;YAAc;YAAkBC,OACxD,SAACC,MAAAA;mBAASL,SAASA,MAAMK,IAAAA,MAAUC;;AAErCC,2DACEJ,iBAAiBK,WAAW,GAC5B,4BAA4BC,KAAKC,UAAUP,gBAAAA,CAAAA,2DACzC;QAEN;AAEA,YAAIQ,yBAAyB,CAAC;AAC9B,QAAIxB,wBACFwB,yBAAyB;UACvBC,UAAU,KAAKC,uBAAuBC,KAAK,IAAI;QACjD;AAGF,YAAMC,yBAAyB,CAAC7B,cAAc8B,MAAMC,QAAQ5B,mBAAAA,GACtD6B,WACJH,0BAA0BzB,gBACtB6B,aAAAA,QAAMC,SAASC,IAAI,KAAKzB,MAAMsB,UAAU,SAACI,OAAOC,GAAAA;AAC9C,cAAMC,WAAWT,0BAA0B1B,oBAAoBoC,QAAQF,CAAAA,IAAK;AAC5E,iBAAID,SAAS,SAASE,YAAYlC,iBAE9B,uCAAAoC,KAACC,YAAAA,SAAAA;YACC3B,OAAOC,6CAAW2B,QAChBJ,YAAYK,OAAOC,cACnBxC,iBAAiBuC,OAAOE,kBAAkB;sBAG3CT;eAIEA;QAEX,CAAA,IACA,KAAK1B,MAAMsB,UAEXc,mBACJ,uCAAAN,KAACC,YAAAA,SAAAA;UACE,GAAGhB;;UAEJsB,aAAa;UACbC,KAAK,KAAKC,iBAAiBrB,KAAK,IAAI;UACpCd,OAAO;YACLd,cAAc2C,OAAOO;YACrB1C,iBAAiBmC,OAAOQ;YACxBpD;;;YAOAqD,YAAYpD,aAAa2C,OAAOU,iBAAiBV,OAAOW,cACxDC,qBAAqBvD,aACvB2C,OAAOa,0BACPb,OAAOc,uBAEL/C,QAAQ;UACZ,GAAGD;UACHK,OAAO;YAACsC;YAAWhD,iBAAiBmD;YAAoB,KAAK7C,MAAMI;;UACnE4C,cAAc,KAAKC,gCAAgC/B,KAAK,IAAI;UAC5DgC,aAAa,KAAKC,+BAA+BjC,KAAK,IAAI;UAC1DkC,YAAY,KAAKC,8BAA8BnC,KAAK,IAAI;UACxDoC,mBAAmB,KAAKC,qCAAqCrC,KAAK,IAAI;UACtEsC,iBAAiB,KAAKC,mCAAmCvC,KAAK,IAAI;UAClEwC,uBAAuB,KAAKC,yCAAyCzC,KAAK,IAAI;UAC9E0C,qBAAqB,KAAKC,uCAAuC3C,KAAK,IAAI;UAC1E4C,2BACE,KAAKC,6CAA6C7C,KAAK,IAAI;UAC7D8C,kCACE,KAAKC,oDAAoD/C,KAAK,IAAI;UACpEgD,4BACE,KAAKC,8CAA8CjD,KAAK,IAAI;UAC9DrB,UAAU,KAAKuE,cAAclD,KAAK,IAAI;UACtCmD,kBAAkB,KAAKC,oCAAoCpD,KAAK,IAAI;UACpEqD,+BACE,KAAKC,wCAAwCtD,KAAK,IAAI;UACxDuD,oBAAoB,KAAKC,sCAAsCxD,KAAK,IAAI;UACxEyD,mBAAmB,KAAKC,qCAAqC1D,KAAK,IAAI;QACxE,GAEM2D,kBAAkBC,sBAAAA;AAExBnE,yDAAUkE,oBAAoBnE,QAAW,uCAAA;AAEzC,YAAMqE,aACJ,uCAAAjD,KAAC+C,iBAAAA;UAAiB,GAAG7E;UAAOsC,KAAK,KAAK0C,kBAAkB9D,KAAK,IAAI;oBAC9DkB;;AAIL,eAAI5C,iBACK+B,6BAAAA,QAAM0D,aAAazF,gBAAgB;UAAEY,OAAOJ,MAAMI;QAAM,GAAG2E,UAAAA,IAG7DA;MACT;;;MAEA9D,KAAAA;aAAAA,SAAuBiE,GAAM;AAC3B,YAAM,EAAEC,OAAOC,OAAM,IAAKF,EAAEG,YAAYC;AACxC,aAAKtF,MAAMT,oBAAoB4F,OAAOC,MAAAA;MACxC;;;MAEAhB,KAAAA;aAAAA,SAAcc,GAAS;AACrB,QAAIjF,QAAQC,IAAIC,aAAa,gBACvB,KAAKH,MAAMH,YAAY,KAAKG,MAAMuF,uBAAuB,QAC3DC,QAAQC,KACN,mPAIE,GAKJ,KAAKzF,MAAMJ,wBAAwB,iBACrC8F,mDAAAA,GAGF,KAAKC,4BAA4BT,CAAAA;MACnC;;;MAEA3C,KAAAA;aAAAA,SAAiBqD,MAAI;AACnB,aAAKtH,gBAAgBsH;MACvB;;;MAEAZ,KAAAA;aAAAA,SAAkBY,MAAI;AACpB,aAAKvH,iBAAiBuH,MAIlBA,QAAQ,SACVA,KAAK9G,qBAAqB,KAAKA,oBAC/B8G,KAAK1G,mBAAmB,KAAKA,kBAC7B0G,KAAK3G,kBAAkB,KAAKA,iBAC5B2G,KAAKzG,qBAAqB,KAAKA,oBAC/ByG,KAAK5G,oBAAoB,KAAKA,mBAC9B4G,KAAKC,WAAW,KAAKA,UACrBD,KAAKE,cAAc,KAAKA,aACxBF,KAAKG,wBAAwB,KAAKA,uBAClCH,KAAKI,8CACH,KAAKA;AAET,YAAM1D,UAAM2D,6CAAU,KAAKjG,MAAML,YAAY;AAC7C2C,YAAIsD,IAAAA;MACN;;;;;;MAKAzB,KAAAA;aAAAA,WAAAA;AACE,eAAO,KAAK1F;MACd;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA2BAsF,KAAAA;aAAAA,WAAAA;AACE,eAAO;MACT;;;;;;;;;;;;;;MAaAE,KAAAA;aAAAA,SAAoDiB,GAAQ;AAQ1D,eAAO,KAAKgB,2BAA0B;MACxC;;;;;;;;;;;;;MAYAtB,KAAAA;aAAAA,WAAAA;AACEuB,uDAAQ,IAAO,yDAAA;MACjB;;;;;;;;;;;;;;;;;;MAiBA3B,KAAAA;aAAAA,WAAAA;AACE,eAAO,CAAC,KAAK5F;MACf;;;;;;;;MAOAyE,KAAAA;aAAAA,SAA8B6B,GAAQ;AACpC,YAAMG,cAAcH,EAAEG;AACtB,aAAK5G,aAAa4G,YAAYe,QAAQxF,WAAW,GACjD,KAAKZ,MAAMoD,cAAc,KAAKpD,MAAMoD,WAAW8B,CAAAA;MACjD;;;;;;MAKAR,KAAAA;aAAAA,SAAsCQ,GAAQ;AAC5C,aAAKlF,MAAMyE,sBAAsB,KAAKzE,MAAMyE,mBAAmBS,CAAAA;AAI/D,YAAMmB,4BAA4BC,iDAAeC,sBAAqB;AACtE,QACE,CAAC,KAAKvG,MAAMwG,6BACZH,6BAA6B,QAC7BnB,EAAEuB,WAAWJ,6BACb,CAAC,KAAKzH,wCACN,CAAC,KAAKC,kCAEN,KAAKmB,MAAM0G,sCACT,KAAK1G,MAAM0G,mCAAmCxB,CAAAA,GAChDoB,iDAAeK,cAAcN,yBAAAA;MAEjC;;;MAEAV,KAAAA;aAAAA,SAA4BT,GAAQ;AAClC,aAAKtG,uCAAuC,IAC5C,KAAKoB,MAAMH,YAAY,KAAKG,MAAMH,SAASqF,CAAAA;MAC7C;;;;;;MAKAZ,KAAAA;aAAAA,SAAoCY,GAAQ;AAC1C,aAAKtG,uCAAuC,IAC5C,KAAKoB,MAAMqE,oBAAoB,KAAKrE,MAAMqE,iBAAiBa,CAAAA,GAC3D,KAAKrG,gCAAgC,KAAKqH,2BAA0B;MACtE;;;;;;;;;;MASA3C,KAAAA;aAAAA,SAAqC2B,GAAQ;AAC3C,aAAKlF,MAAMsD,qBAAqB,KAAKtD,MAAMsD,kBAAkB4B,CAAAA;MAC/D;;;;;;MAKAzB,KAAAA;aAAAA,SAAmCyB,GAAQ;AACzC,aAAKlF,MAAMwD,mBAAmB,KAAKxD,MAAMwD,gBAAgB0B,CAAAA;MAC3D;;;;;;MAKAvB,KAAAA;aAAAA,SAAyCuB,GAAQ;AAC/C,aAAKxG,8BAA8BkI,KAAKC,IAAG,GAC3C,KAAK7G,MAAM0D,yBAAyB,KAAK1D,MAAM0D,sBAAsBwB,CAAAA;MACvE;;;;;;MAKArB,KAAAA;aAAAA,SAAuCqB,GAAQ;AAC7C,aAAKvG,4BAA4BiI,KAAKC,IAAG,GACzC,KAAK7G,MAAM4D,uBAAuB,KAAK5D,MAAM4D,oBAAoBsB,CAAAA;MACnE;;;;;;;;;;;;;;MAaAjC,KAAAA;aAAAA,SAAgCiC,GAAQ;AACtC,aAAKzG,aAAa,IAClB,KAAKuB,MAAMgD,gBAAgB,KAAKhD,MAAMgD,aAAakC,CAAAA;MACrD;;;;;;;;;;;;;;MAaA/B,KAAAA;aAAAA,SAA+B+B,GAAQ;AACrC,aAAKlF,MAAMkD,eAAe,KAAKlD,MAAMkD,YAAYgC,CAAAA;MACnD;;;;;;;;MAOAgB,KAAAA;aAAAA,WAAAA;AACE,YAAMW,MAAMD,KAAKC,IAAG,GACdC,iCAAiCD,MAAM,KAAKlI,2BAC5CoI,cACJD,iCAAiC3I,yCACjC,KAAKQ,4BAA4B,KAAKD;AACxC,eAAOqI;MACT;;MA7aI3I;EAAmBmD,aAAAA,QAAMyF,SAAS,GAgblCC,cAAc;EAClBC,UAAU;EACVC,YAAY;;;;EAIZC,WAAW;IAAC;MAAEC,YAAY;IAAE;;;EAE5BC,yBAAyB;AAC3B,GAEMrF,SAAS;EACbW,cAAc;IACZ,GAAGqE;IACHM,eAAe;IACfC,WAAW;IACXC,WAAW;EACb;EACA9E,gBAAgB;IACd,GAAGsE;IACHM,eAAe;IACfC,WAAW;IACXC,WAAW;EACb;EACAjF,4BAA4B;IAC1B+E,eAAe;EACjB;EACA9E,+BAA+B;IAC7BiF,gBAAgB;IAChBR,UAAU;EACZ;EACAhF,cAAc;IACZyF,UAAU;IACVC,KAAK;IACLC,QAAQ;EACV;EACA/E,yBAAyB;IACvBgF,gBAAgB;EAClB;EACA/E,uBAAuB;IACrB+E,gBAAgB;EAClB;EACA3F,oBAAoB;IAClB4F,iBAAiB;EACnB;AACF,GAEMC,sBAAsBzG,6BAAAA,QAAM0G,WAAW,SAACjI,OAAOL,cAAAA;AACnD,SAAO,uCAAAmC,KAAC1D,YAAAA;IAAY,GAAG4B;IAAOL;;AAChC,CAAA;AAEAqI,oBAAoBE,cAAc;AAElC,IAAA,qBAAeF;",
5
- "names": ["IS_ANIMATING_TOUCH_START_THRESHOLD_MS", "ScrollView", "_scrollNodeRef", "_innerViewRef", "keyboardWillOpenTo", "additionalScrollOffset", "isTouching", "lastMomentumScrollBeginTime", "lastMomentumScrollEndTime", "observedScrollSinceBecomingResponder", "becameResponderWhileAnimating", "getScrollResponder", "mixin", "getScrollableNode", "getInnerViewRef", "getInnerViewNode", "getNativeScrollRef", "render", "contentContainerStyle", "horizontal", "onContentSizeChange", "refreshControl", "stickyHeaderIndices", "pagingEnabled", "forwardedRef", "keyboardDismissMode", "onScroll", "centerContent", "other", "props", "process", "env", "NODE_ENV", "style", "StyleSheet", "flatten", "childLayoutProps", "filter", "prop", "undefined", "invariant", "length", "JSON", "stringify", "contentSizeChangeProps", "onLayout", "_handleContentOnLayout", "bind", "hasStickyHeaderIndices", "Array", "isArray", "children", "React", "Children", "map", "child", "i", "isSticky", "indexOf", "_jsx", "View", "compose", "styles", "stickyHeader", "pagingEnabledChild", "contentContainer", "collapsable", "ref", "_setInnerViewRef", "contentContainerHorizontal", "contentContainerCenterContent", "baseStyle", "baseHorizontal", "baseVertical", "pagingEnabledStyle", "pagingEnabledHorizontal", "pagingEnabledVertical", "onTouchStart", "scrollResponderHandleTouchStart", "onTouchMove", "scrollResponderHandleTouchMove", "onTouchEnd", "scrollResponderHandleTouchEnd", "onScrollBeginDrag", "scrollResponderHandleScrollBeginDrag", "onScrollEndDrag", "scrollResponderHandleScrollEndDrag", "onMomentumScrollBegin", "scrollResponderHandleMomentumScrollBegin", "onMomentumScrollEnd", "scrollResponderHandleMomentumScrollEnd", "onStartShouldSetResponder", "scrollResponderHandleStartShouldSetResponder", "onStartShouldSetResponderCapture", "scrollResponderHandleStartShouldSetResponderCapture", "onScrollShouldSetResponder", "scrollResponderHandleScrollShouldSetResponder", "_handleScroll", "onResponderGrant", "scrollResponderHandleResponderGrant", "onResponderTerminationRequest", "scrollResponderHandleTerminationRequest", "onResponderRelease", "scrollResponderHandleResponderRelease", "onResponderReject", "scrollResponderHandleResponderReject", "ScrollViewClass", "ScrollViewBase", "scrollView", "_setScrollNodeRef", "cloneElement", "e", "width", "height", "nativeEvent", "layout", "scrollEventThrottle", "console", "info", "dismissKeyboard", "scrollResponderHandleScroll", "node", "scrollTo", "scrollToEnd", "scrollResponderZoomTo", "scrollResponderScrollNativeHandleToKeyboard", "mergeRefs", "scrollResponderIsAnimating", "warning", "touches", "currentlyFocusedTextInput", "TextInputState", "currentlyFocusedField", "keyboardShouldPersistTaps", "target", "onScrollResponderKeyboardDismissed", "blurTextInput", "Date", "now", "timeSinceLastMomentumScrollEnd", "isAnimating", "Component", "commonStyle", "flexGrow", "flexShrink", "transform", "translateZ", "WebkitOverflowScrolling", "flexDirection", "overflowX", "overflowY", "justifyContent", "position", "top", "zIndex", "scrollSnapType", "scrollSnapAlign", "ForwardedScrollView", "forwardRef", "displayName"]
4
+ "mappings": "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",
5
+ "names": ["emptyObject", "IS_ANIMATING_TOUCH_START_THRESHOLD_MS", "ScrollView", "_scrollNodeRef", "_innerViewRef", "keyboardWillOpenTo", "additionalScrollOffset", "preventNegativeScrollOffset", "isTouching", "lastMomentumScrollBeginTime", "lastMomentumScrollEndTime", "observedScrollSinceBecomingResponder", "becameResponderWhileAnimating", "flashScrollIndicators", "scrollResponderFlashScrollIndicators", "scrollTo", "y", "x", "animated", "console", "warn", "scrollResponderScrollTo", "scrollToEnd", "options", "horizontal", "props", "scrollResponderNode", "getScrollableNode", "scrollWidth", "scrollHeight", "node", "left", "top", "scroll", "behavior", "scrollLeft", "scrollTop", "scrollResponderZoomTo", "rect", "Platform", "OS", "invariant", "scrollResponderScrollNativeHandleToKeyboard", "nodeHandle", "additionalOffset", "UIManager", "measureLayout", "getInnerViewNode", "scrollResponderTextInputFocusError", "scrollResponderInputMeasureAndScrollToKeyboard", "width", "height", "keyboardScreenY", "Dimensions", "get", "endCoordinates", "screenY", "scrollOffsetY", "Math", "max", "scrollResponderKeyboardWillShow", "e", "onKeyboardWillShow", "scrollResponderKeyboardWillHide", "onKeyboardWillHide", "scrollResponderKeyboardDidShow", "onKeyboardDidShow", "scrollResponderKeyboardDidHide", "onKeyboardDidHide", "getScrollResponder", "getInnerViewRef", "getNativeScrollRef", "render", "contentContainerStyle", "onContentSizeChange", "refreshControl", "stickyHeaderIndices", "pagingEnabled", "forwardedRef", "keyboardDismissMode", "onScroll", "centerContent", "other", "process", "env", "NODE_ENV", "style", "StyleSheet", "flatten", "childLayoutProps", "filter", "prop", "undefined", "length", "JSON", "stringify", "contentSizeChangeProps", "onLayout", "_handleContentOnLayout", "bind", "hasStickyHeaderIndices", "Array", "isArray", "children", "React", "Children", "map", "child", "i", "isSticky", "indexOf", "_jsx", "View", "compose", "styles", "stickyHeader", "pagingEnabledChild", "contentContainer", "collapsable", "ref", "_setInnerViewRef", "contentContainerHorizontal", "contentContainerCenterContent", "baseStyle", "baseHorizontal", "baseVertical", "pagingEnabledStyle", "pagingEnabledHorizontal", "pagingEnabledVertical", "onTouchStart", "scrollResponderHandleTouchStart", "onTouchMove", "scrollResponderHandleTouchMove", "onTouchEnd", "scrollResponderHandleTouchEnd", "onScrollBeginDrag", "scrollResponderHandleScrollBeginDrag", "onScrollEndDrag", "scrollResponderHandleScrollEndDrag", "onMomentumScrollBegin", "scrollResponderHandleMomentumScrollBegin", "onMomentumScrollEnd", "scrollResponderHandleMomentumScrollEnd", "onStartShouldSetResponder", "scrollResponderHandleStartShouldSetResponder", "onStartShouldSetResponderCapture", "scrollResponderHandleStartShouldSetResponderCapture", "onScrollShouldSetResponder", "scrollResponderHandleScrollShouldSetResponder", "_handleScroll", "onResponderGrant", "scrollResponderHandleResponderGrant", "onResponderTerminationRequest", "scrollResponderHandleTerminationRequest", "onResponderRelease", "scrollResponderHandleResponderRelease", "onResponderReject", "scrollResponderHandleResponderReject", "onResponderTerminate", "scrollResponderHandleTerminate", "ScrollViewClass", "ScrollViewBase", "scrollView", "_setScrollNodeRef", "cloneElement", "nativeEvent", "layout", "scrollEventThrottle", "info", "dismissKeyboard", "scrollResponderHandleScroll", "mergeRefs", "scrollResponderIsAnimating", "warning", "touches", "currentlyFocusedTextInput", "TextInputState", "currentlyFocusedField", "keyboardShouldPersistTaps", "target", "onScrollResponderKeyboardDismissed", "blurTextInput", "Date", "now", "timeSinceLastMomentumScrollEnd", "isAnimating", "error", "Component", "commonStyle", "flexGrow", "flexShrink", "transform", "translateZ", "WebkitOverflowScrolling", "flexDirection", "overflowX", "overflowY", "justifyContent", "position", "zIndex", "scrollSnapType", "scrollSnapAlign", "ForwardedScrollView", "forwardRef", "displayName"]
6
6
  }
@@ -0,0 +1,38 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf,
6
+ __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __export = (target, all) => {
8
+ for (var name in all) __defProp(target, name, {
9
+ get: all[name],
10
+ enumerable: !0
11
+ });
12
+ },
13
+ __copyProps = (to, from, except, desc) => {
14
+ if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
15
+ get: () => from[key],
16
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
17
+ });
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
26
+ value: mod,
27
+ enumerable: !0
28
+ }) : target, mod)),
29
+ __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
30
+ value: !0
31
+ }), mod);
32
+ var SectionList_exports = {};
33
+ __export(SectionList_exports, {
34
+ default: () => SectionList_default
35
+ });
36
+ module.exports = __toCommonJS(SectionList_exports);
37
+ var import_SectionList = __toESM(require("./vendor/react-native/SectionList/index.cjs")),
38
+ SectionList_default = import_SectionList.default;
@@ -0,0 +1,29 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf, __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: !0 });
9
+ }, __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from == "object" || typeof from == "function")
11
+ for (let key of __getOwnPropNames(from))
12
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
+ return to;
14
+ };
15
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
16
+ // If the importer is in node compatibility mode or this is not an ESM
17
+ // file that has been converted to a CommonJS file using a Babel-
18
+ // compatible transform (i.e. "__esModule" has not been set), then set
19
+ // "default" to the CommonJS "module.exports" for node compatibility.
20
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
21
+ mod
22
+ )), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
23
+ var SectionList_exports = {};
24
+ __export(SectionList_exports, {
25
+ default: () => SectionList_default
26
+ });
27
+ module.exports = __toCommonJS(SectionList_exports);
28
+ var import_SectionList = __toESM(require("./vendor/react-native/SectionList")), SectionList_default = import_SectionList.default;
29
+ //# sourceMappingURL=SectionList.js.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/SectionList.tsx"],
4
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA,yBAAwB,uDACjB,sBAAQ,mBAAAA;",
5
+ "names": ["SectionList"]
6
+ }
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf, __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __export = (target, all) => {
8
+ for (var name in all)
9
+ __defProp(target, name, { get: all[name], enumerable: !0 });
10
+ }, __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from == "object" || typeof from == "function")
12
+ for (let key of __getOwnPropNames(from))
13
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ return to;
15
+ };
16
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
17
+ // If the importer is in node compatibility mode or this is not an ESM
18
+ // file that has been converted to a CommonJS file using a Babel-
19
+ // compatible transform (i.e. "__esModule" has not been set), then set
20
+ // "default" to the CommonJS "module.exports" for node compatibility.
21
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
22
+ mod
23
+ )), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
24
+ var SectionList_exports = {};
25
+ __export(SectionList_exports, {
26
+ default: () => SectionList_default
27
+ });
28
+ module.exports = __toCommonJS(SectionList_exports);
29
+ var import_SectionList = __toESM(require("./vendor/react-native/SectionList")), SectionList_default = import_SectionList.default;
30
+ //# sourceMappingURL=SectionList.js.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/SectionList.tsx"],
4
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;AAAA;;;;;AAOA,yBAAwB,uDACxB,sBAAeA,mBAAAA;",
5
+ "names": ["SectionList"]
6
+ }
@@ -133,6 +133,8 @@ const TextInput = React.forwardRef((props, forwardedRef) => {
133
133
  secureTextEntry = !1,
134
134
  selection,
135
135
  selectTextOnFocus,
136
+ showSoftInputOnFocus,
137
+ caretHidden,
136
138
  spellCheck
137
139
  } = props;
138
140
  let type, _inputMode;
@@ -253,7 +255,7 @@ const TextInput = React.forwardRef((props, forwardedRef) => {
253
255
  supportedProps = pickProps(props);
254
256
  supportedProps.autoCapitalize = autoCapitalize, supportedProps.autoComplete = autoComplete || autoCompleteType || "on", supportedProps.autoCorrect = autoCorrect ? "on" : "off", supportedProps.dir = dir !== void 0 ? dir : "auto", returnKeyType != null && warn("returnKeyType", "returnKeyType is deprecated. Use enterKeyHint."), supportedProps.enterKeyHint = enterKeyHint || returnKeyType, supportedProps.inputMode = _inputMode, supportedProps.onBlur = handleBlur, supportedProps.onChange = handleChange, supportedProps.onFocus = handleFocus, supportedProps.onKeyDown = handleKeyDown, supportedProps.onSelect = handleSelectionChange, editable != null && warn("editable", "editable is deprecated. Use readOnly."), supportedProps.readOnly = readOnly === !0 || editable === !1, numberOfLines != null && warn("numberOfLines", "TextInput numberOfLines is deprecated. Use rows."), supportedProps.rows = multiline ? rows ?? numberOfLines : 1, supportedProps.spellCheck = spellCheck ?? autoCorrect, supportedProps.style = [{
255
257
  "--placeholderTextColor": placeholderTextColor
256
- }, styles.textinput$raw, styles.placeholder, props.style], supportedProps.type = multiline ? void 0 : type;
258
+ }, styles.textinput$raw, styles.placeholder, props.style, caretHidden && styles.caretHidden], supportedProps.type = multiline ? void 0 : type, supportedProps.virtualkeyboardpolicy = showSoftInputOnFocus === !1 ? "manual" : "auto";
257
259
  const platformMethodsRef = (0, import_react_native_web_internals2.usePlatformMethods)(supportedProps),
258
260
  setRef = (0, import_react_native_web_internals2.useMergeRefs)(hostRef, platformMethodsRef, imperativeRef, forwardedRef);
259
261
  supportedProps.ref = setRef;
@@ -269,9 +271,23 @@ function warn(...args) {
269
271
  TextInput.displayName = "TextInput";
270
272
  TextInput.State = import_react_native_web_internals2.TextInputState;
271
273
  const styles = import_react_native_web_internals.StyleSheet.create({
272
- textinput$raw: {},
274
+ textinput$raw: {
275
+ MozAppearance: "textfield",
276
+ WebkitAppearance: "none",
277
+ backgroundColor: "transparent",
278
+ border: "0 solid black",
279
+ borderRadius: 0,
280
+ boxSizing: "border-box",
281
+ font: "14px System",
282
+ margin: 0,
283
+ padding: 0,
284
+ resize: "none"
285
+ },
273
286
  placeholder: {
274
287
  placeholderTextColor: "var(--placeholderTextColor)"
288
+ },
289
+ caretHidden: {
290
+ caretColor: "transparent"
275
291
  }
276
292
  });
277
293
  var TextInput_default = TextInput;
@@ -120,6 +120,8 @@ const TextInput = React.forwardRef(
120
120
  secureTextEntry = !1,
121
121
  selection,
122
122
  selectTextOnFocus,
123
+ showSoftInputOnFocus,
124
+ caretHidden,
123
125
  spellCheck
124
126
  } = props;
125
127
  let type, _inputMode;
@@ -235,8 +237,9 @@ const TextInput = React.forwardRef(
235
237
  { "--placeholderTextColor": placeholderTextColor },
236
238
  styles.textinput$raw,
237
239
  styles.placeholder,
238
- props.style
239
- ], supportedProps.type = multiline ? void 0 : type;
240
+ props.style,
241
+ caretHidden && styles.caretHidden
242
+ ], supportedProps.type = multiline ? void 0 : type, supportedProps.virtualkeyboardpolicy = showSoftInputOnFocus === !1 ? "manual" : "auto";
240
243
  const platformMethodsRef = (0, import_react_native_web_internals2.usePlatformMethods)(supportedProps), setRef = (0, import_react_native_web_internals2.useMergeRefs)(hostRef, platformMethodsRef, imperativeRef, forwardedRef);
241
244
  supportedProps.ref = setRef;
242
245
  const langDirection = props.lang != null ? (0, import_react_native_web_internals2.getLocaleDirection)(props.lang) : null, writingDirection = props.dir || langDirection || contextDirection;
@@ -251,9 +254,23 @@ function warn(...args) {
251
254
  TextInput.displayName = "TextInput";
252
255
  TextInput.State = import_react_native_web_internals2.TextInputState;
253
256
  const styles = import_react_native_web_internals.StyleSheet.create({
254
- textinput$raw: {},
257
+ textinput$raw: {
258
+ MozAppearance: "textfield",
259
+ WebkitAppearance: "none",
260
+ backgroundColor: "transparent",
261
+ border: "0 solid black",
262
+ borderRadius: 0,
263
+ boxSizing: "border-box",
264
+ font: "14px System",
265
+ margin: 0,
266
+ padding: 0,
267
+ resize: "none"
268
+ },
255
269
  placeholder: {
256
270
  placeholderTextColor: "var(--placeholderTextColor)"
271
+ },
272
+ caretHidden: {
273
+ caretColor: "transparent"
257
274
  }
258
275
  });
259
276
  var TextInput_default = TextInput;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/TextInput/index.tsx"],
4
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAUA,YAAuB,2BACvB,oCAA2B,gDAC3BA,qCAUO,gDAEP,uBAAiC;AAQjC,MAAM,mBAAmB,CAAC,MAAM,cAAc;AAC5C,QAAM,EAAE,cAAc,eAAe,IAAI,MACnC,EAAE,OAAO,IAAI,IAAI;AACvB,SAAO,UAAU,kBAAkB,QAAQ;AAC7C,GAMM,eAAe,CAAC,MAAM,cAAc;AACxC,MAAI,iBAAiB,MAAM,SAAS,GAAG;AACrC,UAAM,EAAE,OAAO,IAAI,IAAI;AACvB,QAAI;AACF,WAAK,kBAAkB,OAAO,OAAO,KAAK;AAAA,IAC5C,QAAY;AAAA,IAAC;AAAA,EACf;AACF,GAEM,mBAAmB,OAAO;AAAA,EAC9B,CAAC;AAAA,EACD,kDAAe;AAAA,EACf,kDAAe;AAAA,EACf,kDAAe;AAAA,EACf,kDAAe;AAAA,EACf,kDAAe;AAAA,EACf,kDAAe;AAAA,EACf,kDAAe;AAAA,EACf,kDAAe;AAAA,EACf;AAAA,IACE,gBAAgB;AAAA,IAChB,WAAW;AAAA,IACX,cAAc;AAAA,IACd,aAAa;AAAA,IACb,WAAW;AAAA,IACX,cAAc;AAAA,IACd,UAAU;AAAA,IACV,MAAM;AAAA,IACN,WAAW;AAAA,IACX,UAAU;AAAA,IACV,UAAU;AAAA,IACV,aAAa;AAAA,IACb,eAAe;AAAA,IACf,UAAU;AAAA,IACV,MAAM;AAAA,IACN,YAAY;AAAA,IACZ,OAAO;AAAA,IACP,MAAM;AAAA,EACR;AACF,GAEM,YAAY,CAAC,cAAU,yCAAK,OAAO,gBAAgB,GAEnD,4BACJ,OAAO,SAAW,MAAc,MAAM,YAAY,MAAM;AAI1D,SAAS,iBAAiB,aAAa;AACrC,SAAO,YAAY,eAAe,YAAY,YAAY;AAC5D;AAEA,IAAI,eAA8B;AAElC,MAAM,YAAY,MAAM;AAAA,EACtB,CAAC,OAAO,iBAAiB;AACvB,UAAM;AAAA,MACJ,iBAAiB;AAAA,MACjB;AAAA,MACA;AAAA,MACA,cAAc;AAAA,MACd;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA,YAAY;AAAA,MACZ;AAAA,MACA,YAAY;AAAA,MACZ;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA,WAAW;AAAA,MACX;AAAA,MACA,OAAO;AAAA,MACP,kBAAkB;AAAA,MAClB;AAAA,MACA;AAAA,MACA;AAAA,IACF,IAAI;AAEJ,QAAI,MACA;AAEJ,QAAI,aAAa;AACf,mBAAa,WACT,cAAc,UAChB,OAAO,UACE,cAAc,QACvB,OAAO,QACE,cAAc,WACvB,OAAO,WACE,cAAc,QACvB,OAAO,QAEP,OAAO;AAAA,aAEA,gBAAgB;AAEzB,cADA,KAAK,gBAAgB,4CAA4C,GACzD,cAAc;AAAA,QACpB,KAAK;AACH,iBAAO;AACP;AAAA,QACF,KAAK;AAAA,QACL,KAAK;AACH,uBAAa;AACb;AAAA,QACF,KAAK;AACH,uBAAa;AACb;AAAA,QACF,KAAK;AACH,iBAAO;AACP;AAAA,QACF,KAAK;AAAA,QACL,KAAK;AACH,iBAAO;AACP;AAAA,QACF,KAAK;AACH,iBAAO;AACP;AAAA,QACF;AACE,iBAAO;AAAA,MACX;AAGF,IAAI,oBACF,OAAO;AAGT,UAAM,aAAa,MAAM,OAAO,EAAE,QAAQ,MAAM,OAAO,KAAK,CAAC,GACvD,UAAU,MAAM,OAAO,IAAI,GAE3B,0BAA0B,MAAM;AAAA,MACpC,CAAC,aAAa;AACZ,YAAI,aAAa,uBAAuB,YAAY,MAAM;AACxD,gBAAM,YAAY,SAAS,cACrB,WAAW,SAAS;AAC1B,WACE,cAAc,WAAW,QAAQ,UACjC,aAAa,WAAW,QAAQ,WAEhC,WAAW,QAAQ,SAAS,WAC5B,WAAW,QAAQ,QAAQ,UAC3B,oBAAoB;AAAA,YAClB,aAAa;AAAA,cACX,aAAa;AAAA,gBACX,QAAQ,WAAW,QAAQ;AAAA,gBAC3B,OAAO,WAAW,QAAQ;AAAA,cAC5B;AAAA,YACF;AAAA,UACF,CAAC;AAAA,QAEL;AAAA,MACF;AAAA,MACA,CAAC,WAAW,mBAAmB;AAAA,IACjC,GAEM,gBAAgB,MAAM;AAAA,MAC1B,MAAM,CAAC,aAAa;AAIlB,QAAI,YAAY,SACd,SAAS,QAAQ,WAAY;AAC3B,UAAI,YAAY,SACd,SAAS,QAAQ;AAAA,QAErB,GACA,SAAS,YAAY,WAAY;AAC/B,iBAAO,YAAY,QAAQ,kDAAe,sBAAsB,MAAM;AAAA,QACxE,GACA,wBAAwB,QAAQ;AAAA,MAEpC;AAAA,MACA,CAAC,uBAAuB;AAAA,IAC1B;AAEA,aAAS,WAAW,GAAG;AACrB,wDAAe,wBAAwB,MACnC,WACF,EAAE,YAAY,OAAO,EAAE,OAAO,OAC9B,OAAO,CAAC;AAAA,IAEZ;AAEA,aAAS,aAAa,GAAG;AACvB,YAAM,WAAW,EAAE,QACb,OAAO,SAAS;AACtB,QAAE,YAAY,OAAO,MACrB,wBAAwB,QAAQ,GAC5B,YACF,SAAS,CAAC,GAER,gBACF,aAAa,IAAI;AAAA,IAErB;AAEA,aAAS,YAAY,GAAG;AACtB,YAAM,WAAW,EAAE;AACnB,MAAI,YACF,EAAE,YAAY,OAAO,SAAS,OAC9B,QAAQ,CAAC,IAEP,YAAY,SACd,kDAAe,wBAAwB,UACnC,qBACF,SAAS,QAAQ,KAEf,sBAEE,gBAAgB,QAClB,aAAa,YAAY,GAG3B,eAAe,WAAW,MAAM;AAC9B,QACE,UAAS,OAAO;AAAA,MAEpB,GAAG,CAAC;AAAA,IAGV;AAEA,aAAS,cAAc,GAAG;AACxB,YAAM,WAAW,EAAE;AAEnB,QAAE,gBAAgB;AAGlB,YAAM,qBAAqB,gBADC,CAAC,WAGvB,cAAc,EAAE,aAChB,cAAc,iBAAiB,WAAW;AAEhD,MAAI,cACF,WAAW,CAAC,GAIZ,EAAE,QAAQ,WACV,CAAC,EAAE;AAAA,MAEH,CAAC,eACD,CAAC,EAAE,mBAAmB,OAEjB,gBAAgB,CAAC,cAAc,oBAElC,EAAE,eAAe,GACjB,YAAY,OAAO,EAAE,OAAO,OAC5B,gBAAgB,CAAC,IAEf,sBAAsB,YAAY,QACpC,WAAW,MAAM,SAAS,KAAK,GAAG,CAAC;AAAA,IAGzC;AAEA,aAAS,sBAAsB,GAAG;AAChC,UAAI;AACF,YAAI;AACF,gBAAM,OAAO,EAAE,QACT,EAAE,gBAAgB,aAAa,IAAI;AACzC,YAAE,YAAY,YAAY;AAAA,YACxB,OAAO;AAAA,YACP,KAAK;AAAA,UACP,GACA,EAAE,YAAY,OAAO,EAAE,OAAO,OAC9B,kBAAkB,CAAC;AAAA,QACrB,QAAY;AAAA,QAAC;AAAA,IAEjB;AAEA,8BAA0B,MAAM;AAC9B,YAAM,OAAO,QAAQ;AACrB,MAAI,QAAQ,QAAQ,aAAa,QAC/B,aAAa,MAAM,SAAS,GAE1B,SAAS,kBAAkB,SAC7B,kDAAe,wBAAwB;AAAA,IAE3C,GAAG,CAAC,SAAS,SAAS,CAAC;AAEvB,UAAM,YAAY,YAAY,aAAa;AAE3C,6DAAiB,SAAS,QAAQ,OAClC,uDAAmB,SAAS;AAAA,MAC1B;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,IACF,CAAC;AACD,UAAM,EAAE,WAAW,iBAAiB,QAAI,qDAAiB,GAEnD,iBAAiB,UAAU,KAAK;AACtC,mBAAe,iBAAiB,gBAChC,eAAe,eAAe,gBAAgB,oBAAoB,MAClE,eAAe,cAAc,cAAc,OAAO,OAElD,eAAe,MAAM,QAAQ,SAAY,MAAM,QAC3C,iBAAiB,QACnB,KAAK,iBAAiB,gDAAgD,GAExE,eAAe,eAAe,gBAAgB,eAC9C,eAAe,YAAY,YAC3B,eAAe,SAAS,YACxB,eAAe,WAAW,cAC1B,eAAe,UAAU,aACzB,eAAe,YAAY,eAC3B,eAAe,WAAW,uBACtB,YAAY,QACd,KAAK,YAAY,uCAAuC,GAE1D,eAAe,WAAW,aAAa,MAAQ,aAAa,IACxD,iBAAiB,QACnB,KAAK,iBAAiB,kDAAkD,GAE1E,eAAe,OAAO,YAAa,QAAsB,gBAAiB,GAC1E,eAAe,aAAa,cAAkC,aAC9D,eAAe,QAAQ;AAAA,MACrB,EAAE,0BAA0B,qBAAqB;AAAA,MACjD,OAAO;AAAA,MACP,OAAO;AAAA,MACP,MAAM;AAAA,IACR,GACA,eAAe,OAAO,YAAY,SAAY;AAE9C,UAAM,yBAAqB,uDAAmB,cAAc,GAEtD,aAAS,iDAAa,SAAS,oBAAoB,eAAe,YAAY;AAEpF,mBAAe,MAAM;AAErB,UAAM,gBAAgB,MAAM,QAAQ,WAAO,uDAAmB,MAAM,IAAI,IAAI,MAEtE,mBADqB,MAAM,OAAO,iBACO;AAM/C,eAJgB,uCAAiB,WAAW,gBAAgB;AAAA,MAC1D;AAAA,IACF,CAAC;AAAA,EAGH;AACF;AAEA,SAAS,QAAQ,MAAM;AACrB,EAAI,QAAQ,IAAI,aAAa,gBAC3B,QAAQ,KAAK,GAAG,IAAI;AAExB;AAEA,UAAU,cAAc;AAExB,UAAU,QAAQ;AAElB,MAAM,SAAS,6CAAW,OAAO;AAAA,EAC/B,eAAe,CAAC;AAAA,EAChB,aAAa;AAAA,IACX,sBAAsB;AAAA,EACxB;AACF,CAAC;AAED,IAAO,oBAAQ;",
4
+ "mappings": "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",
5
5
  "names": ["import_react_native_web_internals"]
6
6
  }
@@ -63,7 +63,7 @@ function isEventComposing(nativeEvent) {
63
63
  return nativeEvent.isComposing || nativeEvent.keyCode === 229;
64
64
  }
65
65
  var focusTimeout = null, TextInput = /* @__PURE__ */ React.forwardRef(function(props, forwardedRef) {
66
- var { autoCapitalize = "sentences", autoComplete, autoCompleteType, autoCorrect = !0, blurOnSubmit, clearTextOnFocus, dir, editable, enterKeyHint, inputMode = "text", keyboardType, multiline = !1, numberOfLines, onBlur, onChange, onChangeText, onContentSizeChange, onFocus, onKeyPress, onLayout, onMoveShouldSetResponder, onMoveShouldSetResponderCapture, onResponderEnd, onResponderGrant, onResponderMove, onResponderReject, onResponderRelease, onResponderStart, onResponderTerminate, onResponderTerminationRequest, onScrollShouldSetResponder, onScrollShouldSetResponderCapture, onSelectionChange, onSelectionChangeShouldSetResponder, onSelectionChangeShouldSetResponderCapture, onStartShouldSetResponder, onStartShouldSetResponderCapture, onSubmitEditing, placeholderTextColor, readOnly = !1, returnKeyType, rows = 1, secureTextEntry = !1, selection, selectTextOnFocus, spellCheck } = props, type, _inputMode;
66
+ var { autoCapitalize = "sentences", autoComplete, autoCompleteType, autoCorrect = !0, blurOnSubmit, clearTextOnFocus, dir, editable, enterKeyHint, inputMode = "text", keyboardType, multiline = !1, numberOfLines, onBlur, onChange, onChangeText, onContentSizeChange, onFocus, onKeyPress, onLayout, onMoveShouldSetResponder, onMoveShouldSetResponderCapture, onResponderEnd, onResponderGrant, onResponderMove, onResponderReject, onResponderRelease, onResponderStart, onResponderTerminate, onResponderTerminationRequest, onScrollShouldSetResponder, onScrollShouldSetResponderCapture, onSelectionChange, onSelectionChangeShouldSetResponder, onSelectionChangeShouldSetResponderCapture, onStartShouldSetResponder, onStartShouldSetResponderCapture, onSubmitEditing, placeholderTextColor, readOnly = !1, returnKeyType, rows = 1, secureTextEntry = !1, selection, selectTextOnFocus, showSoftInputOnFocus, caretHidden, spellCheck } = props, type, _inputMode;
67
67
  if (inputMode != null)
68
68
  _inputMode = inputMode, inputMode === "email" ? type = "email" : inputMode === "tel" ? type = "tel" : inputMode === "search" ? type = "search" : inputMode === "url" ? type = "url" : type = "text";
69
69
  else if (keyboardType != null)
@@ -187,8 +187,9 @@ var focusTimeout = null, TextInput = /* @__PURE__ */ React.forwardRef(function(p
187
187
  },
188
188
  styles.textinput$raw,
189
189
  styles.placeholder,
190
- props.style
191
- ], supportedProps.type = multiline ? void 0 : type;
190
+ props.style,
191
+ caretHidden && styles.caretHidden
192
+ ], supportedProps.type = multiline ? void 0 : type, supportedProps.virtualkeyboardpolicy = showSoftInputOnFocus === !1 ? "manual" : "auto";
192
193
  var platformMethodsRef = (0, import_react_native_web_internals2.usePlatformMethods)(supportedProps), setRef = (0, import_react_native_web_internals2.useMergeRefs)(hostRef, platformMethodsRef, imperativeRef, forwardedRef);
193
194
  supportedProps.ref = setRef;
194
195
  var langDirection = props.lang != null ? (0, import_react_native_web_internals2.getLocaleDirection)(props.lang) : null, componentDirection = props.dir || langDirection, writingDirection = componentDirection || contextDirection, element = (0, import_createElement.useCreateElement)(component, supportedProps, {
@@ -204,9 +205,23 @@ function warn() {
204
205
  TextInput.displayName = "TextInput";
205
206
  TextInput.State = import_react_native_web_internals2.TextInputState;
206
207
  var styles = import_react_native_web_internals.StyleSheet.create({
207
- textinput$raw: {},
208
+ textinput$raw: {
209
+ MozAppearance: "textfield",
210
+ WebkitAppearance: "none",
211
+ backgroundColor: "transparent",
212
+ border: "0 solid black",
213
+ borderRadius: 0,
214
+ boxSizing: "border-box",
215
+ font: "14px System",
216
+ margin: 0,
217
+ padding: 0,
218
+ resize: "none"
219
+ },
208
220
  placeholder: {
209
221
  placeholderTextColor: "var(--placeholderTextColor)"
222
+ },
223
+ caretHidden: {
224
+ caretColor: "transparent"
210
225
  }
211
226
  }), TextInput_default = TextInput;
212
227
  //# sourceMappingURL=index.js.map