@oxyhq/bloom 0.50.1 → 0.51.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 (571) hide show
  1. package/NOTICE +89 -0
  2. package/README.md +12 -7
  3. package/lib/commonjs/avatar-group/AvatarGroup.web.js +2 -1
  4. package/lib/commonjs/avatar-group/AvatarGroup.web.js.map +1 -1
  5. package/lib/commonjs/bottom-sheet/index.web.js +5 -3
  6. package/lib/commonjs/bottom-sheet/index.web.js.map +1 -1
  7. package/lib/commonjs/context-menu/index.web.js +6 -9
  8. package/lib/commonjs/context-menu/index.web.js.map +1 -1
  9. package/lib/commonjs/dialog/Dialog.js +12 -7
  10. package/lib/commonjs/dialog/Dialog.js.map +1 -1
  11. package/lib/commonjs/dialog/Dialog.web.js +18 -22
  12. package/lib/commonjs/dialog/Dialog.web.js.map +1 -1
  13. package/lib/commonjs/dialog/DialogHeader.js +61 -12
  14. package/lib/commonjs/dialog/DialogHeader.js.map +1 -1
  15. package/lib/commonjs/index.js +90 -83
  16. package/lib/commonjs/index.js.map +1 -1
  17. package/lib/commonjs/index.web.js +116 -109
  18. package/lib/commonjs/index.web.js.map +1 -1
  19. package/lib/commonjs/menu/index.web.js +5 -8
  20. package/lib/commonjs/menu/index.web.js.map +1 -1
  21. package/lib/commonjs/popover/index.web.js +8 -9
  22. package/lib/commonjs/popover/index.web.js.map +1 -1
  23. package/lib/commonjs/portal/index.js +4 -1
  24. package/lib/commonjs/portal/index.js.map +1 -1
  25. package/lib/commonjs/progressive-blur/index.js +79 -0
  26. package/lib/commonjs/progressive-blur/index.js.map +1 -0
  27. package/lib/commonjs/progressive-blur/index.web.js +67 -0
  28. package/lib/commonjs/progressive-blur/index.web.js.map +1 -0
  29. package/lib/commonjs/progressive-blur/shared.js +66 -0
  30. package/lib/commonjs/progressive-blur/shared.js.map +1 -0
  31. package/lib/commonjs/progressive-blur/types.js +6 -0
  32. package/lib/commonjs/progressive-blur/types.js.map +1 -0
  33. package/lib/commonjs/select/index.web.js +5 -8
  34. package/lib/commonjs/select/index.web.js.map +1 -1
  35. package/lib/commonjs/slider/Slider.js +4 -9
  36. package/lib/commonjs/slider/Slider.js.map +1 -1
  37. package/lib/commonjs/styles/web-view-style.js +26 -0
  38. package/lib/commonjs/styles/web-view-style.js.map +1 -0
  39. package/lib/commonjs/switch/Switch.js +4 -8
  40. package/lib/commonjs/switch/Switch.js.map +1 -1
  41. package/lib/commonjs/tab-bar/TabBarBase.js +415 -0
  42. package/lib/commonjs/tab-bar/TabBarBase.js.map +1 -0
  43. package/lib/commonjs/tab-bar/expo-router/RouterTabBar.js +83 -0
  44. package/lib/commonjs/tab-bar/expo-router/RouterTabBar.js.map +1 -0
  45. package/lib/commonjs/tab-bar/expo-router/fading-tab-screen.js +119 -0
  46. package/lib/commonjs/tab-bar/expo-router/fading-tab-screen.js.map +1 -0
  47. package/lib/commonjs/tab-bar/expo-router/index.js +26 -0
  48. package/lib/commonjs/tab-bar/expo-router/index.js.map +1 -0
  49. package/lib/commonjs/tab-bar/glyph.js +43 -0
  50. package/lib/commonjs/tab-bar/glyph.js.map +1 -0
  51. package/lib/commonjs/tab-bar/glyph.native.js +55 -0
  52. package/lib/commonjs/tab-bar/glyph.native.js.map +1 -0
  53. package/lib/commonjs/tab-bar/index.js +65 -0
  54. package/lib/commonjs/tab-bar/index.js.map +1 -0
  55. package/lib/commonjs/tab-bar/index.web.js +67 -0
  56. package/lib/commonjs/tab-bar/index.web.js.map +1 -0
  57. package/lib/commonjs/tab-bar/minimize-context.js +127 -0
  58. package/lib/commonjs/tab-bar/minimize-context.js.map +1 -0
  59. package/lib/commonjs/tab-bar/shared.js +139 -0
  60. package/lib/commonjs/tab-bar/shared.js.map +1 -0
  61. package/lib/commonjs/tab-bar/surface.js +50 -0
  62. package/lib/commonjs/tab-bar/surface.js.map +1 -0
  63. package/lib/commonjs/tab-bar/surface.native.js +56 -0
  64. package/lib/commonjs/tab-bar/surface.native.js.map +1 -0
  65. package/lib/commonjs/tab-bar/surface.web.js +59 -0
  66. package/lib/commonjs/tab-bar/surface.web.js.map +1 -0
  67. package/lib/commonjs/tab-bar/types.js +6 -0
  68. package/lib/commonjs/tab-bar/types.js.map +1 -0
  69. package/lib/commonjs/tabs/Tabs.js +3 -8
  70. package/lib/commonjs/tabs/Tabs.js.map +1 -1
  71. package/lib/commonjs/toast/Positioner.js +117 -0
  72. package/lib/commonjs/toast/Positioner.js.map +1 -0
  73. package/lib/commonjs/toast/ToastContent.js +301 -0
  74. package/lib/commonjs/toast/ToastContent.js.map +1 -0
  75. package/lib/commonjs/toast/ToastHost.js +69 -0
  76. package/lib/commonjs/toast/ToastHost.js.map +1 -0
  77. package/lib/commonjs/toast/ToastHost.native.js +44 -0
  78. package/lib/commonjs/toast/ToastHost.native.js.map +1 -0
  79. package/lib/commonjs/toast/ToastIcon.js +57 -0
  80. package/lib/commonjs/toast/ToastIcon.js.map +1 -0
  81. package/lib/commonjs/toast/ToastRow.js +411 -0
  82. package/lib/commonjs/toast/ToastRow.js.map +1 -0
  83. package/lib/commonjs/toast/ToastSwipeHandler.js +189 -0
  84. package/lib/commonjs/toast/ToastSwipeHandler.js.map +1 -0
  85. package/lib/commonjs/toast/Toaster.js +205 -0
  86. package/lib/commonjs/toast/Toaster.js.map +1 -0
  87. package/lib/commonjs/toast/animations.js +274 -0
  88. package/lib/commonjs/toast/animations.js.map +1 -0
  89. package/lib/commonjs/toast/constants.js +56 -0
  90. package/lib/commonjs/toast/constants.js.map +1 -0
  91. package/lib/commonjs/toast/context.js +42 -0
  92. package/lib/commonjs/toast/context.js.map +1 -0
  93. package/lib/commonjs/toast/index.js +32 -126
  94. package/lib/commonjs/toast/index.js.map +1 -1
  95. package/lib/commonjs/toast/position-utils.js +115 -0
  96. package/lib/commonjs/toast/position-utils.js.map +1 -0
  97. package/lib/commonjs/toast/positioner-utils.js +141 -0
  98. package/lib/commonjs/toast/positioner-utils.js.map +1 -0
  99. package/lib/commonjs/toast/toast-comparator.js +28 -0
  100. package/lib/commonjs/toast/toast-comparator.js.map +1 -0
  101. package/lib/commonjs/toast/toast-fns.js +90 -0
  102. package/lib/commonjs/toast/toast-fns.js.map +1 -0
  103. package/lib/commonjs/toast/toast-store.js +352 -0
  104. package/lib/commonjs/toast/toast-store.js.map +1 -0
  105. package/lib/commonjs/toast/toast-timers.js +110 -0
  106. package/lib/commonjs/toast/toast-timers.js.map +1 -0
  107. package/lib/commonjs/toast/types.js +42 -0
  108. package/lib/commonjs/toast/types.js.map +1 -1
  109. package/lib/commonjs/toast/use-animated-target.js +57 -0
  110. package/lib/commonjs/toast/use-animated-target.js.map +1 -0
  111. package/lib/commonjs/toast/use-app-state.js +76 -0
  112. package/lib/commonjs/toast/use-app-state.js.map +1 -0
  113. package/lib/commonjs/toast/use-toast-colors.js +114 -0
  114. package/lib/commonjs/toast/use-toast-colors.js.map +1 -0
  115. package/lib/commonjs/toast/use-toast-position.js +40 -0
  116. package/lib/commonjs/toast/use-toast-position.js.map +1 -0
  117. package/lib/commonjs/tooltip/index.web.js +2 -1
  118. package/lib/commonjs/tooltip/index.web.js.map +1 -1
  119. package/lib/commonjs/zoomable-image-gallery/ZoomableImageGallery.js +20 -8
  120. package/lib/commonjs/zoomable-image-gallery/ZoomableImageGallery.js.map +1 -1
  121. package/lib/module/avatar-group/AvatarGroup.web.js +2 -1
  122. package/lib/module/avatar-group/AvatarGroup.web.js.map +1 -1
  123. package/lib/module/bottom-sheet/index.web.js +5 -3
  124. package/lib/module/bottom-sheet/index.web.js.map +1 -1
  125. package/lib/module/context-menu/index.web.js +6 -9
  126. package/lib/module/context-menu/index.web.js.map +1 -1
  127. package/lib/module/dialog/Dialog.js +12 -7
  128. package/lib/module/dialog/Dialog.js.map +1 -1
  129. package/lib/module/dialog/Dialog.web.js +18 -22
  130. package/lib/module/dialog/Dialog.web.js.map +1 -1
  131. package/lib/module/dialog/DialogHeader.js +61 -12
  132. package/lib/module/dialog/DialogHeader.js.map +1 -1
  133. package/lib/module/index.js +3 -2
  134. package/lib/module/index.js.map +1 -1
  135. package/lib/module/index.web.js +3 -2
  136. package/lib/module/index.web.js.map +1 -1
  137. package/lib/module/menu/index.web.js +5 -8
  138. package/lib/module/menu/index.web.js.map +1 -1
  139. package/lib/module/popover/index.web.js +8 -9
  140. package/lib/module/popover/index.web.js.map +1 -1
  141. package/lib/module/portal/index.js +4 -1
  142. package/lib/module/portal/index.js.map +1 -1
  143. package/lib/module/progressive-blur/index.js +74 -0
  144. package/lib/module/progressive-blur/index.js.map +1 -0
  145. package/lib/module/progressive-blur/index.web.js +62 -0
  146. package/lib/module/progressive-blur/index.web.js.map +1 -0
  147. package/lib/module/progressive-blur/shared.js +60 -0
  148. package/lib/module/progressive-blur/shared.js.map +1 -0
  149. package/lib/module/progressive-blur/types.js +4 -0
  150. package/lib/module/progressive-blur/types.js.map +1 -0
  151. package/lib/module/select/index.web.js +5 -8
  152. package/lib/module/select/index.web.js.map +1 -1
  153. package/lib/module/slider/Slider.js +4 -9
  154. package/lib/module/slider/Slider.js.map +1 -1
  155. package/lib/module/styles/web-view-style.js +22 -0
  156. package/lib/module/styles/web-view-style.js.map +1 -0
  157. package/lib/module/switch/Switch.js +4 -8
  158. package/lib/module/switch/Switch.js.map +1 -1
  159. package/lib/module/tab-bar/TabBarBase.js +408 -0
  160. package/lib/module/tab-bar/TabBarBase.js.map +1 -0
  161. package/lib/module/tab-bar/expo-router/RouterTabBar.js +78 -0
  162. package/lib/module/tab-bar/expo-router/RouterTabBar.js.map +1 -0
  163. package/lib/module/tab-bar/expo-router/fading-tab-screen.js +113 -0
  164. package/lib/module/tab-bar/expo-router/fading-tab-screen.js.map +1 -0
  165. package/lib/module/tab-bar/expo-router/index.js +15 -0
  166. package/lib/module/tab-bar/expo-router/index.js.map +1 -0
  167. package/lib/module/tab-bar/glyph.js +38 -0
  168. package/lib/module/tab-bar/glyph.js.map +1 -0
  169. package/lib/module/tab-bar/glyph.native.js +50 -0
  170. package/lib/module/tab-bar/glyph.native.js.map +1 -0
  171. package/lib/module/tab-bar/index.js +24 -0
  172. package/lib/module/tab-bar/index.js.map +1 -0
  173. package/lib/module/tab-bar/index.web.js +26 -0
  174. package/lib/module/tab-bar/index.web.js.map +1 -0
  175. package/lib/module/tab-bar/minimize-context.js +118 -0
  176. package/lib/module/tab-bar/minimize-context.js.map +1 -0
  177. package/lib/module/tab-bar/shared.js +132 -0
  178. package/lib/module/tab-bar/shared.js.map +1 -0
  179. package/lib/module/tab-bar/surface.js +44 -0
  180. package/lib/module/tab-bar/surface.js.map +1 -0
  181. package/lib/module/tab-bar/surface.native.js +50 -0
  182. package/lib/module/tab-bar/surface.native.js.map +1 -0
  183. package/lib/module/tab-bar/surface.web.js +53 -0
  184. package/lib/module/tab-bar/surface.web.js.map +1 -0
  185. package/lib/module/tab-bar/types.js +4 -0
  186. package/lib/module/tab-bar/types.js.map +1 -0
  187. package/lib/module/tabs/Tabs.js +3 -8
  188. package/lib/module/tabs/Tabs.js.map +1 -1
  189. package/lib/module/toast/Positioner.js +110 -0
  190. package/lib/module/toast/Positioner.js.map +1 -0
  191. package/lib/module/toast/ToastContent.js +295 -0
  192. package/lib/module/toast/ToastContent.js.map +1 -0
  193. package/lib/module/toast/ToastHost.js +63 -0
  194. package/lib/module/toast/ToastHost.js.map +1 -0
  195. package/lib/module/toast/ToastHost.native.js +38 -0
  196. package/lib/module/toast/ToastHost.native.js.map +1 -0
  197. package/lib/module/toast/ToastIcon.js +52 -0
  198. package/lib/module/toast/ToastIcon.js.map +1 -0
  199. package/lib/module/toast/ToastRow.js +407 -0
  200. package/lib/module/toast/ToastRow.js.map +1 -0
  201. package/lib/module/toast/ToastSwipeHandler.js +182 -0
  202. package/lib/module/toast/ToastSwipeHandler.js.map +1 -0
  203. package/lib/module/toast/Toaster.js +198 -0
  204. package/lib/module/toast/Toaster.js.map +1 -0
  205. package/lib/module/toast/animations.js +261 -0
  206. package/lib/module/toast/animations.js.map +1 -0
  207. package/lib/module/toast/constants.js +52 -0
  208. package/lib/module/toast/constants.js.map +1 -0
  209. package/lib/module/toast/context.js +34 -0
  210. package/lib/module/toast/context.js.map +1 -0
  211. package/lib/module/toast/index.js +27 -103
  212. package/lib/module/toast/index.js.map +1 -1
  213. package/lib/module/toast/position-utils.js +107 -0
  214. package/lib/module/toast/position-utils.js.map +1 -0
  215. package/lib/module/toast/positioner-utils.js +134 -0
  216. package/lib/module/toast/positioner-utils.js.map +1 -0
  217. package/lib/module/toast/toast-comparator.js +22 -0
  218. package/lib/module/toast/toast-comparator.js.map +1 -0
  219. package/lib/module/toast/toast-fns.js +85 -0
  220. package/lib/module/toast/toast-fns.js.map +1 -0
  221. package/lib/module/toast/toast-store.js +346 -0
  222. package/lib/module/toast/toast-store.js.map +1 -0
  223. package/lib/module/toast/toast-timers.js +104 -0
  224. package/lib/module/toast/toast-timers.js.map +1 -0
  225. package/lib/module/toast/types.js +38 -0
  226. package/lib/module/toast/types.js.map +1 -1
  227. package/lib/module/toast/use-animated-target.js +52 -0
  228. package/lib/module/toast/use-animated-target.js.map +1 -0
  229. package/lib/module/toast/use-app-state.js +70 -0
  230. package/lib/module/toast/use-app-state.js.map +1 -0
  231. package/lib/module/toast/use-toast-colors.js +109 -0
  232. package/lib/module/toast/use-toast-colors.js.map +1 -0
  233. package/lib/module/toast/use-toast-position.js +35 -0
  234. package/lib/module/toast/use-toast-position.js.map +1 -0
  235. package/lib/module/tooltip/index.web.js +2 -1
  236. package/lib/module/tooltip/index.web.js.map +1 -1
  237. package/lib/module/zoomable-image-gallery/ZoomableImageGallery.js +20 -8
  238. package/lib/module/zoomable-image-gallery/ZoomableImageGallery.js.map +1 -1
  239. package/lib/typescript/commonjs/avatar-group/AvatarGroup.web.d.ts.map +1 -1
  240. package/lib/typescript/commonjs/bottom-sheet/index.web.d.ts.map +1 -1
  241. package/lib/typescript/commonjs/context-menu/index.web.d.ts.map +1 -1
  242. package/lib/typescript/commonjs/dialog/Dialog.d.ts.map +1 -1
  243. package/lib/typescript/commonjs/dialog/Dialog.web.d.ts.map +1 -1
  244. package/lib/typescript/commonjs/dialog/DialogHeader.d.ts.map +1 -1
  245. package/lib/typescript/commonjs/index.d.ts +2 -1
  246. package/lib/typescript/commonjs/index.d.ts.map +1 -1
  247. package/lib/typescript/commonjs/index.web.d.ts +2 -1
  248. package/lib/typescript/commonjs/index.web.d.ts.map +1 -1
  249. package/lib/typescript/commonjs/menu/index.web.d.ts.map +1 -1
  250. package/lib/typescript/commonjs/popover/index.web.d.ts.map +1 -1
  251. package/lib/typescript/commonjs/portal/index.d.ts.map +1 -1
  252. package/lib/typescript/commonjs/progressive-blur/index.d.ts +23 -0
  253. package/lib/typescript/commonjs/progressive-blur/index.d.ts.map +1 -0
  254. package/lib/typescript/commonjs/progressive-blur/index.web.d.ts +30 -0
  255. package/lib/typescript/commonjs/progressive-blur/index.web.d.ts.map +1 -0
  256. package/lib/typescript/commonjs/progressive-blur/shared.d.ts +35 -0
  257. package/lib/typescript/commonjs/progressive-blur/shared.d.ts.map +1 -0
  258. package/lib/typescript/commonjs/progressive-blur/types.d.ts +21 -0
  259. package/lib/typescript/commonjs/progressive-blur/types.d.ts.map +1 -0
  260. package/lib/typescript/commonjs/select/index.web.d.ts.map +1 -1
  261. package/lib/typescript/commonjs/slider/Slider.d.ts.map +1 -1
  262. package/lib/typescript/commonjs/styles/web-view-style.d.ts +21 -0
  263. package/lib/typescript/commonjs/styles/web-view-style.d.ts.map +1 -0
  264. package/lib/typescript/commonjs/switch/Switch.d.ts.map +1 -1
  265. package/lib/typescript/commonjs/tab-bar/TabBarBase.d.ts +36 -0
  266. package/lib/typescript/commonjs/tab-bar/TabBarBase.d.ts.map +1 -0
  267. package/lib/typescript/commonjs/tab-bar/expo-router/RouterTabBar.d.ts +59 -0
  268. package/lib/typescript/commonjs/tab-bar/expo-router/RouterTabBar.d.ts.map +1 -0
  269. package/lib/typescript/commonjs/tab-bar/expo-router/fading-tab-screen.d.ts +11 -0
  270. package/lib/typescript/commonjs/tab-bar/expo-router/fading-tab-screen.d.ts.map +1 -0
  271. package/lib/typescript/commonjs/tab-bar/expo-router/index.d.ts +14 -0
  272. package/lib/typescript/commonjs/tab-bar/expo-router/index.d.ts.map +1 -0
  273. package/lib/typescript/commonjs/tab-bar/glyph.d.ts +6 -0
  274. package/lib/typescript/commonjs/tab-bar/glyph.d.ts.map +1 -0
  275. package/lib/typescript/commonjs/tab-bar/glyph.native.d.ts +6 -0
  276. package/lib/typescript/commonjs/tab-bar/glyph.native.d.ts.map +1 -0
  277. package/lib/typescript/commonjs/tab-bar/index.d.ts +12 -0
  278. package/lib/typescript/commonjs/tab-bar/index.d.ts.map +1 -0
  279. package/lib/typescript/commonjs/tab-bar/index.web.d.ts +12 -0
  280. package/lib/typescript/commonjs/tab-bar/index.web.d.ts.map +1 -0
  281. package/lib/typescript/commonjs/tab-bar/minimize-context.d.ts +51 -0
  282. package/lib/typescript/commonjs/tab-bar/minimize-context.d.ts.map +1 -0
  283. package/lib/typescript/commonjs/tab-bar/shared.d.ts +93 -0
  284. package/lib/typescript/commonjs/tab-bar/shared.d.ts.map +1 -0
  285. package/lib/typescript/commonjs/tab-bar/surface.d.ts +6 -0
  286. package/lib/typescript/commonjs/tab-bar/surface.d.ts.map +1 -0
  287. package/lib/typescript/commonjs/tab-bar/surface.native.d.ts +6 -0
  288. package/lib/typescript/commonjs/tab-bar/surface.native.d.ts.map +1 -0
  289. package/lib/typescript/commonjs/tab-bar/surface.web.d.ts +6 -0
  290. package/lib/typescript/commonjs/tab-bar/surface.web.d.ts.map +1 -0
  291. package/lib/typescript/commonjs/tab-bar/types.d.ts +85 -0
  292. package/lib/typescript/commonjs/tab-bar/types.d.ts.map +1 -0
  293. package/lib/typescript/commonjs/tabs/Tabs.d.ts.map +1 -1
  294. package/lib/typescript/commonjs/toast/Positioner.d.ts +21 -0
  295. package/lib/typescript/commonjs/toast/Positioner.d.ts.map +1 -0
  296. package/lib/typescript/commonjs/toast/ToastContent.d.ts +14 -0
  297. package/lib/typescript/commonjs/toast/ToastContent.d.ts.map +1 -0
  298. package/lib/typescript/commonjs/toast/ToastHost.d.ts +6 -0
  299. package/lib/typescript/commonjs/toast/ToastHost.d.ts.map +1 -0
  300. package/lib/typescript/commonjs/toast/ToastHost.native.d.ts +6 -0
  301. package/lib/typescript/commonjs/toast/ToastHost.native.d.ts.map +1 -0
  302. package/lib/typescript/commonjs/toast/ToastIcon.d.ts +9 -0
  303. package/lib/typescript/commonjs/toast/ToastIcon.d.ts.map +1 -0
  304. package/lib/typescript/commonjs/toast/ToastRow.d.ts +80 -0
  305. package/lib/typescript/commonjs/toast/ToastRow.d.ts.map +1 -0
  306. package/lib/typescript/commonjs/toast/ToastSwipeHandler.d.ts +30 -0
  307. package/lib/typescript/commonjs/toast/ToastSwipeHandler.d.ts.map +1 -0
  308. package/lib/typescript/commonjs/toast/Toaster.d.ts +19 -0
  309. package/lib/typescript/commonjs/toast/Toaster.d.ts.map +1 -0
  310. package/lib/typescript/commonjs/toast/animations.d.ts +62 -0
  311. package/lib/typescript/commonjs/toast/animations.d.ts.map +1 -0
  312. package/lib/typescript/commonjs/toast/constants.d.ts +39 -0
  313. package/lib/typescript/commonjs/toast/constants.d.ts.map +1 -0
  314. package/lib/typescript/commonjs/toast/context.d.ts +19 -0
  315. package/lib/typescript/commonjs/toast/context.d.ts.map +1 -0
  316. package/lib/typescript/commonjs/toast/index.d.ts +23 -76
  317. package/lib/typescript/commonjs/toast/index.d.ts.map +1 -1
  318. package/lib/typescript/commonjs/toast/position-utils.d.ts +30 -0
  319. package/lib/typescript/commonjs/toast/position-utils.d.ts.map +1 -0
  320. package/lib/typescript/commonjs/toast/positioner-utils.d.ts +72 -0
  321. package/lib/typescript/commonjs/toast/positioner-utils.d.ts.map +1 -0
  322. package/lib/typescript/commonjs/toast/toast-comparator.d.ts +12 -0
  323. package/lib/typescript/commonjs/toast/toast-comparator.d.ts.map +1 -0
  324. package/lib/typescript/commonjs/toast/toast-fns.d.ts +3 -0
  325. package/lib/typescript/commonjs/toast/toast-fns.d.ts.map +1 -0
  326. package/lib/typescript/commonjs/toast/toast-store.d.ts +52 -0
  327. package/lib/typescript/commonjs/toast/toast-store.d.ts.map +1 -0
  328. package/lib/typescript/commonjs/toast/toast-timers.d.ts +24 -0
  329. package/lib/typescript/commonjs/toast/toast-timers.d.ts.map +1 -0
  330. package/lib/typescript/commonjs/toast/types.d.ts +222 -5
  331. package/lib/typescript/commonjs/toast/types.d.ts.map +1 -1
  332. package/lib/typescript/commonjs/toast/use-animated-target.d.ts +7 -0
  333. package/lib/typescript/commonjs/toast/use-animated-target.d.ts.map +1 -0
  334. package/lib/typescript/commonjs/toast/use-app-state.d.ts +18 -0
  335. package/lib/typescript/commonjs/toast/use-app-state.d.ts.map +1 -0
  336. package/lib/typescript/commonjs/toast/use-toast-colors.d.ts +22 -0
  337. package/lib/typescript/commonjs/toast/use-toast-colors.d.ts.map +1 -0
  338. package/lib/typescript/commonjs/toast/use-toast-position.d.ts +37 -0
  339. package/lib/typescript/commonjs/toast/use-toast-position.d.ts.map +1 -0
  340. package/lib/typescript/commonjs/tooltip/index.web.d.ts.map +1 -1
  341. package/lib/typescript/commonjs/zoomable-image-gallery/ZoomableImageGallery.d.ts.map +1 -1
  342. package/lib/typescript/module/avatar-group/AvatarGroup.web.d.ts.map +1 -1
  343. package/lib/typescript/module/bottom-sheet/index.web.d.ts.map +1 -1
  344. package/lib/typescript/module/context-menu/index.web.d.ts.map +1 -1
  345. package/lib/typescript/module/dialog/Dialog.d.ts.map +1 -1
  346. package/lib/typescript/module/dialog/Dialog.web.d.ts.map +1 -1
  347. package/lib/typescript/module/dialog/DialogHeader.d.ts.map +1 -1
  348. package/lib/typescript/module/index.d.ts +2 -1
  349. package/lib/typescript/module/index.d.ts.map +1 -1
  350. package/lib/typescript/module/index.web.d.ts +2 -1
  351. package/lib/typescript/module/index.web.d.ts.map +1 -1
  352. package/lib/typescript/module/menu/index.web.d.ts.map +1 -1
  353. package/lib/typescript/module/popover/index.web.d.ts.map +1 -1
  354. package/lib/typescript/module/portal/index.d.ts.map +1 -1
  355. package/lib/typescript/module/progressive-blur/index.d.ts +23 -0
  356. package/lib/typescript/module/progressive-blur/index.d.ts.map +1 -0
  357. package/lib/typescript/module/progressive-blur/index.web.d.ts +30 -0
  358. package/lib/typescript/module/progressive-blur/index.web.d.ts.map +1 -0
  359. package/lib/typescript/module/progressive-blur/shared.d.ts +35 -0
  360. package/lib/typescript/module/progressive-blur/shared.d.ts.map +1 -0
  361. package/lib/typescript/module/progressive-blur/types.d.ts +21 -0
  362. package/lib/typescript/module/progressive-blur/types.d.ts.map +1 -0
  363. package/lib/typescript/module/select/index.web.d.ts.map +1 -1
  364. package/lib/typescript/module/slider/Slider.d.ts.map +1 -1
  365. package/lib/typescript/module/styles/web-view-style.d.ts +21 -0
  366. package/lib/typescript/module/styles/web-view-style.d.ts.map +1 -0
  367. package/lib/typescript/module/switch/Switch.d.ts.map +1 -1
  368. package/lib/typescript/module/tab-bar/TabBarBase.d.ts +36 -0
  369. package/lib/typescript/module/tab-bar/TabBarBase.d.ts.map +1 -0
  370. package/lib/typescript/module/tab-bar/expo-router/RouterTabBar.d.ts +59 -0
  371. package/lib/typescript/module/tab-bar/expo-router/RouterTabBar.d.ts.map +1 -0
  372. package/lib/typescript/module/tab-bar/expo-router/fading-tab-screen.d.ts +11 -0
  373. package/lib/typescript/module/tab-bar/expo-router/fading-tab-screen.d.ts.map +1 -0
  374. package/lib/typescript/module/tab-bar/expo-router/index.d.ts +14 -0
  375. package/lib/typescript/module/tab-bar/expo-router/index.d.ts.map +1 -0
  376. package/lib/typescript/module/tab-bar/glyph.d.ts +6 -0
  377. package/lib/typescript/module/tab-bar/glyph.d.ts.map +1 -0
  378. package/lib/typescript/module/tab-bar/glyph.native.d.ts +6 -0
  379. package/lib/typescript/module/tab-bar/glyph.native.d.ts.map +1 -0
  380. package/lib/typescript/module/tab-bar/index.d.ts +12 -0
  381. package/lib/typescript/module/tab-bar/index.d.ts.map +1 -0
  382. package/lib/typescript/module/tab-bar/index.web.d.ts +12 -0
  383. package/lib/typescript/module/tab-bar/index.web.d.ts.map +1 -0
  384. package/lib/typescript/module/tab-bar/minimize-context.d.ts +51 -0
  385. package/lib/typescript/module/tab-bar/minimize-context.d.ts.map +1 -0
  386. package/lib/typescript/module/tab-bar/shared.d.ts +93 -0
  387. package/lib/typescript/module/tab-bar/shared.d.ts.map +1 -0
  388. package/lib/typescript/module/tab-bar/surface.d.ts +6 -0
  389. package/lib/typescript/module/tab-bar/surface.d.ts.map +1 -0
  390. package/lib/typescript/module/tab-bar/surface.native.d.ts +6 -0
  391. package/lib/typescript/module/tab-bar/surface.native.d.ts.map +1 -0
  392. package/lib/typescript/module/tab-bar/surface.web.d.ts +6 -0
  393. package/lib/typescript/module/tab-bar/surface.web.d.ts.map +1 -0
  394. package/lib/typescript/module/tab-bar/types.d.ts +85 -0
  395. package/lib/typescript/module/tab-bar/types.d.ts.map +1 -0
  396. package/lib/typescript/module/tabs/Tabs.d.ts.map +1 -1
  397. package/lib/typescript/module/toast/Positioner.d.ts +21 -0
  398. package/lib/typescript/module/toast/Positioner.d.ts.map +1 -0
  399. package/lib/typescript/module/toast/ToastContent.d.ts +14 -0
  400. package/lib/typescript/module/toast/ToastContent.d.ts.map +1 -0
  401. package/lib/typescript/module/toast/ToastHost.d.ts +6 -0
  402. package/lib/typescript/module/toast/ToastHost.d.ts.map +1 -0
  403. package/lib/typescript/module/toast/ToastHost.native.d.ts +6 -0
  404. package/lib/typescript/module/toast/ToastHost.native.d.ts.map +1 -0
  405. package/lib/typescript/module/toast/ToastIcon.d.ts +9 -0
  406. package/lib/typescript/module/toast/ToastIcon.d.ts.map +1 -0
  407. package/lib/typescript/module/toast/ToastRow.d.ts +80 -0
  408. package/lib/typescript/module/toast/ToastRow.d.ts.map +1 -0
  409. package/lib/typescript/module/toast/ToastSwipeHandler.d.ts +30 -0
  410. package/lib/typescript/module/toast/ToastSwipeHandler.d.ts.map +1 -0
  411. package/lib/typescript/module/toast/Toaster.d.ts +19 -0
  412. package/lib/typescript/module/toast/Toaster.d.ts.map +1 -0
  413. package/lib/typescript/module/toast/animations.d.ts +62 -0
  414. package/lib/typescript/module/toast/animations.d.ts.map +1 -0
  415. package/lib/typescript/module/toast/constants.d.ts +39 -0
  416. package/lib/typescript/module/toast/constants.d.ts.map +1 -0
  417. package/lib/typescript/module/toast/context.d.ts +19 -0
  418. package/lib/typescript/module/toast/context.d.ts.map +1 -0
  419. package/lib/typescript/module/toast/index.d.ts +23 -76
  420. package/lib/typescript/module/toast/index.d.ts.map +1 -1
  421. package/lib/typescript/module/toast/position-utils.d.ts +30 -0
  422. package/lib/typescript/module/toast/position-utils.d.ts.map +1 -0
  423. package/lib/typescript/module/toast/positioner-utils.d.ts +72 -0
  424. package/lib/typescript/module/toast/positioner-utils.d.ts.map +1 -0
  425. package/lib/typescript/module/toast/toast-comparator.d.ts +12 -0
  426. package/lib/typescript/module/toast/toast-comparator.d.ts.map +1 -0
  427. package/lib/typescript/module/toast/toast-fns.d.ts +3 -0
  428. package/lib/typescript/module/toast/toast-fns.d.ts.map +1 -0
  429. package/lib/typescript/module/toast/toast-store.d.ts +52 -0
  430. package/lib/typescript/module/toast/toast-store.d.ts.map +1 -0
  431. package/lib/typescript/module/toast/toast-timers.d.ts +24 -0
  432. package/lib/typescript/module/toast/toast-timers.d.ts.map +1 -0
  433. package/lib/typescript/module/toast/types.d.ts +222 -5
  434. package/lib/typescript/module/toast/types.d.ts.map +1 -1
  435. package/lib/typescript/module/toast/use-animated-target.d.ts +7 -0
  436. package/lib/typescript/module/toast/use-animated-target.d.ts.map +1 -0
  437. package/lib/typescript/module/toast/use-app-state.d.ts +18 -0
  438. package/lib/typescript/module/toast/use-app-state.d.ts.map +1 -0
  439. package/lib/typescript/module/toast/use-toast-colors.d.ts +22 -0
  440. package/lib/typescript/module/toast/use-toast-colors.d.ts.map +1 -0
  441. package/lib/typescript/module/toast/use-toast-position.d.ts +37 -0
  442. package/lib/typescript/module/toast/use-toast-position.d.ts.map +1 -0
  443. package/lib/typescript/module/tooltip/index.web.d.ts.map +1 -1
  444. package/lib/typescript/module/zoomable-image-gallery/ZoomableImageGallery.d.ts.map +1 -1
  445. package/package.json +63 -25
  446. package/src/__tests__/TabBar.test.tsx +342 -0
  447. package/src/__tests__/TabBarReanimatedDeps.test.ts +130 -0
  448. package/src/__tests__/TabBarWebFork.test.ts +197 -0
  449. package/src/__tests__/ToastContent.test.tsx +192 -0
  450. package/src/__tests__/ToastHostWebFork.test.ts +155 -0
  451. package/src/__tests__/Toaster.test.tsx +527 -0
  452. package/src/__tests__/animated-style-deps.test.ts +156 -0
  453. package/src/__tests__/toast-animations.test.ts +98 -0
  454. package/src/__tests__/toast-comparator.test.ts +131 -0
  455. package/src/__tests__/toast-enter-driver.test.ts +147 -0
  456. package/src/__tests__/toast-fns.test.ts +240 -0
  457. package/src/__tests__/toast-position-utils.test.ts +259 -0
  458. package/src/__tests__/toast-positioner-utils.test.ts +214 -0
  459. package/src/__tests__/toast-store.test.ts +622 -0
  460. package/src/__tests__/toast-timers.test.ts +163 -0
  461. package/src/__tests__/use-animated-target.test.tsx +60 -0
  462. package/src/__tests__/use-app-state.test.tsx +127 -0
  463. package/src/__tests__/use-toast-colors.test.tsx +189 -0
  464. package/src/__tests__/web-position-fixed.test.ts +70 -0
  465. package/src/avatar-group/AvatarGroup.web.tsx +2 -1
  466. package/src/bottom-sheet/index.web.tsx +4 -3
  467. package/src/context-menu/index.web.tsx +6 -6
  468. package/src/dialog/Dialog.tsx +7 -4
  469. package/src/dialog/Dialog.web.tsx +14 -14
  470. package/src/dialog/DialogHeader.tsx +72 -17
  471. package/src/index.ts +4 -1
  472. package/src/index.web.ts +4 -1
  473. package/src/menu/index.web.tsx +5 -5
  474. package/src/popover/index.web.tsx +8 -6
  475. package/src/portal/index.tsx +4 -1
  476. package/src/progressive-blur/index.tsx +78 -0
  477. package/src/progressive-blur/index.web.tsx +65 -0
  478. package/src/progressive-blur/shared.ts +81 -0
  479. package/src/progressive-blur/types.ts +21 -0
  480. package/src/select/index.web.tsx +5 -5
  481. package/src/slider/Slider.tsx +3 -5
  482. package/src/styles/web-view-style.ts +21 -0
  483. package/src/switch/Switch.tsx +4 -5
  484. package/src/tab-bar/TabBar.stories.tsx +217 -0
  485. package/src/tab-bar/TabBarBase.tsx +517 -0
  486. package/src/tab-bar/expo-router/RouterTabBar.tsx +80 -0
  487. package/src/tab-bar/expo-router/fading-tab-screen.tsx +109 -0
  488. package/src/tab-bar/expo-router/index.ts +13 -0
  489. package/src/tab-bar/glyph.native.tsx +46 -0
  490. package/src/tab-bar/glyph.tsx +31 -0
  491. package/src/tab-bar/index.ts +32 -0
  492. package/src/tab-bar/index.web.tsx +34 -0
  493. package/src/tab-bar/minimize-context.tsx +117 -0
  494. package/src/tab-bar/shared.ts +159 -0
  495. package/src/tab-bar/surface.native.tsx +60 -0
  496. package/src/tab-bar/surface.tsx +47 -0
  497. package/src/tab-bar/surface.web.tsx +56 -0
  498. package/src/tab-bar/types.ts +88 -0
  499. package/src/tabs/Tabs.tsx +3 -5
  500. package/src/toast/Positioner.tsx +121 -0
  501. package/src/toast/Toast.stories.tsx +292 -65
  502. package/src/toast/ToastContent.tsx +405 -0
  503. package/src/toast/ToastHost.native.tsx +31 -0
  504. package/src/toast/ToastHost.tsx +67 -0
  505. package/src/toast/ToastIcon.tsx +55 -0
  506. package/src/toast/ToastRow.tsx +485 -0
  507. package/src/toast/ToastSwipeHandler.tsx +222 -0
  508. package/src/toast/Toaster.tsx +259 -0
  509. package/src/toast/animations.ts +313 -0
  510. package/src/toast/constants.ts +76 -0
  511. package/src/toast/context.tsx +44 -0
  512. package/src/toast/index.tsx +47 -123
  513. package/src/toast/position-utils.ts +149 -0
  514. package/src/toast/positioner-utils.ts +142 -0
  515. package/src/toast/toast-comparator.ts +41 -0
  516. package/src/toast/toast-fns.ts +104 -0
  517. package/src/toast/toast-store.ts +432 -0
  518. package/src/toast/toast-timers.ts +124 -0
  519. package/src/toast/types.ts +301 -5
  520. package/src/toast/use-animated-target.ts +61 -0
  521. package/src/toast/use-app-state.ts +77 -0
  522. package/src/toast/use-toast-colors.ts +133 -0
  523. package/src/toast/use-toast-position.ts +46 -0
  524. package/src/tooltip/index.web.tsx +2 -1
  525. package/src/zoomable-image-gallery/ZoomableImageGallery.stories.tsx +134 -0
  526. package/src/zoomable-image-gallery/ZoomableImageGallery.tsx +50 -27
  527. package/lib/commonjs/toast/Toast.js +0 -272
  528. package/lib/commonjs/toast/Toast.js.map +0 -1
  529. package/lib/commonjs/toast/const.js +0 -8
  530. package/lib/commonjs/toast/const.js.map +0 -1
  531. package/lib/commonjs/toast/index.web.js +0 -114
  532. package/lib/commonjs/toast/index.web.js.map +0 -1
  533. package/lib/commonjs/toast/sonner/index.js +0 -9
  534. package/lib/commonjs/toast/sonner/index.js.map +0 -1
  535. package/lib/commonjs/toast/sonner/index.web.js +0 -9
  536. package/lib/commonjs/toast/sonner/index.web.js.map +0 -1
  537. package/lib/module/toast/Toast.js +0 -263
  538. package/lib/module/toast/Toast.js.map +0 -1
  539. package/lib/module/toast/const.js +0 -4
  540. package/lib/module/toast/const.js.map +0 -1
  541. package/lib/module/toast/index.web.js +0 -74
  542. package/lib/module/toast/index.web.js.map +0 -1
  543. package/lib/module/toast/sonner/index.js +0 -5
  544. package/lib/module/toast/sonner/index.js.map +0 -1
  545. package/lib/module/toast/sonner/index.web.js +0 -5
  546. package/lib/module/toast/sonner/index.web.js.map +0 -1
  547. package/lib/typescript/commonjs/toast/Toast.d.ts +0 -23
  548. package/lib/typescript/commonjs/toast/Toast.d.ts.map +0 -1
  549. package/lib/typescript/commonjs/toast/const.d.ts +0 -2
  550. package/lib/typescript/commonjs/toast/const.d.ts.map +0 -1
  551. package/lib/typescript/commonjs/toast/index.web.d.ts +0 -29
  552. package/lib/typescript/commonjs/toast/index.web.d.ts.map +0 -1
  553. package/lib/typescript/commonjs/toast/sonner/index.d.ts +0 -2
  554. package/lib/typescript/commonjs/toast/sonner/index.d.ts.map +0 -1
  555. package/lib/typescript/commonjs/toast/sonner/index.web.d.ts +0 -2
  556. package/lib/typescript/commonjs/toast/sonner/index.web.d.ts.map +0 -1
  557. package/lib/typescript/module/toast/Toast.d.ts +0 -23
  558. package/lib/typescript/module/toast/Toast.d.ts.map +0 -1
  559. package/lib/typescript/module/toast/const.d.ts +0 -2
  560. package/lib/typescript/module/toast/const.d.ts.map +0 -1
  561. package/lib/typescript/module/toast/index.web.d.ts +0 -29
  562. package/lib/typescript/module/toast/index.web.d.ts.map +0 -1
  563. package/lib/typescript/module/toast/sonner/index.d.ts +0 -2
  564. package/lib/typescript/module/toast/sonner/index.d.ts.map +0 -1
  565. package/lib/typescript/module/toast/sonner/index.web.d.ts +0 -2
  566. package/lib/typescript/module/toast/sonner/index.web.d.ts.map +0 -1
  567. package/src/toast/Toast.tsx +0 -271
  568. package/src/toast/const.ts +0 -1
  569. package/src/toast/index.web.tsx +0 -101
  570. package/src/toast/sonner/index.ts +0 -3
  571. package/src/toast/sonner/index.web.ts +0 -3
@@ -0,0 +1,411 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.ToastRow = void 0;
7
+ var React = _interopRequireWildcard(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _reactNativeReanimated = _interopRequireWildcard(require("react-native-reanimated"));
10
+ var _animations = require("./animations.js");
11
+ var _constants = require("./constants.js");
12
+ var _context = require("./context.js");
13
+ var _positionUtils = require("./position-utils.js");
14
+ var _useAnimatedTarget = require("./use-animated-target.js");
15
+ var _ToastContent = require("./ToastContent.js");
16
+ var _ToastSwipeHandler = require("./ToastSwipeHandler.js");
17
+ var _toastStore = require("./toast-store.js");
18
+ var _useToastPosition = require("./use-toast-position.js");
19
+ var _jsxRuntime = require("react/jsx-runtime");
20
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
21
+ /**
22
+ * Derived from sonner-native v0.26.4 — src/toast.tsx:39-437
23
+ * (MIT © Gunnar Torfi Steinarsson). See the top-level NOTICE.
24
+ *
25
+ * The animated shell around a row: stack offset + scale, enter/exit animation,
26
+ * height measurement, swipe wrapper and the imperative wiggle handle. The visual
27
+ * row itself is `ToastContent` (or the consumer's `jsx`).
28
+ *
29
+ * W6 — INVARIANT: THE MEASURED `Animated.View` IS `style`-ONLY, NEVER
30
+ * `className`'d. Under react-native-css on web, `onLayout` never fires for a
31
+ * className'd component, which would strand every row at
32
+ * `ESTIMATED_TOAST_HEIGHT` and pile the stack on top of itself. Measurement runs
33
+ * a three-tier ladder — `getBoundingClientRect()` (RN >= 0.83 refs and RN-Web),
34
+ * then `measureInWindow` (older New Arch), then `onLayout` as the safety net —
35
+ * so no single platform quirk can silently degrade it. A consumer's `toast.custom`
36
+ * JSX is unaffected: the ref sits on this engine wrapper, not on their element.
37
+ *
38
+ * W3 — the animated style READS two shared values and returns only the transform.
39
+ * `position`, `width` and the `top`/`bottom` anchor are static `StyleSheet` entries:
40
+ * upstream writes the anchor conditionally INSIDE the mapper, so the previous
41
+ * anchor is never cleared when `position` changes and the static keys are
42
+ * re-committed every frame. Both shared values are driven imperatively from plain-JS
43
+ * targets (`useAnimatedTarget`), never returned from a mapper.
44
+ *
45
+ * W5 — this row does NOT subscribe to `AppState`. `Toaster` holds one
46
+ * subscription for the whole stack (upstream creates one per row, so N toasts
47
+ * meant N `visibilitychange` listeners).
48
+ *
49
+ * THE EXIT IS ALWAYS A LAYOUT ANIMATION; THE ENTER DEPENDS ON THE PLATFORM.
50
+ * `animations.ts` returns EITHER an `entering` builder (native, and any consumer
51
+ * override) OR an `enterTranslateY` for `rowStyle` below to fade and slide the row
52
+ * in imperatively (web default) — never both. When `enterTranslateY` is
53
+ * `undefined`, `enterProgress` is seeded at 1 and `rowStyle` collapses to the
54
+ * wiggle scale alone, so nothing here competes with `entering`. Both halves of
55
+ * that split are load-bearing and neither may be "simplified" into the other:
56
+ * `animations.ts` documents the web pin that forbids `entering` on web and the
57
+ * native regression that forbids the imperative driver on native.
58
+ */
59
+
60
+ /** How much a wiggle grows the row, and for how long per half-cycle. */const WIGGLE_SCALE = 1.035;
61
+ const WIGGLE_DURATION = 150;
62
+ const WIGGLE_REPEATS = 4;
63
+
64
+ /**
65
+ * Fold the outlet-level `toastOptions` style slots into the per-toast
66
+ * `ToastStyles` shape so the renderer has ONE styles object to apply. Upstream
67
+ * threads all fifteen slots down as separate props; collapsing them here keeps
68
+ * `ToastContent` to a single `styles` prop while honouring the same API. The
69
+ * per-toast value always wins over the outlet's.
70
+ */
71
+ function mergeToastStyles(toastOptions, perToast, variantStyle) {
72
+ return {
73
+ toastContainer: {
74
+ ...toastOptions.toastContainerStyle,
75
+ ...perToast?.toastContainer
76
+ },
77
+ toast: {
78
+ ...toastOptions.style,
79
+ ...variantStyle,
80
+ ...perToast?.toast
81
+ },
82
+ toastContent: {
83
+ ...toastOptions.toastContentStyle,
84
+ ...perToast?.toastContent
85
+ },
86
+ textContainer: {
87
+ ...toastOptions.textContainerStyle,
88
+ ...perToast?.textContainer
89
+ },
90
+ title: {
91
+ ...toastOptions.titleStyle,
92
+ ...perToast?.title
93
+ },
94
+ description: {
95
+ ...toastOptions.descriptionStyle,
96
+ ...perToast?.description
97
+ },
98
+ buttons: {
99
+ ...toastOptions.buttonsStyle,
100
+ ...perToast?.buttons
101
+ },
102
+ closeButton: {
103
+ ...toastOptions.closeButtonStyle,
104
+ ...perToast?.closeButton
105
+ },
106
+ closeButtonIcon: {
107
+ ...toastOptions.closeButtonIconStyle,
108
+ ...perToast?.closeButtonIcon
109
+ }
110
+ };
111
+ }
112
+ const ToastRow = exports.ToastRow = /*#__PURE__*/React.forwardRef(function ToastRow({
113
+ id,
114
+ title,
115
+ jsx,
116
+ description,
117
+ icon,
118
+ duration,
119
+ variant,
120
+ action,
121
+ cancel,
122
+ close,
123
+ onDismiss,
124
+ dismissible = _constants.toastDefaults.dismissible,
125
+ closeButton: closeButtonProp,
126
+ actionButtonStyle,
127
+ actionButtonTextStyle,
128
+ cancelButtonStyle,
129
+ cancelButtonTextStyle,
130
+ style,
131
+ styles: styleOverrides,
132
+ promiseOptions,
133
+ position: positionProp,
134
+ animation,
135
+ unstyled: unstyledProp,
136
+ important,
137
+ richColors: richColorsProp,
138
+ onPress,
139
+ allowFontScaling: allowFontScalingProp,
140
+ maxFontSizeMultiplier: maxFontSizeMultiplierProp,
141
+ backgroundComponent: backgroundComponentProp,
142
+ numberOfToasts,
143
+ index,
144
+ orderedToastIds
145
+ }, ref) {
146
+ const {
147
+ closeButton: closeButtonCtx,
148
+ icons,
149
+ richColors: richColorsCtx,
150
+ allowFontScaling: allowFontScalingCtx,
151
+ maxFontSizeMultiplier: maxFontSizeMultiplierCtx,
152
+ enableStacking,
153
+ gap,
154
+ position: positionCtx,
155
+ visibleToasts,
156
+ unstyled: unstyledCtx,
157
+ toastOptions
158
+ } = (0, _context.useToastContext)();
159
+ const {
160
+ toastHeights,
161
+ isExpanded,
162
+ toggleExpand
163
+ } = (0, _context.useDynamicToastContext)();
164
+ const position = positionProp ?? positionCtx;
165
+ const unstyled = unstyledProp ?? toastOptions.unstyled ?? unstyledCtx;
166
+ const richColors = richColorsProp ?? richColorsCtx;
167
+ const closeButton = closeButtonProp ?? closeButtonCtx;
168
+ const allowFontScaling = allowFontScalingProp ?? allowFontScalingCtx;
169
+ const maxFontSizeMultiplier = maxFontSizeMultiplierProp ?? maxFontSizeMultiplierCtx;
170
+ const backgroundComponent = backgroundComponentProp ?? toastOptions.backgroundComponent;
171
+ const stackGap = gap ?? _constants.toastDefaults.stackGap;
172
+ const mergedStyles = React.useMemo(() => mergeToastStyles(toastOptions, styleOverrides, variant ? toastOptions[variant] : undefined), [toastOptions, styleOverrides, variant]);
173
+
174
+ // For top-center the array is reversed, so the front row is index 0.
175
+ const distanceFromFront = position === 'top-center' ? index : numberOfToasts - 1 - index;
176
+ const isHiddenByLimit = enableStacking && distanceFromFront >= visibleToasts;
177
+ const {
178
+ entering,
179
+ exiting,
180
+ enterTranslateY
181
+ } = (0, _animations.useToastLayoutAnimations)(positionProp, animation, isHiddenByLimit, numberOfToasts);
182
+ const yPosition = (0, _useToastPosition.useToastPosition)({
183
+ index,
184
+ numberOfToasts,
185
+ enableStacking,
186
+ position,
187
+ allToastHeights: toastHeights,
188
+ gap,
189
+ orderedToastIds,
190
+ isExpanded,
191
+ stackGap
192
+ });
193
+ const {
194
+ width: screenWidth
195
+ } = (0, _reactNative.useWindowDimensions)();
196
+ const stackScaleX = (0, _useAnimatedTarget.useAnimatedTarget)((0, _positionUtils.calculateStackScaleX)({
197
+ index,
198
+ numberOfToasts,
199
+ enableStacking,
200
+ position,
201
+ isExpanded,
202
+ stackGap,
203
+ screenWidth
204
+ }), {
205
+ duration: _constants.STACKING_ANIMATION_DURATION,
206
+ easing: _animations.easeOutQuartFn
207
+ });
208
+ const stackTransformStyle = (0, _reactNativeReanimated.useAnimatedStyle)(() => ({
209
+ transform: [{
210
+ translateY: yPosition.value
211
+ }, {
212
+ scaleX: stackScaleX.value
213
+ }]
214
+ }), [yPosition, stackScaleX]);
215
+
216
+ // 0 -> 1 over the enter animation. Seeded at 1 with NO mount-time `withTiming`
217
+ // whenever `enterTranslateY` is undefined — i.e. whenever `entering` is playing
218
+ // the enter instead, or reduced motion is on — leaving this style the identity.
219
+ const enterProgress = (0, _useAnimatedTarget.useAnimatedTarget)(1, {
220
+ duration: _constants.ENTERING_ANIMATION_DURATION,
221
+ easing: _animations.easeOutQuartFn,
222
+ from: enterTranslateY === undefined ? undefined : 0
223
+ });
224
+ const enterDistance = enterTranslateY ?? 0;
225
+ const wiggleScale = (0, _reactNativeReanimated.useSharedValue)(1);
226
+ // ONE mapper for both transforms: two animated styles on the same view would
227
+ // each return a `transform` array and the later one would win outright.
228
+ const rowStyle = (0, _reactNativeReanimated.useAnimatedStyle)(() => ({
229
+ opacity: enterProgress.value,
230
+ transform: [{
231
+ translateY: (1 - enterProgress.value) * enterDistance
232
+ }, {
233
+ scale: wiggleScale.value
234
+ }]
235
+ }), [enterProgress, enterDistance, wiggleScale]);
236
+ const wiggle = React.useCallback(() => {
237
+ 'worklet';
238
+
239
+ wiggleScale.value = (0, _reactNativeReanimated.withRepeat)((0, _reactNativeReanimated.withTiming)(Math.min(wiggleScale.value * WIGGLE_SCALE, WIGGLE_SCALE), {
240
+ duration: WIGGLE_DURATION
241
+ }), WIGGLE_REPEATS, true);
242
+ }, [wiggleScale]);
243
+ const handleWiggle = React.useCallback(() => {
244
+ // A toast that never auto-closes has no timer to draw attention back to.
245
+ if (duration === Infinity) {
246
+ return;
247
+ }
248
+ if (wiggleScale.value !== 1) {
249
+ // Settle back to rest first, otherwise the scale compounds.
250
+ wiggleScale.value = (0, _reactNativeReanimated.withTiming)(1, {
251
+ duration: WIGGLE_DURATION
252
+ }, wiggle);
253
+ return;
254
+ }
255
+ wiggle();
256
+ }, [wiggle, wiggleScale, duration]);
257
+ React.useImperativeHandle(ref, () => ({
258
+ wiggle: handleWiggle
259
+ }));
260
+ const measuredRef = React.useRef(null);
261
+
262
+ // Tiers 1 and 2 of the ladder — see the W6 note in the file header.
263
+ React.useLayoutEffect(() => {
264
+ const node = measuredRef.current;
265
+ if (!node) {
266
+ return;
267
+ }
268
+ if (typeof node.getBoundingClientRect === 'function') {
269
+ _toastStore.toastStore.setToastHeight(id, node.getBoundingClientRect().height);
270
+ return;
271
+ }
272
+ let stale = false;
273
+ node.measureInWindow((_x, _y, _width, height) => {
274
+ if (!stale) {
275
+ _toastStore.toastStore.setToastHeight(id, height);
276
+ }
277
+ });
278
+ return () => {
279
+ stale = true;
280
+ };
281
+ }, [id, variant, title, description, jsx]);
282
+
283
+ // Tier 3. Also the only tier that reports a LATER resize (a wrapped line, a
284
+ // font swap) on platforms without a synchronous read.
285
+ const handleLayout = React.useCallback(({
286
+ nativeEvent
287
+ }) => {
288
+ const {
289
+ height
290
+ } = nativeEvent.layout;
291
+ if (height > 0) {
292
+ _toastStore.toastStore.setToastHeight(id, height);
293
+ }
294
+ }, [id]);
295
+ const onRemove = React.useCallback(() => {
296
+ onDismiss(id);
297
+ }, [onDismiss, id]);
298
+ const onSwipeBegin = React.useCallback(() => {
299
+ _toastStore.toastStore.pauseTimer(id);
300
+ }, [id]);
301
+ const onSwipeFinalize = React.useCallback(() => {
302
+ if (!isExpanded) {
303
+ _toastStore.toastStore.resumeTimer(id);
304
+ }
305
+ }, [id, isExpanded]);
306
+ const onSwipePress = React.useCallback(({
307
+ x
308
+ }) => {
309
+ if (enableStacking && numberOfToasts > 1 && position !== 'center') {
310
+ // On Android the RNGH tap wins the race against the nested Pressable,
311
+ // so a press in the close-button strip has to dismiss explicitly.
312
+ if (x > screenWidth - _constants.CLOSE_BUTTON_HIT_AREA) {
313
+ if (isExpanded && closeButton && dismissible) {
314
+ onDismiss(id);
315
+ }
316
+ } else {
317
+ toggleExpand();
318
+ }
319
+ }
320
+ onPress?.();
321
+ }, [enableStacking, numberOfToasts, position, screenWidth, isExpanded, closeButton, dismissible, onDismiss, id, toggleExpand, onPress]);
322
+
323
+ // Front row on top: later rows in the stack sit progressively behind.
324
+ const stackZIndex = position === 'top-center' ? -(index + 1) : -(numberOfToasts - index);
325
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeReanimated.default.View, {
326
+ style: [styles.anchor, anchorFor(position), {
327
+ zIndex: stackZIndex
328
+ }, stackTransformStyle],
329
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_ToastSwipeHandler.ToastSwipeHandler, {
330
+ onRemove: onRemove,
331
+ onBegin: onSwipeBegin,
332
+ onFinalize: onSwipeFinalize,
333
+ onPress: onSwipePress
334
+ // A pending promise toast cannot be swiped away mid-flight.
335
+ ,
336
+ enabled: !promiseOptions && dismissible,
337
+ style: mergedStyles.toastContainer,
338
+ unstyled: unstyled,
339
+ important: important,
340
+ position: positionProp,
341
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeReanimated.default.View, {
342
+ style: rowStyle,
343
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeReanimated.default.View, {
344
+ ref: measuredRef,
345
+ onLayout: handleLayout,
346
+ entering: entering,
347
+ exiting: exiting,
348
+ children: jsx ?? /*#__PURE__*/(0, _jsxRuntime.jsx)(_ToastContent.ToastContent, {
349
+ id: id,
350
+ title: title,
351
+ description: description,
352
+ variant: variant,
353
+ icon: icon,
354
+ icons: icons,
355
+ action: action,
356
+ cancel: cancel,
357
+ close: close,
358
+ closeButton: closeButton,
359
+ dismissible: dismissible,
360
+ richColors: richColors,
361
+ promiseOptions: promiseOptions,
362
+ styles: mergedStyles,
363
+ style: style,
364
+ unstyled: unstyled,
365
+ onDismiss: onDismiss,
366
+ actionButtonStyle: actionButtonStyle ?? toastOptions.actionButtonStyle,
367
+ actionButtonTextStyle: actionButtonTextStyle ?? toastOptions.actionButtonTextStyle,
368
+ cancelButtonStyle: cancelButtonStyle ?? toastOptions.cancelButtonStyle,
369
+ cancelButtonTextStyle: cancelButtonTextStyle ?? toastOptions.cancelButtonTextStyle,
370
+ allowFontScaling: allowFontScaling,
371
+ maxFontSizeMultiplier: maxFontSizeMultiplier,
372
+ backgroundComponent: backgroundComponent
373
+ })
374
+ })
375
+ })
376
+ })
377
+ });
378
+ });
379
+ const styles = _reactNative.StyleSheet.create({
380
+ anchor: {
381
+ position: 'absolute',
382
+ width: '100%'
383
+ },
384
+ anchorTop: {
385
+ top: 0
386
+ },
387
+ anchorBottom: {
388
+ bottom: 0
389
+ },
390
+ /**
391
+ * The container is full-bleed for every position, so the vertical midpoint lives
392
+ * on the ROW rather than on the container. `calculateToastPosition` then shifts
393
+ * the front row up by half its height to sit ON the line rather than below it —
394
+ * see its `centerShift`.
395
+ */
396
+ anchorCenter: {
397
+ top: '50%'
398
+ }
399
+ });
400
+
401
+ /** Which edge of the (full-bleed, padded) container the row hangs from. */
402
+ function anchorFor(position) {
403
+ if (position === 'bottom-center') {
404
+ return styles.anchorBottom;
405
+ }
406
+ if (position === 'center') {
407
+ return styles.anchorCenter;
408
+ }
409
+ return styles.anchorTop;
410
+ }
411
+ //# sourceMappingURL=ToastRow.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","_interopRequireWildcard","require","_reactNative","_reactNativeReanimated","_animations","_constants","_context","_positionUtils","_useAnimatedTarget","_ToastContent","_ToastSwipeHandler","_toastStore","_useToastPosition","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","WIGGLE_SCALE","WIGGLE_DURATION","WIGGLE_REPEATS","mergeToastStyles","toastOptions","perToast","variantStyle","toastContainer","toastContainerStyle","toast","style","toastContent","toastContentStyle","textContainer","textContainerStyle","title","titleStyle","description","descriptionStyle","buttons","buttonsStyle","closeButton","closeButtonStyle","closeButtonIcon","closeButtonIconStyle","ToastRow","exports","forwardRef","id","jsx","icon","duration","variant","action","cancel","close","onDismiss","dismissible","toastDefaults","closeButtonProp","actionButtonStyle","actionButtonTextStyle","cancelButtonStyle","cancelButtonTextStyle","styles","styleOverrides","promiseOptions","position","positionProp","animation","unstyled","unstyledProp","important","richColors","richColorsProp","onPress","allowFontScaling","allowFontScalingProp","maxFontSizeMultiplier","maxFontSizeMultiplierProp","backgroundComponent","backgroundComponentProp","numberOfToasts","index","orderedToastIds","ref","closeButtonCtx","icons","richColorsCtx","allowFontScalingCtx","maxFontSizeMultiplierCtx","enableStacking","gap","positionCtx","visibleToasts","unstyledCtx","useToastContext","toastHeights","isExpanded","toggleExpand","useDynamicToastContext","stackGap","mergedStyles","useMemo","undefined","distanceFromFront","isHiddenByLimit","entering","exiting","enterTranslateY","useToastLayoutAnimations","yPosition","useToastPosition","allToastHeights","width","screenWidth","useWindowDimensions","stackScaleX","useAnimatedTarget","calculateStackScaleX","STACKING_ANIMATION_DURATION","easing","easeOutQuartFn","stackTransformStyle","useAnimatedStyle","transform","translateY","value","scaleX","enterProgress","ENTERING_ANIMATION_DURATION","from","enterDistance","wiggleScale","useSharedValue","rowStyle","opacity","scale","wiggle","useCallback","withRepeat","withTiming","Math","min","handleWiggle","Infinity","useImperativeHandle","measuredRef","useRef","useLayoutEffect","node","current","getBoundingClientRect","toastStore","setToastHeight","height","stale","measureInWindow","_x","_y","_width","handleLayout","nativeEvent","layout","onRemove","onSwipeBegin","pauseTimer","onSwipeFinalize","resumeTimer","onSwipePress","x","CLOSE_BUTTON_HIT_AREA","stackZIndex","View","anchor","anchorFor","zIndex","children","ToastSwipeHandler","onBegin","onFinalize","enabled","onLayout","ToastContent","StyleSheet","create","anchorTop","top","anchorBottom","bottom","anchorCenter"],"sourceRoot":"../../../src","sources":["toast/ToastRow.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,189 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.ToastSwipeHandler = void 0;
7
+ var React = _interopRequireWildcard(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _reactNativeGestureHandler = require("react-native-gesture-handler");
10
+ var _reactNativeReanimated = _interopRequireWildcard(require("react-native-reanimated"));
11
+ var _animations = require("./animations.js");
12
+ var _context = require("./context.js");
13
+ var _jsxRuntime = require("react/jsx-runtime");
14
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
15
+ /**
16
+ * Derived from sonner-native v0.26.4 — src/gestures.tsx
17
+ * (MIT © Gunnar Torfi Steinarsson). See the top-level NOTICE.
18
+ *
19
+ * W2 — the animated style reads `translate`, `direction`, `position`,
20
+ * `windowWidth` and `isAndroid`; ALL of them are in the dependency array. On web
21
+ * without the worklets babel plugin reanimated re-runs the mapper on its deps
22
+ * rather than on auto-tracked reads, so a missing dep freezes the swipe transform
23
+ * at its first frame (upstream omits `position` and `isAndroid`, so a toast that
24
+ * changes position mid-life swipes the wrong way).
25
+ */
26
+
27
+ /** Fraction of the screen a horizontal swipe must cross to dismiss. */
28
+ const HORIZONTAL_DISMISS_FRACTION = 0.25;
29
+ /** Below this the gesture reads as a tap, so the row springs back. */
30
+ const TAP_SLOP = 16;
31
+ /** Vertical travel that fades a row fully out. */
32
+ const VERTICAL_FADE_DISTANCE = 60;
33
+ const SPRING_BACK_EASING_BOUNCINESS = 0.8;
34
+ const WRONG_DIRECTION_SPRING_DURATION = 400;
35
+ const ToastSwipeHandler = ({
36
+ children,
37
+ onRemove,
38
+ style,
39
+ onBegin,
40
+ onFinalize,
41
+ enabled,
42
+ unstyled,
43
+ important,
44
+ position: positionProps,
45
+ onPress
46
+ }) => {
47
+ const {
48
+ width: windowWidth
49
+ } = (0, _reactNative.useWindowDimensions)();
50
+ const translate = (0, _reactNativeReanimated.useSharedValue)(0);
51
+ const {
52
+ swipeToDismissDirection: direction,
53
+ position: positionCtx
54
+ } = (0, _context.useToastContext)();
55
+ const position = positionProps ?? positionCtx;
56
+ const isAndroid = _reactNative.Platform.OS === 'android';
57
+ const pan = _reactNativeGestureHandler.Gesture.Pan().onBegin(() => {
58
+ 'worklet';
59
+
60
+ if (!enabled) {
61
+ return;
62
+ }
63
+ (0, _reactNativeReanimated.runOnJS)(onBegin)();
64
+ }).onChange(event => {
65
+ 'worklet';
66
+
67
+ if (!enabled) {
68
+ return;
69
+ }
70
+ if (direction === 'left' && event.translationX < 0) {
71
+ translate.value = event.translationX;
72
+ return;
73
+ }
74
+ if (direction === 'up') {
75
+ const isBottomPosition = position === 'bottom-center';
76
+ const rawTranslation = event.translationY * (isBottomPosition ? -1 : 1);
77
+
78
+ // Negative is the dismissal direction; dragging the other way meets
79
+ // progressive resistance instead of moving freely.
80
+ if (rawTranslation < 0) {
81
+ translate.value = rawTranslation;
82
+ } else if (rawTranslation > 0) {
83
+ translate.value = elasticResistance(rawTranslation);
84
+ }
85
+ }
86
+ }).onFinalize(() => {
87
+ 'worklet';
88
+
89
+ if (!enabled) {
90
+ return;
91
+ }
92
+ const springBack = duration => {
93
+ 'worklet';
94
+
95
+ translate.value = (0, _reactNativeReanimated.withTiming)(0, {
96
+ easing: _reactNativeReanimated.Easing.elastic(SPRING_BACK_EASING_BOUNCINESS),
97
+ duration
98
+ });
99
+ };
100
+ const dismiss = () => {
101
+ 'worklet';
102
+
103
+ translate.value = (0, _reactNativeReanimated.withTiming)(-windowWidth, {
104
+ easing: _reactNativeReanimated.Easing.inOut(_reactNativeReanimated.Easing.ease)
105
+ }, isDone => {
106
+ if (isDone) {
107
+ (0, _reactNativeReanimated.runOnJS)(onRemove)();
108
+ }
109
+ });
110
+ };
111
+ if (direction === 'left') {
112
+ if (Math.abs(translate.value) < TAP_SLOP) {
113
+ springBack();
114
+ } else if (translate.value < -windowWidth * HORIZONTAL_DISMISS_FRACTION) {
115
+ dismiss();
116
+ } else {
117
+ springBack();
118
+ }
119
+ } else if (direction === 'up') {
120
+ if (translate.value > 0) {
121
+ // Dragged against the dismissal direction — always settle back.
122
+ springBack(WRONG_DIRECTION_SPRING_DURATION);
123
+ } else if (Math.abs(translate.value) < TAP_SLOP) {
124
+ springBack();
125
+ } else {
126
+ dismiss();
127
+ }
128
+ }
129
+ (0, _reactNativeReanimated.runOnJS)(onFinalize)();
130
+ });
131
+ const tap = _reactNativeGestureHandler.Gesture.Tap().onEnd(event => {
132
+ 'worklet';
133
+
134
+ (0, _reactNativeReanimated.runOnJS)(onPress)({
135
+ x: event.x,
136
+ y: event.y
137
+ });
138
+ });
139
+ const animatedStyle = (0, _reactNativeReanimated.useAnimatedStyle)(() => {
140
+ const transform = direction === 'left' ? {
141
+ translateX: translate.value
142
+ } : {
143
+ translateY: translate.value * (position === 'bottom-center' ? -1 : 1)
144
+ };
145
+ return {
146
+ transform: [transform],
147
+ // Android composites the fade poorly against the elevation shadow, so the
148
+ // row stays opaque there and relies on the translate alone.
149
+ opacity: isAndroid ? 1 : (0, _reactNativeReanimated.interpolate)(translate.value, [0, direction === 'left' ? -windowWidth : -VERTICAL_FADE_DISTANCE], [1, 0])
150
+ };
151
+ }, [direction, translate, windowWidth, position, isAndroid]);
152
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeGestureHandler.GestureDetector, {
153
+ gesture: _reactNativeGestureHandler.Gesture.Race(tap, pan),
154
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeReanimated.default.View, {
155
+ style: [animatedStyle, unstyled ? undefined : styles.centered, styles.fullWidth, style]
156
+ // W9 — on web `LinearTransition`'s easing degrades to CSS `ease` because
157
+ // a `bezierFn` result carries no easing-name symbol for the CSS mapper.
158
+ // Accepted: the transition still runs, only its curve differs.
159
+ ,
160
+ layout: _reactNativeReanimated.LinearTransition.easing(_animations.easeInOutCircFn)
161
+ // https://reactnative.dev/docs/accessibility#aria-live-android
162
+ ,
163
+ "aria-live": important ? 'assertive' : 'polite',
164
+ children: children
165
+ })
166
+ });
167
+ };
168
+ exports.ToastSwipeHandler = ToastSwipeHandler;
169
+ const styles = _reactNative.StyleSheet.create({
170
+ centered: {
171
+ justifyContent: 'center'
172
+ },
173
+ fullWidth: {
174
+ width: '100%'
175
+ }
176
+ });
177
+
178
+ /**
179
+ * Apple-style progressive resistance: the further the drag goes the less the row
180
+ * follows it.
181
+ */
182
+ function elasticResistance(distance) {
183
+ 'worklet';
184
+
185
+ const BASE_RESISTANCE = 0.4;
186
+ const PROGRESSIVE_DAMPENING = 0.02;
187
+ return distance * BASE_RESISTANCE * (1 / (1 + distance * PROGRESSIVE_DAMPENING));
188
+ }
189
+ //# sourceMappingURL=ToastSwipeHandler.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","_interopRequireWildcard","require","_reactNative","_reactNativeGestureHandler","_reactNativeReanimated","_animations","_context","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","HORIZONTAL_DISMISS_FRACTION","TAP_SLOP","VERTICAL_FADE_DISTANCE","SPRING_BACK_EASING_BOUNCINESS","WRONG_DIRECTION_SPRING_DURATION","ToastSwipeHandler","children","onRemove","style","onBegin","onFinalize","enabled","unstyled","important","position","positionProps","onPress","width","windowWidth","useWindowDimensions","translate","useSharedValue","swipeToDismissDirection","direction","positionCtx","useToastContext","isAndroid","Platform","OS","pan","Gesture","Pan","runOnJS","onChange","event","translationX","value","isBottomPosition","rawTranslation","translationY","elasticResistance","springBack","duration","withTiming","easing","Easing","elastic","dismiss","inOut","ease","isDone","Math","abs","tap","Tap","onEnd","x","y","animatedStyle","useAnimatedStyle","transform","translateX","translateY","opacity","interpolate","jsx","GestureDetector","gesture","Race","View","undefined","styles","centered","fullWidth","layout","LinearTransition","easeInOutCircFn","exports","StyleSheet","create","justifyContent","distance","BASE_RESISTANCE","PROGRESSIVE_DAMPENING"],"sourceRoot":"../../../src","sources":["toast/ToastSwipeHandler.tsx"],"mappings":"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","ignoreList":[]}