@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(VirtualizedList_exports, {
26
26
  default: () => VirtualizedList_default
27
27
  });
28
28
  module.exports = __toCommonJS(VirtualizedList_exports);
29
- var import_jsx_runtime = require("react/jsx-runtime"), import_react_native_web_internals = require("@tamagui/react-native-web-internals"), import_ViewabilityHelper = __toESM(require("../ViewabilityHelper")), import_CellRenderMask = require("./CellRenderMask"), import_StateSafePureComponent = __toESM(require("./StateSafePureComponent")), import_VirtualizedListContext = require("./VirtualizedListContext"), import_ScrollViewBase = __toESM(require("../../../ScrollView/ScrollViewBase")), import_View = __toESM(require("../../../View")), import_VirtualizedListCellRenderer = __toESM(require("./VirtualizedListCellRenderer")), import_FillRateHelper = __toESM(require("../FillRateHelper")), import_ChildListCollection = __toESM(require("./ChildListCollection")), import_react = __toESM(require("react")), import_clamp = __toESM(require("../Utilities/clamp")), import_VirtualizeUtils = require("../VirtualizeUtils"), import_Batchinator = __toESM(require("../../../Batchinator")), import_RefreshControl = __toESM(require("../../../RefreshControl"));
29
+ var import_jsx_runtime = require("react/jsx-runtime"), import_react_native_web_internals = require("@tamagui/react-native-web-internals"), import_ScrollView = __toESM(require("../../../ScrollView")), import_RefreshControl = __toESM(require("../../../RefreshControl")), import_Batchinator = __toESM(require("../Batchinator")), import_ChildListCollection = __toESM(require("./ChildListCollection")), import_FillRateHelper = __toESM(require("../FillRateHelper")), import_StateSafePureComponent = __toESM(require("./StateSafePureComponent")), import_ViewabilityHelper = __toESM(require("../ViewabilityHelper")), import_VirtualizedListCellRenderer = __toESM(require("./VirtualizedListCellRenderer")), import_VirtualizedListContext = require("./VirtualizedListContext");
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,37 +94,13 @@ function _is_native_reflect_construct() {
94
94
  return !!result;
95
95
  })();
96
96
  }
97
- var __DEV__ = process.env.NODE_ENV !== "production", ON_EDGE_REACHED_EPSILON = 1e-3, _usedIndexForKey = !1, _keylessItemComponentName = "";
97
+ var __DEV__ = process.env.NODE_ENV !== "production";
98
98
  function horizontalOrDefault(horizontal) {
99
99
  return horizontal ?? !1;
100
100
  }
101
- function initialNumToRenderOrDefault(initialNumToRender) {
102
- return initialNumToRender ?? 10;
103
- }
104
- function maxToRenderPerBatchOrDefault(maxToRenderPerBatch) {
105
- return maxToRenderPerBatch ?? 10;
106
- }
107
- function onStartReachedThresholdOrDefault(onStartReachedThreshold) {
108
- return onStartReachedThreshold ?? 2;
109
- }
110
- function onEndReachedThresholdOrDefault(onEndReachedThreshold) {
111
- return onEndReachedThreshold ?? 2;
112
- }
113
- function getScrollingThreshold(threshold, visibleLength) {
114
- return threshold * visibleLength / 2;
115
- }
116
101
  function scrollEventThrottleOrDefault(scrollEventThrottle) {
117
102
  return scrollEventThrottle ?? 50;
118
103
  }
119
- function windowSizeOrDefault(windowSize) {
120
- return windowSize ?? 21;
121
- }
122
- function findLastWhere(arr, predicate) {
123
- for (var i = arr.length - 1; i >= 0; i--)
124
- if (predicate(arr[i]))
125
- return arr[i];
126
- return null;
127
- }
128
104
  var VirtualizedList = /* @__PURE__ */ function(StateSafePureComponent2) {
129
105
  "use strict";
130
106
  _inherits(VirtualizedList2, StateSafePureComponent2);
@@ -133,240 +109,30 @@ var VirtualizedList = /* @__PURE__ */ function(StateSafePureComponent2) {
133
109
  var _this;
134
110
  _this = _call_super(this, VirtualizedList2, [
135
111
  props
136
- ]), _define_property(_this, "_getScrollMetrics", function() {
137
- return _this._scrollMetrics;
138
- }), _define_property(_this, "_getOutermostParentListRef", function() {
139
- return _this._isNestedWithSameOrientation() ? _this.context.getOutermostParentListRef() : _this;
140
- }), _define_property(_this, "_registerAsNestedChild", function(childList) {
141
- _this._nestedChildLists.add(childList.ref, childList.cellKey), _this._hasInteracted && childList.ref.recordInteraction();
142
- }), _define_property(_this, "_unregisterAsNestedChild", function(childList) {
143
- _this._nestedChildLists.remove(childList.ref);
144
- }), _define_property(_this, "invertedWheelEventHandler", void 0), _define_property(_this, "_onUpdateSeparators", function(keys, newProps) {
145
- keys.forEach(function(key) {
146
- var ref = key != null && _this._cellRefs[key];
147
- ref && ref.updateSeparatorProps(newProps);
148
- });
149
- }), _define_property(_this, "_getSpacerKey", function(isVertical) {
150
- return isVertical ? "height" : "width";
151
- }), _define_property(_this, "_averageCellLength", 0), _define_property(_this, "_cellRefs", {}), _define_property(_this, "_fillRateHelper", void 0), _define_property(_this, "_frames", {}), _define_property(_this, "_footerLength", 0), _define_property(_this, "_hasTriggeredInitialScrollToIndex", !1), _define_property(_this, "_hasInteracted", !1), _define_property(_this, "_hasMore", !1), _define_property(_this, "_hasWarned", {}), _define_property(_this, "_headerLength", 0), _define_property(_this, "_hiPriInProgress", !1), _define_property(_this, "_highestMeasuredFrameIndex", 0), _define_property(_this, "_indicesToKeys", /* @__PURE__ */ new Map()), _define_property(_this, "_lastFocusedCellKey", null), _define_property(_this, "_nestedChildLists", new import_ChildListCollection.default()), _define_property(_this, "_offsetFromParentVirtualizedList", 0), _define_property(_this, "_prevParentOffset", 0), _define_property(_this, "_scrollMetrics", {
112
+ ]), _define_property(_this, "_captureRef", function(ref) {
113
+ _this._scrollRef = ref;
114
+ }), _define_property(_this, "_onContentSizeChange", function(width, height) {
115
+ }), // Handle content size changes
116
+ _define_property(_this, "_onLayout", function(event) {
117
+ }), // Handle layout changes
118
+ _define_property(_this, "_onScroll", function(event) {
119
+ }), _this._nestedChildLists = new import_ChildListCollection.default(), _this._viewabilityTuples = [], _this._scrollMetrics = {
152
120
  contentLength: 0,
153
121
  dOffset: 0,
154
122
  dt: 10,
155
123
  offset: 0,
156
124
  timestamp: 0,
157
125
  velocity: 0,
158
- visibleLength: 0,
159
- zoomScale: 1
160
- }), _define_property(_this, "_scrollRef", null), _define_property(_this, "_sentStartForContentLength", 0), _define_property(_this, "_sentEndForContentLength", 0), _define_property(_this, "_totalCellLength", 0), _define_property(_this, "_totalCellsMeasured", 0), _define_property(_this, "_updateCellsToRenderBatcher", void 0), _define_property(_this, "_viewabilityTuples", []), _define_property(_this, "_captureScrollRef", function(ref) {
161
- _this._scrollRef = ref;
162
- }), _define_property(_this, "_defaultRenderScrollComponent", function(props2) {
163
- var onRefresh = props2.onRefresh;
164
- if (_this._isNestedWithSameOrientation())
165
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_View.default, {
166
- ...props2
167
- });
168
- if (onRefresh) {
169
- var _props_refreshing;
170
- return (0, import_react_native_web_internals.invariant)(typeof props2.refreshing == "boolean", "`refreshing` prop must be set as a boolean in order to use `onRefresh`, but got `" + JSON.stringify((_props_refreshing = props2.refreshing) !== null && _props_refreshing !== void 0 ? _props_refreshing : "undefined") + "`"), /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ScrollViewBase.default, {
171
- ...props2,
172
- refreshControl: props2.refreshControl == null ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_RefreshControl.default, {
173
- refreshing: props2.refreshing,
174
- onRefresh,
175
- progressViewOffset: props2.progressViewOffset
176
- }) : props2.refreshControl
177
- });
178
- } else
179
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ScrollViewBase.default, {
180
- ...props2
181
- });
182
- }), _define_property(_this, "_onCellLayout", function(e, cellKey, index) {
183
- var layout = e.nativeEvent.layout, next = {
184
- offset: _this._selectOffset(layout),
185
- length: _this._selectLength(layout),
186
- index,
187
- inLayout: !0
188
- }, curr = _this._frames[cellKey];
189
- !curr || next.offset !== curr.offset || next.length !== curr.length || index !== curr.index ? (_this._totalCellLength += next.length - (curr ? curr.length : 0), _this._totalCellsMeasured += curr ? 0 : 1, _this._averageCellLength = _this._totalCellLength / _this._totalCellsMeasured, _this._frames[cellKey] = next, _this._highestMeasuredFrameIndex = Math.max(_this._highestMeasuredFrameIndex, index), _this._scheduleCellsToRenderUpdate()) : _this._frames[cellKey].inLayout = !0, _this._triggerRemeasureForChildListsInCell(cellKey), _this._computeBlankness(), _this._updateViewableItems(
190
- // @ts-ignore
191
- _this.props,
192
- _this.state.cellsAroundViewport
193
- );
194
- }), _define_property(_this, "_onCellUnmount", function(cellKey) {
195
- delete _this._cellRefs[cellKey];
196
- var curr = _this._frames[cellKey];
197
- curr && (_this._frames[cellKey] = {
198
- ...curr,
199
- inLayout: !1
200
- });
201
- }), _define_property(_this, "_onLayout", function(e) {
202
- _this._isNestedWithSameOrientation() ? _this.measureLayoutRelativeToContainingList() : _this._scrollMetrics.visibleLength = _this._selectLength(e.nativeEvent.layout), _this.props.onLayout && _this.props.onLayout(e), _this._scheduleCellsToRenderUpdate(), _this._maybeCallOnEdgeReached();
203
- }), _define_property(_this, "_onLayoutEmpty", function(e) {
204
- _this.props.onLayout && _this.props.onLayout(e);
205
- }), _define_property(_this, "_onLayoutFooter", function(e) {
206
- _this._triggerRemeasureForChildListsInCell(_this._getFooterCellKey()), _this._footerLength = _this._selectLength(e.nativeEvent.layout);
207
- }), _define_property(_this, "_onLayoutHeader", function(e) {
208
- _this._headerLength = _this._selectLength(e.nativeEvent.layout);
209
- }), _define_property(_this, "_onContentSizeChange", function(width, height) {
210
- width > 0 && height > 0 && _this.props.initialScrollIndex != null && _this.props.initialScrollIndex > 0 && !_this._hasTriggeredInitialScrollToIndex && (_this.props.contentOffset == null && (_this.props.initialScrollIndex < _this.props.getItemCount(_this.props.data) ? _this.scrollToIndex({
211
- animated: !1,
212
- index: nullthrows(_this.props.initialScrollIndex)
213
- }) : _this.scrollToEnd({
214
- animated: !1
215
- })), _this._hasTriggeredInitialScrollToIndex = !0), _this.props.onContentSizeChange && _this.props.onContentSizeChange(width, height), _this._scrollMetrics.contentLength = _this._selectLength({
216
- height,
217
- width
218
- }), _this._scheduleCellsToRenderUpdate(), _this._maybeCallOnEdgeReached();
219
- }), _define_property(_this, "_convertParentScrollMetrics", function(metrics) {
220
- var offset = metrics.offset - _this._offsetFromParentVirtualizedList, visibleLength = metrics.visibleLength, dOffset = offset - _this._scrollMetrics.offset, contentLength = _this._scrollMetrics.contentLength;
221
- return {
222
- visibleLength,
223
- contentLength,
224
- offset,
225
- dOffset
226
- };
227
- }), _define_property(_this, "_onScroll", function(e) {
228
- _this._nestedChildLists.forEach(function(childList) {
229
- childList._onScroll(e);
230
- }), _this.props.onScroll && _this.props.onScroll(e);
231
- var timestamp = e.timeStamp, visibleLength = _this._selectLength(e.nativeEvent.layoutMeasurement), contentLength = _this._selectLength(e.nativeEvent.contentSize), offset = _this._selectOffset(e.nativeEvent.contentOffset), dOffset = offset - _this._scrollMetrics.offset;
232
- if (_this._isNestedWithSameOrientation()) {
233
- if (_this._scrollMetrics.contentLength === 0)
234
- return;
235
- ({ visibleLength, contentLength, offset, dOffset } = _this._convertParentScrollMetrics({
236
- visibleLength,
237
- offset
238
- }));
239
- }
240
- var dt = _this._scrollMetrics.timestamp ? Math.max(1, timestamp - _this._scrollMetrics.timestamp) : 1, velocity = dOffset / dt;
241
- dt > 500 && _this._scrollMetrics.dt > 500 && contentLength > 5 * visibleLength && !_this._hasWarned.perf && (infoLog("VirtualizedList: You have a large list that is slow to update - make sure your renderItem function renders components that follow React performance best practices like PureComponent, shouldComponentUpdate, etc.", {
242
- dt,
243
- prevDt: _this._scrollMetrics.dt,
244
- contentLength
245
- }), _this._hasWarned.perf = !0);
246
- var zoomScale = e.nativeEvent.zoomScale < 0 ? 1 : e.nativeEvent.zoomScale;
247
- _this._scrollMetrics = {
248
- contentLength,
249
- dt,
250
- dOffset,
251
- offset,
252
- timestamp,
253
- velocity,
254
- visibleLength,
255
- zoomScale
256
- }, _this._updateViewableItems(_this.props, _this.state.cellsAroundViewport), _this.props && (_this._maybeCallOnEdgeReached(), velocity !== 0 && _this._fillRateHelper.activate(), _this._computeBlankness(), _this._scheduleCellsToRenderUpdate());
257
- }), _define_property(_this, "_onScrollBeginDrag", function(e) {
258
- _this._nestedChildLists.forEach(function(childList) {
259
- childList._onScrollBeginDrag(e);
260
- }), _this._viewabilityTuples.forEach(function(tuple) {
261
- tuple.viewabilityHelper.recordInteraction();
262
- }), _this._hasInteracted = !0, _this.props.onScrollBeginDrag && _this.props.onScrollBeginDrag(e);
263
- }), _define_property(_this, "_onScrollEndDrag", function(e) {
264
- _this._nestedChildLists.forEach(function(childList) {
265
- childList._onScrollEndDrag(e);
266
- });
267
- var { velocity } = e.nativeEvent;
268
- velocity && (_this._scrollMetrics.velocity = _this._selectOffset(velocity)), _this._computeBlankness(), _this.props.onScrollEndDrag && _this.props.onScrollEndDrag(e);
269
- }), _define_property(_this, "_onMomentumScrollBegin", function(e) {
270
- _this._nestedChildLists.forEach(function(childList) {
271
- childList._onMomentumScrollBegin(e);
272
- }), _this.props.onMomentumScrollBegin && _this.props.onMomentumScrollBegin(e);
273
- }), _define_property(_this, "_onMomentumScrollEnd", function(e) {
274
- _this._nestedChildLists.forEach(function(childList) {
275
- childList._onMomentumScrollEnd(e);
276
- }), _this._scrollMetrics.velocity = 0, _this._computeBlankness(), _this.props.onMomentumScrollEnd && _this.props.onMomentumScrollEnd(e);
277
- }), _define_property(_this, "_updateCellsToRender", function() {
278
- _this._updateViewableItems(_this.props, _this.state.cellsAroundViewport), _this.setState(function(state, props2) {
279
- var cellsAroundViewport = _this._adjustCellsAroundViewport(props2, state.cellsAroundViewport), renderMask = VirtualizedList2._createRenderMask(props2, cellsAroundViewport, _this._getNonViewportRenderRegions(props2));
280
- return cellsAroundViewport.first === state.cellsAroundViewport.first && cellsAroundViewport.last === state.cellsAroundViewport.last && renderMask.equals(state.renderMask) ? null : {
281
- cellsAroundViewport,
282
- renderMask
283
- };
284
- });
285
- }), _define_property(_this, "_createViewToken", function(index, isViewable, props2) {
286
- var { data, getItem } = props2, item = getItem(data, index);
287
- return {
288
- index,
289
- item,
290
- key: _this._keyExtractor(item, index, props2),
291
- isViewable
292
- };
293
- }), _define_property(_this, "_getOffsetApprox", function(index, props2) {
294
- if (Number.isInteger(index))
295
- return _this.__getFrameMetricsApprox(index, props2).offset;
296
- var frameMetrics = _this.__getFrameMetricsApprox(Math.floor(index), props2), remainder = index - Math.floor(index);
297
- return frameMetrics.offset + remainder * frameMetrics.length;
298
- }), _define_property(_this, "__getFrameMetricsApprox", function(index, props2) {
299
- var frame = _this._getFrameMetrics(index, props2);
300
- if (frame && frame.index === index)
301
- return frame;
302
- var { data, getItemCount, getItemLayout } = props2;
303
- return (0, import_react_native_web_internals.invariant)(index >= 0 && index < getItemCount(data), "Tried to get frame for out of range index " + index), (0, import_react_native_web_internals.invariant)(!getItemLayout, "Should not have to estimate frames when a measurement metrics function is provided"), {
304
- length: _this._averageCellLength,
305
- offset: _this._averageCellLength * index
306
- };
307
- }), _define_property(_this, "_getFrameMetrics", function(index, props2) {
308
- var { data, getItem, getItemCount, getItemLayout } = props2;
309
- (0, import_react_native_web_internals.invariant)(index >= 0 && index < getItemCount(data), "Tried to get frame for out of range index " + index);
310
- var item = getItem(data, index), frame = _this._frames[_this._keyExtractor(item, index, props2)];
311
- return (!frame || frame.index !== index) && getItemLayout ? getItemLayout(data, index) : frame;
312
- }), _define_property(_this, "_getNonViewportRenderRegions", function(props2) {
313
- if (!(_this._lastFocusedCellKey && _this._cellRefs[_this._lastFocusedCellKey]))
314
- return [];
315
- var lastFocusedCellRenderer = _this._cellRefs[_this._lastFocusedCellKey], focusedCellIndex = lastFocusedCellRenderer.props.index, itemCount = props2.getItemCount(props2.data);
316
- if (focusedCellIndex >= itemCount || _this._keyExtractor(props2.getItem(props2.data, focusedCellIndex), focusedCellIndex, props2) !== _this._lastFocusedCellKey)
317
- return [];
318
- for (var first = focusedCellIndex, heightOfCellsBeforeFocused = 0, i = first - 1; i >= 0 && heightOfCellsBeforeFocused < _this._scrollMetrics.visibleLength; i--)
319
- first--, heightOfCellsBeforeFocused += _this.__getFrameMetricsApprox(i, props2).length;
320
- for (var last = focusedCellIndex, heightOfCellsAfterFocused = 0, i1 = last + 1; i1 < itemCount && heightOfCellsAfterFocused < _this._scrollMetrics.visibleLength; i1++)
321
- last++, heightOfCellsAfterFocused += _this.__getFrameMetricsApprox(i1, props2).length;
322
- return [
323
- {
324
- first,
325
- last
326
- }
327
- ];
328
- }), _this._checkProps(props), _this._fillRateHelper = new import_FillRateHelper.default(_this._getFrameMetrics);
126
+ visibleLength: 0
127
+ }, _this._highestMeasuredFrameIndex = 0, _this._headerLength = 0, _this._footerLength = 0, _this._averageCellLength = 0, _this._hasWarned = {}, _this._fillRateHelper = new import_FillRateHelper.default(_this._getFrameMetrics);
329
128
  var _this_props_updateCellsBatchingPeriod;
330
- if (_this._updateCellsToRenderBatcher = new import_Batchinator.default(_this._updateCellsToRender, (_this_props_updateCellsBatchingPeriod = _this.props.updateCellsBatchingPeriod) !== null && _this_props_updateCellsBatchingPeriod !== void 0 ? _this_props_updateCellsBatchingPeriod : 50), _this.props.viewabilityConfigCallbackPairs)
331
- _this._viewabilityTuples = _this.props.viewabilityConfigCallbackPairs.map(function(pair) {
332
- return {
333
- viewabilityHelper: new import_ViewabilityHelper.default(pair.viewabilityConfig),
334
- onViewableItemsChanged: pair.onViewableItemsChanged
335
- };
336
- });
337
- else {
338
- var { onViewableItemsChanged, viewabilityConfig } = _this.props;
339
- onViewableItemsChanged && _this._viewabilityTuples.push({
340
- viewabilityHelper: new import_ViewabilityHelper.default(viewabilityConfig),
341
- onViewableItemsChanged
342
- });
343
- }
344
- var initialRenderRegion = VirtualizedList2._initialRenderRegion(props);
345
- return _this.state = {
346
- cellsAroundViewport: initialRenderRegion,
347
- renderMask: VirtualizedList2._createRenderMask(props, initialRenderRegion)
348
- }, _this.invertedWheelEventHandler = function(ev) {
349
- var scrollOffset = _this.props.horizontal ? ev.target.scrollLeft : ev.target.scrollTop, scrollLength = _this.props.horizontal ? ev.target.scrollWidth : ev.target.scrollHeight, clientLength = _this.props.horizontal ? ev.target.clientWidth : ev.target.clientHeight, isEventTargetScrollable = scrollLength > clientLength, delta = _this.props.horizontal ? ev.deltaX || ev.wheelDeltaX : ev.deltaY || ev.wheelDeltaY, leftoverDelta = delta;
350
- isEventTargetScrollable && (leftoverDelta = delta < 0 ? Math.min(delta + scrollOffset, 0) : Math.max(delta - (scrollLength - clientLength - scrollOffset), 0));
351
- var targetDelta = delta - leftoverDelta;
352
- if (_this.props.inverted && _this._scrollRef && _this._scrollRef.getScrollableNode) {
353
- var node = _this._scrollRef.getScrollableNode();
354
- if (_this.props.horizontal) {
355
- ev.target.scrollLeft += targetDelta;
356
- var nextScrollLeft = node.scrollLeft - leftoverDelta;
357
- node.scrollLeft = _this.props.getItemLayout ? nextScrollLeft : Math.min(nextScrollLeft, _this._totalCellLength);
358
- } else {
359
- ev.target.scrollTop += targetDelta;
360
- var nextScrollTop = node.scrollTop - leftoverDelta;
361
- node.scrollTop = _this.props.getItemLayout ? nextScrollTop : Math.min(nextScrollTop, _this._totalCellLength);
362
- }
363
- ev.preventDefault();
364
- }
365
- }, _this;
129
+ return _this._updateCellsToRenderBatcher = new import_Batchinator.default(_this._updateCellsToRender, (_this_props_updateCellsBatchingPeriod = _this.props.updateCellsBatchingPeriod) !== null && _this_props_updateCellsBatchingPeriod !== void 0 ? _this_props_updateCellsBatchingPeriod : 50), _this.props.viewabilityConfig && _this.props.onViewableItemsChanged && _this._viewabilityTuples.push({
130
+ viewabilityHelper: new import_ViewabilityHelper.default(_this.props.viewabilityConfig),
131
+ onViewableItemsChanged: _this.props.onViewableItemsChanged
132
+ }), _this;
366
133
  }
367
134
  return _create_class(VirtualizedList2, [
368
135
  {
369
- // scrollToEnd may be janky without getItemLayout prop
370
136
  key: "scrollToEnd",
371
137
  value: function(params) {
372
138
  var animated = params ? params.animated : !0, veryLast = this.props.getItemCount(this.props.data) - 1;
@@ -389,7 +155,6 @@ var VirtualizedList = /* @__PURE__ */ function(StateSafePureComponent2) {
389
155
  }
390
156
  },
391
157
  {
392
- // scrollToIndex may be janky without getItemLayout prop
393
158
  key: "scrollToIndex",
394
159
  value: function(params) {
395
160
  var { data, horizontal, getItemCount, getItemLayout, onScrollToIndexFailed } = this.props, { animated, index, viewOffset, viewPosition } = params;
@@ -401,68 +166,51 @@ var VirtualizedList = /* @__PURE__ */ function(StateSafePureComponent2) {
401
166
  });
402
167
  return;
403
168
  }
404
- var frame = this.__getFrameMetricsApprox(Math.floor(index), this.props), offset = Math.max(
405
- 0,
406
- // @ts-ignore
407
- this._getOffsetApprox(index, this.props) - (viewPosition || 0) * (this._scrollMetrics.visibleLength - frame.length)
408
- ) - (viewOffset || 0);
409
- if (this._scrollRef != null) {
410
- if (this._scrollRef.scrollTo == null) {
411
- console.warn("No scrollTo method provided. This may be because you have two nested VirtualizedLists with the same orientation, or because you are using a custom component that does not implement scrollTo.");
412
- return;
413
- }
414
- this._scrollRef.scrollTo(horizontal ? {
415
- x: offset,
416
- animated
417
- } : {
418
- y: offset,
419
- animated
420
- });
421
- }
169
+ var frame = this.__getFrameMetricsApprox(Math.floor(index), this.props), offset = Math.max(0, this._getOffsetApprox(index, this.props) - (viewPosition || 0) * (this._scrollMetrics.visibleLength - frame.length)) - (viewOffset || 0);
170
+ this._scrollRef != null && this._scrollRef.scrollTo(horizontalOrDefault(horizontal) ? {
171
+ x: offset,
172
+ animated
173
+ } : {
174
+ y: offset,
175
+ animated
176
+ });
422
177
  }
423
178
  },
424
179
  {
425
- // scrollToItem may be janky without getItemLayout prop. Required linear scan through items -
426
- // use scrollToIndex instead if possible.
427
180
  key: "scrollToItem",
428
181
  value: function(params) {
429
- for (var { item } = params, { data, getItem, getItemCount } = this.props, itemCount = getItemCount(data), index = 0; index < itemCount; index++)
430
- if (getItem(data, index) === item) {
431
- this.scrollToIndex({
432
- ...params,
433
- index
434
- });
435
- break;
436
- }
182
+ var { data, getItem, getItemCount, horizontal, onScrollToIndexFailed } = this.props, { animated, item, viewPosition, viewOffset } = params, index = this.props.data.indexOf(item);
183
+ if (index !== -1)
184
+ this.scrollToIndex({
185
+ animated,
186
+ index,
187
+ viewOffset,
188
+ viewPosition
189
+ });
190
+ else
191
+ for (var itemCount = getItemCount(data), i = 0; i < itemCount; i++)
192
+ if (getItem(data, i) === item) {
193
+ this.scrollToIndex({
194
+ animated,
195
+ index: i,
196
+ viewOffset,
197
+ viewPosition
198
+ });
199
+ break;
200
+ }
437
201
  }
438
202
  },
439
203
  {
440
- /**
441
- * Scroll to a specific content pixel offset in the list.
442
- *
443
- * Param `offset` expects the offset to scroll to.
444
- * In case of `horizontal` is true, the offset is the x-value,
445
- * in any other case the offset is the y-value.
446
- *
447
- * Param `animated` (`true` by default) defines whether the list
448
- * should do an animation while scrolling.
449
- */
450
204
  key: "scrollToOffset",
451
205
  value: function(params) {
452
206
  var { animated, offset } = params;
453
- if (this._scrollRef != null) {
454
- if (this._scrollRef.scrollTo == null) {
455
- console.warn("No scrollTo method provided. This may be because you have two nested VirtualizedLists with the same orientation, or because you are using a custom component that does not implement scrollTo.");
456
- return;
457
- }
458
- this._scrollRef.scrollTo(horizontalOrDefault(this.props.horizontal) ? {
459
- x: offset,
460
- animated
461
- } : {
462
- y: offset,
463
- animated
464
- });
465
- }
207
+ this._scrollRef != null && this._scrollRef.scrollTo(horizontalOrDefault(this.props.horizontal) ? {
208
+ x: offset,
209
+ animated
210
+ } : {
211
+ y: offset,
212
+ animated
213
+ });
466
214
  }
467
215
  },
468
216
  {
@@ -470,606 +218,97 @@ var VirtualizedList = /* @__PURE__ */ function(StateSafePureComponent2) {
470
218
  value: function() {
471
219
  this._nestedChildLists.forEach(function(childList) {
472
220
  childList.recordInteraction();
473
- }), this._viewabilityTuples.forEach(function(t) {
474
- t.viewabilityHelper.recordInteraction();
475
- }), this._updateViewableItems(this.props, this.state.cellsAroundViewport);
221
+ }), this._viewabilityTuples.forEach(function(viewabilityTuple) {
222
+ viewabilityTuple.viewabilityHelper.recordInteraction();
223
+ });
476
224
  }
477
225
  },
478
226
  {
479
227
  key: "flashScrollIndicators",
480
228
  value: function() {
481
- this._scrollRef != null && this._scrollRef.flashScrollIndicators();
229
+ this._scrollRef && this._scrollRef.flashScrollIndicators && this._scrollRef.flashScrollIndicators();
482
230
  }
483
231
  },
484
232
  {
485
- /**
486
- * Provides a handle to the underlying scroll responder.
487
- * Note that `this._scrollRef` might not be a `ScrollView`, so we
488
- * need to check that it responds to `getScrollResponder` before calling it.
489
- */
490
233
  key: "getScrollResponder",
491
234
  value: function() {
492
- return this._scrollRef && this._scrollRef.getScrollResponder ? this._scrollRef.getScrollResponder() : null;
235
+ if (this._scrollRef && this._scrollRef.getScrollResponder)
236
+ return this._scrollRef.getScrollResponder();
493
237
  }
494
238
  },
495
239
  {
496
240
  key: "getScrollableNode",
497
241
  value: function() {
498
- return this._scrollRef && this._scrollRef.getScrollableNode ? this._scrollRef.getScrollableNode() : this._scrollRef;
242
+ if (this._scrollRef && this._scrollRef.getScrollableNode)
243
+ return this._scrollRef.getScrollableNode();
499
244
  }
500
245
  },
501
246
  {
502
247
  key: "getScrollRef",
503
248
  value: function() {
504
- return this._scrollRef && this._scrollRef.getScrollRef ? this._scrollRef.getScrollRef() : this._scrollRef;
505
- }
506
- },
507
- {
508
- key: "_getCellKey",
509
- value: function() {
510
- var _this_context;
511
- return ((_this_context = this.context) === null || _this_context === void 0 ? void 0 : _this_context.cellKey) || "rootList";
249
+ return this._scrollRef;
512
250
  }
513
251
  },
514
252
  {
515
- key: "hasMore",
516
- value: function() {
517
- return this._hasMore;
518
- }
519
- },
520
- {
521
- key: "_checkProps",
253
+ key: "setNativeProps",
522
254
  value: function(props) {
523
- var { onScroll, windowSize, getItemCount, data, initialScrollIndex } = props;
524
- (0, import_react_native_web_internals.invariant)(!(onScroll && onScroll.__isNative), "Components based on VirtualizedList must be wrapped with Animated.createAnimatedComponent to support native onScroll events with useNativeDriver"), (0, import_react_native_web_internals.invariant)(windowSizeOrDefault(windowSize) > 0, "VirtualizedList: The windowSize prop must be present and set to a value greater than 0."), (0, import_react_native_web_internals.invariant)(getItemCount, 'VirtualizedList: The "getItemCount" prop must be provided');
525
- var itemCount = getItemCount(data);
526
- if (initialScrollIndex != null && !this._hasTriggeredInitialScrollToIndex && (initialScrollIndex < 0 || itemCount > 0 && initialScrollIndex >= itemCount) && !this._hasWarned.initialScrollIndex && (console.warn(`initialScrollIndex "${initialScrollIndex}" is not valid (list has ${itemCount} items)`), this._hasWarned.initialScrollIndex = !0), __DEV__ && !this._hasWarned.flexWrap) {
527
- var flatStyles = import_react_native_web_internals.StyleSheet.flatten(this.props.contentContainerStyle);
528
- flatStyles != null && flatStyles.flexWrap === "wrap" && (console.warn("`flexWrap: `wrap`` is not supported with the `VirtualizedList` components.Consider using `numColumns` with `FlatList` instead."), this._hasWarned.flexWrap = !0);
529
- }
530
- }
531
- },
532
- {
533
- key: "_adjustCellsAroundViewport",
534
- value: function(props, cellsAroundViewport) {
535
- var { data, getItemCount } = props, onEndReachedThreshold = onEndReachedThresholdOrDefault(props.onEndReachedThreshold), { contentLength, offset, visibleLength } = this._scrollMetrics, distanceFromEnd = contentLength - visibleLength - offset;
536
- if (visibleLength <= 0 || contentLength <= 0)
537
- return cellsAroundViewport.last >= getItemCount(data) ? VirtualizedList2._constrainToItemCount(cellsAroundViewport, props) : cellsAroundViewport;
538
- var newCellsAroundViewport;
539
- if (props.disableVirtualization) {
540
- var renderAhead = distanceFromEnd < onEndReachedThreshold * visibleLength ? maxToRenderPerBatchOrDefault(props.maxToRenderPerBatch) : 0;
541
- newCellsAroundViewport = {
542
- first: 0,
543
- last: Math.min(cellsAroundViewport.last + renderAhead, getItemCount(data) - 1)
544
- };
545
- } else {
546
- if (props.initialScrollIndex && !this._scrollMetrics.offset && Math.abs(distanceFromEnd) >= Number.EPSILON)
547
- return cellsAroundViewport.last >= getItemCount(data) ? VirtualizedList2._constrainToItemCount(cellsAroundViewport, props) : cellsAroundViewport;
548
- newCellsAroundViewport = computeWindowedRenderLimits(props, maxToRenderPerBatchOrDefault(props.maxToRenderPerBatch), windowSizeOrDefault(props.windowSize), cellsAroundViewport, this.__getFrameMetricsApprox, this._scrollMetrics), (0, import_react_native_web_internals.invariant)(newCellsAroundViewport.last < getItemCount(data), "computeWindowedRenderLimits() should return range in-bounds");
549
- }
550
- if (this._nestedChildLists.size() > 0) {
551
- var childIdx = this._findFirstChildWithMore(newCellsAroundViewport.first, newCellsAroundViewport.last);
552
- newCellsAroundViewport.last = childIdx ?? newCellsAroundViewport.last;
553
- }
554
- return newCellsAroundViewport;
555
- }
556
- },
557
- {
558
- key: "_findFirstChildWithMore",
559
- value: function(first, last) {
560
- for (var ii = first; ii <= last; ii++) {
561
- var cellKeyForIndex = this._indicesToKeys.get(ii);
562
- if (cellKeyForIndex != null && this._nestedChildLists.anyInCell(cellKeyForIndex, function(childList) {
563
- return childList.hasMore();
564
- }))
565
- return ii;
566
- }
567
- return null;
568
- }
569
- },
570
- {
571
- key: "componentDidMount",
572
- value: function() {
573
- this._isNestedWithSameOrientation() && this.context.registerAsNestedChild({
574
- ref: this,
575
- cellKey: this.context.cellKey
576
- }), this.setupWebWheelHandler();
577
- }
578
- },
579
- {
580
- key: "componentWillUnmount",
581
- value: function() {
582
- this._isNestedWithSameOrientation() && this.context.unregisterAsNestedChild({
583
- ref: this
584
- }), this._updateCellsToRenderBatcher.dispose({
585
- abort: !0
586
- }), this._viewabilityTuples.forEach(function(tuple) {
587
- tuple.viewabilityHelper.dispose();
588
- }), this._fillRateHelper.deactivateAndFlush(), this.teardownWebWheelHandler();
589
- }
590
- },
591
- {
592
- key: "setupWebWheelHandler",
593
- value: function() {
594
- var _this = this;
595
- if (this._scrollRef && this._scrollRef.getScrollableNode)
596
- this._scrollRef.getScrollableNode().addEventListener("wheel", this.invertedWheelEventHandler);
597
- else {
598
- setTimeout(function() {
599
- return _this.setupWebWheelHandler();
600
- }, 50);
601
- return;
602
- }
603
- }
604
- },
605
- {
606
- key: "teardownWebWheelHandler",
607
- value: function() {
608
- this._scrollRef && this._scrollRef.getScrollableNode && this._scrollRef.getScrollableNode().removeEventListener("wheel", this.invertedWheelEventHandler);
609
- }
610
- },
611
- {
612
- key: "_pushCells",
613
- value: function(cells, stickyHeaderIndices, stickyIndicesFromProps, first, last, inversionStyle) {
614
- var _this, _loop = function(ii2) {
615
- var item = getItem(data, ii2), key = _this._keyExtractor(item, ii2, _this.props);
616
- _this._indicesToKeys.set(ii2, key), stickyIndicesFromProps.has(ii2 + stickyOffset) && stickyHeaderIndices.push(cells.length);
617
- var shouldListenForLayout = getItemLayout == null || debug || _this._fillRateHelper.enabled();
618
- cells.push(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_VirtualizedListCellRenderer.default, {
619
- CellRendererComponent,
620
- ItemSeparatorComponent: ii2 < end ? ItemSeparatorComponent : void 0,
621
- ListItemComponent,
622
- cellKey: key,
623
- horizontal,
624
- index: ii2,
625
- inversionStyle,
626
- item,
627
- prevCellKey,
628
- onUpdateSeparators: _this._onUpdateSeparators,
629
- onCellFocusCapture: function(e) {
630
- return _this1._onCellFocusCapture(key);
631
- },
632
- onUnmount: _this._onCellUnmount,
633
- ref: function(ref) {
634
- _this1._cellRefs[key] = ref;
635
- },
636
- renderItem,
637
- ...shouldListenForLayout && {
638
- onCellLayout: _this._onCellLayout
639
- }
640
- }, key)), prevCellKey = key;
641
- }, _this1 = this, { CellRendererComponent, ItemSeparatorComponent, ListHeaderComponent, ListItemComponent, data, debug, getItem, getItemCount, getItemLayout, horizontal, renderItem } = this.props, stickyOffset = ListHeaderComponent ? 1 : 0, end = getItemCount(data) - 1, prevCellKey;
642
- last = Math.min(end, last);
643
- for (var ii = first; ii <= last; ii++) _this = this, _loop(ii);
644
- }
645
- },
646
- {
647
- key: "_isNestedWithSameOrientation",
648
- value: function() {
649
- var nestedContext = this.context;
650
- return !!(nestedContext && !!nestedContext.horizontal === horizontalOrDefault(this.props.horizontal));
651
- }
652
- },
653
- {
654
- key: "_keyExtractor",
655
- value: function(item, index, props) {
656
- if (props.keyExtractor != null)
657
- return props.keyExtractor(item, index);
658
- var key = (0, import_VirtualizeUtils.keyExtractor)(item, index);
659
- return key === String(index) && (_usedIndexForKey = !0, item.type && item.type.displayName && (_keylessItemComponentName = item.type.displayName)), key;
255
+ this._scrollRef && this._scrollRef.setNativeProps(props);
660
256
  }
661
257
  },
662
258
  {
663
259
  key: "render",
664
260
  value: function() {
665
- var _this = this;
666
- this._checkProps(this.props);
667
- var { ListEmptyComponent, ListFooterComponent, ListHeaderComponent } = this.props, { data, horizontal } = this.props, inversionStyle = this.props.inverted ? horizontalOrDefault(this.props.horizontal) ? styles.horizontallyInverted : styles.verticallyInverted : null, cells = [], stickyIndicesFromProps = new Set(this.props.stickyHeaderIndices), stickyHeaderIndices = [];
668
- if (ListHeaderComponent) {
669
- stickyIndicesFromProps.has(0) && stickyHeaderIndices.push(0);
670
- var element = /* @__PURE__ */ import_react.default.isValidElement(ListHeaderComponent) ? ListHeaderComponent : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(ListHeaderComponent, {});
671
- cells.push(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_VirtualizedListContext.VirtualizedListCellContextProvider, {
672
- cellKey: this._getCellKey() + "-header",
673
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_View.default, {
674
- onLayout: this._onLayoutHeader,
675
- style: [
676
- inversionStyle,
677
- this.props.ListHeaderComponentStyle
678
- ],
679
- children: element
680
- })
681
- }, "$header"));
682
- }
683
- var itemCount = this.props.getItemCount(data);
684
- if (itemCount === 0 && ListEmptyComponent) {
685
- var element1 = /* @__PURE__ */ import_react.default.isValidElement(ListEmptyComponent) ? ListEmptyComponent : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(ListEmptyComponent, {});
686
- cells.push(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_VirtualizedListContext.VirtualizedListCellContextProvider, {
687
- cellKey: this._getCellKey() + "-empty",
688
- children: /* @__PURE__ */ import_react.default.cloneElement(element1, {
689
- onLayout: function(event) {
690
- _this._onLayoutEmpty(event), element1.props.onLayout && element1.props.onLayout(event);
691
- },
692
- style: [
693
- inversionStyle,
694
- element1.props.style
695
- ]
696
- })
697
- }, "$empty"));
698
- }
699
- if (itemCount > 0) {
700
- _usedIndexForKey = !1, _keylessItemComponentName = "";
701
- var spacerKey = this._getSpacerKey(!horizontal), renderRegions = this.state.renderMask.enumerateRegions(), lastSpacer = findLastWhere(renderRegions, function(r) {
702
- return r.isSpacer;
703
- }), _iteratorNormalCompletion = !0, _didIteratorError = !1, _iteratorError = void 0;
704
- try {
705
- for (var _iterator = renderRegions[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = !0) {
706
- var section = _step.value;
707
- if (section.isSpacer) {
708
- if (this.props.disableVirtualization)
709
- continue;
710
- var isLastSpacer = section === lastSpacer, constrainToMeasured = isLastSpacer && !this.props.getItemLayout, last = constrainToMeasured ? (0, import_clamp.default)(section.first - 1, section.last, this._highestMeasuredFrameIndex) : section.last, firstMetrics = this.__getFrameMetricsApprox(section.first, this.props), lastMetrics = this.__getFrameMetricsApprox(last, this.props), spacerSize = lastMetrics.offset + lastMetrics.length - firstMetrics.offset;
711
- cells.push(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_View.default, {
712
- style: {
713
- [spacerKey]: spacerSize
714
- }
715
- }, `$spacer-${section.first}`));
716
- } else
717
- this._pushCells(cells, stickyHeaderIndices, stickyIndicesFromProps, section.first, section.last, inversionStyle);
718
- }
719
- } catch (err) {
720
- _didIteratorError = !0, _iteratorError = err;
721
- } finally {
722
- try {
723
- !_iteratorNormalCompletion && _iterator.return != null && _iterator.return();
724
- } finally {
725
- if (_didIteratorError)
726
- throw _iteratorError;
727
- }
728
- }
729
- !this._hasWarned.keys && _usedIndexForKey && (console.warn("VirtualizedList: missing keys for items, make sure to specify a key or id property on each item or provide a custom keyExtractor.", _keylessItemComponentName), this._hasWarned.keys = !0);
730
- }
731
- if (ListFooterComponent) {
732
- var element2 = /* @__PURE__ */ import_react.default.isValidElement(ListFooterComponent) ? ListFooterComponent : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(ListFooterComponent, {});
733
- cells.push(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_VirtualizedListContext.VirtualizedListCellContextProvider, {
734
- cellKey: this._getFooterCellKey(),
735
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_View.default, {
736
- onLayout: this._onLayoutFooter,
737
- style: [
738
- inversionStyle,
739
- this.props.ListFooterComponentStyle
740
- ],
741
- children: element2
742
- })
743
- }, "$footer"));
744
- }
745
- var scrollProps = {
746
- ...this.props,
261
+ var { ListEmptyComponent, ListFooterComponent, ListHeaderComponent, data, debug, disableVirtualization, getItem, getItemCount, getItemLayout, horizontal, keyExtractor, numColumns, onEndReached, onEndReachedThreshold, onLayout, onRefresh, onScroll, onScrollBeginDrag, onScrollEndDrag, onMomentumScrollBegin, onMomentumScrollEnd, onStartReached, onStartReachedThreshold, onViewableItemsChanged, refreshing, removeClippedSubviews, renderItem, viewabilityConfig, viewabilityConfigCallbackPairs, ...restProps } = this.props, itemCount = getItemCount(data);
262
+ return itemCount === 0 ? ListEmptyComponent ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(ListEmptyComponent, {}) : null : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ScrollView.default, {
263
+ ...restProps,
264
+ ref: this._captureRef,
747
265
  onContentSizeChange: this._onContentSizeChange,
748
266
  onLayout: this._onLayout,
749
267
  onScroll: this._onScroll,
750
- onScrollBeginDrag: this._onScrollBeginDrag,
751
- onScrollEndDrag: this._onScrollEndDrag,
752
- onMomentumScrollBegin: this._onMomentumScrollBegin,
753
- onMomentumScrollEnd: this._onMomentumScrollEnd,
268
+ refreshControl: onRefresh && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_RefreshControl.default, {
269
+ refreshing,
270
+ onRefresh
271
+ }),
754
272
  scrollEventThrottle: scrollEventThrottleOrDefault(this.props.scrollEventThrottle),
755
- invertStickyHeaders: this.props.invertStickyHeaders !== void 0 ? this.props.invertStickyHeaders : this.props.inverted,
756
- stickyHeaderIndices,
757
- style: inversionStyle ? [
758
- inversionStyle,
759
- this.props.style
760
- ] : this.props.style
761
- };
762
- this._hasMore = this.state.cellsAroundViewport.last < itemCount - 1;
763
- var innerRet = /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_VirtualizedListContext.VirtualizedListContextProvider, {
764
- value: {
765
- cellKey: null,
766
- getScrollMetrics: this._getScrollMetrics,
767
- horizontal: horizontalOrDefault(this.props.horizontal),
768
- getOutermostParentListRef: this._getOutermostParentListRef,
769
- registerAsNestedChild: this._registerAsNestedChild,
770
- unregisterAsNestedChild: this._unregisterAsNestedChild
771
- },
772
- children: /* @__PURE__ */ import_react.default.cloneElement((this.props.renderScrollComponent || this._defaultRenderScrollComponent)(scrollProps), {
773
- ref: this._captureScrollRef
774
- }, cells)
775
- }), ret = innerRet;
776
- return ret;
777
- }
778
- },
779
- {
780
- key: "componentDidUpdate",
781
- value: function(prevProps) {
782
- var { data, extraData } = this.props;
783
- (data !== prevProps.data || extraData !== prevProps.extraData) && this._viewabilityTuples.forEach(function(tuple) {
784
- tuple.viewabilityHelper.resetViewableIndices();
273
+ removeClippedSubviews,
274
+ children: this._renderChildren()
785
275
  });
786
- var hiPriInProgress = this._hiPriInProgress;
787
- this._scheduleCellsToRenderUpdate(), hiPriInProgress && (this._hiPriInProgress = !1);
788
276
  }
789
277
  },
790
278
  {
791
- key: "_computeBlankness",
279
+ key: "_renderChildren",
792
280
  value: function() {
793
- this._fillRateHelper.computeBlankness(
794
- // @ts-ignore
795
- this.props,
796
- this.state.cellsAroundViewport,
797
- this._scrollMetrics
798
- );
799
- }
800
- },
801
- {
802
- key: "_onCellFocusCapture",
803
- value: function(cellKey) {
804
- this._lastFocusedCellKey = cellKey, this._updateCellsToRender();
805
- }
806
- },
807
- {
808
- key: "_triggerRemeasureForChildListsInCell",
809
- value: function(cellKey) {
810
- this._nestedChildLists.forEachInCell(cellKey, function(childList) {
811
- childList.measureLayoutRelativeToContainingList();
812
- });
813
- }
814
- },
815
- {
816
- key: "measureLayoutRelativeToContainingList",
817
- value: function() {
818
- var _this = this;
819
- try {
820
- if (!this._scrollRef)
821
- return;
822
- this._scrollRef.measureLayout(this.context.getOutermostParentListRef().getScrollRef(), function(x, y, width, height) {
823
- _this._offsetFromParentVirtualizedList = _this._selectOffset({
824
- x,
825
- y
826
- }), _this._scrollMetrics.contentLength = _this._selectLength({
827
- width,
828
- height
829
- });
830
- var scrollMetrics = _this._convertParentScrollMetrics(_this.context.getScrollMetrics()), metricsChanged = _this._scrollMetrics.visibleLength !== scrollMetrics.visibleLength || _this._scrollMetrics.offset !== scrollMetrics.offset;
831
- metricsChanged && (_this._scrollMetrics.visibleLength = scrollMetrics.visibleLength, _this._scrollMetrics.offset = scrollMetrics.offset, _this._nestedChildLists.forEach(function(childList) {
832
- childList.measureLayoutRelativeToContainingList();
833
- }));
834
- }, function(error) {
835
- console.warn("VirtualizedList: Encountered an error while measuring a list's offset from its containing VirtualizedList.");
836
- });
837
- } catch (error) {
838
- console.warn("measureLayoutRelativeToContainingList threw an error", error.stack);
839
- }
840
- }
841
- },
842
- {
843
- key: "_getFooterCellKey",
844
- value: function() {
845
- return this._getCellKey() + "-footer";
846
- }
847
- },
848
- {
849
- key: "_renderDebugOverlay",
850
- value: function() {
851
- for (var normalize = this._scrollMetrics.visibleLength / (this._scrollMetrics.contentLength || 1), framesInLayout = [], itemCount = this.props.getItemCount(this.props.data), ii = 0; ii < itemCount; ii++) {
852
- var frame = this.__getFrameMetricsApprox(ii, this.props);
853
- frame.inLayout && framesInLayout.push(frame);
854
- }
855
- var windowTop = this.__getFrameMetricsApprox(this.state.cellsAroundViewport.first, this.props).offset, frameLast = this.__getFrameMetricsApprox(this.state.cellsAroundViewport.last, this.props), windowLen = frameLast.offset + frameLast.length - windowTop, visTop = this._scrollMetrics.offset, visLen = this._scrollMetrics.visibleLength;
856
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_View.default, {
857
- style: [
858
- styles.debugOverlayBase,
859
- styles.debugOverlay
860
- ],
861
- children: [
862
- framesInLayout.map(function(f, ii2) {
863
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_View.default, {
864
- style: [
865
- styles.debugOverlayBase,
866
- styles.debugOverlayFrame,
867
- {
868
- top: f.offset * normalize,
869
- height: f.length * normalize
870
- }
871
- ]
872
- }, "f" + ii2);
873
- }),
874
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_View.default, {
875
- style: [
876
- styles.debugOverlayBase,
877
- styles.debugOverlayFrameLast,
878
- {
879
- top: windowTop * normalize,
880
- height: windowLen * normalize
881
- }
882
- ]
883
- }),
884
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_View.default, {
885
- style: [
886
- styles.debugOverlayBase,
887
- styles.debugOverlayFrameVis,
888
- {
889
- top: visTop * normalize,
890
- height: visLen * normalize
891
- }
892
- ]
893
- })
894
- ]
895
- });
896
- }
897
- },
898
- {
899
- key: "_selectLength",
900
- value: function(metrics) {
901
- return horizontalOrDefault(this.props.horizontal) ? metrics.width : metrics.height;
902
- }
903
- },
904
- {
905
- key: "_selectOffset",
906
- value: function(metrics) {
907
- return horizontalOrDefault(this.props.horizontal) ? metrics.x : metrics.y;
908
- }
909
- },
910
- {
911
- key: "_maybeCallOnEdgeReached",
912
- value: function() {
913
- var { data, getItemCount, onStartReached, onStartReachedThreshold, onEndReached, onEndReachedThreshold, initialScrollIndex } = this.props, { contentLength, visibleLength, offset } = this._scrollMetrics, distanceFromStart = offset, distanceFromEnd = contentLength - visibleLength - offset;
914
- distanceFromStart < ON_EDGE_REACHED_EPSILON && (distanceFromStart = 0), distanceFromEnd < ON_EDGE_REACHED_EPSILON && (distanceFromEnd = 0);
915
- var DEFAULT_THRESHOLD_PX = 2, startThreshold = onStartReachedThreshold != null ? onStartReachedThreshold * visibleLength : DEFAULT_THRESHOLD_PX, endThreshold = onEndReachedThreshold != null ? onEndReachedThreshold * visibleLength : DEFAULT_THRESHOLD_PX, isWithinStartThreshold = distanceFromStart <= startThreshold, isWithinEndThreshold = distanceFromEnd <= endThreshold;
916
- onEndReached && this.state.cellsAroundViewport.last === getItemCount(data) - 1 && isWithinEndThreshold && this._scrollMetrics.contentLength !== this._sentEndForContentLength ? (this._sentEndForContentLength = this._scrollMetrics.contentLength, onEndReached({
917
- distanceFromEnd
918
- })) : onStartReached != null && this.state.cellsAroundViewport.first === 0 && isWithinStartThreshold && this._scrollMetrics.contentLength !== this._sentStartForContentLength ? (!initialScrollIndex || this._scrollMetrics.timestamp !== 0) && (this._sentStartForContentLength = this._scrollMetrics.contentLength, onStartReached({
919
- distanceFromStart
920
- })) : (this._sentStartForContentLength = isWithinStartThreshold ? this._sentStartForContentLength : 0, this._sentEndForContentLength = isWithinEndThreshold ? this._sentEndForContentLength : 0);
921
- }
922
- },
923
- {
924
- key: "_scheduleCellsToRenderUpdate",
925
- value: function() {
926
- var { first, last } = this.state.cellsAroundViewport, { offset, visibleLength, velocity } = this._scrollMetrics, itemCount = this.props.getItemCount(this.props.data), hiPri = !1, onStartReachedThreshold = onStartReachedThresholdOrDefault(this.props.onStartReachedThreshold), onEndReachedThreshold = onEndReachedThresholdOrDefault(this.props.onEndReachedThreshold);
927
- if (first > 0) {
928
- var distTop = offset - this.__getFrameMetricsApprox(first, this.props).offset;
929
- hiPri = distTop < 0 || velocity < -2 && distTop < getScrollingThreshold(onStartReachedThreshold, visibleLength);
930
- }
931
- if (!hiPri && last >= 0 && last < itemCount - 1) {
932
- var distBottom = this.__getFrameMetricsApprox(last, this.props).offset - (offset + visibleLength);
933
- hiPri = distBottom < 0 || velocity > 2 && distBottom < getScrollingThreshold(onEndReachedThreshold, visibleLength);
934
- }
935
- if (hiPri && (this._averageCellLength || this.props.getItemLayout) && !this._hiPriInProgress) {
936
- this._hiPriInProgress = !0, this._updateCellsToRenderBatcher.dispose({
937
- abort: !0
938
- }), this._updateCellsToRender();
939
- return;
940
- } else
941
- this._updateCellsToRenderBatcher.schedule();
942
- }
943
- },
944
- {
945
- key: "_updateViewableItems",
946
- value: function(props, cellsAroundViewport) {
947
- var _this = this;
948
- this._viewabilityTuples.forEach(function(tuple) {
949
- tuple.viewabilityHelper.onUpdate(props, _this._scrollMetrics.offset, _this._scrollMetrics.visibleLength, _this._getFrameMetrics, _this._createViewToken, tuple.onViewableItemsChanged, cellsAroundViewport);
950
- });
951
- }
952
- }
953
- ], [
954
- {
955
- key: "_createRenderMask",
956
- value: function(props, cellsAroundViewport, additionalRegions) {
957
- var itemCount = props.getItemCount(props.data);
958
- (0, import_react_native_web_internals.invariant)(cellsAroundViewport.first >= 0 && cellsAroundViewport.last >= cellsAroundViewport.first - 1 && cellsAroundViewport.last < itemCount, `Invalid cells around viewport "[${cellsAroundViewport.first}, ${cellsAroundViewport.last}]" was passed to VirtualizedList._createRenderMask`);
959
- var renderMask = new import_CellRenderMask.CellRenderMask(itemCount);
960
- if (itemCount > 0) {
961
- var allRegions = [
962
- cellsAroundViewport,
963
- ...additionalRegions ?? []
964
- ], _iteratorNormalCompletion = !0, _didIteratorError = !1, _iteratorError = void 0;
965
- try {
966
- for (var _iterator = allRegions[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = !0) {
967
- var region = _step.value;
968
- renderMask.addCells(region);
969
- }
970
- } catch (err) {
971
- _didIteratorError = !0, _iteratorError = err;
972
- } finally {
973
- try {
974
- !_iteratorNormalCompletion && _iterator.return != null && _iterator.return();
975
- } finally {
976
- if (_didIteratorError)
977
- throw _iteratorError;
978
- }
979
- }
980
- if (props.initialScrollIndex == null || props.initialScrollIndex <= 0) {
981
- var initialRegion = VirtualizedList2._initialRenderRegion(props);
982
- renderMask.addCells(initialRegion);
983
- }
984
- var stickyIndicesSet = new Set(props.stickyHeaderIndices);
985
- VirtualizedList2._ensureClosestStickyHeader(props, stickyIndicesSet, renderMask, cellsAroundViewport.first);
281
+ for (var { data, getItem, getItemCount, renderItem } = this.props, items = [], i = 0; i < getItemCount(data); i++) {
282
+ var item = getItem(data, i);
283
+ items.push(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_VirtualizedListCellRenderer.default, {
284
+ cellKey: String(i),
285
+ index: i,
286
+ item,
287
+ renderItem
288
+ }, this.props.keyExtractor ? this.props.keyExtractor(item, i) : i));
986
289
  }
987
- return renderMask;
988
- }
989
- },
990
- {
991
- key: "_initialRenderRegion",
992
- value: function(props) {
993
- var itemCount = props.getItemCount(props.data), _props_initialScrollIndex, firstCellIndex = Math.max(0, Math.min(itemCount - 1, Math.floor((_props_initialScrollIndex = props.initialScrollIndex) !== null && _props_initialScrollIndex !== void 0 ? _props_initialScrollIndex : 0))), lastCellIndex = Math.min(itemCount, firstCellIndex + initialNumToRenderOrDefault(props.initialNumToRender)) - 1;
994
- return {
995
- first: firstCellIndex,
996
- last: lastCellIndex
997
- };
998
- }
999
- },
1000
- {
1001
- key: "_ensureClosestStickyHeader",
1002
- value: function(props, stickyIndicesSet, renderMask, cellIdx) {
1003
- for (var stickyOffset = props.ListHeaderComponent ? 1 : 0, itemIdx = cellIdx - 1; itemIdx >= 0; itemIdx--)
1004
- if (stickyIndicesSet.has(itemIdx + stickyOffset)) {
1005
- renderMask.addCells({
1006
- first: itemIdx,
1007
- last: itemIdx
1008
- });
1009
- break;
1010
- }
290
+ return items;
1011
291
  }
1012
292
  },
1013
293
  {
1014
- key: "getDerivedStateFromProps",
1015
- value: function(newProps, prevState) {
1016
- var itemCount = newProps.getItemCount(newProps.data);
1017
- if (itemCount === prevState.renderMask.numCells())
1018
- return prevState;
1019
- var constrainedCells = VirtualizedList2._constrainToItemCount(prevState.cellsAroundViewport, newProps);
1020
- return {
1021
- cellsAroundViewport: constrainedCells,
1022
- renderMask: VirtualizedList2._createRenderMask(newProps, constrainedCells)
294
+ // Handle scroll events
295
+ key: "__getFrameMetricsApprox",
296
+ value: function(index, props) {
297
+ var frame = {
298
+ length: this._averageCellLength,
299
+ offset: this._averageCellLength * index
1023
300
  };
301
+ return frame;
1024
302
  }
1025
303
  },
1026
304
  {
1027
- key: "_constrainToItemCount",
1028
- value: function(cells, props) {
1029
- var itemCount = props.getItemCount(props.data), last = Math.min(itemCount - 1, cells.last), maxToRenderPerBatch = maxToRenderPerBatchOrDefault(props.maxToRenderPerBatch);
1030
- return {
1031
- first: (0, import_clamp.default)(0, itemCount - 1 - maxToRenderPerBatch, cells.first),
1032
- last
1033
- };
305
+ key: "_getOffsetApprox",
306
+ value: function(index, props) {
307
+ return this.__getFrameMetricsApprox(index, props).offset;
1034
308
  }
1035
309
  }
1036
310
  ]), VirtualizedList2;
1037
311
  }(import_StateSafePureComponent.default);
1038
312
  _define_property(VirtualizedList, "contextType", import_VirtualizedListContext.VirtualizedListContext);
1039
- var styles = import_react_native_web_internals.StyleSheet.create({
1040
- verticallyInverted: {
1041
- transform: "scaleY(-1)"
1042
- },
1043
- horizontallyInverted: {
1044
- transform: "scaleX(-1)"
1045
- },
1046
- debug: {
1047
- flex: 1
1048
- },
1049
- debugOverlayBase: {
1050
- position: "absolute",
1051
- top: 0,
1052
- right: 0
1053
- },
1054
- debugOverlay: {
1055
- bottom: 0,
1056
- width: 20,
1057
- borderColor: "blue",
1058
- borderWidth: 1
1059
- },
1060
- debugOverlayFrame: {
1061
- left: 0,
1062
- backgroundColor: "orange"
1063
- },
1064
- debugOverlayFrameLast: {
1065
- left: 0,
1066
- borderColor: "green",
1067
- borderWidth: 2
1068
- },
1069
- debugOverlayFrameVis: {
1070
- left: 0,
1071
- borderColor: "red",
1072
- borderWidth: 2
1073
- }
1074
- }), VirtualizedList_default = VirtualizedList;
313
+ var VirtualizedList_default = VirtualizedList;
1075
314
  //# sourceMappingURL=index.js.map