@tamagui/sheet 2.7.7 → 3.0.0-beta.643.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (435) hide show
  1. package/dist/cjs/GestureDetectorWrapper.cjs +32 -41
  2. package/dist/cjs/GestureDetectorWrapper.native.cjs +48 -0
  3. package/dist/cjs/GestureDetectorWrapper.native.js +32 -40
  4. package/dist/cjs/GestureDetectorWrapper.native.js.map +1 -1
  5. package/dist/cjs/GestureSheetContext.cjs +29 -37
  6. package/dist/cjs/GestureSheetContext.native.cjs +49 -0
  7. package/dist/cjs/GestureSheetContext.native.js +30 -37
  8. package/dist/cjs/GestureSheetContext.native.js.map +1 -1
  9. package/dist/cjs/Sheet.cjs +206 -99
  10. package/dist/cjs/Sheet.native.cjs +234 -0
  11. package/dist/cjs/Sheet.native.js +212 -98
  12. package/dist/cjs/Sheet.native.js.map +1 -1
  13. package/dist/cjs/SheetContext.cjs +44 -22
  14. package/dist/cjs/SheetContext.native.cjs +58 -0
  15. package/dist/cjs/SheetContext.native.js +45 -22
  16. package/dist/cjs/SheetContext.native.js.map +1 -1
  17. package/dist/cjs/SheetController.cjs +50 -56
  18. package/dist/cjs/SheetController.native.cjs +72 -0
  19. package/dist/cjs/SheetController.native.js +53 -58
  20. package/dist/cjs/SheetController.native.js.map +1 -1
  21. package/dist/cjs/SheetImplementationCustom.cjs +674 -605
  22. package/dist/cjs/SheetImplementationCustom.native.cjs +762 -0
  23. package/dist/cjs/SheetImplementationCustom.native.js +713 -644
  24. package/dist/cjs/SheetImplementationCustom.native.js.map +1 -1
  25. package/dist/cjs/SheetScrollView.cjs +291 -312
  26. package/dist/cjs/SheetScrollView.native.cjs +326 -0
  27. package/dist/cjs/SheetScrollView.native.js +299 -319
  28. package/dist/cjs/SheetScrollView.native.js.map +1 -1
  29. package/dist/cjs/constants.cjs +22 -21
  30. package/dist/cjs/constants.native.cjs +37 -0
  31. package/dist/cjs/constants.native.js +22 -20
  32. package/dist/cjs/constants.native.js.map +1 -1
  33. package/dist/cjs/contexts.cjs +20 -28
  34. package/dist/cjs/contexts.native.cjs +38 -0
  35. package/dist/cjs/contexts.native.js +20 -27
  36. package/dist/cjs/contexts.native.js.map +1 -1
  37. package/dist/cjs/controller.cjs +17 -18
  38. package/dist/cjs/controller.native.cjs +32 -0
  39. package/dist/cjs/controller.native.js +17 -17
  40. package/dist/cjs/controller.native.js.map +1 -1
  41. package/dist/cjs/gestureState.cjs +29 -30
  42. package/dist/cjs/gestureState.native.cjs +54 -0
  43. package/dist/cjs/gestureState.native.js +30 -30
  44. package/dist/cjs/gestureState.native.js.map +1 -1
  45. package/dist/cjs/helpers.cjs +21 -24
  46. package/dist/cjs/helpers.native.cjs +35 -0
  47. package/dist/cjs/helpers.native.js +22 -24
  48. package/dist/cjs/helpers.native.js.map +1 -1
  49. package/dist/cjs/index.cjs +15 -21
  50. package/dist/cjs/index.native.cjs +37 -0
  51. package/dist/cjs/index.native.js +16 -21
  52. package/dist/cjs/index.native.js.map +1 -1
  53. package/dist/cjs/keyboardAvoidance.cjs +56 -79
  54. package/dist/cjs/keyboardAvoidance.native.cjs +75 -0
  55. package/dist/cjs/keyboardAvoidance.native.js +56 -78
  56. package/dist/cjs/keyboardAvoidance.native.js.map +1 -1
  57. package/dist/cjs/nativeSheet.cjs +64 -76
  58. package/dist/cjs/nativeSheet.native.cjs +94 -0
  59. package/dist/cjs/nativeSheet.native.js +70 -83
  60. package/dist/cjs/nativeSheet.native.js.map +1 -1
  61. package/dist/cjs/types.cjs +10 -11
  62. package/dist/cjs/types.native.cjs +19 -0
  63. package/dist/cjs/types.native.js +10 -10
  64. package/dist/cjs/types.native.js.map +1 -1
  65. package/dist/cjs/useGestureHandlerPan.cjs +245 -257
  66. package/dist/cjs/useGestureHandlerPan.native.cjs +273 -0
  67. package/dist/cjs/useGestureHandlerPan.native.js +254 -265
  68. package/dist/cjs/useGestureHandlerPan.native.js.map +1 -1
  69. package/dist/cjs/useKeyboardControllerSheet.cjs +83 -88
  70. package/dist/cjs/useKeyboardControllerSheet.native.cjs +119 -0
  71. package/dist/cjs/useKeyboardControllerSheet.native.js +100 -111
  72. package/dist/cjs/useKeyboardControllerSheet.native.js.map +1 -1
  73. package/dist/cjs/useSafeAreaInsets.cjs +20 -26
  74. package/dist/cjs/useSafeAreaInsets.native.cjs +51 -0
  75. package/dist/cjs/useSafeAreaInsets.native.js +30 -25
  76. package/dist/cjs/useSafeAreaInsets.native.js.map +1 -1
  77. package/dist/cjs/useSheetController.cjs +27 -39
  78. package/dist/cjs/useSheetController.native.cjs +42 -0
  79. package/dist/cjs/useSheetController.native.js +28 -39
  80. package/dist/cjs/useSheetController.native.js.map +1 -1
  81. package/dist/cjs/useSheetOffscreenSize.cjs +44 -53
  82. package/dist/cjs/useSheetOffscreenSize.native.cjs +60 -0
  83. package/dist/cjs/useSheetOffscreenSize.native.js +48 -56
  84. package/dist/cjs/useSheetOffscreenSize.native.js.map +1 -1
  85. package/dist/cjs/useSheetOpenState.cjs +69 -40
  86. package/dist/cjs/useSheetOpenState.native.cjs +88 -0
  87. package/dist/cjs/useSheetOpenState.native.js +74 -42
  88. package/dist/cjs/useSheetOpenState.native.js.map +1 -1
  89. package/dist/cjs/useSheetProviderProps.cjs +146 -164
  90. package/dist/cjs/useSheetProviderProps.native.cjs +176 -0
  91. package/dist/cjs/useSheetProviderProps.native.js +156 -174
  92. package/dist/cjs/useSheetProviderProps.native.js.map +1 -1
  93. package/dist/cjs/useSheetScrollViewGestures.cjs +172 -180
  94. package/dist/cjs/useSheetScrollViewGestures.native.cjs +150 -0
  95. package/dist/cjs/useSheetScrollViewGestures.native.js +136 -147
  96. package/dist/cjs/useSheetScrollViewGestures.native.js.map +1 -1
  97. package/dist/cjs/webViewport.cjs +47 -48
  98. package/dist/cjs/webViewport.native.cjs +79 -0
  99. package/dist/cjs/webViewport.native.js +50 -50
  100. package/dist/cjs/webViewport.native.js.map +1 -1
  101. package/dist/esm/GestureDetectorWrapper.mjs +19 -23
  102. package/dist/esm/GestureDetectorWrapper.mjs.map +1 -1
  103. package/dist/esm/GestureDetectorWrapper.native.js +20 -24
  104. package/dist/esm/GestureDetectorWrapper.native.js.map +1 -1
  105. package/dist/esm/GestureSheetContext.mjs +15 -20
  106. package/dist/esm/GestureSheetContext.mjs.map +1 -1
  107. package/dist/esm/GestureSheetContext.native.js +17 -22
  108. package/dist/esm/GestureSheetContext.native.js.map +1 -1
  109. package/dist/esm/Sheet.mjs +191 -83
  110. package/dist/esm/Sheet.mjs.map +1 -1
  111. package/dist/esm/Sheet.native.js +198 -83
  112. package/dist/esm/Sheet.native.js.map +1 -1
  113. package/dist/esm/SheetContext.mjs +21 -5
  114. package/dist/esm/SheetContext.mjs.map +1 -1
  115. package/dist/esm/SheetContext.native.js +21 -5
  116. package/dist/esm/SheetContext.native.js.map +1 -1
  117. package/dist/esm/SheetController.mjs +34 -30
  118. package/dist/esm/SheetController.mjs.map +1 -1
  119. package/dist/esm/SheetController.native.js +38 -34
  120. package/dist/esm/SheetController.native.js.map +1 -1
  121. package/dist/esm/SheetImplementationCustom.mjs +655 -580
  122. package/dist/esm/SheetImplementationCustom.mjs.map +1 -1
  123. package/dist/esm/SheetImplementationCustom.native.js +691 -612
  124. package/dist/esm/SheetImplementationCustom.native.js.map +1 -1
  125. package/dist/esm/SheetScrollView.mjs +277 -288
  126. package/dist/esm/SheetScrollView.mjs.map +1 -1
  127. package/dist/esm/SheetScrollView.native.js +286 -297
  128. package/dist/esm/SheetScrollView.native.js.map +1 -1
  129. package/dist/esm/constants.mjs +5 -3
  130. package/dist/esm/constants.mjs.map +1 -1
  131. package/dist/esm/constants.native.js +5 -3
  132. package/dist/esm/constants.native.js.map +1 -1
  133. package/dist/esm/contexts.mjs +3 -3
  134. package/dist/esm/contexts.mjs.map +1 -1
  135. package/dist/esm/contexts.native.js +3 -3
  136. package/dist/esm/contexts.native.js.map +1 -1
  137. package/dist/esm/controller.mjs +2 -2
  138. package/dist/esm/controller.native.js +2 -2
  139. package/dist/esm/gestureState.mjs +13 -11
  140. package/dist/esm/gestureState.mjs.map +1 -1
  141. package/dist/esm/gestureState.native.js +14 -12
  142. package/dist/esm/gestureState.native.js.map +1 -1
  143. package/dist/esm/helpers.mjs +7 -6
  144. package/dist/esm/helpers.mjs.map +1 -1
  145. package/dist/esm/helpers.native.js +8 -7
  146. package/dist/esm/helpers.native.js.map +1 -1
  147. package/dist/esm/index.js +21 -14
  148. package/dist/esm/index.mjs +21 -14
  149. package/dist/esm/index.native.js +21 -14
  150. package/dist/esm/keyboardAvoidance.mjs +40 -61
  151. package/dist/esm/keyboardAvoidance.mjs.map +1 -1
  152. package/dist/esm/keyboardAvoidance.native.js +40 -61
  153. package/dist/esm/keyboardAvoidance.native.js.map +1 -1
  154. package/dist/esm/nativeSheet.mjs +52 -61
  155. package/dist/esm/nativeSheet.mjs.map +1 -1
  156. package/dist/esm/nativeSheet.native.js +58 -69
  157. package/dist/esm/nativeSheet.native.js.map +1 -1
  158. package/dist/esm/types.mjs +0 -2
  159. package/dist/esm/types.native.js +0 -2
  160. package/dist/esm/useGestureHandlerPan.mjs +232 -239
  161. package/dist/esm/useGestureHandlerPan.mjs.map +1 -1
  162. package/dist/esm/useGestureHandlerPan.native.js +241 -248
  163. package/dist/esm/useGestureHandlerPan.native.js.map +1 -1
  164. package/dist/esm/useKeyboardControllerSheet.mjs +71 -71
  165. package/dist/esm/useKeyboardControllerSheet.mjs.map +1 -1
  166. package/dist/esm/useKeyboardControllerSheet.native.js +92 -94
  167. package/dist/esm/useKeyboardControllerSheet.native.js.map +1 -1
  168. package/dist/esm/useSafeAreaInsets.mjs +3 -1
  169. package/dist/esm/useSafeAreaInsets.mjs.map +1 -1
  170. package/dist/esm/useSafeAreaInsets.native.js +15 -3
  171. package/dist/esm/useSafeAreaInsets.native.js.map +1 -1
  172. package/dist/esm/useSheetController.mjs +14 -12
  173. package/dist/esm/useSheetController.mjs.map +1 -1
  174. package/dist/esm/useSheetController.native.js +14 -12
  175. package/dist/esm/useSheetController.native.js.map +1 -1
  176. package/dist/esm/useSheetOffscreenSize.mjs +30 -35
  177. package/dist/esm/useSheetOffscreenSize.mjs.map +1 -1
  178. package/dist/esm/useSheetOffscreenSize.native.js +34 -39
  179. package/dist/esm/useSheetOffscreenSize.native.js.map +1 -1
  180. package/dist/esm/useSheetOpenState.mjs +50 -22
  181. package/dist/esm/useSheetOpenState.mjs.map +1 -1
  182. package/dist/esm/useSheetOpenState.native.js +55 -25
  183. package/dist/esm/useSheetOpenState.native.js.map +1 -1
  184. package/dist/esm/useSheetProviderProps.mjs +130 -138
  185. package/dist/esm/useSheetProviderProps.mjs.map +1 -1
  186. package/dist/esm/useSheetProviderProps.native.js +140 -149
  187. package/dist/esm/useSheetProviderProps.native.js.map +1 -1
  188. package/dist/esm/useSheetScrollViewGestures.mjs +159 -162
  189. package/dist/esm/useSheetScrollViewGestures.mjs.map +1 -1
  190. package/dist/esm/useSheetScrollViewGestures.native.js +123 -130
  191. package/dist/esm/useSheetScrollViewGestures.native.js.map +1 -1
  192. package/dist/esm/webViewport.mjs +26 -25
  193. package/dist/esm/webViewport.mjs.map +1 -1
  194. package/dist/esm/webViewport.native.js +29 -28
  195. package/dist/esm/webViewport.native.js.map +1 -1
  196. package/dist/jsx/GestureDetectorWrapper.mjs +19 -23
  197. package/dist/jsx/GestureDetectorWrapper.mjs.map +1 -1
  198. package/dist/jsx/GestureDetectorWrapper.native.cjs +48 -0
  199. package/dist/jsx/GestureDetectorWrapper.native.js +32 -40
  200. package/dist/jsx/GestureDetectorWrapper.native.js.map +1 -1
  201. package/dist/jsx/GestureSheetContext.mjs +15 -20
  202. package/dist/jsx/GestureSheetContext.mjs.map +1 -1
  203. package/dist/jsx/GestureSheetContext.native.cjs +49 -0
  204. package/dist/jsx/GestureSheetContext.native.js +30 -37
  205. package/dist/jsx/GestureSheetContext.native.js.map +1 -1
  206. package/dist/jsx/Sheet.mjs +191 -83
  207. package/dist/jsx/Sheet.mjs.map +1 -1
  208. package/dist/jsx/Sheet.native.cjs +234 -0
  209. package/dist/jsx/Sheet.native.js +212 -98
  210. package/dist/jsx/Sheet.native.js.map +1 -1
  211. package/dist/jsx/SheetContext.mjs +21 -5
  212. package/dist/jsx/SheetContext.mjs.map +1 -1
  213. package/dist/jsx/SheetContext.native.cjs +58 -0
  214. package/dist/jsx/SheetContext.native.js +45 -22
  215. package/dist/jsx/SheetContext.native.js.map +1 -1
  216. package/dist/jsx/SheetController.mjs +34 -30
  217. package/dist/jsx/SheetController.mjs.map +1 -1
  218. package/dist/jsx/SheetController.native.cjs +72 -0
  219. package/dist/jsx/SheetController.native.js +53 -58
  220. package/dist/jsx/SheetController.native.js.map +1 -1
  221. package/dist/jsx/SheetImplementationCustom.mjs +655 -580
  222. package/dist/jsx/SheetImplementationCustom.mjs.map +1 -1
  223. package/dist/jsx/SheetImplementationCustom.native.cjs +762 -0
  224. package/dist/jsx/SheetImplementationCustom.native.js +713 -644
  225. package/dist/jsx/SheetImplementationCustom.native.js.map +1 -1
  226. package/dist/jsx/SheetScrollView.mjs +277 -288
  227. package/dist/jsx/SheetScrollView.mjs.map +1 -1
  228. package/dist/jsx/SheetScrollView.native.cjs +326 -0
  229. package/dist/jsx/SheetScrollView.native.js +299 -319
  230. package/dist/jsx/SheetScrollView.native.js.map +1 -1
  231. package/dist/jsx/constants.mjs +5 -3
  232. package/dist/jsx/constants.mjs.map +1 -1
  233. package/dist/jsx/constants.native.cjs +37 -0
  234. package/dist/jsx/constants.native.js +22 -20
  235. package/dist/jsx/constants.native.js.map +1 -1
  236. package/dist/jsx/contexts.mjs +3 -3
  237. package/dist/jsx/contexts.mjs.map +1 -1
  238. package/dist/jsx/contexts.native.cjs +38 -0
  239. package/dist/jsx/contexts.native.js +20 -27
  240. package/dist/jsx/contexts.native.js.map +1 -1
  241. package/dist/jsx/controller.mjs +2 -2
  242. package/dist/jsx/controller.native.cjs +32 -0
  243. package/dist/jsx/controller.native.js +17 -17
  244. package/dist/jsx/controller.native.js.map +1 -1
  245. package/dist/jsx/gestureState.mjs +13 -11
  246. package/dist/jsx/gestureState.mjs.map +1 -1
  247. package/dist/jsx/gestureState.native.cjs +54 -0
  248. package/dist/jsx/gestureState.native.js +30 -30
  249. package/dist/jsx/gestureState.native.js.map +1 -1
  250. package/dist/jsx/helpers.mjs +7 -6
  251. package/dist/jsx/helpers.mjs.map +1 -1
  252. package/dist/jsx/helpers.native.cjs +35 -0
  253. package/dist/jsx/helpers.native.js +22 -24
  254. package/dist/jsx/helpers.native.js.map +1 -1
  255. package/dist/jsx/index.js +21 -14
  256. package/dist/jsx/index.mjs +21 -14
  257. package/dist/jsx/index.native.cjs +37 -0
  258. package/dist/jsx/index.native.js +16 -21
  259. package/dist/jsx/index.native.js.map +1 -1
  260. package/dist/jsx/keyboardAvoidance.mjs +40 -61
  261. package/dist/jsx/keyboardAvoidance.mjs.map +1 -1
  262. package/dist/jsx/keyboardAvoidance.native.cjs +75 -0
  263. package/dist/jsx/keyboardAvoidance.native.js +56 -78
  264. package/dist/jsx/keyboardAvoidance.native.js.map +1 -1
  265. package/dist/jsx/nativeSheet.mjs +52 -61
  266. package/dist/jsx/nativeSheet.mjs.map +1 -1
  267. package/dist/jsx/nativeSheet.native.cjs +94 -0
  268. package/dist/jsx/nativeSheet.native.js +70 -83
  269. package/dist/jsx/nativeSheet.native.js.map +1 -1
  270. package/dist/jsx/types.mjs +0 -2
  271. package/dist/jsx/types.native.cjs +19 -0
  272. package/dist/jsx/types.native.js +10 -10
  273. package/dist/jsx/types.native.js.map +1 -1
  274. package/dist/jsx/useGestureHandlerPan.mjs +232 -239
  275. package/dist/jsx/useGestureHandlerPan.mjs.map +1 -1
  276. package/dist/jsx/useGestureHandlerPan.native.cjs +273 -0
  277. package/dist/jsx/useGestureHandlerPan.native.js +254 -265
  278. package/dist/jsx/useGestureHandlerPan.native.js.map +1 -1
  279. package/dist/jsx/useKeyboardControllerSheet.mjs +71 -71
  280. package/dist/jsx/useKeyboardControllerSheet.mjs.map +1 -1
  281. package/dist/jsx/useKeyboardControllerSheet.native.cjs +119 -0
  282. package/dist/jsx/useKeyboardControllerSheet.native.js +100 -111
  283. package/dist/jsx/useKeyboardControllerSheet.native.js.map +1 -1
  284. package/dist/jsx/useSafeAreaInsets.mjs +3 -1
  285. package/dist/jsx/useSafeAreaInsets.mjs.map +1 -1
  286. package/dist/jsx/useSafeAreaInsets.native.cjs +51 -0
  287. package/dist/jsx/useSafeAreaInsets.native.js +30 -25
  288. package/dist/jsx/useSafeAreaInsets.native.js.map +1 -1
  289. package/dist/jsx/useSheetController.mjs +14 -12
  290. package/dist/jsx/useSheetController.mjs.map +1 -1
  291. package/dist/jsx/useSheetController.native.cjs +42 -0
  292. package/dist/jsx/useSheetController.native.js +28 -39
  293. package/dist/jsx/useSheetController.native.js.map +1 -1
  294. package/dist/jsx/useSheetOffscreenSize.mjs +30 -35
  295. package/dist/jsx/useSheetOffscreenSize.mjs.map +1 -1
  296. package/dist/jsx/useSheetOffscreenSize.native.cjs +60 -0
  297. package/dist/jsx/useSheetOffscreenSize.native.js +48 -56
  298. package/dist/jsx/useSheetOffscreenSize.native.js.map +1 -1
  299. package/dist/jsx/useSheetOpenState.mjs +50 -22
  300. package/dist/jsx/useSheetOpenState.mjs.map +1 -1
  301. package/dist/jsx/useSheetOpenState.native.cjs +88 -0
  302. package/dist/jsx/useSheetOpenState.native.js +74 -42
  303. package/dist/jsx/useSheetOpenState.native.js.map +1 -1
  304. package/dist/jsx/useSheetProviderProps.mjs +130 -138
  305. package/dist/jsx/useSheetProviderProps.mjs.map +1 -1
  306. package/dist/jsx/useSheetProviderProps.native.cjs +176 -0
  307. package/dist/jsx/useSheetProviderProps.native.js +156 -174
  308. package/dist/jsx/useSheetProviderProps.native.js.map +1 -1
  309. package/dist/jsx/useSheetScrollViewGestures.mjs +159 -162
  310. package/dist/jsx/useSheetScrollViewGestures.mjs.map +1 -1
  311. package/dist/jsx/useSheetScrollViewGestures.native.cjs +150 -0
  312. package/dist/jsx/useSheetScrollViewGestures.native.js +136 -147
  313. package/dist/jsx/useSheetScrollViewGestures.native.js.map +1 -1
  314. package/dist/jsx/webViewport.mjs +26 -25
  315. package/dist/jsx/webViewport.mjs.map +1 -1
  316. package/dist/jsx/webViewport.native.cjs +79 -0
  317. package/dist/jsx/webViewport.native.js +50 -50
  318. package/dist/jsx/webViewport.native.js.map +1 -1
  319. package/package.json +33 -39
  320. package/src/Sheet.tsx +316 -77
  321. package/src/SheetContext.tsx +57 -7
  322. package/src/SheetController.tsx +7 -6
  323. package/src/SheetImplementationCustom.tsx +343 -140
  324. package/src/SheetScrollView.tsx +24 -13
  325. package/src/constants.tsx +3 -3
  326. package/src/helpers.tsx +0 -14
  327. package/src/index.ts +3 -6
  328. package/src/nativeSheet.tsx +5 -15
  329. package/src/types.tsx +104 -92
  330. package/src/useKeyboardControllerSheet.native.ts +7 -2
  331. package/src/useSafeAreaInsets.native.ts +20 -13
  332. package/src/useSheetController.tsx +15 -7
  333. package/src/useSheetOpenState.tsx +50 -4
  334. package/src/useSheetProviderProps.tsx +4 -27
  335. package/src/useSheetScrollViewGestures.ts +2 -2
  336. package/types/GestureDetectorWrapper.d.ts +1 -1
  337. package/types/GestureDetectorWrapper.d.ts.map +1 -1
  338. package/types/GestureSheetContext.d.ts +1 -1
  339. package/types/GestureSheetContext.d.ts.map +1 -1
  340. package/types/Sheet.d.ts +384 -135
  341. package/types/Sheet.d.ts.map +1 -1
  342. package/types/SheetContext.d.ts +28 -42
  343. package/types/SheetContext.d.ts.map +1 -1
  344. package/types/SheetController.d.ts +4 -2
  345. package/types/SheetController.d.ts.map +1 -1
  346. package/types/SheetImplementationCustom.d.ts +3 -35
  347. package/types/SheetImplementationCustom.d.ts.map +1 -1
  348. package/types/SheetScrollView.d.ts +57 -23
  349. package/types/SheetScrollView.d.ts.map +1 -1
  350. package/types/constants.d.ts +3 -2
  351. package/types/constants.d.ts.map +1 -1
  352. package/types/index.d.ts +1 -3
  353. package/types/index.d.ts.map +1 -1
  354. package/types/nativeSheet.d.ts.map +1 -1
  355. package/types/types.d.ts +28 -17
  356. package/types/types.d.ts.map +1 -1
  357. package/types/useKeyboardControllerSheet.native.d.ts.map +1 -1
  358. package/types/useSafeAreaInsets.native.d.ts +4 -12
  359. package/types/useSafeAreaInsets.native.d.ts.map +1 -1
  360. package/types/useSheetController.d.ts +6 -6
  361. package/types/useSheetController.d.ts.map +1 -1
  362. package/types/useSheetOffscreenSize.d.ts.map +1 -1
  363. package/types/useSheetOpenState.d.ts +3 -2
  364. package/types/useSheetOpenState.d.ts.map +1 -1
  365. package/types/useSheetProviderProps.d.ts +5 -8
  366. package/types/useSheetProviderProps.d.ts.map +1 -1
  367. package/types/useSheetScrollViewGestures.d.ts +2 -2
  368. package/types/useSheetScrollViewGestures.d.ts.map +1 -1
  369. package/.turbo/turbo-build.log +0 -2
  370. package/controller/index.cjs +0 -2
  371. package/controller/index.d.ts +0 -5
  372. package/controller/index.js +0 -2
  373. package/controller/index.native.cjs +0 -2
  374. package/controller/index.native.js +0 -2
  375. package/dist/cjs/createSheet.cjs +0 -194
  376. package/dist/cjs/createSheet.native.js +0 -204
  377. package/dist/cjs/createSheet.native.js.map +0 -1
  378. package/dist/cjs/setupGestureHandler.cjs +0 -55
  379. package/dist/cjs/setupGestureHandler.native.js +0 -60
  380. package/dist/cjs/setupGestureHandler.native.js.map +0 -1
  381. package/dist/cjs/useSheet.cjs +0 -29
  382. package/dist/cjs/useSheet.native.js +0 -34
  383. package/dist/cjs/useSheet.native.js.map +0 -1
  384. package/dist/esm/controller.mjs.map +0 -1
  385. package/dist/esm/controller.native.js.map +0 -1
  386. package/dist/esm/createSheet.mjs +0 -168
  387. package/dist/esm/createSheet.mjs.map +0 -1
  388. package/dist/esm/createSheet.native.js +0 -176
  389. package/dist/esm/createSheet.native.js.map +0 -1
  390. package/dist/esm/index.js.map +0 -1
  391. package/dist/esm/index.mjs.map +0 -1
  392. package/dist/esm/index.native.js.map +0 -1
  393. package/dist/esm/setupGestureHandler.mjs +0 -29
  394. package/dist/esm/setupGestureHandler.mjs.map +0 -1
  395. package/dist/esm/setupGestureHandler.native.js +0 -31
  396. package/dist/esm/setupGestureHandler.native.js.map +0 -1
  397. package/dist/esm/types.mjs.map +0 -1
  398. package/dist/esm/types.native.js.map +0 -1
  399. package/dist/esm/useSheet.mjs +0 -4
  400. package/dist/esm/useSheet.mjs.map +0 -1
  401. package/dist/esm/useSheet.native.js +0 -6
  402. package/dist/esm/useSheet.native.js.map +0 -1
  403. package/dist/jsx/controller.mjs.map +0 -1
  404. package/dist/jsx/createSheet.mjs +0 -168
  405. package/dist/jsx/createSheet.mjs.map +0 -1
  406. package/dist/jsx/createSheet.native.js +0 -204
  407. package/dist/jsx/createSheet.native.js.map +0 -1
  408. package/dist/jsx/index.js.map +0 -1
  409. package/dist/jsx/index.mjs.map +0 -1
  410. package/dist/jsx/setupGestureHandler.mjs +0 -29
  411. package/dist/jsx/setupGestureHandler.mjs.map +0 -1
  412. package/dist/jsx/setupGestureHandler.native.js +0 -60
  413. package/dist/jsx/setupGestureHandler.native.js.map +0 -1
  414. package/dist/jsx/types.mjs.map +0 -1
  415. package/dist/jsx/useSheet.mjs +0 -4
  416. package/dist/jsx/useSheet.mjs.map +0 -1
  417. package/dist/jsx/useSheet.native.js +0 -34
  418. package/dist/jsx/useSheet.native.js.map +0 -1
  419. package/next.md +0 -78
  420. package/setup-gesture-handler/index.cjs +0 -2
  421. package/setup-gesture-handler/index.js +0 -2
  422. package/setup-gesture-handler/index.native.cjs +0 -2
  423. package/setup-gesture-handler/index.native.js +0 -2
  424. package/setup-gesture-handler.cjs +0 -1
  425. package/src/createSheet.tsx +0 -309
  426. package/src/setupGestureHandler.ts +0 -43
  427. package/src/useSheet.tsx +0 -3
  428. package/test/keyboardAvoidance.test.ts +0 -269
  429. package/tsconfig.json +0 -57
  430. package/types/createSheet.d.ts +0 -195
  431. package/types/createSheet.d.ts.map +0 -1
  432. package/types/setupGestureHandler.d.ts +0 -11
  433. package/types/setupGestureHandler.d.ts.map +0 -1
  434. package/types/useSheet.d.ts +0 -2
  435. package/types/useSheet.d.ts.map +0 -1
@@ -1,5 +1,5 @@
1
1
  import { composeRefs } from "@tamagui/compose-refs";
2
- import { isWeb, View } from "@tamagui/core";
2
+ import { View, createStyledHOC, isWeb } from "@tamagui/core";
3
3
  import { ScrollView } from "@tamagui/scroll-view";
4
4
  import { useControllableState } from "@tamagui/use-controllable-state";
5
5
  import React, { useEffect, useRef, useState } from "react";
@@ -7,295 +7,284 @@ import { useGestureSheetContext } from "./GestureSheetContext.mjs";
7
7
  import { getGestureHandlerState, isGestureHandlerEnabled } from "./gestureState.mjs";
8
8
  import { useSheetContext } from "./SheetContext.mjs";
9
9
  import { useSheetScrollViewGestures } from "./useSheetScrollViewGestures.mjs";
10
- import { getStableLayoutViewportHeight, getWebKeyboardBottomInset, getWebKeyboardResizeHeight, isEditableElement, MIN_KEYBOARD_HEIGHT } from "./webViewport.mjs";
10
+ import { MIN_KEYBOARD_HEIGHT, getStableLayoutViewportHeight, getWebKeyboardBottomInset, getWebKeyboardResizeHeight, isEditableElement } from "./webViewport.mjs";
11
11
  import { jsx, jsxs } from "react/jsx-runtime";
12
+
12
13
  const SHEET_SCROLL_VIEW_NAME = "SheetScrollView";
13
- const SheetScrollView = React.forwardRef(({
14
- __scopeSheet,
15
- children,
16
- onScroll,
17
- scrollEnabled: scrollEnabledProp,
18
- ...props
19
- }, ref) => {
20
- const context = useSheetContext(SHEET_SCROLL_VIEW_NAME, __scopeSheet);
21
- const gestureContext = useGestureSheetContext();
22
- const {
23
- scrollBridge,
24
- setHasScrollView,
25
- hasFit,
26
- screenSize
27
- } = context;
28
- const keyboardOccludedHeight = Math.max(0, context.keyboardOccludedHeight || 0);
29
- const isKeyboardVisible = context.isKeyboardVisible === true || isWeb && getWebKeyboardResizeHeight() >= MIN_KEYBOARD_HEIGHT;
30
- const [scrollEnabled] = useControllableState({
31
- prop: scrollEnabledProp,
32
- defaultProp: true
33
- });
34
- const scrollRef = React.useRef(null);
35
- const [hasScrollableContent, setHasScrollableContent] = useState(true);
36
- const parentHeight = useRef(0);
37
- const contentHeight = useRef(0);
38
- const frozenFrameHeight = Math.max(0, context.keyboardStableFrameHeight || 0);
39
- const fitSizingStyle = hasFit ? {
40
- flex: void 0,
41
- height: void 0,
42
- maxHeight: screenSize || void 0
43
- } : {
44
- flex: 1
45
- };
46
- const contentContainerStyle = hasFit ? void 0 : {
47
- minHeight: "100%"
48
- };
49
- const keyboardFrozenOverride = hasFit && isKeyboardVisible && frozenFrameHeight > 0 ? {
50
- height: frozenFrameHeight,
51
- maxHeight: frozenFrameHeight
52
- } : null;
53
- const panGestureRef = gestureContext?.panGestureRef;
54
- const {
55
- ScrollView: RNGHScrollView
56
- } = getGestureHandlerState();
57
- const useRNGHScrollView = isGestureHandlerEnabled() && RNGHScrollView && panGestureRef;
58
- const currentScrollOffset = useRef(0);
59
- const lastEmittedScrollOffset = useRef(0);
60
- const lockedScrollY = useRef(0);
61
- const focusedInputScrollFrame = useRef(0);
62
- const setScrollEnabled = (next, lockTo) => {
63
- if (!next) {
64
- const lockY = lockTo ?? scrollBridge.scrollLockY ?? currentScrollOffset.current;
65
- if (scrollBridge.enabled === false && scrollBridge.scrollLockY === lockY) {
66
- return;
67
- }
68
- scrollBridge.enabled = false;
69
- lockedScrollY.current = lockY;
70
- scrollBridge.scrollLockY = lockY;
71
- if (currentScrollOffset.current !== lockY) {
72
- scrollRef.current?.scrollTo?.({
73
- x: 0,
74
- y: lockY,
75
- animated: false
76
- });
77
- currentScrollOffset.current = lockY;
78
- }
79
- } else {
80
- if (scrollBridge.enabled === true && scrollBridge.scrollLockY === void 0) {
81
- return;
82
- }
83
- scrollBridge.enabled = true;
84
- lockedScrollY.current = currentScrollOffset.current;
85
- scrollBridge.scrollLockY = void 0;
86
- }
87
- };
88
- const forceScrollTo = y => {
89
- scrollRef.current?.scrollTo?.({
90
- x: 0,
91
- y,
92
- animated: false
93
- });
94
- currentScrollOffset.current = y;
95
- };
96
- const emitManualScroll = React.useCallback((node, y) => {
97
- currentScrollOffset.current = y;
98
- scrollBridge.y = y;
99
- if (y > 0) scrollBridge.scrollStartY = -1;
100
- lastEmittedScrollOffset.current = y;
101
- onScroll?.({
102
- nativeEvent: {
103
- contentOffset: {
104
- x: node.scrollLeft,
105
- y
106
- },
107
- contentSize: {
108
- height: node.scrollHeight,
109
- width: node.scrollWidth
110
- },
111
- layoutMeasurement: {
112
- height: node.offsetHeight,
113
- width: node.offsetWidth
114
- }
115
- },
116
- timeStamp: Date.now()
117
- });
118
- }, [onScroll, scrollBridge]);
119
- const scrollFocusedInputClearOfKeyboard = React.useCallback(() => {
120
- if (!isWeb || !hasFit || !isKeyboardVisible || keyboardOccludedHeight <= 0) {
121
- return;
122
- }
123
- const node = scrollRef.current?.getScrollableNode();
124
- const active = document.activeElement;
125
- if (!node || !active || !isEditableElement(active) || !node.contains(active)) {
126
- return;
127
- }
128
- const keyboardHeight = Math.max(keyboardOccludedHeight, getWebKeyboardBottomInset());
129
- if (keyboardHeight <= 0) return;
130
- const activeRect = active.getBoundingClientRect();
131
- const nodeRect = node.getBoundingClientRect();
132
- const margin = 12;
133
- const keyboardTop = getStableLayoutViewportHeight() - keyboardHeight;
134
- const visibleTop = nodeRect.top + margin;
135
- const visibleBottom = Math.min(nodeRect.bottom, keyboardTop) - margin;
136
- let nextScrollTop = node.scrollTop;
137
- if (activeRect.bottom > visibleBottom) {
138
- nextScrollTop += Math.ceil(activeRect.bottom - visibleBottom);
139
- } else if (activeRect.top < visibleTop) {
140
- nextScrollTop -= Math.ceil(visibleTop - activeRect.top);
141
- }
142
- const maxScrollTop = Math.max(0, node.scrollHeight - node.clientHeight);
143
- nextScrollTop = Math.max(0, Math.min(maxScrollTop, nextScrollTop));
144
- if (nextScrollTop === node.scrollTop) return;
145
- node.scrollTop = nextScrollTop;
146
- currentScrollOffset.current = nextScrollTop;
147
- scrollBridge.y = nextScrollTop;
148
- if (nextScrollTop > 0) scrollBridge.scrollStartY = -1;
149
- }, [hasFit, isKeyboardVisible, keyboardOccludedHeight, scrollBridge]);
150
- const scheduleFocusedInputScroll = React.useCallback(() => {
151
- if (!isWeb || !hasFit) return;
152
- cancelAnimationFrame(focusedInputScrollFrame.current);
153
- focusedInputScrollFrame.current = requestAnimationFrame(() => {
154
- scrollFocusedInputClearOfKeyboard();
155
- focusedInputScrollFrame.current = requestAnimationFrame(scrollFocusedInputClearOfKeyboard);
156
- });
157
- }, [hasFit, scrollFocusedInputClearOfKeyboard]);
158
- useEffect(() => {
159
- if (!isWeb || !hasFit) return;
160
- scheduleFocusedInputScroll();
161
- window.addEventListener("focusin", scheduleFocusedInputScroll);
162
- window.visualViewport?.addEventListener("resize", scheduleFocusedInputScroll);
163
- return () => {
164
- cancelAnimationFrame(focusedInputScrollFrame.current);
165
- window.removeEventListener("focusin", scheduleFocusedInputScroll);
166
- window.visualViewport?.removeEventListener("resize", scheduleFocusedInputScroll);
167
- };
168
- }, [hasFit, scheduleFocusedInputScroll]);
169
- useEffect(() => {
170
- setHasScrollView(true);
171
- if (isGestureHandlerEnabled()) {
172
- scrollBridge.setScrollEnabled = setScrollEnabled;
173
- scrollBridge.forceScrollTo = forceScrollTo;
174
- }
175
- return () => {
176
- setHasScrollView(false);
177
- scrollBridge.setScrollEnabled = void 0;
178
- scrollBridge.forceScrollTo = void 0;
179
- };
180
- }, []);
181
- const updateScrollable = () => {
182
- if (parentHeight.current && contentHeight.current) {
183
- setHasScrollableContent(contentHeight.current > parentHeight.current);
184
- }
185
- };
186
- const recordFitHeight = height => {
187
- parentHeight.current = height;
188
- };
189
- useEffect(() => {
190
- scrollBridge.hasScrollableContent = hasScrollableContent;
191
- }, [hasScrollableContent]);
192
- const gestureProps = useSheetScrollViewGestures({
193
- scrollRef,
194
- scrollBridge,
195
- hasScrollableContent,
196
- scrollEnabled,
197
- setScrollEnabled,
198
- onManualScroll: emitManualScroll
199
- });
200
- const contentWrapper = /* @__PURE__ */jsxs(View, {
201
- onLayout: e => {
202
- const height = Math.floor(e.nativeEvent.layout.height);
203
- if (height !== contentHeight.current) {
204
- contentHeight.current = height;
205
- updateScrollable();
206
- if (keyboardOccludedHeight > 0) {
207
- scheduleFocusedInputScroll();
208
- }
209
- }
210
- },
211
- children: [children, keyboardOccludedHeight > 0 && /* @__PURE__ */jsx(View, {
212
- "data-sheet-keyboard-scroll-pad": true,
213
- height: keyboardOccludedHeight,
214
- width: "100%"
215
- })]
216
- });
217
- if (useRNGHScrollView && RNGHScrollView && panGestureRef) {
218
- const RNGHComponent = RNGHScrollView;
219
- return /* @__PURE__ */jsx(RNGHComponent, {
220
- ref: composeRefs(scrollRef, ref),
221
- style: fitSizingStyle,
222
- scrollEventThrottle: 1,
223
- scrollEnabled,
224
- simultaneousHandlers: [panGestureRef],
225
- onLayout: e => {
226
- recordFitHeight(Math.ceil(e.nativeEvent.layout.height));
227
- updateScrollable();
228
- },
229
- onScroll: e => {
230
- const {
231
- y
232
- } = e.nativeEvent.contentOffset;
233
- currentScrollOffset.current = y;
234
- if (scrollBridge.scrollLockY !== void 0) {
235
- if (y !== scrollBridge.scrollLockY) {
236
- scrollRef.current?.scrollTo?.({
237
- x: 0,
238
- y: scrollBridge.scrollLockY,
239
- animated: false
240
- });
241
- }
242
- currentScrollOffset.current = scrollBridge.scrollLockY;
243
- scrollBridge.y = scrollBridge.scrollLockY;
244
- if (lastEmittedScrollOffset.current !== scrollBridge.scrollLockY) {
245
- lastEmittedScrollOffset.current = scrollBridge.scrollLockY;
246
- onScroll?.({
247
- ...e,
248
- nativeEvent: {
249
- ...e.nativeEvent,
250
- contentOffset: {
251
- ...e.nativeEvent.contentOffset,
252
- y: scrollBridge.scrollLockY
253
- }
254
- }
255
- });
256
- }
257
- return;
258
- }
259
- scrollBridge.y = y;
260
- if (y > 0) scrollBridge.scrollStartY = -1;
261
- lastEmittedScrollOffset.current = y;
262
- onScroll?.(e);
263
- },
264
- contentContainerStyle,
265
- bounces: false,
266
- keyboardShouldPersistTaps: "always",
267
- keyboardDismissMode: "none",
268
- ...props,
269
- ...keyboardFrozenOverride,
270
- children: contentWrapper
271
- });
272
- }
273
- return /* @__PURE__ */jsx(ScrollView, {
274
- onLayout: e => {
275
- recordFitHeight(Math.ceil(e.nativeEvent.layout.height));
276
- updateScrollable();
277
- },
278
- ref: composeRefs(scrollRef, ref),
279
- ...fitSizingStyle,
280
- scrollEventThrottle: 1,
281
- className: "_ovs-contain",
282
- scrollEnabled,
283
- onScroll: e => {
284
- const {
285
- y
286
- } = e.nativeEvent.contentOffset;
287
- currentScrollOffset.current = y;
288
- scrollBridge.y = y;
289
- if (y > 0) scrollBridge.scrollStartY = -1;
290
- lastEmittedScrollOffset.current = y;
291
- onScroll?.(e);
292
- },
293
- contentContainerStyle,
294
- ...gestureProps,
295
- ...props,
296
- ...keyboardFrozenOverride,
297
- children: contentWrapper
298
- });
14
+ const SheetScrollView = createStyledHOC(ScrollView, ({ scope, children, onScroll, scrollEnabled: scrollEnabledProp, ...props }, ref) => {
15
+ const context = useSheetContext(scope);
16
+ const gestureContext = useGestureSheetContext();
17
+ const { scrollBridge, setHasScrollView, hasFit, screenSize } = context;
18
+ const keyboardOccludedHeight = Math.max(0, context.keyboardOccludedHeight || 0);
19
+ const isKeyboardVisible = context.isKeyboardVisible === true || isWeb && getWebKeyboardResizeHeight() >= MIN_KEYBOARD_HEIGHT;
20
+ const [scrollEnabled] = useControllableState({
21
+ prop: scrollEnabledProp,
22
+ defaultProp: true
23
+ });
24
+ const scrollRef = React.useRef(null);
25
+ const [hasScrollableContent, setHasScrollableContent] = useState(true);
26
+ const parentHeight = useRef(0);
27
+ const contentHeight = useRef(0);
28
+ const frozenFrameHeight = Math.max(0, context.keyboardStableFrameHeight || 0);
29
+ const fitSizingStyle = hasFit ? {
30
+ flex: void 0,
31
+ height: void 0,
32
+ maxHeight: screenSize || void 0
33
+ } : { flex: 1 };
34
+ const contentContainerStyle = hasFit ? void 0 : { minHeight: "100%" };
35
+ const keyboardFrozenOverride = hasFit && isKeyboardVisible && frozenFrameHeight > 0 ? {
36
+ height: frozenFrameHeight,
37
+ maxHeight: frozenFrameHeight
38
+ } : null;
39
+ const panGestureRef = gestureContext?.panGestureRef;
40
+ const { ScrollView: RNGHScrollView } = getGestureHandlerState();
41
+ const useRNGHScrollView = isGestureHandlerEnabled() && RNGHScrollView && panGestureRef;
42
+ const currentScrollOffset = useRef(0);
43
+ const lastEmittedScrollOffset = useRef(0);
44
+ const lockedScrollY = useRef(0);
45
+ const focusedInputScrollFrame = useRef(0);
46
+ const setScrollEnabled = (next, lockTo) => {
47
+ if (!next) {
48
+ const lockY = lockTo ?? scrollBridge.scrollLockY ?? currentScrollOffset.current;
49
+ if (scrollBridge.enabled === false && scrollBridge.scrollLockY === lockY) {
50
+ return;
51
+ }
52
+ scrollBridge.enabled = false;
53
+ lockedScrollY.current = lockY;
54
+ scrollBridge.scrollLockY = lockY;
55
+ if (currentScrollOffset.current !== lockY) {
56
+ scrollRef.current?.scrollTo?.({
57
+ x: 0,
58
+ y: lockY,
59
+ animated: false
60
+ });
61
+ currentScrollOffset.current = lockY;
62
+ }
63
+ } else {
64
+ if (scrollBridge.enabled === true && scrollBridge.scrollLockY === void 0) {
65
+ return;
66
+ }
67
+ scrollBridge.enabled = true;
68
+ lockedScrollY.current = currentScrollOffset.current;
69
+ scrollBridge.scrollLockY = void 0;
70
+ }
71
+ };
72
+ const forceScrollTo = (y) => {
73
+ scrollRef.current?.scrollTo?.({
74
+ x: 0,
75
+ y,
76
+ animated: false
77
+ });
78
+ currentScrollOffset.current = y;
79
+ };
80
+ const emitManualScroll = React.useCallback((node, y) => {
81
+ currentScrollOffset.current = y;
82
+ scrollBridge.y = y;
83
+ if (y > 0) scrollBridge.scrollStartY = -1;
84
+ lastEmittedScrollOffset.current = y;
85
+ onScroll?.({
86
+ nativeEvent: {
87
+ contentOffset: {
88
+ x: node.scrollLeft,
89
+ y
90
+ },
91
+ contentSize: {
92
+ height: node.scrollHeight,
93
+ width: node.scrollWidth
94
+ },
95
+ layoutMeasurement: {
96
+ height: node.offsetHeight,
97
+ width: node.offsetWidth
98
+ }
99
+ },
100
+ timeStamp: Date.now()
101
+ });
102
+ }, [onScroll, scrollBridge]);
103
+ const scrollFocusedInputClearOfKeyboard = React.useCallback(() => {
104
+ if (!isWeb || !hasFit || !isKeyboardVisible || keyboardOccludedHeight <= 0) {
105
+ return;
106
+ }
107
+ const node = scrollRef.current?.getScrollableNode();
108
+ const active = document.activeElement;
109
+ if (!node || !active || !isEditableElement(active) || !node.contains(active)) {
110
+ return;
111
+ }
112
+ const keyboardHeight = Math.max(keyboardOccludedHeight, getWebKeyboardBottomInset());
113
+ if (keyboardHeight <= 0) return;
114
+ const activeRect = active.getBoundingClientRect();
115
+ const nodeRect = node.getBoundingClientRect();
116
+ const margin = 12;
117
+ const keyboardTop = getStableLayoutViewportHeight() - keyboardHeight;
118
+ const visibleTop = nodeRect.top + margin;
119
+ const visibleBottom = Math.min(nodeRect.bottom, keyboardTop) - margin;
120
+ let nextScrollTop = node.scrollTop;
121
+ if (activeRect.bottom > visibleBottom) {
122
+ nextScrollTop += Math.ceil(activeRect.bottom - visibleBottom);
123
+ } else if (activeRect.top < visibleTop) {
124
+ nextScrollTop -= Math.ceil(visibleTop - activeRect.top);
125
+ }
126
+ const maxScrollTop = Math.max(0, node.scrollHeight - node.clientHeight);
127
+ nextScrollTop = Math.max(0, Math.min(maxScrollTop, nextScrollTop));
128
+ if (nextScrollTop === node.scrollTop) return;
129
+ node.scrollTop = nextScrollTop;
130
+ currentScrollOffset.current = nextScrollTop;
131
+ scrollBridge.y = nextScrollTop;
132
+ if (nextScrollTop > 0) scrollBridge.scrollStartY = -1;
133
+ }, [
134
+ hasFit,
135
+ isKeyboardVisible,
136
+ keyboardOccludedHeight,
137
+ scrollBridge
138
+ ]);
139
+ const scheduleFocusedInputScroll = React.useCallback(() => {
140
+ if (!isWeb || !hasFit) return;
141
+ cancelAnimationFrame(focusedInputScrollFrame.current);
142
+ focusedInputScrollFrame.current = requestAnimationFrame(() => {
143
+ scrollFocusedInputClearOfKeyboard();
144
+ focusedInputScrollFrame.current = requestAnimationFrame(scrollFocusedInputClearOfKeyboard);
145
+ });
146
+ }, [hasFit, scrollFocusedInputClearOfKeyboard]);
147
+ useEffect(() => {
148
+ if (!isWeb || !hasFit) return;
149
+ scheduleFocusedInputScroll();
150
+ window.addEventListener("focusin", scheduleFocusedInputScroll);
151
+ window.visualViewport?.addEventListener("resize", scheduleFocusedInputScroll);
152
+ return () => {
153
+ cancelAnimationFrame(focusedInputScrollFrame.current);
154
+ window.removeEventListener("focusin", scheduleFocusedInputScroll);
155
+ window.visualViewport?.removeEventListener("resize", scheduleFocusedInputScroll);
156
+ };
157
+ }, [hasFit, scheduleFocusedInputScroll]);
158
+ useEffect(() => {
159
+ setHasScrollView(true);
160
+ if (isGestureHandlerEnabled()) {
161
+ scrollBridge.setScrollEnabled = setScrollEnabled;
162
+ scrollBridge.forceScrollTo = forceScrollTo;
163
+ }
164
+ return () => {
165
+ setHasScrollView(false);
166
+ scrollBridge.setScrollEnabled = void 0;
167
+ scrollBridge.forceScrollTo = void 0;
168
+ };
169
+ }, []);
170
+ const updateScrollable = () => {
171
+ if (parentHeight.current && contentHeight.current) {
172
+ setHasScrollableContent(contentHeight.current > parentHeight.current);
173
+ }
174
+ };
175
+ const recordFitHeight = (height) => {
176
+ parentHeight.current = height;
177
+ };
178
+ useEffect(() => {
179
+ scrollBridge.hasScrollableContent = hasScrollableContent;
180
+ }, [hasScrollableContent]);
181
+ const gestureProps = useSheetScrollViewGestures({
182
+ scrollRef,
183
+ scrollBridge,
184
+ hasScrollableContent,
185
+ scrollEnabled,
186
+ setScrollEnabled,
187
+ onManualScroll: emitManualScroll
188
+ });
189
+ const contentWrapper = /* @__PURE__ */ jsxs(View, {
190
+ onLayout: (e) => {
191
+ const height = Math.floor(e.nativeEvent.layout.height);
192
+ if (height !== contentHeight.current) {
193
+ contentHeight.current = height;
194
+ updateScrollable();
195
+ if (keyboardOccludedHeight > 0) {
196
+ scheduleFocusedInputScroll();
197
+ }
198
+ }
199
+ },
200
+ children: [children, keyboardOccludedHeight > 0 && /* @__PURE__ */ jsx(View, {
201
+ "data-sheet-keyboard-scroll-pad": true,
202
+ height: keyboardOccludedHeight,
203
+ width: "100%"
204
+ })]
205
+ });
206
+ if (useRNGHScrollView && RNGHScrollView && panGestureRef) {
207
+ const RNGHComponent = RNGHScrollView;
208
+ return /* @__PURE__ */ jsx(RNGHComponent, {
209
+ ref: composeRefs(scrollRef, ref),
210
+ style: fitSizingStyle,
211
+ scrollEventThrottle: 1,
212
+ scrollEnabled,
213
+ simultaneousHandlers: [panGestureRef],
214
+ onLayout: (e) => {
215
+ recordFitHeight(Math.ceil(e.nativeEvent.layout.height));
216
+ updateScrollable();
217
+ },
218
+ onScroll: (e) => {
219
+ const { y } = e.nativeEvent.contentOffset;
220
+ currentScrollOffset.current = y;
221
+ if (scrollBridge.scrollLockY !== void 0) {
222
+ if (y !== scrollBridge.scrollLockY) {
223
+ scrollRef.current?.scrollTo?.({
224
+ x: 0,
225
+ y: scrollBridge.scrollLockY,
226
+ animated: false
227
+ });
228
+ }
229
+ currentScrollOffset.current = scrollBridge.scrollLockY;
230
+ scrollBridge.y = scrollBridge.scrollLockY;
231
+ if (lastEmittedScrollOffset.current !== scrollBridge.scrollLockY) {
232
+ lastEmittedScrollOffset.current = scrollBridge.scrollLockY;
233
+ onScroll?.({
234
+ ...e,
235
+ nativeEvent: {
236
+ ...e.nativeEvent,
237
+ contentOffset: {
238
+ ...e.nativeEvent.contentOffset,
239
+ y: scrollBridge.scrollLockY
240
+ }
241
+ }
242
+ });
243
+ }
244
+ return;
245
+ }
246
+ scrollBridge.y = y;
247
+ if (y > 0) scrollBridge.scrollStartY = -1;
248
+ lastEmittedScrollOffset.current = y;
249
+ onScroll?.(e);
250
+ },
251
+ contentContainerStyle,
252
+ bounces: false,
253
+ keyboardShouldPersistTaps: "always",
254
+ keyboardDismissMode: "none",
255
+ ...props,
256
+ ...keyboardFrozenOverride,
257
+ children: contentWrapper
258
+ });
259
+ }
260
+ return /* @__PURE__ */ jsx(ScrollView, {
261
+ onLayout: (e) => {
262
+ recordFitHeight(Math.ceil(e.nativeEvent.layout.height));
263
+ updateScrollable();
264
+ },
265
+ ref: composeRefs(scrollRef, ref),
266
+ ...fitSizingStyle,
267
+ scrollEventThrottle: 1,
268
+ className: "_ovs-contain",
269
+ scrollEnabled,
270
+ onScroll: (e) => {
271
+ const { y } = e.nativeEvent.contentOffset;
272
+ currentScrollOffset.current = y;
273
+ scrollBridge.y = y;
274
+ if (y > 0) scrollBridge.scrollStartY = -1;
275
+ lastEmittedScrollOffset.current = y;
276
+ onScroll?.(e);
277
+ },
278
+ contentContainerStyle,
279
+ ...gestureProps,
280
+ ...props,
281
+ ...keyboardFrozenOverride,
282
+ children: contentWrapper
283
+ });
284
+ }, {
285
+ disableTheme: true,
286
+ displayName: SHEET_SCROLL_VIEW_NAME
299
287
  });
288
+
300
289
  export { SheetScrollView };
301
290
  //# sourceMappingURL=SheetScrollView.mjs.map