@tamagui/react-native-web-lite 1.114.3 → 1.115.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (307) hide show
  1. package/dist/cjs/AccessibilityInfo/index.cjs +98 -0
  2. package/dist/cjs/ActivityIndicator/__tests__/index-test.cjs +188 -0
  3. package/dist/cjs/ActivityIndicator/index.cjs +127 -0
  4. package/dist/cjs/Alert/index.cjs +29 -0
  5. package/dist/cjs/AppRegistry/AppContainer.cjs +70 -0
  6. package/dist/cjs/AppRegistry/__tests__/{index-test.js → index-test.cjs} +22 -16
  7. package/dist/cjs/AppRegistry/__tests__/{index-test.node.js → index-test.node.cjs} +46 -22
  8. package/dist/cjs/AppRegistry/index.cjs +99 -0
  9. package/dist/cjs/AppRegistry/renderApplication.cjs +80 -0
  10. package/dist/cjs/AppState/__tests__/{index-test.js → index-test.cjs} +17 -16
  11. package/dist/cjs/AppState/index.cjs +69 -0
  12. package/dist/cjs/Appearance/index.cjs +54 -0
  13. package/dist/cjs/BackHandler/index.cjs +36 -0
  14. package/dist/cjs/Clipboard/{index.js → index.cjs} +17 -13
  15. package/dist/cjs/{DeviceEmitter.js → DeviceEmitter.cjs} +23 -14
  16. package/dist/cjs/DeviceInfo/{index.js → index.cjs} +37 -19
  17. package/dist/cjs/Dimensions/__tests__/{index-test.js → index-test.cjs} +18 -15
  18. package/dist/cjs/Dimensions/{index.js → index.cjs} +34 -28
  19. package/dist/cjs/I18nManager/index.cjs +35 -0
  20. package/dist/cjs/Image/index.cjs +292 -0
  21. package/dist/cjs/Image/types.cjs +16 -0
  22. package/dist/cjs/ImageBackground/__tests__/index-test.cjs +68 -0
  23. package/dist/cjs/ImageBackground/index.cjs +77 -0
  24. package/dist/cjs/Keyboard/index.cjs +39 -0
  25. package/dist/cjs/KeyboardAvoidingView/{index.js → index.cjs} +32 -21
  26. package/dist/cjs/Linking/__tests__/{index-test.js → index-test.cjs} +19 -17
  27. package/dist/cjs/Linking/{index.js → index.cjs} +18 -15
  28. package/dist/cjs/LogBox/index.cjs +32 -0
  29. package/dist/cjs/Modal/ModalAnimation.cjs +148 -0
  30. package/dist/cjs/Modal/ModalContent.cjs +86 -0
  31. package/dist/cjs/Modal/ModalFocusTrap.cjs +108 -0
  32. package/dist/cjs/Modal/ModalPortal.cjs +53 -0
  33. package/dist/cjs/Modal/index.cjs +97 -0
  34. package/dist/cjs/NativeModules/index.cjs +30 -0
  35. package/dist/cjs/PanResponder/Alternative.cjs +198 -0
  36. package/dist/cjs/PanResponder/Alternative.cjs.map +6 -0
  37. package/dist/cjs/PanResponder/{index.js → index.cjs} +23 -14
  38. package/dist/cjs/PixelRatio/{index.js → index.cjs} +23 -15
  39. package/dist/cjs/Pressable/index.cjs +143 -0
  40. package/dist/cjs/RefreshControl/{index.js → index.cjs} +27 -16
  41. package/dist/cjs/SafeAreaView/index.cjs +62 -0
  42. package/dist/cjs/ScrollView/ScrollViewBase.cjs +137 -0
  43. package/dist/cjs/ScrollView/{index.js → index.cjs} +123 -108
  44. package/dist/cjs/Share/index.cjs +49 -0
  45. package/dist/cjs/StatusBar/{index.js → index.cjs} +17 -13
  46. package/dist/cjs/Text/index.cjs +170 -0
  47. package/dist/cjs/Text/types.cjs +16 -0
  48. package/dist/cjs/TextInput/__tests__/index-test.cjs +709 -0
  49. package/dist/cjs/TextInput/index.cjs +277 -0
  50. package/dist/cjs/TextInput/types.cjs +16 -0
  51. package/dist/cjs/TouchableOpacity.cjs +117 -0
  52. package/dist/cjs/{TouchableWithoutFeedback.js → TouchableWithoutFeedback.cjs} +60 -58
  53. package/dist/cjs/UnimplementedView.cjs +47 -0
  54. package/dist/cjs/Vibration/index.cjs +37 -0
  55. package/dist/cjs/View/{index.js → index.cjs} +49 -28
  56. package/dist/cjs/View/types.cjs +16 -0
  57. package/dist/cjs/createElement/__tests__/index-test.cjs +765 -0
  58. package/dist/cjs/createElement/index.cjs +54 -0
  59. package/dist/cjs/createReactDOMStyle.cjs +27 -0
  60. package/dist/cjs/findNodeHandle.cjs +33 -0
  61. package/dist/cjs/{index.js → index.cjs} +77 -16
  62. package/dist/cjs/render/{index.js → index.cjs} +20 -14
  63. package/dist/cjs/styleTypes.cjs +16 -0
  64. package/dist/cjs/types.cjs +16 -0
  65. package/dist/cjs/useColorScheme/{index.js → index.cjs} +27 -16
  66. package/dist/cjs/useLocaleContext/index.cjs +26 -0
  67. package/dist/cjs/useWindowDimensions/{index.js → index.cjs} +28 -16
  68. package/dist/cjs/vendor/react-native/Animated/Animated.cjs +52 -0
  69. package/dist/cjs/vendor/react-native/Animated/AnimatedEvent.cjs +125 -0
  70. package/dist/cjs/vendor/react-native/Animated/AnimatedImplementation.cjs +514 -0
  71. package/dist/cjs/vendor/react-native/Animated/AnimatedMock.cjs +149 -0
  72. package/dist/cjs/vendor/react-native/Animated/AnimatedPlatformConfig.cjs +1 -0
  73. package/dist/cjs/vendor/react-native/Animated/{Easing.js → Easing.cjs} +31 -22
  74. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedHelper.cjs +331 -0
  75. package/dist/cjs/vendor/react-native/Animated/{NativeAnimatedModule.js → NativeAnimatedModule.cjs} +23 -14
  76. package/dist/cjs/vendor/react-native/Animated/{NativeAnimatedTurboModule.js → NativeAnimatedTurboModule.cjs} +23 -14
  77. package/dist/cjs/vendor/react-native/Animated/{SpringConfig.js → SpringConfig.cjs} +20 -12
  78. package/dist/cjs/vendor/react-native/Animated/animations/{Animation.js → Animation.cjs} +29 -24
  79. package/dist/cjs/vendor/react-native/Animated/animations/{DecayAnimation.js → DecayAnimation.cjs} +27 -16
  80. package/dist/cjs/vendor/react-native/Animated/animations/{SpringAnimation.js → SpringAnimation.cjs} +48 -34
  81. package/dist/cjs/vendor/react-native/Animated/animations/{TimingAnimation.js → TimingAnimation.cjs} +32 -26
  82. package/dist/cjs/vendor/react-native/Animated/{bezier.js → bezier.cjs} +38 -27
  83. package/dist/cjs/vendor/react-native/Animated/components/AnimatedImage.cjs +40 -0
  84. package/dist/cjs/vendor/react-native/Animated/components/AnimatedScrollView.cjs +45 -0
  85. package/dist/cjs/vendor/react-native/Animated/components/AnimatedText.cjs +40 -0
  86. package/dist/cjs/vendor/react-native/Animated/components/AnimatedView.cjs +40 -0
  87. package/dist/cjs/vendor/react-native/Animated/createAnimatedComponent.cjs +61 -0
  88. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedAddition.js → AnimatedAddition.cjs} +26 -15
  89. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedColor.js → AnimatedColor.cjs} +57 -40
  90. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedDiffClamp.js → AnimatedDiffClamp.cjs} +27 -16
  91. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedDivision.js → AnimatedDivision.cjs} +29 -16
  92. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedInterpolation.js → AnimatedInterpolation.cjs} +62 -72
  93. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedModulo.js → AnimatedModulo.cjs} +25 -15
  94. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedMultiplication.js → AnimatedMultiplication.cjs} +26 -15
  95. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedNode.js → AnimatedNode.cjs} +39 -39
  96. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedProps.js → AnimatedProps.cjs} +34 -24
  97. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedStyle.js → AnimatedStyle.cjs} +35 -21
  98. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedSubtraction.js → AnimatedSubtraction.cjs} +26 -15
  99. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedTracking.js → AnimatedTracking.cjs} +34 -32
  100. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedTransform.js → AnimatedTransform.cjs} +32 -21
  101. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedValue.js → AnimatedValue.cjs} +43 -50
  102. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedValueXY.js → AnimatedValueXY.cjs} +38 -31
  103. package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedWithChildren.js → AnimatedWithChildren.cjs} +31 -21
  104. package/dist/cjs/vendor/react-native/Animated/{useAnimatedProps.js → useAnimatedProps.cjs} +44 -31
  105. package/dist/cjs/vendor/react-native/{FeatureFlags.js → FeatureFlags.cjs} +16 -11
  106. package/dist/cjs/vendor/react-native/NativeEventEmitter/{RCTDeviceEventEmitter.js → RCTDeviceEventEmitter.cjs} +23 -14
  107. package/dist/cjs/vendor/react-native/NativeEventEmitter/{index.js → index.cjs} +29 -25
  108. package/dist/cjs/vendor/react-native/PanResponder/index.cjs +272 -0
  109. package/dist/cjs/vendor/react-native/TouchHistoryMath/index.cjs +105 -0
  110. package/dist/cjs/vendor/react-native/TurboModule/RCTExport.cjs +1 -0
  111. package/dist/cjs/vendor/react-native/TurboModule/TurboModuleRegistry.cjs +34 -0
  112. package/dist/cjs/vendor/react-native/Types/CoreEventTypes.cjs +18 -0
  113. package/dist/cjs/vendor/react-native/Utilities/setAndForwardRef.cjs +36 -0
  114. package/dist/cjs/vendor/react-native/emitter/{EventEmitter.js → EventEmitter.cjs} +24 -14
  115. package/dist/cjs/vendor/react-native/emitter/EventSubscription.cjs +1 -0
  116. package/dist/cjs/vendor/react-native/emitter/{_EmitterSubscription.js → _EmitterSubscription.cjs} +24 -15
  117. package/dist/cjs/vendor/react-native/emitter/{_EventEmitter.js → _EventEmitter.cjs} +39 -39
  118. package/dist/cjs/vendor/react-native/emitter/{_EventSubscription.js → _EventSubscription.cjs} +17 -11
  119. package/dist/cjs/vendor/react-native/emitter/{_EventSubscriptionVendor.js → _EventSubscriptionVendor.cjs} +21 -16
  120. package/dist/cjs/vendor/react-native/infoLog/index.cjs +31 -0
  121. package/dist/cjs/vendor/react-native/useRefEffect.cjs +32 -0
  122. package/dist/cjs/without-animated.cjs +155 -0
  123. package/package.json +9 -8
  124. package/dist/cjs/AccessibilityInfo/index.js +0 -96
  125. package/dist/cjs/ActivityIndicator/__tests__/index-test.js +0 -116
  126. package/dist/cjs/ActivityIndicator/index.js +0 -108
  127. package/dist/cjs/Alert/index.js +0 -25
  128. package/dist/cjs/AppRegistry/AppContainer.js +0 -41
  129. package/dist/cjs/AppRegistry/index.js +0 -98
  130. package/dist/cjs/AppRegistry/renderApplication.js +0 -51
  131. package/dist/cjs/AppState/index.js +0 -71
  132. package/dist/cjs/Appearance/index.js +0 -41
  133. package/dist/cjs/BackHandler/index.js +0 -32
  134. package/dist/cjs/I18nManager/index.js +0 -30
  135. package/dist/cjs/Image/index.js +0 -253
  136. package/dist/cjs/Image/types.js +0 -14
  137. package/dist/cjs/ImageBackground/__tests__/index-test.js +0 -48
  138. package/dist/cjs/ImageBackground/index.js +0 -62
  139. package/dist/cjs/Keyboard/index.js +0 -35
  140. package/dist/cjs/LogBox/index.js +0 -31
  141. package/dist/cjs/Modal/ModalAnimation.js +0 -137
  142. package/dist/cjs/Modal/ModalContent.js +0 -75
  143. package/dist/cjs/Modal/ModalFocusTrap.js +0 -105
  144. package/dist/cjs/Modal/ModalPortal.js +0 -43
  145. package/dist/cjs/Modal/index.js +0 -92
  146. package/dist/cjs/NativeModules/index.js +0 -25
  147. package/dist/cjs/Pressable/index.js +0 -140
  148. package/dist/cjs/SafeAreaView/index.js +0 -43
  149. package/dist/cjs/ScrollView/ScrollViewBase.js +0 -124
  150. package/dist/cjs/Share/index.js +0 -56
  151. package/dist/cjs/Text/index.js +0 -152
  152. package/dist/cjs/Text/types.js +0 -14
  153. package/dist/cjs/TextInput/__tests__/index-test.js +0 -422
  154. package/dist/cjs/TextInput/index.js +0 -260
  155. package/dist/cjs/TextInput/types.js +0 -14
  156. package/dist/cjs/TouchableOpacity.js +0 -123
  157. package/dist/cjs/UnimplementedView.js +0 -36
  158. package/dist/cjs/Vibration/index.js +0 -31
  159. package/dist/cjs/View/types.js +0 -14
  160. package/dist/cjs/createElement/__tests__/index-test.js +0 -536
  161. package/dist/cjs/createElement/index.js +0 -37
  162. package/dist/cjs/createReactDOMStyle.js +0 -21
  163. package/dist/cjs/findNodeHandle.js +0 -29
  164. package/dist/cjs/styleTypes.js +0 -14
  165. package/dist/cjs/types.js +0 -14
  166. package/dist/cjs/useLocaleContext/index.js +0 -21
  167. package/dist/cjs/vendor/react-native/Animated/Animated.js +0 -35
  168. package/dist/cjs/vendor/react-native/Animated/AnimatedEvent.js +0 -143
  169. package/dist/cjs/vendor/react-native/Animated/AnimatedImplementation.js +0 -458
  170. package/dist/cjs/vendor/react-native/Animated/AnimatedMock.js +0 -126
  171. package/dist/cjs/vendor/react-native/Animated/AnimatedPlatformConfig.js +0 -2
  172. package/dist/cjs/vendor/react-native/Animated/NativeAnimatedHelper.js +0 -335
  173. package/dist/cjs/vendor/react-native/Animated/components/AnimatedImage.js +0 -29
  174. package/dist/cjs/vendor/react-native/Animated/components/AnimatedScrollView.js +0 -38
  175. package/dist/cjs/vendor/react-native/Animated/components/AnimatedText.js +0 -29
  176. package/dist/cjs/vendor/react-native/Animated/components/AnimatedView.js +0 -29
  177. package/dist/cjs/vendor/react-native/Animated/createAnimatedComponent.js +0 -42
  178. package/dist/cjs/vendor/react-native/PanResponder/index.js +0 -272
  179. package/dist/cjs/vendor/react-native/TouchHistoryMath/index.js +0 -118
  180. package/dist/cjs/vendor/react-native/TurboModule/RCTExport.js +0 -2
  181. package/dist/cjs/vendor/react-native/TurboModule/TurboModuleRegistry.js +0 -28
  182. package/dist/cjs/vendor/react-native/Types/CoreEventTypes.js +0 -15
  183. package/dist/cjs/vendor/react-native/Utilities/setAndForwardRef.js +0 -29
  184. package/dist/cjs/vendor/react-native/emitter/EventSubscription.js +0 -2
  185. package/dist/cjs/vendor/react-native/infoLog/index.js +0 -25
  186. package/dist/cjs/vendor/react-native/useRefEffect.js +0 -30
  187. package/dist/cjs/without-animated.js +0 -95
  188. /package/dist/cjs/AccessibilityInfo/{index.js.map → index.cjs.map} +0 -0
  189. /package/dist/cjs/ActivityIndicator/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
  190. /package/dist/cjs/ActivityIndicator/{index.js.map → index.cjs.map} +0 -0
  191. /package/dist/cjs/Alert/{index.js.map → index.cjs.map} +0 -0
  192. /package/dist/cjs/AppRegistry/{AppContainer.js.map → AppContainer.cjs.map} +0 -0
  193. /package/dist/cjs/AppRegistry/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
  194. /package/dist/cjs/AppRegistry/__tests__/{index-test.node.js.map → index-test.node.cjs.map} +0 -0
  195. /package/dist/cjs/AppRegistry/{index.js.map → index.cjs.map} +0 -0
  196. /package/dist/cjs/AppRegistry/{renderApplication.js.map → renderApplication.cjs.map} +0 -0
  197. /package/dist/cjs/AppState/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
  198. /package/dist/cjs/AppState/{index.js.map → index.cjs.map} +0 -0
  199. /package/dist/cjs/Appearance/{index.js.map → index.cjs.map} +0 -0
  200. /package/dist/cjs/BackHandler/{index.js.map → index.cjs.map} +0 -0
  201. /package/dist/cjs/Clipboard/{index.js.map → index.cjs.map} +0 -0
  202. /package/dist/cjs/{DeviceEmitter.js.map → DeviceEmitter.cjs.map} +0 -0
  203. /package/dist/cjs/DeviceInfo/{index.js.map → index.cjs.map} +0 -0
  204. /package/dist/cjs/Dimensions/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
  205. /package/dist/cjs/Dimensions/{index.js.map → index.cjs.map} +0 -0
  206. /package/dist/cjs/I18nManager/{index.js.map → index.cjs.map} +0 -0
  207. /package/dist/cjs/Image/{index.js.map → index.cjs.map} +0 -0
  208. /package/dist/cjs/Image/{types.js.map → types.cjs.map} +0 -0
  209. /package/dist/cjs/ImageBackground/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
  210. /package/dist/cjs/ImageBackground/{index.js.map → index.cjs.map} +0 -0
  211. /package/dist/cjs/Keyboard/{index.js.map → index.cjs.map} +0 -0
  212. /package/dist/cjs/KeyboardAvoidingView/{index.js.map → index.cjs.map} +0 -0
  213. /package/dist/cjs/Linking/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
  214. /package/dist/cjs/Linking/{index.js.map → index.cjs.map} +0 -0
  215. /package/dist/cjs/LogBox/{index.js.map → index.cjs.map} +0 -0
  216. /package/dist/cjs/Modal/{ModalAnimation.js.map → ModalAnimation.cjs.map} +0 -0
  217. /package/dist/cjs/Modal/{ModalContent.js.map → ModalContent.cjs.map} +0 -0
  218. /package/dist/cjs/Modal/{ModalFocusTrap.js.map → ModalFocusTrap.cjs.map} +0 -0
  219. /package/dist/cjs/Modal/{ModalPortal.js.map → ModalPortal.cjs.map} +0 -0
  220. /package/dist/cjs/Modal/{index.js.map → index.cjs.map} +0 -0
  221. /package/dist/cjs/NativeModules/{index.js.map → index.cjs.map} +0 -0
  222. /package/dist/cjs/PanResponder/{index.js.map → index.cjs.map} +0 -0
  223. /package/dist/cjs/PixelRatio/{index.js.map → index.cjs.map} +0 -0
  224. /package/dist/cjs/Pressable/{index.js.map → index.cjs.map} +0 -0
  225. /package/dist/cjs/RefreshControl/{index.js.map → index.cjs.map} +0 -0
  226. /package/dist/cjs/SafeAreaView/{index.js.map → index.cjs.map} +0 -0
  227. /package/dist/cjs/ScrollView/{ScrollViewBase.js.map → ScrollViewBase.cjs.map} +0 -0
  228. /package/dist/cjs/ScrollView/{index.js.map → index.cjs.map} +0 -0
  229. /package/dist/cjs/Share/{index.js.map → index.cjs.map} +0 -0
  230. /package/dist/cjs/StatusBar/{index.js.map → index.cjs.map} +0 -0
  231. /package/dist/cjs/Text/{index.js.map → index.cjs.map} +0 -0
  232. /package/dist/cjs/Text/{types.js.map → types.cjs.map} +0 -0
  233. /package/dist/cjs/TextInput/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
  234. /package/dist/cjs/TextInput/{index.js.map → index.cjs.map} +0 -0
  235. /package/dist/cjs/TextInput/{types.js.map → types.cjs.map} +0 -0
  236. /package/dist/cjs/{TouchableOpacity.js.map → TouchableOpacity.cjs.map} +0 -0
  237. /package/dist/cjs/{TouchableWithoutFeedback.js.map → TouchableWithoutFeedback.cjs.map} +0 -0
  238. /package/dist/cjs/{UnimplementedView.js.map → UnimplementedView.cjs.map} +0 -0
  239. /package/dist/cjs/Vibration/{index.js.map → index.cjs.map} +0 -0
  240. /package/dist/cjs/View/{index.js.map → index.cjs.map} +0 -0
  241. /package/dist/cjs/View/{types.js.map → types.cjs.map} +0 -0
  242. /package/dist/cjs/createElement/__tests__/{index-test.js.map → index-test.cjs.map} +0 -0
  243. /package/dist/cjs/createElement/{index.js.map → index.cjs.map} +0 -0
  244. /package/dist/cjs/{createReactDOMStyle.js.map → createReactDOMStyle.cjs.map} +0 -0
  245. /package/dist/cjs/{findNodeHandle.js.map → findNodeHandle.cjs.map} +0 -0
  246. /package/dist/cjs/{index.js.map → index.cjs.map} +0 -0
  247. /package/dist/cjs/render/{index.js.map → index.cjs.map} +0 -0
  248. /package/dist/cjs/{styleTypes.js.map → styleTypes.cjs.map} +0 -0
  249. /package/dist/cjs/{types.js.map → types.cjs.map} +0 -0
  250. /package/dist/cjs/useColorScheme/{index.js.map → index.cjs.map} +0 -0
  251. /package/dist/cjs/useLocaleContext/{index.js.map → index.cjs.map} +0 -0
  252. /package/dist/cjs/useWindowDimensions/{index.js.map → index.cjs.map} +0 -0
  253. /package/dist/cjs/vendor/react-native/Animated/{Animated.js.map → Animated.cjs.map} +0 -0
  254. /package/dist/cjs/vendor/react-native/Animated/{AnimatedEvent.js.map → AnimatedEvent.cjs.map} +0 -0
  255. /package/dist/cjs/vendor/react-native/Animated/{AnimatedImplementation.js.map → AnimatedImplementation.cjs.map} +0 -0
  256. /package/dist/cjs/vendor/react-native/Animated/{AnimatedMock.js.map → AnimatedMock.cjs.map} +0 -0
  257. /package/dist/cjs/vendor/react-native/Animated/{AnimatedPlatformConfig.js.map → AnimatedPlatformConfig.cjs.map} +0 -0
  258. /package/dist/cjs/vendor/react-native/Animated/{Easing.js.map → Easing.cjs.map} +0 -0
  259. /package/dist/cjs/vendor/react-native/Animated/{NativeAnimatedHelper.js.map → NativeAnimatedHelper.cjs.map} +0 -0
  260. /package/dist/cjs/vendor/react-native/Animated/{NativeAnimatedModule.js.map → NativeAnimatedModule.cjs.map} +0 -0
  261. /package/dist/cjs/vendor/react-native/Animated/{NativeAnimatedTurboModule.js.map → NativeAnimatedTurboModule.cjs.map} +0 -0
  262. /package/dist/cjs/vendor/react-native/Animated/{SpringConfig.js.map → SpringConfig.cjs.map} +0 -0
  263. /package/dist/cjs/vendor/react-native/Animated/animations/{Animation.js.map → Animation.cjs.map} +0 -0
  264. /package/dist/cjs/vendor/react-native/Animated/animations/{DecayAnimation.js.map → DecayAnimation.cjs.map} +0 -0
  265. /package/dist/cjs/vendor/react-native/Animated/animations/{SpringAnimation.js.map → SpringAnimation.cjs.map} +0 -0
  266. /package/dist/cjs/vendor/react-native/Animated/animations/{TimingAnimation.js.map → TimingAnimation.cjs.map} +0 -0
  267. /package/dist/cjs/vendor/react-native/Animated/{bezier.js.map → bezier.cjs.map} +0 -0
  268. /package/dist/cjs/vendor/react-native/Animated/components/{AnimatedImage.js.map → AnimatedImage.cjs.map} +0 -0
  269. /package/dist/cjs/vendor/react-native/Animated/components/{AnimatedScrollView.js.map → AnimatedScrollView.cjs.map} +0 -0
  270. /package/dist/cjs/vendor/react-native/Animated/components/{AnimatedText.js.map → AnimatedText.cjs.map} +0 -0
  271. /package/dist/cjs/vendor/react-native/Animated/components/{AnimatedView.js.map → AnimatedView.cjs.map} +0 -0
  272. /package/dist/cjs/vendor/react-native/Animated/{createAnimatedComponent.js.map → createAnimatedComponent.cjs.map} +0 -0
  273. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedAddition.js.map → AnimatedAddition.cjs.map} +0 -0
  274. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedColor.js.map → AnimatedColor.cjs.map} +0 -0
  275. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedDiffClamp.js.map → AnimatedDiffClamp.cjs.map} +0 -0
  276. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedDivision.js.map → AnimatedDivision.cjs.map} +0 -0
  277. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedInterpolation.js.map → AnimatedInterpolation.cjs.map} +0 -0
  278. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedModulo.js.map → AnimatedModulo.cjs.map} +0 -0
  279. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedMultiplication.js.map → AnimatedMultiplication.cjs.map} +0 -0
  280. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedNode.js.map → AnimatedNode.cjs.map} +0 -0
  281. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedProps.js.map → AnimatedProps.cjs.map} +0 -0
  282. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedStyle.js.map → AnimatedStyle.cjs.map} +0 -0
  283. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedSubtraction.js.map → AnimatedSubtraction.cjs.map} +0 -0
  284. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedTracking.js.map → AnimatedTracking.cjs.map} +0 -0
  285. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedTransform.js.map → AnimatedTransform.cjs.map} +0 -0
  286. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedValue.js.map → AnimatedValue.cjs.map} +0 -0
  287. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedValueXY.js.map → AnimatedValueXY.cjs.map} +0 -0
  288. /package/dist/cjs/vendor/react-native/Animated/nodes/{AnimatedWithChildren.js.map → AnimatedWithChildren.cjs.map} +0 -0
  289. /package/dist/cjs/vendor/react-native/Animated/{useAnimatedProps.js.map → useAnimatedProps.cjs.map} +0 -0
  290. /package/dist/cjs/vendor/react-native/{FeatureFlags.js.map → FeatureFlags.cjs.map} +0 -0
  291. /package/dist/cjs/vendor/react-native/NativeEventEmitter/{RCTDeviceEventEmitter.js.map → RCTDeviceEventEmitter.cjs.map} +0 -0
  292. /package/dist/cjs/vendor/react-native/NativeEventEmitter/{index.js.map → index.cjs.map} +0 -0
  293. /package/dist/cjs/vendor/react-native/PanResponder/{index.js.map → index.cjs.map} +0 -0
  294. /package/dist/cjs/vendor/react-native/TouchHistoryMath/{index.js.map → index.cjs.map} +0 -0
  295. /package/dist/cjs/vendor/react-native/TurboModule/{RCTExport.js.map → RCTExport.cjs.map} +0 -0
  296. /package/dist/cjs/vendor/react-native/TurboModule/{TurboModuleRegistry.js.map → TurboModuleRegistry.cjs.map} +0 -0
  297. /package/dist/cjs/vendor/react-native/Types/{CoreEventTypes.js.map → CoreEventTypes.cjs.map} +0 -0
  298. /package/dist/cjs/vendor/react-native/Utilities/{setAndForwardRef.js.map → setAndForwardRef.cjs.map} +0 -0
  299. /package/dist/cjs/vendor/react-native/emitter/{EventEmitter.js.map → EventEmitter.cjs.map} +0 -0
  300. /package/dist/cjs/vendor/react-native/emitter/{EventSubscription.js.map → EventSubscription.cjs.map} +0 -0
  301. /package/dist/cjs/vendor/react-native/emitter/{_EmitterSubscription.js.map → _EmitterSubscription.cjs.map} +0 -0
  302. /package/dist/cjs/vendor/react-native/emitter/{_EventEmitter.js.map → _EventEmitter.cjs.map} +0 -0
  303. /package/dist/cjs/vendor/react-native/emitter/{_EventSubscription.js.map → _EventSubscription.cjs.map} +0 -0
  304. /package/dist/cjs/vendor/react-native/emitter/{_EventSubscriptionVendor.js.map → _EventSubscriptionVendor.cjs.map} +0 -0
  305. /package/dist/cjs/vendor/react-native/infoLog/{index.js.map → index.cjs.map} +0 -0
  306. /package/dist/cjs/vendor/react-native/{useRefEffect.js.map → useRefEffect.cjs.map} +0 -0
  307. /package/dist/cjs/{without-animated.js.map → without-animated.cjs.map} +0 -0
@@ -0,0 +1,272 @@
1
+ "use strict";
2
+
3
+ var __create = Object.create;
4
+ var __defProp = Object.defineProperty;
5
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
+ var __getOwnPropNames = Object.getOwnPropertyNames;
7
+ var __getProtoOf = Object.getPrototypeOf,
8
+ __hasOwnProp = Object.prototype.hasOwnProperty;
9
+ var __export = (target, all) => {
10
+ for (var name in all) __defProp(target, name, {
11
+ get: all[name],
12
+ enumerable: !0
13
+ });
14
+ },
15
+ __copyProps = (to, from, except, desc) => {
16
+ if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
17
+ get: () => from[key],
18
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
19
+ });
20
+ return to;
21
+ };
22
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
23
+ // If the importer is in node compatibility mode or this is not an ESM
24
+ // file that has been converted to a CommonJS file using a Babel-
25
+ // compatible transform (i.e. "__esModule" has not been set), then set
26
+ // "default" to the CommonJS "module.exports" for node compatibility.
27
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
28
+ value: mod,
29
+ enumerable: !0
30
+ }) : target, mod)),
31
+ __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
32
+ value: !0
33
+ }), mod);
34
+ var PanResponder_exports = {};
35
+ __export(PanResponder_exports, {
36
+ default: () => PanResponder_default
37
+ });
38
+ module.exports = __toCommonJS(PanResponder_exports);
39
+ var import_react_native_web_internals = require("@tamagui/react-native-web-internals"),
40
+ import_TouchHistoryMath = __toESM(require("../TouchHistoryMath/index.cjs"));
41
+ const currentCentroidXOfTouchesChangedAfter = import_TouchHistoryMath.default.currentCentroidXOfTouchesChangedAfter,
42
+ currentCentroidYOfTouchesChangedAfter = import_TouchHistoryMath.default.currentCentroidYOfTouchesChangedAfter,
43
+ previousCentroidXOfTouchesChangedAfter = import_TouchHistoryMath.default.previousCentroidXOfTouchesChangedAfter,
44
+ previousCentroidYOfTouchesChangedAfter = import_TouchHistoryMath.default.previousCentroidYOfTouchesChangedAfter,
45
+ currentCentroidX = import_TouchHistoryMath.default.currentCentroidX,
46
+ currentCentroidY = import_TouchHistoryMath.default.currentCentroidY,
47
+ PanResponder = {
48
+ /**
49
+ *
50
+ * A graphical explanation of the touch data flow:
51
+ *
52
+ * +----------------------------+ +--------------------------------+
53
+ * | ResponderTouchHistoryStore | |TouchHistoryMath |
54
+ * +----------------------------+ +----------+---------------------+
55
+ * |Global store of touchHistory| |Allocation-less math util |
56
+ * |including activeness, start | |on touch history (centroids |
57
+ * |position, prev/cur position.| |and multitouch movement etc) |
58
+ * | | | |
59
+ * +----^-----------------------+ +----^---------------------------+
60
+ * | |
61
+ * | (records relevant history |
62
+ * | of touches relevant for |
63
+ * | implementing higher level |
64
+ * | gestures) |
65
+ * | |
66
+ * +----+-----------------------+ +----|---------------------------+
67
+ * | ResponderEventPlugin | | | Your App/Component |
68
+ * +----------------------------+ +----|---------------------------+
69
+ * |Negotiates which view gets | Low level | | High level |
70
+ * |onResponderMove events. | events w/ | +-+-------+ events w/ |
71
+ * |Also records history into | touchHistory| | Pan | multitouch + |
72
+ * |ResponderTouchHistoryStore. +---------------->Responder+-----> accumulative|
73
+ * +----------------------------+ attached to | | | distance and |
74
+ * each event | +---------+ velocity. |
75
+ * | |
76
+ * | |
77
+ * +--------------------------------+
78
+ *
79
+ *
80
+ *
81
+ * Gesture that calculates cumulative movement over time in a way that just
82
+ * "does the right thing" for multiple touches. The "right thing" is very
83
+ * nuanced. When moving two touches in opposite directions, the cumulative
84
+ * distance is zero in each dimension. When two touches move in parallel five
85
+ * pixels in the same direction, the cumulative distance is five, not ten. If
86
+ * two touches start, one moves five in a direction, then stops and the other
87
+ * touch moves fives in the same direction, the cumulative distance is ten.
88
+ *
89
+ * This logic requires a kind of processing of time "clusters" of touch events
90
+ * so that two touch moves that essentially occur in parallel but move every
91
+ * other frame respectively, are considered part of the same movement.
92
+ *
93
+ * Explanation of some of the non-obvious fields:
94
+ *
95
+ * - moveX/moveY: If no move event has been observed, then `(moveX, moveY)` is
96
+ * invalid. If a move event has been observed, `(moveX, moveY)` is the
97
+ * centroid of the most recently moved "cluster" of active touches.
98
+ * (Currently all move have the same timeStamp, but later we should add some
99
+ * threshold for what is considered to be "moving"). If a palm is
100
+ * accidentally counted as a touch, but a finger is moving greatly, the palm
101
+ * will move slightly, but we only want to count the single moving touch.
102
+ * - x0/y0: Centroid location (non-cumulative) at the time of becoming
103
+ * responder.
104
+ * - dx/dy: Cumulative touch distance - not the same thing as sum of each touch
105
+ * distance. Accounts for touch moves that are clustered together in time,
106
+ * moving the same direction. Only valid when currently responder (otherwise,
107
+ * it only represents the drag distance below the threshold).
108
+ * - vx/vy: Velocity.
109
+ */
110
+ _initializeGestureState(gestureState) {
111
+ gestureState.moveX = 0, gestureState.moveY = 0, gestureState.x0 = 0, gestureState.y0 = 0, gestureState.dx = 0, gestureState.dy = 0, gestureState.vx = 0, gestureState.vy = 0, gestureState.numberActiveTouches = 0, gestureState._accountsForMovesUpTo = 0;
112
+ },
113
+ /**
114
+ * This is nuanced and is necessary. It is incorrect to continuously take all
115
+ * active *and* recently moved touches, find the centroid, and track how that
116
+ * result changes over time. Instead, we must take all recently moved
117
+ * touches, and calculate how the centroid has changed just for those
118
+ * recently moved touches, and append that change to an accumulator. This is
119
+ * to (at least) handle the case where the user is moving three fingers, and
120
+ * then one of the fingers stops but the other two continue.
121
+ *
122
+ * This is very different than taking all of the recently moved touches and
123
+ * storing their centroid as `dx/dy`. For correctness, we must *accumulate
124
+ * changes* in the centroid of recently moved touches.
125
+ *
126
+ * There is also some nuance with how we handle multiple moved touches in a
127
+ * single event. With the way `ReactNativeEventEmitter` dispatches touches as
128
+ * individual events, multiple touches generate two 'move' events, each of
129
+ * them triggering `onResponderMove`. But with the way `PanResponder` works,
130
+ * all of the gesture inference is performed on the first dispatch, since it
131
+ * looks at all of the touches (even the ones for which there hasn't been a
132
+ * native dispatch yet). Therefore, `PanResponder` does not call
133
+ * `onResponderMove` passed the first dispatch. This diverges from the
134
+ * typical responder callback pattern (without using `PanResponder`), but
135
+ * avoids more dispatches than necessary.
136
+ */
137
+ _updateGestureStateOnMove(gestureState, touchHistory) {
138
+ gestureState.numberActiveTouches = touchHistory.numberActiveTouches, gestureState.moveX = currentCentroidXOfTouchesChangedAfter(touchHistory, gestureState._accountsForMovesUpTo), gestureState.moveY = currentCentroidYOfTouchesChangedAfter(touchHistory, gestureState._accountsForMovesUpTo);
139
+ const movedAfter = gestureState._accountsForMovesUpTo,
140
+ prevX = previousCentroidXOfTouchesChangedAfter(touchHistory, movedAfter),
141
+ x = currentCentroidXOfTouchesChangedAfter(touchHistory, movedAfter),
142
+ prevY = previousCentroidYOfTouchesChangedAfter(touchHistory, movedAfter),
143
+ y = currentCentroidYOfTouchesChangedAfter(touchHistory, movedAfter),
144
+ nextDX = gestureState.dx + (x - prevX),
145
+ nextDY = gestureState.dy + (y - prevY),
146
+ dt = touchHistory.mostRecentTimeStamp - gestureState._accountsForMovesUpTo;
147
+ gestureState.vx = (nextDX - gestureState.dx) / dt, gestureState.vy = (nextDY - gestureState.dy) / dt, gestureState.dx = nextDX, gestureState.dy = nextDY, gestureState._accountsForMovesUpTo = touchHistory.mostRecentTimeStamp;
148
+ },
149
+ /**
150
+ * @param {object} config Enhanced versions of all of the responder callbacks
151
+ * that provide not only the typical `ResponderSyntheticEvent`, but also the
152
+ * `PanResponder` gesture state. Simply replace the word `Responder` with
153
+ * `PanResponder` in each of the typical `onResponder*` callbacks. For
154
+ * example, the `config` object would look like:
155
+ *
156
+ * - `onMoveShouldSetPanResponder: (e, gestureState) => {...}`
157
+ * - `onMoveShouldSetPanResponderCapture: (e, gestureState) => {...}`
158
+ * - `onStartShouldSetPanResponder: (e, gestureState) => {...}`
159
+ * - `onStartShouldSetPanResponderCapture: (e, gestureState) => {...}`
160
+ * - `onPanResponderReject: (e, gestureState) => {...}`
161
+ * - `onPanResponderGrant: (e, gestureState) => {...}`
162
+ * - `onPanResponderStart: (e, gestureState) => {...}`
163
+ * - `onPanResponderEnd: (e, gestureState) => {...}`
164
+ * - `onPanResponderRelease: (e, gestureState) => {...}`
165
+ * - `onPanResponderMove: (e, gestureState) => {...}`
166
+ * - `onPanResponderTerminate: (e, gestureState) => {...}`
167
+ * - `onPanResponderTerminationRequest: (e, gestureState) => {...}`
168
+ * - `onShouldBlockNativeResponder: (e, gestureState) => {...}`
169
+ *
170
+ * In general, for events that have capture equivalents, we update the
171
+ * gestureState once in the capture phase and can use it in the bubble phase
172
+ * as well.
173
+ *
174
+ * Be careful with onStartShould* callbacks. They only reflect updated
175
+ * `gestureState` for start/end events that bubble/capture to the Node.
176
+ * Once the node is the responder, you can rely on every start/end event
177
+ * being processed by the gesture and `gestureState` being updated
178
+ * accordingly. (numberActiveTouches) may not be totally accurate unless you
179
+ * are the responder.
180
+ */
181
+ create(config) {
182
+ const interactionState = {
183
+ handle: null,
184
+ shouldCancelClick: !1,
185
+ timeout: null
186
+ },
187
+ gestureState = {
188
+ // Useful for debugging
189
+ stateID: Math.random(),
190
+ moveX: 0,
191
+ moveY: 0,
192
+ x0: 0,
193
+ y0: 0,
194
+ dx: 0,
195
+ dy: 0,
196
+ vx: 0,
197
+ vy: 0,
198
+ numberActiveTouches: 0,
199
+ _accountsForMovesUpTo: 0
200
+ };
201
+ return {
202
+ panHandlers: {
203
+ onStartShouldSetResponder(event) {
204
+ return config.onStartShouldSetPanResponder == null ? !1 : config.onStartShouldSetPanResponder(event, gestureState);
205
+ },
206
+ onMoveShouldSetResponder(event) {
207
+ return config.onMoveShouldSetPanResponder == null ? !1 : config.onMoveShouldSetPanResponder(event, gestureState);
208
+ },
209
+ onStartShouldSetResponderCapture(event) {
210
+ return event.nativeEvent.touches.length === 1 && PanResponder._initializeGestureState(gestureState), gestureState.numberActiveTouches = event.touchHistory.numberActiveTouches, config.onStartShouldSetPanResponderCapture != null ? config.onStartShouldSetPanResponderCapture(event, gestureState) : !1;
211
+ },
212
+ onMoveShouldSetResponderCapture(event) {
213
+ const touchHistory = event.touchHistory;
214
+ return gestureState._accountsForMovesUpTo === touchHistory.mostRecentTimeStamp ? !1 : (PanResponder._updateGestureStateOnMove(gestureState, touchHistory), config.onMoveShouldSetPanResponderCapture ? config.onMoveShouldSetPanResponderCapture(event, gestureState) : !1);
215
+ },
216
+ onResponderGrant(event) {
217
+ return interactionState.handle || (interactionState.handle = import_react_native_web_internals.InteractionManager.createInteractionHandle()), interactionState.timeout && clearInteractionTimeout(interactionState), interactionState.shouldCancelClick = !0, gestureState.x0 = currentCentroidX(event.touchHistory), gestureState.y0 = currentCentroidY(event.touchHistory), gestureState.dx = 0, gestureState.dy = 0, config.onPanResponderGrant && config.onPanResponderGrant(event, gestureState), config.onShouldBlockNativeResponder == null ? !0 : config.onShouldBlockNativeResponder(event, gestureState);
218
+ },
219
+ onResponderReject(event) {
220
+ clearInteractionHandle(interactionState,
221
+ // @ts-ignore
222
+ config.onPanResponderReject, event, gestureState);
223
+ },
224
+ onResponderRelease(event) {
225
+ clearInteractionHandle(interactionState, config.onPanResponderRelease, event, gestureState), setInteractionTimeout(interactionState), PanResponder._initializeGestureState(gestureState);
226
+ },
227
+ onResponderStart(event) {
228
+ const touchHistory = event.touchHistory;
229
+ gestureState.numberActiveTouches = touchHistory.numberActiveTouches, config.onPanResponderStart && config.onPanResponderStart(event, gestureState);
230
+ },
231
+ onResponderMove(event) {
232
+ const touchHistory = event.touchHistory;
233
+ gestureState._accountsForMovesUpTo !== touchHistory.mostRecentTimeStamp && (PanResponder._updateGestureStateOnMove(gestureState, touchHistory), config.onPanResponderMove && config.onPanResponderMove(event, gestureState));
234
+ },
235
+ onResponderEnd(event) {
236
+ const touchHistory = event.touchHistory;
237
+ gestureState.numberActiveTouches = touchHistory.numberActiveTouches, clearInteractionHandle(interactionState, config.onPanResponderEnd, event, gestureState);
238
+ },
239
+ onResponderTerminate(event) {
240
+ clearInteractionHandle(interactionState,
241
+ // @ts-ignore
242
+ config.onPanResponderTerminate, event, gestureState), setInteractionTimeout(interactionState), PanResponder._initializeGestureState(gestureState);
243
+ },
244
+ onResponderTerminationRequest(event) {
245
+ return config.onPanResponderTerminationRequest == null ? !0 : config.onPanResponderTerminationRequest(event, gestureState);
246
+ },
247
+ // We do not want to trigger 'click' activated gestures or native behaviors
248
+ // on any pan target that is under a mouse cursor when it is released.
249
+ // Browsers will natively cancel 'click' events on a target if a non-mouse
250
+ // active pointer moves.
251
+ onClickCapture: event => {
252
+ interactionState.shouldCancelClick === !0 && (event.stopPropagation(), event.preventDefault());
253
+ }
254
+ },
255
+ getInteractionHandle() {
256
+ return interactionState.handle;
257
+ }
258
+ };
259
+ }
260
+ };
261
+ function clearInteractionHandle(interactionState, callback, event, gestureState) {
262
+ interactionState.handle && (import_react_native_web_internals.InteractionManager.clearInteractionHandle(interactionState.handle), interactionState.handle = null), callback && callback(event, gestureState);
263
+ }
264
+ function clearInteractionTimeout(interactionState) {
265
+ clearTimeout(interactionState.timeout);
266
+ }
267
+ function setInteractionTimeout(interactionState) {
268
+ interactionState.timeout = setTimeout(() => {
269
+ interactionState.shouldCancelClick = !1;
270
+ }, 250);
271
+ }
272
+ var PanResponder_default = PanResponder;
@@ -0,0 +1,105 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all) __defProp(target, name, {
7
+ get: all[name],
8
+ enumerable: !0
9
+ });
10
+ },
11
+ __copyProps = (to, from, except, desc) => {
12
+ if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
13
+ get: () => from[key],
14
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
15
+ });
16
+ return to;
17
+ };
18
+ var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
19
+ value: !0
20
+ }), mod);
21
+ var TouchHistoryMath_exports = {};
22
+ __export(TouchHistoryMath_exports, {
23
+ default: () => TouchHistoryMath_default
24
+ });
25
+ module.exports = __toCommonJS(TouchHistoryMath_exports);
26
+ const TouchHistoryMath = {
27
+ /**
28
+ * This code is optimized and not intended to look beautiful. This allows
29
+ * computing of touch centroids that have moved after `touchesChangedAfter`
30
+ * timeStamp. You can compute the current centroid involving all touches
31
+ * moves after `touchesChangedAfter`, or you can compute the previous
32
+ * centroid of all touches that were moved after `touchesChangedAfter`.
33
+ *
34
+ * @param {TouchHistoryMath} touchHistory Standard Responder touch track
35
+ * data.
36
+ * @param {number} touchesChangedAfter timeStamp after which moved touches
37
+ * are considered "actively moving" - not just "active".
38
+ * @param {boolean} isXAxis Consider `x` dimension vs. `y` dimension.
39
+ * @param {boolean} ofCurrent Compute current centroid for actively moving
40
+ * touches vs. previous centroid of now actively moving touches.
41
+ * @return {number} value of centroid in specified dimension.
42
+ */
43
+ centroidDimension: function (touchHistory, touchesChangedAfter, isXAxis, ofCurrent) {
44
+ const touchBank = touchHistory.touchBank;
45
+ let total = 0,
46
+ count = 0;
47
+ const oneTouchData = touchHistory.numberActiveTouches === 1 ? touchHistory.touchBank[touchHistory.indexOfSingleActiveTouch] : null;
48
+ if (oneTouchData !== null) oneTouchData.touchActive && oneTouchData.currentTimeStamp > touchesChangedAfter && (total += ofCurrent && isXAxis ? oneTouchData.currentPageX : ofCurrent && !isXAxis ? oneTouchData.currentPageY : !ofCurrent && isXAxis ? oneTouchData.previousPageX : oneTouchData.previousPageY, count = 1);else for (let i = 0; i < touchBank.length; i++) {
49
+ const touchTrack = touchBank[i];
50
+ if (touchTrack != null && touchTrack.touchActive && touchTrack.currentTimeStamp >= touchesChangedAfter) {
51
+ let toAdd;
52
+ ofCurrent && isXAxis ? toAdd = touchTrack.currentPageX : ofCurrent && !isXAxis ? toAdd = touchTrack.currentPageY : !ofCurrent && isXAxis ? toAdd = touchTrack.previousPageX : toAdd = touchTrack.previousPageY, total += toAdd, count++;
53
+ }
54
+ }
55
+ return count > 0 ? total / count : TouchHistoryMath.noCentroid;
56
+ },
57
+ currentCentroidXOfTouchesChangedAfter: function (touchHistory, touchesChangedAfter) {
58
+ return TouchHistoryMath.centroidDimension(touchHistory, touchesChangedAfter, !0,
59
+ // isXAxis
60
+ !0
61
+ // ofCurrent
62
+ );
63
+ },
64
+ currentCentroidYOfTouchesChangedAfter: function (touchHistory, touchesChangedAfter) {
65
+ return TouchHistoryMath.centroidDimension(touchHistory, touchesChangedAfter, !1,
66
+ // isXAxis
67
+ !0
68
+ // ofCurrent
69
+ );
70
+ },
71
+ previousCentroidXOfTouchesChangedAfter: function (touchHistory, touchesChangedAfter) {
72
+ return TouchHistoryMath.centroidDimension(touchHistory, touchesChangedAfter, !0,
73
+ // isXAxis
74
+ !1
75
+ // ofCurrent
76
+ );
77
+ },
78
+ previousCentroidYOfTouchesChangedAfter: function (touchHistory, touchesChangedAfter) {
79
+ return TouchHistoryMath.centroidDimension(touchHistory, touchesChangedAfter, !1,
80
+ // isXAxis
81
+ !1
82
+ // ofCurrent
83
+ );
84
+ },
85
+ currentCentroidX: function (touchHistory) {
86
+ return TouchHistoryMath.centroidDimension(touchHistory, 0,
87
+ // touchesChangedAfter
88
+ !0,
89
+ // isXAxis
90
+ !0
91
+ // ofCurrent
92
+ );
93
+ },
94
+ currentCentroidY: function (touchHistory) {
95
+ return TouchHistoryMath.centroidDimension(touchHistory, 0,
96
+ // touchesChangedAfter
97
+ !1,
98
+ // isXAxis
99
+ !0
100
+ // ofCurrent
101
+ );
102
+ },
103
+ noCentroid: -1
104
+ };
105
+ var TouchHistoryMath_default = TouchHistoryMath;
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __export = (target, all) => {
8
+ for (var name in all) __defProp(target, name, {
9
+ get: all[name],
10
+ enumerable: !0
11
+ });
12
+ },
13
+ __copyProps = (to, from, except, desc) => {
14
+ if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
15
+ get: () => from[key],
16
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
17
+ });
18
+ return to;
19
+ };
20
+ var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
21
+ value: !0
22
+ }), mod);
23
+ var TurboModuleRegistry_exports = {};
24
+ __export(TurboModuleRegistry_exports, {
25
+ get: () => get,
26
+ getEnforcing: () => getEnforcing
27
+ });
28
+ module.exports = __toCommonJS(TurboModuleRegistry_exports);
29
+ function get(name) {
30
+ return null;
31
+ }
32
+ function getEnforcing(name) {
33
+ return null;
34
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __copyProps = (to, from, except, desc) => {
8
+ if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
9
+ get: () => from[key],
10
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
11
+ });
12
+ return to;
13
+ };
14
+ var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
15
+ value: !0
16
+ }), mod);
17
+ var CoreEventTypes_exports = {};
18
+ module.exports = __toCommonJS(CoreEventTypes_exports);
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __export = (target, all) => {
8
+ for (var name in all) __defProp(target, name, {
9
+ get: all[name],
10
+ enumerable: !0
11
+ });
12
+ },
13
+ __copyProps = (to, from, except, desc) => {
14
+ if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
15
+ get: () => from[key],
16
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
17
+ });
18
+ return to;
19
+ };
20
+ var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
21
+ value: !0
22
+ }), mod);
23
+ var setAndForwardRef_exports = {};
24
+ __export(setAndForwardRef_exports, {
25
+ default: () => setAndForwardRef_default
26
+ });
27
+ module.exports = __toCommonJS(setAndForwardRef_exports);
28
+ function setAndForwardRef(_ref) {
29
+ var getForwardedRef = _ref.getForwardedRef,
30
+ setLocalRef = _ref.setLocalRef;
31
+ return function (ref) {
32
+ var forwardedRef = getForwardedRef();
33
+ setLocalRef(ref), typeof forwardedRef == "function" ? forwardedRef(ref) : typeof forwardedRef == "object" && forwardedRef != null && (forwardedRef.current = ref);
34
+ };
35
+ }
36
+ var setAndForwardRef_default = setAndForwardRef;
@@ -1,30 +1,40 @@
1
1
  "use strict";
2
+
2
3
  var __create = Object.create;
3
4
  var __defProp = Object.defineProperty;
4
5
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
6
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getProtoOf = Object.getPrototypeOf, __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __getProtoOf = Object.getPrototypeOf,
8
+ __hasOwnProp = Object.prototype.hasOwnProperty;
7
9
  var __export = (target, all) => {
8
- for (var name in all)
9
- __defProp(target, name, { get: all[name], enumerable: !0 });
10
- }, __copyProps = (to, from, except, desc) => {
11
- if (from && typeof from == "object" || typeof from == "function")
12
- for (let key of __getOwnPropNames(from))
13
- !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- return to;
15
- };
10
+ for (var name in all) __defProp(target, name, {
11
+ get: all[name],
12
+ enumerable: !0
13
+ });
14
+ },
15
+ __copyProps = (to, from, except, desc) => {
16
+ if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
17
+ get: () => from[key],
18
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
19
+ });
20
+ return to;
21
+ };
16
22
  var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
17
23
  // If the importer is in node compatibility mode or this is not an ESM
18
24
  // file that has been converted to a CommonJS file using a Babel-
19
25
  // compatible transform (i.e. "__esModule" has not been set), then set
20
26
  // "default" to the CommonJS "module.exports" for node compatibility.
21
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
22
- mod
23
- )), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
27
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
28
+ value: mod,
29
+ enumerable: !0
30
+ }) : target, mod)),
31
+ __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
32
+ value: !0
33
+ }), mod);
24
34
  var EventEmitter_exports = {};
25
35
  __export(EventEmitter_exports, {
26
36
  default: () => EventEmitter_default
27
37
  });
28
38
  module.exports = __toCommonJS(EventEmitter_exports);
29
- var import_EventEmitter = __toESM(require("./_EventEmitter")), EventEmitter_default = import_EventEmitter.default;
30
- //# sourceMappingURL=EventEmitter.js.map
39
+ var import_EventEmitter = __toESM(require("./_EventEmitter.cjs")),
40
+ EventEmitter_default = import_EventEmitter.default;
@@ -1,32 +1,42 @@
1
1
  "use strict";
2
+
2
3
  var __create = Object.create;
3
4
  var __defProp = Object.defineProperty;
4
5
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
6
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getProtoOf = Object.getPrototypeOf, __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __getProtoOf = Object.getPrototypeOf,
8
+ __hasOwnProp = Object.prototype.hasOwnProperty;
7
9
  var __export = (target, all) => {
8
- for (var name in all)
9
- __defProp(target, name, { get: all[name], enumerable: !0 });
10
- }, __copyProps = (to, from, except, desc) => {
11
- if (from && typeof from == "object" || typeof from == "function")
12
- for (let key of __getOwnPropNames(from))
13
- !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- return to;
15
- };
10
+ for (var name in all) __defProp(target, name, {
11
+ get: all[name],
12
+ enumerable: !0
13
+ });
14
+ },
15
+ __copyProps = (to, from, except, desc) => {
16
+ if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
17
+ get: () => from[key],
18
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
19
+ });
20
+ return to;
21
+ };
16
22
  var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
17
23
  // If the importer is in node compatibility mode or this is not an ESM
18
24
  // file that has been converted to a CommonJS file using a Babel-
19
25
  // compatible transform (i.e. "__esModule" has not been set), then set
20
26
  // "default" to the CommonJS "module.exports" for node compatibility.
21
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
22
- mod
23
- )), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
27
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
28
+ value: mod,
29
+ enumerable: !0
30
+ }) : target, mod)),
31
+ __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
32
+ value: !0
33
+ }), mod);
24
34
  var EmitterSubscription_exports = {};
25
35
  __export(EmitterSubscription_exports, {
26
36
  default: () => EmitterSubscription_default
27
37
  });
28
38
  module.exports = __toCommonJS(EmitterSubscription_exports);
29
- var import_EventSubscription = __toESM(require("./_EventSubscription"));
39
+ var import_EventSubscription = __toESM(require("./_EventSubscription.cjs"));
30
40
  class EmitterSubscription extends import_EventSubscription.default {
31
41
  /**
32
42
  * @param {EventEmitter} emitter - The event emitter that registered this
@@ -51,5 +61,4 @@ class EmitterSubscription extends import_EventSubscription.default {
51
61
  this.emitter.removeSubscription(this);
52
62
  }
53
63
  }
54
- var EmitterSubscription_default = EmitterSubscription;
55
- //# sourceMappingURL=_EmitterSubscription.js.map
64
+ var EmitterSubscription_default = EmitterSubscription;