react-native-screen-transitions 2.4.2 → 3.0.0-beta.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 (902) hide show
  1. package/README.md +85 -71
  2. package/lib/commonjs/blank-stack/components/Overlay.js +128 -0
  3. package/lib/commonjs/blank-stack/components/Overlay.js.map +1 -0
  4. package/lib/commonjs/blank-stack/components/Screens.js +64 -0
  5. package/lib/commonjs/blank-stack/components/Screens.js.map +1 -0
  6. package/lib/commonjs/blank-stack/components/StackView.js +87 -0
  7. package/lib/commonjs/blank-stack/components/StackView.js.map +1 -0
  8. package/lib/commonjs/blank-stack/hooks/use-overlay-animation.js +77 -0
  9. package/lib/commonjs/blank-stack/hooks/use-overlay-animation.js.map +1 -0
  10. package/lib/commonjs/blank-stack/index.js +13 -0
  11. package/lib/commonjs/blank-stack/index.js.map +1 -0
  12. package/lib/commonjs/blank-stack/navigators/createBlankStackNavigator.js +68 -0
  13. package/lib/commonjs/blank-stack/navigators/createBlankStackNavigator.js.map +1 -0
  14. package/lib/commonjs/blank-stack/types.js +6 -0
  15. package/lib/commonjs/blank-stack/types.js.map +1 -0
  16. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_hooks/use-closing-route-keys.js +72 -0
  17. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_hooks/use-closing-route-keys.js.map +1 -0
  18. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_hooks/use-previous.js +16 -0
  19. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_hooks/use-previous.js.map +1 -0
  20. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_hooks/use-stack-navigation-state.js +196 -0
  21. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_hooks/use-stack-navigation-state.js.map +1 -0
  22. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_types.js +6 -0
  23. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_types.js.map +1 -0
  24. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_utils/are-descriptors-equal.js +15 -0
  25. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_utils/are-descriptors-equal.js.map +1 -0
  26. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_utils/calculate-active-screens-limit.js +23 -0
  27. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_utils/calculate-active-screens-limit.js.map +1 -0
  28. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_utils/compose-descriptors.js +25 -0
  29. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_utils/compose-descriptors.js.map +1 -0
  30. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_utils/have-same-route-keys.js +14 -0
  31. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_utils/have-same-route-keys.js.map +1 -0
  32. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_utils/routes-are-identical.js +13 -0
  33. package/lib/commonjs/blank-stack/utils/with-stack-navigation/_utils/routes-are-identical.js.map +1 -0
  34. package/lib/commonjs/blank-stack/utils/with-stack-navigation/index.js +66 -0
  35. package/lib/commonjs/blank-stack/utils/with-stack-navigation/index.js.map +1 -0
  36. package/lib/commonjs/native-stack/index.js +13 -0
  37. package/lib/commonjs/native-stack/index.js.map +1 -0
  38. package/lib/commonjs/native-stack/navigators/createNativeStackNavigator.js.map +1 -0
  39. package/lib/commonjs/native-stack/types.js +6 -0
  40. package/lib/commonjs/native-stack/types.js.map +1 -0
  41. package/lib/commonjs/native-stack/utils/debounce.js.map +1 -0
  42. package/lib/commonjs/native-stack/utils/getModalRoutesKeys.js.map +1 -0
  43. package/lib/commonjs/native-stack/utils/useAnimatedHeaderHeight.js.map +1 -0
  44. package/lib/commonjs/native-stack/utils/useDismissedRouteError.js.map +1 -0
  45. package/lib/commonjs/native-stack/utils/useInvalidPreventRemoveError.js.map +1 -0
  46. package/lib/commonjs/native-stack/views/FontProcessor.js.map +1 -0
  47. package/lib/commonjs/native-stack/views/FontProcessor.native.js.map +1 -0
  48. package/lib/commonjs/native-stack/views/FooterComponent.js.map +1 -0
  49. package/lib/commonjs/native-stack/views/NativeStackView.js.map +1 -0
  50. package/lib/commonjs/native-stack/views/NativeStackView.native.js +493 -0
  51. package/lib/commonjs/native-stack/views/NativeStackView.native.js.map +1 -0
  52. package/lib/commonjs/native-stack/views/useHeaderConfigProps.js.map +1 -0
  53. package/lib/commonjs/shared/components/controllers/screen-lifecycle.js +128 -0
  54. package/lib/commonjs/shared/components/controllers/screen-lifecycle.js.map +1 -0
  55. package/lib/commonjs/shared/components/create-transition-aware-component.js.map +1 -0
  56. package/lib/commonjs/shared/components/integrations/masked-view.js.map +1 -0
  57. package/lib/commonjs/shared/components/root-transition-aware.js.map +1 -0
  58. package/lib/commonjs/shared/configs/index.js +22 -0
  59. package/lib/commonjs/shared/configs/index.js.map +1 -0
  60. package/lib/commonjs/shared/configs/presets.js.map +1 -0
  61. package/lib/commonjs/shared/configs/specs.js.map +1 -0
  62. package/lib/commonjs/shared/constants.js.map +1 -0
  63. package/lib/commonjs/shared/hooks/animation/use-associated-style.js.map +1 -0
  64. package/lib/commonjs/shared/hooks/animation/use-screen-animation.js +118 -0
  65. package/lib/commonjs/shared/hooks/animation/use-screen-animation.js.map +1 -0
  66. package/lib/commonjs/shared/hooks/bounds/use-bound-registry.js +131 -0
  67. package/lib/commonjs/shared/hooks/bounds/use-bound-registry.js.map +1 -0
  68. package/lib/commonjs/shared/hooks/gestures/use-build-gestures.js +236 -0
  69. package/lib/commonjs/shared/hooks/gestures/use-build-gestures.js.map +1 -0
  70. package/lib/commonjs/shared/hooks/gestures/use-parent-gesture-registry.js.map +1 -0
  71. package/lib/commonjs/shared/hooks/gestures/use-scroll-registry.js.map +1 -0
  72. package/lib/commonjs/shared/hooks/use-shared-value-state.js +25 -0
  73. package/lib/commonjs/shared/hooks/use-shared-value-state.js.map +1 -0
  74. package/lib/commonjs/shared/hooks/use-stable-callback-value.js.map +1 -0
  75. package/lib/commonjs/shared/hooks/use-stable-callback.js.map +1 -0
  76. package/lib/commonjs/shared/index.js +33 -0
  77. package/lib/commonjs/shared/index.js.map +1 -0
  78. package/lib/commonjs/shared/providers/gestures.js.map +1 -0
  79. package/lib/commonjs/shared/providers/keys.js +34 -0
  80. package/lib/commonjs/shared/providers/keys.js.map +1 -0
  81. package/lib/commonjs/shared/providers/screen-transition-provider.js +34 -0
  82. package/lib/commonjs/shared/providers/screen-transition-provider.js.map +1 -0
  83. package/lib/commonjs/shared/providers/transition-styles.js.map +1 -0
  84. package/lib/commonjs/shared/providers/utils/create-provider.js +39 -0
  85. package/lib/commonjs/shared/providers/utils/create-provider.js.map +1 -0
  86. package/lib/commonjs/shared/stores/animation-store.js +39 -0
  87. package/lib/commonjs/shared/stores/animation-store.js.map +1 -0
  88. package/lib/commonjs/shared/stores/bound-store/_utils.js.map +1 -0
  89. package/lib/commonjs/shared/stores/bound-store/index.js +116 -0
  90. package/lib/commonjs/shared/stores/bound-store/index.js.map +1 -0
  91. package/lib/commonjs/shared/stores/gesture-store.js +39 -0
  92. package/lib/commonjs/shared/stores/gesture-store.js.map +1 -0
  93. package/lib/commonjs/shared/stores/navigator-dismiss-state.js.map +1 -0
  94. package/lib/commonjs/shared/stores/utils/reset-stores-for-screen.js +19 -0
  95. package/lib/commonjs/shared/stores/utils/reset-stores-for-screen.js.map +1 -0
  96. package/lib/commonjs/shared/types/animation.js.map +1 -0
  97. package/lib/commonjs/shared/types/bounds.js.map +1 -0
  98. package/lib/commonjs/shared/types/core.js.map +1 -0
  99. package/lib/commonjs/shared/types/gesture.js.map +1 -0
  100. package/lib/commonjs/shared/types/utils.js.map +1 -0
  101. package/lib/commonjs/shared/utils/animation/animate.js.map +1 -0
  102. package/lib/commonjs/shared/utils/animation/derivations.js +39 -0
  103. package/lib/commonjs/shared/utils/animation/derivations.js.map +1 -0
  104. package/lib/commonjs/shared/utils/animation/start-screen-transition.js.map +1 -0
  105. package/lib/commonjs/shared/utils/bounds/_types/builder.js.map +1 -0
  106. package/lib/commonjs/shared/utils/bounds/_types/geometry.js.map +1 -0
  107. package/lib/commonjs/shared/utils/bounds/_types/get-bounds.js.map +1 -0
  108. package/lib/commonjs/shared/utils/bounds/_utils/flatten-styles.js.map +1 -0
  109. package/lib/commonjs/shared/utils/bounds/_utils/geometry.js.map +1 -0
  110. package/lib/commonjs/shared/utils/bounds/_utils/get-bounds.js.map +1 -0
  111. package/lib/commonjs/shared/utils/bounds/_utils/is-bounds-equal.js +19 -0
  112. package/lib/commonjs/shared/utils/bounds/_utils/is-bounds-equal.js.map +1 -0
  113. package/lib/commonjs/shared/utils/bounds/_utils/style-composers.js.map +1 -0
  114. package/lib/commonjs/shared/utils/bounds/_utils/styles.js.map +1 -0
  115. package/lib/commonjs/shared/utils/bounds/constants.js.map +1 -0
  116. package/lib/commonjs/shared/utils/bounds/index.js.map +1 -0
  117. package/lib/commonjs/shared/utils/gesture/apply-offset-rules.js.map +1 -0
  118. package/lib/commonjs/shared/utils/gesture/check-gesture-activation.js.map +1 -0
  119. package/lib/commonjs/shared/utils/gesture/determine-dismissal.js.map +1 -0
  120. package/lib/commonjs/shared/utils/gesture/map-gesture-to-progress.js.map +1 -0
  121. package/lib/commonjs/shared/utils/gesture/reset-gesture-values.js.map +1 -0
  122. package/lib/commonjs/shared/utils/gesture/velocity.js.map +1 -0
  123. package/lib/commonjs/shared/utils/reanimated/version.js.map +1 -0
  124. package/lib/module/blank-stack/components/Overlay.js +124 -0
  125. package/lib/module/blank-stack/components/Overlay.js.map +1 -0
  126. package/lib/module/blank-stack/components/Screens.js +58 -0
  127. package/lib/module/blank-stack/components/Screens.js.map +1 -0
  128. package/lib/module/blank-stack/components/StackView.js +83 -0
  129. package/lib/module/blank-stack/components/StackView.js.map +1 -0
  130. package/lib/module/blank-stack/hooks/use-overlay-animation.js +73 -0
  131. package/lib/module/blank-stack/hooks/use-overlay-animation.js.map +1 -0
  132. package/lib/module/blank-stack/index.js +4 -0
  133. package/lib/module/blank-stack/index.js.map +1 -0
  134. package/lib/module/blank-stack/navigators/createBlankStackNavigator.js +63 -0
  135. package/lib/module/blank-stack/navigators/createBlankStackNavigator.js.map +1 -0
  136. package/lib/module/blank-stack/types.js +4 -0
  137. package/lib/module/blank-stack/types.js.map +1 -0
  138. package/lib/module/blank-stack/utils/with-stack-navigation/_hooks/use-closing-route-keys.js +66 -0
  139. package/lib/module/blank-stack/utils/with-stack-navigation/_hooks/use-closing-route-keys.js.map +1 -0
  140. package/lib/module/blank-stack/utils/with-stack-navigation/_hooks/use-previous.js +11 -0
  141. package/lib/module/blank-stack/utils/with-stack-navigation/_hooks/use-previous.js.map +1 -0
  142. package/lib/module/blank-stack/utils/with-stack-navigation/_hooks/use-stack-navigation-state.js +190 -0
  143. package/lib/module/blank-stack/utils/with-stack-navigation/_hooks/use-stack-navigation-state.js.map +1 -0
  144. package/lib/module/blank-stack/utils/with-stack-navigation/_types.js +4 -0
  145. package/lib/module/blank-stack/utils/with-stack-navigation/_types.js.map +1 -0
  146. package/lib/module/blank-stack/utils/with-stack-navigation/_utils/are-descriptors-equal.js +10 -0
  147. package/lib/module/blank-stack/utils/with-stack-navigation/_utils/are-descriptors-equal.js.map +1 -0
  148. package/lib/module/blank-stack/utils/with-stack-navigation/_utils/calculate-active-screens-limit.js +19 -0
  149. package/lib/module/blank-stack/utils/with-stack-navigation/_utils/calculate-active-screens-limit.js.map +1 -0
  150. package/lib/module/blank-stack/utils/with-stack-navigation/_utils/compose-descriptors.js +20 -0
  151. package/lib/module/blank-stack/utils/with-stack-navigation/_utils/compose-descriptors.js.map +1 -0
  152. package/lib/module/blank-stack/utils/with-stack-navigation/_utils/have-same-route-keys.js +9 -0
  153. package/lib/module/blank-stack/utils/with-stack-navigation/_utils/have-same-route-keys.js.map +1 -0
  154. package/lib/module/blank-stack/utils/with-stack-navigation/_utils/routes-are-identical.js +8 -0
  155. package/lib/module/blank-stack/utils/with-stack-navigation/_utils/routes-are-identical.js.map +1 -0
  156. package/lib/module/blank-stack/utils/with-stack-navigation/index.js +60 -0
  157. package/lib/module/blank-stack/utils/with-stack-navigation/index.js.map +1 -0
  158. package/lib/module/native-stack/index.js +4 -0
  159. package/lib/module/native-stack/index.js.map +1 -0
  160. package/lib/module/native-stack/navigators/createNativeStackNavigator.js.map +1 -0
  161. package/lib/module/native-stack/types.js +4 -0
  162. package/lib/module/native-stack/types.js.map +1 -0
  163. package/lib/module/native-stack/utils/debounce.js.map +1 -0
  164. package/lib/module/native-stack/utils/getModalRoutesKeys.js.map +1 -0
  165. package/lib/module/native-stack/utils/useAnimatedHeaderHeight.js.map +1 -0
  166. package/lib/module/native-stack/utils/useDismissedRouteError.js.map +1 -0
  167. package/lib/module/native-stack/utils/useInvalidPreventRemoveError.js.map +1 -0
  168. package/lib/module/native-stack/views/FontProcessor.js.map +1 -0
  169. package/lib/module/native-stack/views/FontProcessor.native.js.map +1 -0
  170. package/lib/module/native-stack/views/FooterComponent.js.map +1 -0
  171. package/lib/module/native-stack/views/NativeStackView.js.map +1 -0
  172. package/lib/module/native-stack/views/NativeStackView.native.js +488 -0
  173. package/lib/module/native-stack/views/NativeStackView.native.js.map +1 -0
  174. package/lib/module/native-stack/views/useHeaderConfigProps.js.map +1 -0
  175. package/lib/module/shared/components/controllers/screen-lifecycle.js +122 -0
  176. package/lib/module/shared/components/controllers/screen-lifecycle.js.map +1 -0
  177. package/lib/module/shared/components/create-transition-aware-component.js.map +1 -0
  178. package/lib/module/shared/components/integrations/masked-view.js.map +1 -0
  179. package/lib/module/shared/components/root-transition-aware.js.map +1 -0
  180. package/lib/module/shared/configs/index.js +18 -0
  181. package/lib/module/shared/configs/index.js.map +1 -0
  182. package/lib/module/shared/configs/presets.js.map +1 -0
  183. package/lib/module/shared/configs/specs.js.map +1 -0
  184. package/lib/module/shared/constants.js.map +1 -0
  185. package/lib/module/shared/hooks/animation/use-associated-style.js.map +1 -0
  186. package/lib/module/shared/hooks/animation/use-screen-animation.js +113 -0
  187. package/lib/module/shared/hooks/animation/use-screen-animation.js.map +1 -0
  188. package/lib/module/shared/hooks/bounds/use-bound-registry.js +125 -0
  189. package/lib/module/shared/hooks/bounds/use-bound-registry.js.map +1 -0
  190. package/lib/module/shared/hooks/gestures/use-build-gestures.js +230 -0
  191. package/lib/module/shared/hooks/gestures/use-build-gestures.js.map +1 -0
  192. package/lib/module/shared/hooks/gestures/use-parent-gesture-registry.js.map +1 -0
  193. package/lib/module/shared/hooks/gestures/use-scroll-registry.js.map +1 -0
  194. package/lib/module/shared/hooks/use-shared-value-state.js +22 -0
  195. package/lib/module/shared/hooks/use-shared-value-state.js.map +1 -0
  196. package/lib/module/shared/hooks/use-stable-callback-value.js.map +1 -0
  197. package/lib/module/shared/hooks/use-stable-callback.js.map +1 -0
  198. package/lib/module/shared/index.js +22 -0
  199. package/lib/module/shared/index.js.map +1 -0
  200. package/lib/module/shared/providers/gestures.js.map +1 -0
  201. package/lib/module/shared/providers/keys.js +29 -0
  202. package/lib/module/shared/providers/keys.js.map +1 -0
  203. package/lib/module/shared/providers/screen-transition-provider.js +30 -0
  204. package/lib/module/shared/providers/screen-transition-provider.js.map +1 -0
  205. package/lib/module/shared/providers/transition-styles.js.map +1 -0
  206. package/lib/module/shared/providers/utils/create-provider.js +33 -0
  207. package/lib/module/shared/providers/utils/create-provider.js.map +1 -0
  208. package/lib/module/shared/stores/animation-store.js +33 -0
  209. package/lib/module/shared/stores/animation-store.js.map +1 -0
  210. package/lib/module/shared/stores/bound-store/_utils.js.map +1 -0
  211. package/lib/module/shared/stores/bound-store/index.js +112 -0
  212. package/lib/module/shared/stores/bound-store/index.js.map +1 -0
  213. package/lib/module/shared/stores/gesture-store.js +35 -0
  214. package/lib/module/shared/stores/gesture-store.js.map +1 -0
  215. package/lib/module/shared/stores/navigator-dismiss-state.js.map +1 -0
  216. package/lib/module/shared/stores/utils/reset-stores-for-screen.js +15 -0
  217. package/lib/module/shared/stores/utils/reset-stores-for-screen.js.map +1 -0
  218. package/lib/module/shared/types/animation.js.map +1 -0
  219. package/lib/module/shared/types/bounds.js.map +1 -0
  220. package/lib/module/shared/types/core.js.map +1 -0
  221. package/lib/module/shared/types/gesture.js.map +1 -0
  222. package/lib/module/shared/types/utils.js.map +1 -0
  223. package/lib/module/shared/utils/animation/animate.js.map +1 -0
  224. package/lib/module/shared/utils/animation/derivations.js +34 -0
  225. package/lib/module/shared/utils/animation/derivations.js.map +1 -0
  226. package/lib/module/shared/utils/animation/start-screen-transition.js.map +1 -0
  227. package/lib/module/shared/utils/bounds/_types/builder.js.map +1 -0
  228. package/lib/module/shared/utils/bounds/_types/geometry.js.map +1 -0
  229. package/lib/module/shared/utils/bounds/_types/get-bounds.js.map +1 -0
  230. package/lib/module/shared/utils/bounds/_utils/flatten-styles.js.map +1 -0
  231. package/lib/module/shared/utils/bounds/_utils/geometry.js.map +1 -0
  232. package/lib/module/shared/utils/bounds/_utils/get-bounds.js.map +1 -0
  233. package/lib/module/shared/utils/bounds/_utils/is-bounds-equal.js +14 -0
  234. package/lib/module/shared/utils/bounds/_utils/is-bounds-equal.js.map +1 -0
  235. package/lib/module/shared/utils/bounds/_utils/style-composers.js.map +1 -0
  236. package/lib/module/shared/utils/bounds/_utils/styles.js.map +1 -0
  237. package/lib/module/shared/utils/bounds/constants.js.map +1 -0
  238. package/lib/module/shared/utils/bounds/index.js.map +1 -0
  239. package/lib/module/shared/utils/gesture/apply-offset-rules.js.map +1 -0
  240. package/lib/module/shared/utils/gesture/check-gesture-activation.js.map +1 -0
  241. package/lib/module/shared/utils/gesture/determine-dismissal.js.map +1 -0
  242. package/lib/module/shared/utils/gesture/map-gesture-to-progress.js.map +1 -0
  243. package/lib/module/shared/utils/gesture/reset-gesture-values.js.map +1 -0
  244. package/lib/module/shared/utils/gesture/velocity.js.map +1 -0
  245. package/lib/module/shared/utils/reanimated/version.js.map +1 -0
  246. package/lib/typescript/blank-stack/components/Overlay.d.ts +5 -0
  247. package/lib/typescript/blank-stack/components/Overlay.d.ts.map +1 -0
  248. package/lib/typescript/blank-stack/components/Screens.d.ts +15 -0
  249. package/lib/typescript/blank-stack/components/Screens.d.ts.map +1 -0
  250. package/lib/typescript/blank-stack/components/StackView.d.ts +2 -0
  251. package/lib/typescript/blank-stack/components/StackView.d.ts.map +1 -0
  252. package/lib/typescript/blank-stack/hooks/use-overlay-animation.d.ts +12 -0
  253. package/lib/typescript/blank-stack/hooks/use-overlay-animation.d.ts.map +1 -0
  254. package/lib/typescript/blank-stack/index.d.ts +3 -0
  255. package/lib/typescript/blank-stack/index.d.ts.map +1 -0
  256. package/lib/typescript/blank-stack/navigators/createBlankStackNavigator.d.ts +16 -0
  257. package/lib/typescript/blank-stack/navigators/createBlankStackNavigator.d.ts.map +1 -0
  258. package/lib/typescript/blank-stack/types.d.ts +213 -0
  259. package/lib/typescript/blank-stack/types.d.ts.map +1 -0
  260. package/lib/typescript/blank-stack/utils/with-stack-navigation/_hooks/use-closing-route-keys.d.ts +8 -0
  261. package/lib/typescript/blank-stack/utils/with-stack-navigation/_hooks/use-closing-route-keys.d.ts.map +1 -0
  262. package/lib/typescript/blank-stack/utils/with-stack-navigation/_hooks/use-previous.d.ts +2 -0
  263. package/lib/typescript/blank-stack/utils/with-stack-navigation/_hooks/use-previous.d.ts.map +1 -0
  264. package/lib/typescript/blank-stack/utils/with-stack-navigation/_hooks/use-stack-navigation-state.d.ts +20 -0
  265. package/lib/typescript/blank-stack/utils/with-stack-navigation/_hooks/use-stack-navigation-state.d.ts.map +1 -0
  266. package/lib/typescript/blank-stack/utils/with-stack-navigation/_types.d.ts +22 -0
  267. package/lib/typescript/blank-stack/utils/with-stack-navigation/_types.d.ts.map +1 -0
  268. package/lib/typescript/blank-stack/utils/with-stack-navigation/_utils/are-descriptors-equal.d.ts +3 -0
  269. package/lib/typescript/blank-stack/utils/with-stack-navigation/_utils/are-descriptors-equal.d.ts.map +1 -0
  270. package/lib/typescript/blank-stack/utils/with-stack-navigation/_utils/calculate-active-screens-limit.d.ts +4 -0
  271. package/lib/typescript/blank-stack/utils/with-stack-navigation/_utils/calculate-active-screens-limit.d.ts.map +1 -0
  272. package/lib/typescript/blank-stack/utils/with-stack-navigation/_utils/compose-descriptors.d.ts +4 -0
  273. package/lib/typescript/blank-stack/utils/with-stack-navigation/_utils/compose-descriptors.d.ts.map +1 -0
  274. package/lib/typescript/blank-stack/utils/with-stack-navigation/_utils/have-same-route-keys.d.ts +3 -0
  275. package/lib/typescript/blank-stack/utils/with-stack-navigation/_utils/have-same-route-keys.d.ts.map +1 -0
  276. package/lib/typescript/blank-stack/utils/with-stack-navigation/_utils/routes-are-identical.d.ts +3 -0
  277. package/lib/typescript/blank-stack/utils/with-stack-navigation/_utils/routes-are-identical.d.ts.map +1 -0
  278. package/lib/typescript/blank-stack/utils/with-stack-navigation/index.d.ts +6 -0
  279. package/lib/typescript/blank-stack/utils/with-stack-navigation/index.d.ts.map +1 -0
  280. package/lib/typescript/native-stack/index.d.ts +3 -0
  281. package/lib/typescript/native-stack/index.d.ts.map +1 -0
  282. package/lib/typescript/native-stack/navigators/createNativeStackNavigator.d.ts +16 -0
  283. package/lib/typescript/native-stack/navigators/createNativeStackNavigator.d.ts.map +1 -0
  284. package/lib/typescript/native-stack/types.d.ts +651 -0
  285. package/lib/typescript/native-stack/types.d.ts.map +1 -0
  286. package/lib/typescript/native-stack/utils/debounce.d.ts.map +1 -0
  287. package/lib/typescript/native-stack/utils/getModalRoutesKeys.d.ts +4 -0
  288. package/lib/typescript/native-stack/utils/getModalRoutesKeys.d.ts.map +1 -0
  289. package/lib/typescript/native-stack/utils/useAnimatedHeaderHeight.d.ts.map +1 -0
  290. package/lib/typescript/native-stack/utils/useDismissedRouteError.d.ts.map +1 -0
  291. package/lib/typescript/native-stack/utils/useInvalidPreventRemoveError.d.ts +3 -0
  292. package/lib/typescript/native-stack/utils/useInvalidPreventRemoveError.d.ts.map +1 -0
  293. package/lib/typescript/native-stack/views/FontProcessor.d.ts.map +1 -0
  294. package/lib/typescript/native-stack/views/FontProcessor.native.d.ts.map +1 -0
  295. package/lib/typescript/native-stack/views/FooterComponent.d.ts.map +1 -0
  296. package/lib/typescript/native-stack/views/NativeStackView.d.ts +11 -0
  297. package/lib/typescript/native-stack/views/NativeStackView.d.ts.map +1 -0
  298. package/lib/typescript/native-stack/views/NativeStackView.native.d.ts +11 -0
  299. package/lib/typescript/native-stack/views/NativeStackView.native.d.ts.map +1 -0
  300. package/lib/typescript/native-stack/views/useHeaderConfigProps.d.ts +44 -0
  301. package/lib/typescript/native-stack/views/useHeaderConfigProps.d.ts.map +1 -0
  302. package/lib/typescript/shared/components/controllers/screen-lifecycle.d.ts +12 -0
  303. package/lib/typescript/shared/components/controllers/screen-lifecycle.d.ts.map +1 -0
  304. package/lib/typescript/shared/components/create-transition-aware-component.d.ts.map +1 -0
  305. package/lib/typescript/shared/components/integrations/masked-view.d.ts.map +1 -0
  306. package/lib/typescript/shared/components/root-transition-aware.d.ts.map +1 -0
  307. package/lib/typescript/shared/configs/index.d.ts +16 -0
  308. package/lib/typescript/shared/configs/index.d.ts.map +1 -0
  309. package/lib/typescript/shared/configs/presets.d.ts +12 -0
  310. package/lib/typescript/shared/configs/presets.d.ts.map +1 -0
  311. package/lib/typescript/shared/configs/specs.d.ts.map +1 -0
  312. package/lib/typescript/shared/constants.d.ts +57 -0
  313. package/lib/typescript/shared/constants.d.ts.map +1 -0
  314. package/lib/typescript/shared/hooks/animation/use-associated-style.d.ts.map +1 -0
  315. package/lib/typescript/shared/hooks/animation/use-screen-animation.d.ts.map +1 -0
  316. package/lib/typescript/shared/hooks/bounds/use-bound-registry.d.ts.map +1 -0
  317. package/lib/typescript/shared/hooks/gestures/use-build-gestures.d.ts.map +1 -0
  318. package/lib/typescript/shared/hooks/gestures/use-parent-gesture-registry.d.ts.map +1 -0
  319. package/lib/typescript/shared/hooks/gestures/use-scroll-registry.d.ts.map +1 -0
  320. package/lib/typescript/shared/hooks/use-shared-value-state.d.ts +7 -0
  321. package/lib/typescript/shared/hooks/use-shared-value-state.d.ts.map +1 -0
  322. package/lib/typescript/shared/hooks/use-stable-callback-value.d.ts.map +1 -0
  323. package/lib/typescript/shared/hooks/use-stable-callback.d.ts.map +1 -0
  324. package/lib/typescript/shared/index.d.ts +1323 -0
  325. package/lib/typescript/shared/index.d.ts.map +1 -0
  326. package/lib/typescript/shared/providers/gestures.d.ts.map +1 -0
  327. package/lib/typescript/shared/providers/keys.d.ts +18 -0
  328. package/lib/typescript/shared/providers/keys.d.ts.map +1 -0
  329. package/lib/typescript/shared/providers/screen-transition-provider.d.ts +14 -0
  330. package/lib/typescript/shared/providers/screen-transition-provider.d.ts.map +1 -0
  331. package/lib/typescript/shared/providers/transition-styles.d.ts.map +1 -0
  332. package/lib/typescript/shared/providers/utils/create-provider.d.ts +32 -0
  333. package/lib/typescript/shared/providers/utils/create-provider.d.ts.map +1 -0
  334. package/lib/typescript/shared/stores/animation-store.d.ts +17 -0
  335. package/lib/typescript/shared/stores/animation-store.d.ts.map +1 -0
  336. package/lib/typescript/shared/stores/bound-store/_utils.d.ts.map +1 -0
  337. package/lib/typescript/shared/stores/bound-store/index.d.ts +22 -0
  338. package/lib/typescript/shared/stores/bound-store/index.d.ts.map +1 -0
  339. package/lib/typescript/shared/stores/gesture-store.d.ts +23 -0
  340. package/lib/typescript/shared/stores/gesture-store.d.ts.map +1 -0
  341. package/lib/typescript/shared/stores/navigator-dismiss-state.d.ts.map +1 -0
  342. package/lib/typescript/shared/stores/utils/reset-stores-for-screen.d.ts +6 -0
  343. package/lib/typescript/shared/stores/utils/reset-stores-for-screen.d.ts.map +1 -0
  344. package/lib/typescript/shared/types/animation.d.ts +78 -0
  345. package/lib/typescript/shared/types/animation.d.ts.map +1 -0
  346. package/lib/typescript/shared/types/bounds.d.ts.map +1 -0
  347. package/lib/typescript/shared/types/core.d.ts +91 -0
  348. package/lib/typescript/shared/types/core.d.ts.map +1 -0
  349. package/lib/typescript/shared/types/gesture.d.ts.map +1 -0
  350. package/lib/typescript/shared/types/utils.d.ts.map +1 -0
  351. package/lib/typescript/shared/utils/animation/animate.d.ts.map +1 -0
  352. package/lib/typescript/shared/utils/animation/derivations.d.ts.map +1 -0
  353. package/lib/typescript/shared/utils/animation/start-screen-transition.d.ts +13 -0
  354. package/lib/typescript/shared/utils/animation/start-screen-transition.d.ts.map +1 -0
  355. package/lib/typescript/shared/utils/bounds/_types/builder.d.ts +118 -0
  356. package/lib/typescript/shared/utils/bounds/_types/builder.d.ts.map +1 -0
  357. package/lib/typescript/shared/utils/bounds/_types/geometry.d.ts.map +1 -0
  358. package/lib/typescript/shared/utils/bounds/_types/get-bounds.d.ts.map +1 -0
  359. package/lib/typescript/shared/utils/bounds/_utils/flatten-styles.d.ts.map +1 -0
  360. package/lib/typescript/shared/utils/bounds/_utils/geometry.d.ts +27 -0
  361. package/lib/typescript/shared/utils/bounds/_utils/geometry.d.ts.map +1 -0
  362. package/lib/typescript/shared/utils/bounds/_utils/get-bounds.d.ts.map +1 -0
  363. package/lib/typescript/shared/utils/bounds/_utils/is-bounds-equal.d.ts.map +1 -0
  364. package/lib/typescript/shared/utils/bounds/_utils/style-composers.d.ts.map +1 -0
  365. package/lib/typescript/shared/utils/bounds/_utils/styles.d.ts.map +1 -0
  366. package/lib/typescript/shared/utils/bounds/constants.d.ts +7 -0
  367. package/lib/typescript/shared/utils/bounds/constants.d.ts.map +1 -0
  368. package/lib/typescript/shared/utils/bounds/index.d.ts +13 -0
  369. package/lib/typescript/shared/utils/bounds/index.d.ts.map +1 -0
  370. package/lib/typescript/shared/utils/gesture/apply-offset-rules.d.ts +38 -0
  371. package/lib/typescript/shared/utils/gesture/apply-offset-rules.d.ts.map +1 -0
  372. package/lib/typescript/shared/utils/gesture/check-gesture-activation.d.ts +38 -0
  373. package/lib/typescript/shared/utils/gesture/check-gesture-activation.d.ts.map +1 -0
  374. package/lib/typescript/shared/utils/gesture/determine-dismissal.d.ts.map +1 -0
  375. package/lib/typescript/shared/utils/gesture/map-gesture-to-progress.d.ts.map +1 -0
  376. package/lib/typescript/shared/utils/gesture/reset-gesture-values.d.ts +16 -0
  377. package/lib/typescript/shared/utils/gesture/reset-gesture-values.d.ts.map +1 -0
  378. package/lib/typescript/shared/utils/gesture/velocity.d.ts +25 -0
  379. package/lib/typescript/shared/utils/gesture/velocity.d.ts.map +1 -0
  380. package/lib/typescript/shared/utils/reanimated/version.d.ts.map +1 -0
  381. package/package.json +37 -5
  382. package/src/blank-stack/components/Overlay.tsx +134 -0
  383. package/src/blank-stack/components/Screens.tsx +96 -0
  384. package/src/blank-stack/components/StackView.tsx +102 -0
  385. package/src/blank-stack/hooks/use-overlay-animation.tsx +101 -0
  386. package/src/blank-stack/index.ts +10 -0
  387. package/src/blank-stack/navigators/createBlankStackNavigator.tsx +111 -0
  388. package/src/blank-stack/types.ts +267 -0
  389. package/src/blank-stack/utils/with-stack-navigation/_hooks/use-closing-route-keys.tsx +71 -0
  390. package/src/blank-stack/utils/with-stack-navigation/_hooks/use-previous.tsx +11 -0
  391. package/src/blank-stack/utils/with-stack-navigation/_hooks/use-stack-navigation-state.tsx +267 -0
  392. package/src/blank-stack/utils/with-stack-navigation/_types.ts +35 -0
  393. package/src/blank-stack/utils/with-stack-navigation/_utils/are-descriptors-equal.ts +15 -0
  394. package/src/blank-stack/utils/with-stack-navigation/_utils/calculate-active-screens-limit.ts +29 -0
  395. package/src/blank-stack/utils/with-stack-navigation/_utils/compose-descriptors.ts +24 -0
  396. package/src/blank-stack/utils/with-stack-navigation/_utils/have-same-route-keys.ts +12 -0
  397. package/src/blank-stack/utils/with-stack-navigation/_utils/routes-are-identical.ts +11 -0
  398. package/src/blank-stack/utils/with-stack-navigation/index.tsx +80 -0
  399. package/src/native-stack/index.ts +12 -0
  400. package/src/native-stack/navigators/createNativeStackNavigator.tsx +112 -0
  401. package/src/native-stack/types.ts +711 -0
  402. package/src/native-stack/utils/getModalRoutesKeys.ts +21 -0
  403. package/src/native-stack/utils/useInvalidPreventRemoveError.tsx +31 -0
  404. package/src/native-stack/views/NativeStackView.native.tsx +655 -0
  405. package/src/native-stack/views/NativeStackView.tsx +214 -0
  406. package/src/native-stack/views/useHeaderConfigProps.tsx +295 -0
  407. package/src/shared/__tests__/gesture.velocity.test.ts +139 -0
  408. package/src/shared/components/controllers/screen-lifecycle.tsx +139 -0
  409. package/src/shared/configs/index.ts +26 -0
  410. package/src/shared/configs/presets.ts +628 -0
  411. package/src/shared/constants.ts +108 -0
  412. package/src/shared/hooks/animation/use-screen-animation.tsx +150 -0
  413. package/src/shared/hooks/bounds/use-bound-registry.tsx +153 -0
  414. package/src/shared/hooks/gestures/use-build-gestures.tsx +324 -0
  415. package/src/shared/hooks/use-shared-value-state.ts +28 -0
  416. package/src/shared/index.ts +21 -0
  417. package/src/shared/providers/keys.tsx +57 -0
  418. package/src/shared/providers/screen-transition-provider.tsx +41 -0
  419. package/src/shared/providers/utils/create-provider.ts +64 -0
  420. package/src/shared/stores/animation-store.ts +45 -0
  421. package/src/shared/stores/bound-store/index.ts +125 -0
  422. package/src/shared/stores/gesture-store.ts +60 -0
  423. package/src/shared/stores/utils/reset-stores-for-screen.ts +13 -0
  424. package/src/shared/types/animation.ts +90 -0
  425. package/src/shared/types/core.ts +97 -0
  426. package/src/shared/utils/animation/derivations.ts +40 -0
  427. package/src/shared/utils/animation/start-screen-transition.ts +61 -0
  428. package/src/shared/utils/bounds/_types/builder.ts +151 -0
  429. package/src/shared/utils/bounds/_utils/geometry.ts +166 -0
  430. package/src/shared/utils/bounds/_utils/is-bounds-equal.ts +24 -0
  431. package/src/shared/utils/bounds/constants.ts +40 -0
  432. package/src/shared/utils/bounds/index.ts +218 -0
  433. package/src/shared/utils/gesture/apply-offset-rules.ts +312 -0
  434. package/src/shared/utils/gesture/check-gesture-activation.ts +310 -0
  435. package/src/shared/utils/gesture/reset-gesture-values.ts +67 -0
  436. package/src/shared/utils/gesture/velocity.ts +143 -0
  437. package/lib/commonjs/__configs__/index.js +0 -22
  438. package/lib/commonjs/__configs__/index.js.map +0 -1
  439. package/lib/commonjs/__configs__/presets.js.map +0 -1
  440. package/lib/commonjs/__configs__/specs.js.map +0 -1
  441. package/lib/commonjs/components/controllers/screen-lifecycle.js +0 -71
  442. package/lib/commonjs/components/controllers/screen-lifecycle.js.map +0 -1
  443. package/lib/commonjs/components/create-transition-aware-component.js.map +0 -1
  444. package/lib/commonjs/components/integrations/masked-view.js.map +0 -1
  445. package/lib/commonjs/components/root-transition-aware.js.map +0 -1
  446. package/lib/commonjs/constants.js.map +0 -1
  447. package/lib/commonjs/hooks/animation/use-associated-style.js.map +0 -1
  448. package/lib/commonjs/hooks/animation/use-screen-animation.js +0 -118
  449. package/lib/commonjs/hooks/animation/use-screen-animation.js.map +0 -1
  450. package/lib/commonjs/hooks/bounds/use-bound-registry.js +0 -131
  451. package/lib/commonjs/hooks/bounds/use-bound-registry.js.map +0 -1
  452. package/lib/commonjs/hooks/gestures/use-build-gestures.js +0 -236
  453. package/lib/commonjs/hooks/gestures/use-build-gestures.js.map +0 -1
  454. package/lib/commonjs/hooks/gestures/use-parent-gesture-registry.js.map +0 -1
  455. package/lib/commonjs/hooks/gestures/use-scroll-registry.js.map +0 -1
  456. package/lib/commonjs/hooks/use-stable-callback-value.js.map +0 -1
  457. package/lib/commonjs/hooks/use-stable-callback.js.map +0 -1
  458. package/lib/commonjs/index.js +0 -40
  459. package/lib/commonjs/index.js.map +0 -1
  460. package/lib/commonjs/integrations/native-stack/navigators/createNativeStackNavigator.js.map +0 -1
  461. package/lib/commonjs/integrations/native-stack/utils/debounce.js.map +0 -1
  462. package/lib/commonjs/integrations/native-stack/utils/getModalRoutesKeys.js.map +0 -1
  463. package/lib/commonjs/integrations/native-stack/utils/useAnimatedHeaderHeight.js.map +0 -1
  464. package/lib/commonjs/integrations/native-stack/utils/useDismissedRouteError.js.map +0 -1
  465. package/lib/commonjs/integrations/native-stack/utils/useInvalidPreventRemoveError.js.map +0 -1
  466. package/lib/commonjs/integrations/native-stack/views/FontProcessor.js.map +0 -1
  467. package/lib/commonjs/integrations/native-stack/views/FontProcessor.native.js.map +0 -1
  468. package/lib/commonjs/integrations/native-stack/views/FooterComponent.js.map +0 -1
  469. package/lib/commonjs/integrations/native-stack/views/NativeStackView.js.map +0 -1
  470. package/lib/commonjs/integrations/native-stack/views/NativeStackView.native.js +0 -488
  471. package/lib/commonjs/integrations/native-stack/views/NativeStackView.native.js.map +0 -1
  472. package/lib/commonjs/integrations/native-stack/views/useHeaderConfigProps.js.map +0 -1
  473. package/lib/commonjs/providers/gestures.js.map +0 -1
  474. package/lib/commonjs/providers/keys.js +0 -35
  475. package/lib/commonjs/providers/keys.js.map +0 -1
  476. package/lib/commonjs/providers/screen-transition-provider.js +0 -34
  477. package/lib/commonjs/providers/screen-transition-provider.js.map +0 -1
  478. package/lib/commonjs/providers/transition-styles.js.map +0 -1
  479. package/lib/commonjs/stores/animations.js +0 -39
  480. package/lib/commonjs/stores/animations.js.map +0 -1
  481. package/lib/commonjs/stores/bounds/_utils.js.map +0 -1
  482. package/lib/commonjs/stores/bounds/index.js +0 -116
  483. package/lib/commonjs/stores/bounds/index.js.map +0 -1
  484. package/lib/commonjs/stores/gestures.js +0 -39
  485. package/lib/commonjs/stores/gestures.js.map +0 -1
  486. package/lib/commonjs/stores/navigator-dismiss-state.js.map +0 -1
  487. package/lib/commonjs/stores/utils/reset-stores-for-screen.js +0 -19
  488. package/lib/commonjs/stores/utils/reset-stores-for-screen.js.map +0 -1
  489. package/lib/commonjs/types/animation.js.map +0 -1
  490. package/lib/commonjs/types/bounds.js.map +0 -1
  491. package/lib/commonjs/types/core.js.map +0 -1
  492. package/lib/commonjs/types/gesture.js.map +0 -1
  493. package/lib/commonjs/types/navigator.js +0 -6
  494. package/lib/commonjs/types/navigator.js.map +0 -1
  495. package/lib/commonjs/types/utils.js.map +0 -1
  496. package/lib/commonjs/utils/animation/animate.js.map +0 -1
  497. package/lib/commonjs/utils/animation/derivations.js +0 -39
  498. package/lib/commonjs/utils/animation/derivations.js.map +0 -1
  499. package/lib/commonjs/utils/animation/start-screen-transition.js.map +0 -1
  500. package/lib/commonjs/utils/bounds/_types/builder.js.map +0 -1
  501. package/lib/commonjs/utils/bounds/_types/geometry.js.map +0 -1
  502. package/lib/commonjs/utils/bounds/_types/get-bounds.js.map +0 -1
  503. package/lib/commonjs/utils/bounds/_utils/flatten-styles.js.map +0 -1
  504. package/lib/commonjs/utils/bounds/_utils/geometry.js.map +0 -1
  505. package/lib/commonjs/utils/bounds/_utils/get-bounds.js.map +0 -1
  506. package/lib/commonjs/utils/bounds/_utils/is-bounds-equal.js +0 -19
  507. package/lib/commonjs/utils/bounds/_utils/is-bounds-equal.js.map +0 -1
  508. package/lib/commonjs/utils/bounds/_utils/style-composers.js.map +0 -1
  509. package/lib/commonjs/utils/bounds/_utils/styles.js.map +0 -1
  510. package/lib/commonjs/utils/bounds/constants.js.map +0 -1
  511. package/lib/commonjs/utils/bounds/index.js.map +0 -1
  512. package/lib/commonjs/utils/gesture/apply-offset-rules.js.map +0 -1
  513. package/lib/commonjs/utils/gesture/check-gesture-activation.js.map +0 -1
  514. package/lib/commonjs/utils/gesture/determine-dismissal.js.map +0 -1
  515. package/lib/commonjs/utils/gesture/map-gesture-to-progress.js.map +0 -1
  516. package/lib/commonjs/utils/gesture/reset-gesture-values.js.map +0 -1
  517. package/lib/commonjs/utils/gesture/velocity.js.map +0 -1
  518. package/lib/commonjs/utils/reanimated/version.js.map +0 -1
  519. package/lib/module/__configs__/index.js +0 -18
  520. package/lib/module/__configs__/index.js.map +0 -1
  521. package/lib/module/__configs__/presets.js.map +0 -1
  522. package/lib/module/__configs__/specs.js.map +0 -1
  523. package/lib/module/components/controllers/screen-lifecycle.js +0 -65
  524. package/lib/module/components/controllers/screen-lifecycle.js.map +0 -1
  525. package/lib/module/components/create-transition-aware-component.js.map +0 -1
  526. package/lib/module/components/integrations/masked-view.js.map +0 -1
  527. package/lib/module/components/root-transition-aware.js.map +0 -1
  528. package/lib/module/constants.js.map +0 -1
  529. package/lib/module/hooks/animation/use-associated-style.js.map +0 -1
  530. package/lib/module/hooks/animation/use-screen-animation.js +0 -113
  531. package/lib/module/hooks/animation/use-screen-animation.js.map +0 -1
  532. package/lib/module/hooks/bounds/use-bound-registry.js +0 -125
  533. package/lib/module/hooks/bounds/use-bound-registry.js.map +0 -1
  534. package/lib/module/hooks/gestures/use-build-gestures.js +0 -230
  535. package/lib/module/hooks/gestures/use-build-gestures.js.map +0 -1
  536. package/lib/module/hooks/gestures/use-parent-gesture-registry.js.map +0 -1
  537. package/lib/module/hooks/gestures/use-scroll-registry.js.map +0 -1
  538. package/lib/module/hooks/use-stable-callback-value.js.map +0 -1
  539. package/lib/module/hooks/use-stable-callback.js.map +0 -1
  540. package/lib/module/index.js +0 -23
  541. package/lib/module/index.js.map +0 -1
  542. package/lib/module/integrations/native-stack/navigators/createNativeStackNavigator.js.map +0 -1
  543. package/lib/module/integrations/native-stack/utils/debounce.js.map +0 -1
  544. package/lib/module/integrations/native-stack/utils/getModalRoutesKeys.js.map +0 -1
  545. package/lib/module/integrations/native-stack/utils/useAnimatedHeaderHeight.js.map +0 -1
  546. package/lib/module/integrations/native-stack/utils/useDismissedRouteError.js.map +0 -1
  547. package/lib/module/integrations/native-stack/utils/useInvalidPreventRemoveError.js.map +0 -1
  548. package/lib/module/integrations/native-stack/views/FontProcessor.js.map +0 -1
  549. package/lib/module/integrations/native-stack/views/FontProcessor.native.js.map +0 -1
  550. package/lib/module/integrations/native-stack/views/FooterComponent.js.map +0 -1
  551. package/lib/module/integrations/native-stack/views/NativeStackView.js.map +0 -1
  552. package/lib/module/integrations/native-stack/views/NativeStackView.native.js +0 -483
  553. package/lib/module/integrations/native-stack/views/NativeStackView.native.js.map +0 -1
  554. package/lib/module/integrations/native-stack/views/useHeaderConfigProps.js.map +0 -1
  555. package/lib/module/providers/gestures.js.map +0 -1
  556. package/lib/module/providers/keys.js +0 -29
  557. package/lib/module/providers/keys.js.map +0 -1
  558. package/lib/module/providers/screen-transition-provider.js +0 -30
  559. package/lib/module/providers/screen-transition-provider.js.map +0 -1
  560. package/lib/module/providers/transition-styles.js.map +0 -1
  561. package/lib/module/stores/animations.js +0 -33
  562. package/lib/module/stores/animations.js.map +0 -1
  563. package/lib/module/stores/bounds/_utils.js.map +0 -1
  564. package/lib/module/stores/bounds/index.js +0 -112
  565. package/lib/module/stores/bounds/index.js.map +0 -1
  566. package/lib/module/stores/gestures.js +0 -35
  567. package/lib/module/stores/gestures.js.map +0 -1
  568. package/lib/module/stores/navigator-dismiss-state.js.map +0 -1
  569. package/lib/module/stores/utils/reset-stores-for-screen.js +0 -15
  570. package/lib/module/stores/utils/reset-stores-for-screen.js.map +0 -1
  571. package/lib/module/types/animation.js.map +0 -1
  572. package/lib/module/types/bounds.js.map +0 -1
  573. package/lib/module/types/core.js.map +0 -1
  574. package/lib/module/types/gesture.js.map +0 -1
  575. package/lib/module/types/navigator.js +0 -4
  576. package/lib/module/types/navigator.js.map +0 -1
  577. package/lib/module/types/utils.js.map +0 -1
  578. package/lib/module/utils/animation/animate.js.map +0 -1
  579. package/lib/module/utils/animation/derivations.js +0 -34
  580. package/lib/module/utils/animation/derivations.js.map +0 -1
  581. package/lib/module/utils/animation/start-screen-transition.js.map +0 -1
  582. package/lib/module/utils/bounds/_types/builder.js.map +0 -1
  583. package/lib/module/utils/bounds/_types/geometry.js.map +0 -1
  584. package/lib/module/utils/bounds/_types/get-bounds.js.map +0 -1
  585. package/lib/module/utils/bounds/_utils/flatten-styles.js.map +0 -1
  586. package/lib/module/utils/bounds/_utils/geometry.js.map +0 -1
  587. package/lib/module/utils/bounds/_utils/get-bounds.js.map +0 -1
  588. package/lib/module/utils/bounds/_utils/is-bounds-equal.js +0 -14
  589. package/lib/module/utils/bounds/_utils/is-bounds-equal.js.map +0 -1
  590. package/lib/module/utils/bounds/_utils/style-composers.js.map +0 -1
  591. package/lib/module/utils/bounds/_utils/styles.js.map +0 -1
  592. package/lib/module/utils/bounds/constants.js.map +0 -1
  593. package/lib/module/utils/bounds/index.js.map +0 -1
  594. package/lib/module/utils/gesture/apply-offset-rules.js.map +0 -1
  595. package/lib/module/utils/gesture/check-gesture-activation.js.map +0 -1
  596. package/lib/module/utils/gesture/determine-dismissal.js.map +0 -1
  597. package/lib/module/utils/gesture/map-gesture-to-progress.js.map +0 -1
  598. package/lib/module/utils/gesture/reset-gesture-values.js.map +0 -1
  599. package/lib/module/utils/gesture/velocity.js.map +0 -1
  600. package/lib/module/utils/reanimated/version.js.map +0 -1
  601. package/lib/typescript/__configs__/index.d.ts +0 -16
  602. package/lib/typescript/__configs__/index.d.ts.map +0 -1
  603. package/lib/typescript/__configs__/presets.d.ts +0 -12
  604. package/lib/typescript/__configs__/presets.d.ts.map +0 -1
  605. package/lib/typescript/__configs__/specs.d.ts.map +0 -1
  606. package/lib/typescript/components/controllers/screen-lifecycle.d.ts +0 -6
  607. package/lib/typescript/components/controllers/screen-lifecycle.d.ts.map +0 -1
  608. package/lib/typescript/components/create-transition-aware-component.d.ts.map +0 -1
  609. package/lib/typescript/components/integrations/masked-view.d.ts.map +0 -1
  610. package/lib/typescript/components/root-transition-aware.d.ts.map +0 -1
  611. package/lib/typescript/constants.d.ts +0 -57
  612. package/lib/typescript/constants.d.ts.map +0 -1
  613. package/lib/typescript/hooks/animation/use-associated-style.d.ts.map +0 -1
  614. package/lib/typescript/hooks/animation/use-screen-animation.d.ts.map +0 -1
  615. package/lib/typescript/hooks/bounds/use-bound-registry.d.ts.map +0 -1
  616. package/lib/typescript/hooks/gestures/use-build-gestures.d.ts.map +0 -1
  617. package/lib/typescript/hooks/gestures/use-parent-gesture-registry.d.ts.map +0 -1
  618. package/lib/typescript/hooks/gestures/use-scroll-registry.d.ts.map +0 -1
  619. package/lib/typescript/hooks/use-stable-callback-value.d.ts.map +0 -1
  620. package/lib/typescript/hooks/use-stable-callback.d.ts.map +0 -1
  621. package/lib/typescript/index.d.ts +0 -1325
  622. package/lib/typescript/index.d.ts.map +0 -1
  623. package/lib/typescript/integrations/native-stack/navigators/createNativeStackNavigator.d.ts +0 -16
  624. package/lib/typescript/integrations/native-stack/navigators/createNativeStackNavigator.d.ts.map +0 -1
  625. package/lib/typescript/integrations/native-stack/utils/debounce.d.ts.map +0 -1
  626. package/lib/typescript/integrations/native-stack/utils/getModalRoutesKeys.d.ts +0 -4
  627. package/lib/typescript/integrations/native-stack/utils/getModalRoutesKeys.d.ts.map +0 -1
  628. package/lib/typescript/integrations/native-stack/utils/useAnimatedHeaderHeight.d.ts.map +0 -1
  629. package/lib/typescript/integrations/native-stack/utils/useDismissedRouteError.d.ts.map +0 -1
  630. package/lib/typescript/integrations/native-stack/utils/useInvalidPreventRemoveError.d.ts +0 -3
  631. package/lib/typescript/integrations/native-stack/utils/useInvalidPreventRemoveError.d.ts.map +0 -1
  632. package/lib/typescript/integrations/native-stack/views/FontProcessor.d.ts.map +0 -1
  633. package/lib/typescript/integrations/native-stack/views/FontProcessor.native.d.ts.map +0 -1
  634. package/lib/typescript/integrations/native-stack/views/FooterComponent.d.ts.map +0 -1
  635. package/lib/typescript/integrations/native-stack/views/NativeStackView.d.ts +0 -11
  636. package/lib/typescript/integrations/native-stack/views/NativeStackView.d.ts.map +0 -1
  637. package/lib/typescript/integrations/native-stack/views/NativeStackView.native.d.ts +0 -11
  638. package/lib/typescript/integrations/native-stack/views/NativeStackView.native.d.ts.map +0 -1
  639. package/lib/typescript/integrations/native-stack/views/useHeaderConfigProps.d.ts +0 -44
  640. package/lib/typescript/integrations/native-stack/views/useHeaderConfigProps.d.ts.map +0 -1
  641. package/lib/typescript/providers/gestures.d.ts.map +0 -1
  642. package/lib/typescript/providers/keys.d.ts +0 -16
  643. package/lib/typescript/providers/keys.d.ts.map +0 -1
  644. package/lib/typescript/providers/screen-transition-provider.d.ts +0 -11
  645. package/lib/typescript/providers/screen-transition-provider.d.ts.map +0 -1
  646. package/lib/typescript/providers/transition-styles.d.ts.map +0 -1
  647. package/lib/typescript/stores/animations.d.ts +0 -17
  648. package/lib/typescript/stores/animations.d.ts.map +0 -1
  649. package/lib/typescript/stores/bounds/_utils.d.ts.map +0 -1
  650. package/lib/typescript/stores/bounds/index.d.ts +0 -22
  651. package/lib/typescript/stores/bounds/index.d.ts.map +0 -1
  652. package/lib/typescript/stores/gestures.d.ts +0 -23
  653. package/lib/typescript/stores/gestures.d.ts.map +0 -1
  654. package/lib/typescript/stores/navigator-dismiss-state.d.ts.map +0 -1
  655. package/lib/typescript/stores/utils/reset-stores-for-screen.d.ts +0 -6
  656. package/lib/typescript/stores/utils/reset-stores-for-screen.d.ts.map +0 -1
  657. package/lib/typescript/types/animation.d.ts +0 -70
  658. package/lib/typescript/types/animation.d.ts.map +0 -1
  659. package/lib/typescript/types/bounds.d.ts.map +0 -1
  660. package/lib/typescript/types/core.d.ts +0 -47
  661. package/lib/typescript/types/core.d.ts.map +0 -1
  662. package/lib/typescript/types/gesture.d.ts.map +0 -1
  663. package/lib/typescript/types/navigator.d.ts +0 -691
  664. package/lib/typescript/types/navigator.d.ts.map +0 -1
  665. package/lib/typescript/types/utils.d.ts.map +0 -1
  666. package/lib/typescript/utils/animation/animate.d.ts.map +0 -1
  667. package/lib/typescript/utils/animation/derivations.d.ts.map +0 -1
  668. package/lib/typescript/utils/animation/start-screen-transition.d.ts +0 -13
  669. package/lib/typescript/utils/animation/start-screen-transition.d.ts.map +0 -1
  670. package/lib/typescript/utils/bounds/_types/builder.d.ts +0 -118
  671. package/lib/typescript/utils/bounds/_types/builder.d.ts.map +0 -1
  672. package/lib/typescript/utils/bounds/_types/geometry.d.ts.map +0 -1
  673. package/lib/typescript/utils/bounds/_types/get-bounds.d.ts.map +0 -1
  674. package/lib/typescript/utils/bounds/_utils/flatten-styles.d.ts.map +0 -1
  675. package/lib/typescript/utils/bounds/_utils/geometry.d.ts +0 -27
  676. package/lib/typescript/utils/bounds/_utils/geometry.d.ts.map +0 -1
  677. package/lib/typescript/utils/bounds/_utils/get-bounds.d.ts.map +0 -1
  678. package/lib/typescript/utils/bounds/_utils/is-bounds-equal.d.ts.map +0 -1
  679. package/lib/typescript/utils/bounds/_utils/style-composers.d.ts.map +0 -1
  680. package/lib/typescript/utils/bounds/_utils/styles.d.ts.map +0 -1
  681. package/lib/typescript/utils/bounds/constants.d.ts +0 -7
  682. package/lib/typescript/utils/bounds/constants.d.ts.map +0 -1
  683. package/lib/typescript/utils/bounds/index.d.ts +0 -13
  684. package/lib/typescript/utils/bounds/index.d.ts.map +0 -1
  685. package/lib/typescript/utils/gesture/apply-offset-rules.d.ts +0 -38
  686. package/lib/typescript/utils/gesture/apply-offset-rules.d.ts.map +0 -1
  687. package/lib/typescript/utils/gesture/check-gesture-activation.d.ts +0 -38
  688. package/lib/typescript/utils/gesture/check-gesture-activation.d.ts.map +0 -1
  689. package/lib/typescript/utils/gesture/determine-dismissal.d.ts.map +0 -1
  690. package/lib/typescript/utils/gesture/map-gesture-to-progress.d.ts.map +0 -1
  691. package/lib/typescript/utils/gesture/reset-gesture-values.d.ts +0 -16
  692. package/lib/typescript/utils/gesture/reset-gesture-values.d.ts.map +0 -1
  693. package/lib/typescript/utils/gesture/velocity.d.ts +0 -25
  694. package/lib/typescript/utils/gesture/velocity.d.ts.map +0 -1
  695. package/lib/typescript/utils/reanimated/version.d.ts.map +0 -1
  696. package/src/__configs__/index.ts +0 -26
  697. package/src/__configs__/presets.ts +0 -628
  698. package/src/__tests__/gesture.velocity.test.ts +0 -138
  699. package/src/components/controllers/screen-lifecycle.tsx +0 -78
  700. package/src/constants.ts +0 -108
  701. package/src/hooks/animation/use-screen-animation.tsx +0 -151
  702. package/src/hooks/bounds/use-bound-registry.tsx +0 -159
  703. package/src/hooks/gestures/use-build-gestures.tsx +0 -324
  704. package/src/index.ts +0 -34
  705. package/src/integrations/native-stack/navigators/createNativeStackNavigator.tsx +0 -112
  706. package/src/integrations/native-stack/utils/getModalRoutesKeys.ts +0 -21
  707. package/src/integrations/native-stack/utils/useInvalidPreventRemoveError.tsx +0 -31
  708. package/src/integrations/native-stack/views/NativeStackView.native.tsx +0 -650
  709. package/src/integrations/native-stack/views/NativeStackView.tsx +0 -214
  710. package/src/integrations/native-stack/views/useHeaderConfigProps.tsx +0 -295
  711. package/src/providers/keys.tsx +0 -38
  712. package/src/providers/screen-transition-provider.tsx +0 -33
  713. package/src/stores/animations.ts +0 -45
  714. package/src/stores/bounds/index.ts +0 -125
  715. package/src/stores/gestures.ts +0 -60
  716. package/src/stores/utils/reset-stores-for-screen.ts +0 -13
  717. package/src/types/animation.ts +0 -81
  718. package/src/types/core.ts +0 -50
  719. package/src/types/navigator.ts +0 -753
  720. package/src/utils/animation/derivations.ts +0 -40
  721. package/src/utils/animation/start-screen-transition.ts +0 -61
  722. package/src/utils/bounds/_types/builder.ts +0 -151
  723. package/src/utils/bounds/_utils/geometry.ts +0 -166
  724. package/src/utils/bounds/_utils/is-bounds-equal.ts +0 -24
  725. package/src/utils/bounds/constants.ts +0 -40
  726. package/src/utils/bounds/index.ts +0 -219
  727. package/src/utils/gesture/apply-offset-rules.ts +0 -312
  728. package/src/utils/gesture/check-gesture-activation.ts +0 -310
  729. package/src/utils/gesture/reset-gesture-values.ts +0 -67
  730. package/src/utils/gesture/velocity.ts +0 -143
  731. /package/lib/commonjs/{integrations/native-stack → native-stack}/navigators/createNativeStackNavigator.js +0 -0
  732. /package/lib/commonjs/{integrations/native-stack → native-stack}/utils/debounce.js +0 -0
  733. /package/lib/commonjs/{integrations/native-stack → native-stack}/utils/getModalRoutesKeys.js +0 -0
  734. /package/lib/commonjs/{integrations/native-stack → native-stack}/utils/useAnimatedHeaderHeight.js +0 -0
  735. /package/lib/commonjs/{integrations/native-stack → native-stack}/utils/useDismissedRouteError.js +0 -0
  736. /package/lib/commonjs/{integrations/native-stack → native-stack}/utils/useInvalidPreventRemoveError.js +0 -0
  737. /package/lib/commonjs/{integrations/native-stack → native-stack}/views/FontProcessor.js +0 -0
  738. /package/lib/commonjs/{integrations/native-stack → native-stack}/views/FontProcessor.native.js +0 -0
  739. /package/lib/commonjs/{integrations/native-stack → native-stack}/views/FooterComponent.js +0 -0
  740. /package/lib/commonjs/{integrations/native-stack → native-stack}/views/NativeStackView.js +0 -0
  741. /package/lib/commonjs/{integrations/native-stack → native-stack}/views/useHeaderConfigProps.js +0 -0
  742. /package/lib/commonjs/{components → shared/components}/create-transition-aware-component.js +0 -0
  743. /package/lib/commonjs/{components → shared/components}/integrations/masked-view.js +0 -0
  744. /package/lib/commonjs/{components → shared/components}/root-transition-aware.js +0 -0
  745. /package/lib/commonjs/{__configs__ → shared/configs}/presets.js +0 -0
  746. /package/lib/commonjs/{__configs__ → shared/configs}/specs.js +0 -0
  747. /package/lib/commonjs/{constants.js → shared/constants.js} +0 -0
  748. /package/lib/commonjs/{hooks → shared/hooks}/animation/use-associated-style.js +0 -0
  749. /package/lib/commonjs/{hooks → shared/hooks}/gestures/use-parent-gesture-registry.js +0 -0
  750. /package/lib/commonjs/{hooks → shared/hooks}/gestures/use-scroll-registry.js +0 -0
  751. /package/lib/commonjs/{hooks → shared/hooks}/use-stable-callback-value.js +0 -0
  752. /package/lib/commonjs/{hooks → shared/hooks}/use-stable-callback.js +0 -0
  753. /package/lib/commonjs/{providers → shared/providers}/gestures.js +0 -0
  754. /package/lib/commonjs/{providers → shared/providers}/transition-styles.js +0 -0
  755. /package/lib/commonjs/{stores/bounds → shared/stores/bound-store}/_utils.js +0 -0
  756. /package/lib/commonjs/{stores → shared/stores}/navigator-dismiss-state.js +0 -0
  757. /package/lib/commonjs/{types → shared/types}/animation.js +0 -0
  758. /package/lib/commonjs/{types → shared/types}/bounds.js +0 -0
  759. /package/lib/commonjs/{types → shared/types}/core.js +0 -0
  760. /package/lib/commonjs/{types → shared/types}/gesture.js +0 -0
  761. /package/lib/commonjs/{types → shared/types}/utils.js +0 -0
  762. /package/lib/commonjs/{utils → shared/utils}/animation/animate.js +0 -0
  763. /package/lib/commonjs/{utils → shared/utils}/animation/start-screen-transition.js +0 -0
  764. /package/lib/commonjs/{utils → shared/utils}/bounds/_types/builder.js +0 -0
  765. /package/lib/commonjs/{utils → shared/utils}/bounds/_types/geometry.js +0 -0
  766. /package/lib/commonjs/{utils → shared/utils}/bounds/_types/get-bounds.js +0 -0
  767. /package/lib/commonjs/{utils → shared/utils}/bounds/_utils/flatten-styles.js +0 -0
  768. /package/lib/commonjs/{utils → shared/utils}/bounds/_utils/geometry.js +0 -0
  769. /package/lib/commonjs/{utils → shared/utils}/bounds/_utils/get-bounds.js +0 -0
  770. /package/lib/commonjs/{utils → shared/utils}/bounds/_utils/style-composers.js +0 -0
  771. /package/lib/commonjs/{utils → shared/utils}/bounds/_utils/styles.js +0 -0
  772. /package/lib/commonjs/{utils → shared/utils}/bounds/constants.js +0 -0
  773. /package/lib/commonjs/{utils → shared/utils}/bounds/index.js +0 -0
  774. /package/lib/commonjs/{utils → shared/utils}/gesture/apply-offset-rules.js +0 -0
  775. /package/lib/commonjs/{utils → shared/utils}/gesture/check-gesture-activation.js +0 -0
  776. /package/lib/commonjs/{utils → shared/utils}/gesture/determine-dismissal.js +0 -0
  777. /package/lib/commonjs/{utils → shared/utils}/gesture/map-gesture-to-progress.js +0 -0
  778. /package/lib/commonjs/{utils → shared/utils}/gesture/reset-gesture-values.js +0 -0
  779. /package/lib/commonjs/{utils → shared/utils}/gesture/velocity.js +0 -0
  780. /package/lib/commonjs/{utils → shared/utils}/reanimated/version.js +0 -0
  781. /package/lib/module/{integrations/native-stack → native-stack}/navigators/createNativeStackNavigator.js +0 -0
  782. /package/lib/module/{integrations/native-stack → native-stack}/utils/debounce.js +0 -0
  783. /package/lib/module/{integrations/native-stack → native-stack}/utils/getModalRoutesKeys.js +0 -0
  784. /package/lib/module/{integrations/native-stack → native-stack}/utils/useAnimatedHeaderHeight.js +0 -0
  785. /package/lib/module/{integrations/native-stack → native-stack}/utils/useDismissedRouteError.js +0 -0
  786. /package/lib/module/{integrations/native-stack → native-stack}/utils/useInvalidPreventRemoveError.js +0 -0
  787. /package/lib/module/{integrations/native-stack → native-stack}/views/FontProcessor.js +0 -0
  788. /package/lib/module/{integrations/native-stack → native-stack}/views/FontProcessor.native.js +0 -0
  789. /package/lib/module/{integrations/native-stack → native-stack}/views/FooterComponent.js +0 -0
  790. /package/lib/module/{integrations/native-stack → native-stack}/views/NativeStackView.js +0 -0
  791. /package/lib/module/{integrations/native-stack → native-stack}/views/useHeaderConfigProps.js +0 -0
  792. /package/lib/module/{components → shared/components}/create-transition-aware-component.js +0 -0
  793. /package/lib/module/{components → shared/components}/integrations/masked-view.js +0 -0
  794. /package/lib/module/{components → shared/components}/root-transition-aware.js +0 -0
  795. /package/lib/module/{__configs__ → shared/configs}/presets.js +0 -0
  796. /package/lib/module/{__configs__ → shared/configs}/specs.js +0 -0
  797. /package/lib/module/{constants.js → shared/constants.js} +0 -0
  798. /package/lib/module/{hooks → shared/hooks}/animation/use-associated-style.js +0 -0
  799. /package/lib/module/{hooks → shared/hooks}/gestures/use-parent-gesture-registry.js +0 -0
  800. /package/lib/module/{hooks → shared/hooks}/gestures/use-scroll-registry.js +0 -0
  801. /package/lib/module/{hooks → shared/hooks}/use-stable-callback-value.js +0 -0
  802. /package/lib/module/{hooks → shared/hooks}/use-stable-callback.js +0 -0
  803. /package/lib/module/{providers → shared/providers}/gestures.js +0 -0
  804. /package/lib/module/{providers → shared/providers}/transition-styles.js +0 -0
  805. /package/lib/module/{stores/bounds → shared/stores/bound-store}/_utils.js +0 -0
  806. /package/lib/module/{stores → shared/stores}/navigator-dismiss-state.js +0 -0
  807. /package/lib/module/{types → shared/types}/animation.js +0 -0
  808. /package/lib/module/{types → shared/types}/bounds.js +0 -0
  809. /package/lib/module/{types → shared/types}/core.js +0 -0
  810. /package/lib/module/{types → shared/types}/gesture.js +0 -0
  811. /package/lib/module/{types → shared/types}/utils.js +0 -0
  812. /package/lib/module/{utils → shared/utils}/animation/animate.js +0 -0
  813. /package/lib/module/{utils → shared/utils}/animation/start-screen-transition.js +0 -0
  814. /package/lib/module/{utils → shared/utils}/bounds/_types/builder.js +0 -0
  815. /package/lib/module/{utils → shared/utils}/bounds/_types/geometry.js +0 -0
  816. /package/lib/module/{utils → shared/utils}/bounds/_types/get-bounds.js +0 -0
  817. /package/lib/module/{utils → shared/utils}/bounds/_utils/flatten-styles.js +0 -0
  818. /package/lib/module/{utils → shared/utils}/bounds/_utils/geometry.js +0 -0
  819. /package/lib/module/{utils → shared/utils}/bounds/_utils/get-bounds.js +0 -0
  820. /package/lib/module/{utils → shared/utils}/bounds/_utils/style-composers.js +0 -0
  821. /package/lib/module/{utils → shared/utils}/bounds/_utils/styles.js +0 -0
  822. /package/lib/module/{utils → shared/utils}/bounds/constants.js +0 -0
  823. /package/lib/module/{utils → shared/utils}/bounds/index.js +0 -0
  824. /package/lib/module/{utils → shared/utils}/gesture/apply-offset-rules.js +0 -0
  825. /package/lib/module/{utils → shared/utils}/gesture/check-gesture-activation.js +0 -0
  826. /package/lib/module/{utils → shared/utils}/gesture/determine-dismissal.js +0 -0
  827. /package/lib/module/{utils → shared/utils}/gesture/map-gesture-to-progress.js +0 -0
  828. /package/lib/module/{utils → shared/utils}/gesture/reset-gesture-values.js +0 -0
  829. /package/lib/module/{utils → shared/utils}/gesture/velocity.js +0 -0
  830. /package/lib/module/{utils → shared/utils}/reanimated/version.js +0 -0
  831. /package/lib/typescript/{integrations/native-stack → native-stack}/utils/debounce.d.ts +0 -0
  832. /package/lib/typescript/{integrations/native-stack → native-stack}/utils/useAnimatedHeaderHeight.d.ts +0 -0
  833. /package/lib/typescript/{integrations/native-stack → native-stack}/utils/useDismissedRouteError.d.ts +0 -0
  834. /package/lib/typescript/{integrations/native-stack → native-stack}/views/FontProcessor.d.ts +0 -0
  835. /package/lib/typescript/{integrations/native-stack → native-stack}/views/FontProcessor.native.d.ts +0 -0
  836. /package/lib/typescript/{integrations/native-stack → native-stack}/views/FooterComponent.d.ts +0 -0
  837. /package/lib/typescript/{components → shared/components}/create-transition-aware-component.d.ts +0 -0
  838. /package/lib/typescript/{components → shared/components}/integrations/masked-view.d.ts +0 -0
  839. /package/lib/typescript/{components → shared/components}/root-transition-aware.d.ts +0 -0
  840. /package/lib/typescript/{__configs__ → shared/configs}/specs.d.ts +0 -0
  841. /package/lib/typescript/{hooks → shared/hooks}/animation/use-associated-style.d.ts +0 -0
  842. /package/lib/typescript/{hooks → shared/hooks}/animation/use-screen-animation.d.ts +0 -0
  843. /package/lib/typescript/{hooks → shared/hooks}/bounds/use-bound-registry.d.ts +0 -0
  844. /package/lib/typescript/{hooks → shared/hooks}/gestures/use-build-gestures.d.ts +0 -0
  845. /package/lib/typescript/{hooks → shared/hooks}/gestures/use-parent-gesture-registry.d.ts +0 -0
  846. /package/lib/typescript/{hooks → shared/hooks}/gestures/use-scroll-registry.d.ts +0 -0
  847. /package/lib/typescript/{hooks → shared/hooks}/use-stable-callback-value.d.ts +0 -0
  848. /package/lib/typescript/{hooks → shared/hooks}/use-stable-callback.d.ts +0 -0
  849. /package/lib/typescript/{providers → shared/providers}/gestures.d.ts +0 -0
  850. /package/lib/typescript/{providers → shared/providers}/transition-styles.d.ts +0 -0
  851. /package/lib/typescript/{stores/bounds → shared/stores/bound-store}/_utils.d.ts +0 -0
  852. /package/lib/typescript/{stores → shared/stores}/navigator-dismiss-state.d.ts +0 -0
  853. /package/lib/typescript/{types → shared/types}/bounds.d.ts +0 -0
  854. /package/lib/typescript/{types → shared/types}/gesture.d.ts +0 -0
  855. /package/lib/typescript/{types → shared/types}/utils.d.ts +0 -0
  856. /package/lib/typescript/{utils → shared/utils}/animation/animate.d.ts +0 -0
  857. /package/lib/typescript/{utils → shared/utils}/animation/derivations.d.ts +0 -0
  858. /package/lib/typescript/{utils → shared/utils}/bounds/_types/geometry.d.ts +0 -0
  859. /package/lib/typescript/{utils → shared/utils}/bounds/_types/get-bounds.d.ts +0 -0
  860. /package/lib/typescript/{utils → shared/utils}/bounds/_utils/flatten-styles.d.ts +0 -0
  861. /package/lib/typescript/{utils → shared/utils}/bounds/_utils/get-bounds.d.ts +0 -0
  862. /package/lib/typescript/{utils → shared/utils}/bounds/_utils/is-bounds-equal.d.ts +0 -0
  863. /package/lib/typescript/{utils → shared/utils}/bounds/_utils/style-composers.d.ts +0 -0
  864. /package/lib/typescript/{utils → shared/utils}/bounds/_utils/styles.d.ts +0 -0
  865. /package/lib/typescript/{utils → shared/utils}/gesture/determine-dismissal.d.ts +0 -0
  866. /package/lib/typescript/{utils → shared/utils}/gesture/map-gesture-to-progress.d.ts +0 -0
  867. /package/lib/typescript/{utils → shared/utils}/reanimated/version.d.ts +0 -0
  868. /package/src/{integrations/native-stack → native-stack}/utils/debounce.tsx +0 -0
  869. /package/src/{integrations/native-stack → native-stack}/utils/useAnimatedHeaderHeight.tsx +0 -0
  870. /package/src/{integrations/native-stack → native-stack}/utils/useDismissedRouteError.tsx +0 -0
  871. /package/src/{integrations/native-stack → native-stack}/views/FontProcessor.native.tsx +0 -0
  872. /package/src/{integrations/native-stack → native-stack}/views/FontProcessor.tsx +0 -0
  873. /package/src/{integrations/native-stack → native-stack}/views/FooterComponent.tsx +0 -0
  874. /package/src/{__tests__ → shared/__tests__}/bounds.store.test.ts +0 -0
  875. /package/src/{__tests__ → shared/__tests__}/determine-dismissal.test.ts +0 -0
  876. /package/src/{__tests__ → shared/__tests__}/geometry.test.ts +0 -0
  877. /package/src/{components → shared/components}/create-transition-aware-component.tsx +0 -0
  878. /package/src/{components → shared/components}/integrations/masked-view.tsx +0 -0
  879. /package/src/{components → shared/components}/root-transition-aware.tsx +0 -0
  880. /package/src/{__configs__ → shared/configs}/specs.ts +0 -0
  881. /package/src/{hooks → shared/hooks}/animation/use-associated-style.tsx +0 -0
  882. /package/src/{hooks → shared/hooks}/gestures/use-parent-gesture-registry.tsx +0 -0
  883. /package/src/{hooks → shared/hooks}/gestures/use-scroll-registry.tsx +0 -0
  884. /package/src/{hooks → shared/hooks}/use-stable-callback-value.tsx +0 -0
  885. /package/src/{hooks → shared/hooks}/use-stable-callback.tsx +0 -0
  886. /package/src/{providers → shared/providers}/gestures.tsx +0 -0
  887. /package/src/{providers → shared/providers}/transition-styles.tsx +0 -0
  888. /package/src/{stores/bounds → shared/stores/bound-store}/_utils.ts +0 -0
  889. /package/src/{stores → shared/stores}/navigator-dismiss-state.ts +0 -0
  890. /package/src/{types → shared/types}/bounds.ts +0 -0
  891. /package/src/{types → shared/types}/gesture.ts +0 -0
  892. /package/src/{types → shared/types}/utils.ts +0 -0
  893. /package/src/{utils → shared/utils}/animation/animate.ts +0 -0
  894. /package/src/{utils → shared/utils}/bounds/_types/geometry.ts +0 -0
  895. /package/src/{utils → shared/utils}/bounds/_types/get-bounds.ts +0 -0
  896. /package/src/{utils → shared/utils}/bounds/_utils/flatten-styles.ts +0 -0
  897. /package/src/{utils → shared/utils}/bounds/_utils/get-bounds.ts +0 -0
  898. /package/src/{utils → shared/utils}/bounds/_utils/style-composers.ts +0 -0
  899. /package/src/{utils → shared/utils}/bounds/_utils/styles.ts +0 -0
  900. /package/src/{utils → shared/utils}/gesture/determine-dismissal.ts +0 -0
  901. /package/src/{utils → shared/utils}/gesture/map-gesture-to-progress.ts +0 -0
  902. /package/src/{utils → shared/utils}/reanimated/version.ts +0 -0
@@ -1 +0,0 @@
1
- {"version":3,"file":"navigator.d.ts","sourceRoot":"","sources":["../../../src/types/navigator.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/types/utils.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,GAAG,GAAG,GAAG,CAAC;AAEtB,MAAM,MAAM,QAAQ,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC;CAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"animate.d.ts","sourceRoot":"","sources":["../../../../src/utils/animation/animate.ts"],"names":[],"mappings":"AAAA,OAAO,EACN,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EAGrB,MAAM,yBAAyB,CAAC;AACjC,OAAO,KAAK,EACX,eAAe,EACf,iBAAiB,EACjB,MAAM,oDAAoD,CAAC;AAE5D,eAAO,MAAM,OAAO,GAAI,CAAC,SAAS,eAAe,EAChD,SAAS,CAAC,EACV,SAAS,gBAAgB,GAAG,gBAAgB,EAC5C,WAAW,iBAAiB,MAa5B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"derivations.d.ts","sourceRoot":"","sources":["../../../../src/utils/animation/derivations.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAEnE,UAAU,iBAAiB;IAC1B,OAAO,EAAE,qBAAqB,CAAC;IAC/B,IAAI,CAAC,EAAE,qBAAqB,CAAC;IAC7B,QAAQ,CAAC,EAAE,qBAAqB,CAAC;CACjC;AAED;;GAEG;AACH,eAAO,MAAM,WAAW,GAAI,6BAA6B,iBAAiB;;;;;;;CA2BzE,CAAC"}
@@ -1,13 +0,0 @@
1
- import type { AnimationMap } from "../../stores/animations";
2
- import type { TransitionSpec } from "../../types/animation";
3
- interface StartScreenTransitionProps {
4
- target: "open" | "close";
5
- spec?: TransitionSpec;
6
- onAnimationFinish?: (finished: boolean) => void;
7
- animations: AnimationMap;
8
- /** Optional initial velocity for spring-based progress (units: progress/sec). */
9
- initialVelocity?: number;
10
- }
11
- export declare const startScreenTransition: ({ target, spec, onAnimationFinish, animations, initialVelocity, }: StartScreenTransitionProps) => void;
12
- export {};
13
- //# sourceMappingURL=start-screen-transition.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"start-screen-transition.d.ts","sourceRoot":"","sources":["../../../../src/utils/animation/start-screen-transition.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAG5D,UAAU,0BAA0B;IACnC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC;IACzB,IAAI,CAAC,EAAE,cAAc,CAAC;IACtB,iBAAiB,CAAC,EAAE,CAAC,QAAQ,EAAE,OAAO,KAAK,IAAI,CAAC;IAChD,UAAU,EAAE,YAAY,CAAC;IACzB,iFAAiF;IACjF,eAAe,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,eAAO,MAAM,qBAAqB,GAAI,mEAMnC,0BAA0B,SAwC5B,CAAC"}
@@ -1,118 +0,0 @@
1
- import type { MeasuredDimensions, StyleProps } from "react-native-reanimated";
2
- import type { ScreenTransitionState } from "../../../types/animation";
3
- import type { BoundsMethod } from "../../../types/bounds";
4
- import type { Layout } from "../../../types/navigator";
5
- /**
6
- * Params passed to the builder initializer. No method required here.
7
- */
8
- export type BoundsBuilderInitParams = {
9
- id: string | null;
10
- previous?: ScreenTransitionState;
11
- current: ScreenTransitionState;
12
- next?: ScreenTransitionState;
13
- progress: number;
14
- dimensions: Layout;
15
- };
16
- export type BoundsAnchor = "topLeading" | "top" | "topTrailing" | "leading" | "center" | "trailing" | "bottomLeading" | "bottom" | "bottomTrailing";
17
- export type BoundsScaleMode = "match" | "none" | "uniform";
18
- export type BoundsTarget = "bound" | "fullscreen" | MeasuredDimensions;
19
- export type BoundsSpace = "relative" | "absolute";
20
- export type BoundsComputeParams = BoundsBuilderInitParams;
21
- export type RawSizeAbsoluteReturn = {
22
- width: number;
23
- height: number;
24
- translateX: number;
25
- translateY: number;
26
- };
27
- export type RawSizeRelativeReturn = {
28
- translateX: number;
29
- translateY: number;
30
- width: number;
31
- height: number;
32
- };
33
- export type RawTransformAbsoluteReturn = {
34
- translateX: number;
35
- translateY: number;
36
- scaleX: number;
37
- scaleY: number;
38
- };
39
- export type RawTransformRelativeReturn = {
40
- translateX: number;
41
- translateY: number;
42
- scaleX: number;
43
- scaleY: number;
44
- };
45
- export type RawContentReturn = {
46
- translateX: number;
47
- translateY: number;
48
- scale: number;
49
- };
50
- export type BoundsReturnType<T extends BoundsBuilderOptions> = T["raw"] extends true ? T["method"] extends "size" ? T["space"] extends "absolute" ? RawSizeAbsoluteReturn : RawSizeRelativeReturn : T["method"] extends "content" ? RawContentReturn : T["space"] extends "absolute" ? RawTransformAbsoluteReturn : RawTransformRelativeReturn : StyleProps;
51
- export type BoundsBuilderOptions = {
52
- /**
53
- * @deprecated Use `content.scaleMode` instead.
54
- */
55
- toFullscreen?: boolean;
56
- /**
57
- * @deprecated Use `content.anchor` instead.
58
- */
59
- absolute?: boolean;
60
- /**
61
- * @deprecated Use `content.anchor` instead.
62
- */
63
- relative?: boolean;
64
- /**
65
- * @deprecated Use `scaleMode` instead.
66
- */
67
- contentScaleMode?: "aspectFill" | "aspectFit" | "auto";
68
- /**
69
- * The ID of the bound to compute bounds for. If not provided, uses the active bound ID.
70
- */
71
- id?: string;
72
- /**
73
- * The method to use to compute the bounds.
74
- *
75
- * - "transform": translates and scales (scaleX/scaleY), no width/height size
76
- * - "size": translates and sizes (width/height), no scaleX/scaleY
77
- * - "content": screen-level content transform that aligns the destination screen
78
- * so the target bound matches the source at progress start
79
- * @default "transform"
80
- */
81
- method?: BoundsMethod;
82
- /**
83
- * The space to use to compute the bounds.
84
- *
85
- * - "relative": the bounds are computed with relative deltas, constrained by parent layout
86
- * - "absolute": the bounds are computed with absolute coordinates, unconstrained by parent layout
87
- * @default "relative"
88
- */
89
- space?: BoundsSpace;
90
- /**
91
- * Whether the bound should target the screen or the bound.
92
- * @default "bound"
93
- */
94
- target?: BoundsTarget;
95
- /**
96
- * The gesture offsets to apply to the bounds.
97
- */
98
- gestures?: {
99
- x?: number;
100
- y?: number;
101
- };
102
- /**
103
- * How the bounds should be scaled between each other.
104
- * @default "match"
105
- */
106
- scaleMode?: BoundsScaleMode;
107
- /**
108
- * Where the bounds should be anchored between each other.
109
- * @default "center"
110
- */
111
- anchor?: BoundsAnchor;
112
- /**
113
- * If true, the raw values will be returned instead of the computed values.
114
- * @default false
115
- */
116
- raw?: boolean;
117
- };
118
- //# sourceMappingURL=builder.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"builder.d.ts","sourceRoot":"","sources":["../../../../../src/utils/bounds/_types/builder.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"geometry.d.ts","sourceRoot":"","sources":["../../../../../src/utils/bounds/_types/geometry.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GAAG;IAC1B,QAAQ,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,YAAY,GAAG;IAC7C,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG,YAAY,GAAG;IACrD,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,CAAC,EAAE,MAAM,CAAC;CACV,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"get-bounds.d.ts","sourceRoot":"","sources":["../../../../../src/utils/bounds/_types/get-bounds.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AACtE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAEvD,MAAM,MAAM,eAAe,GAAG;IAC7B,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;IAClB,KAAK,CAAC,EAAE,WAAW,CAAC;IACpB,QAAQ,CAAC,EAAE,qBAAqB,CAAC;IACjC,OAAO,EAAE,qBAAqB,CAAC;IAC/B,IAAI,CAAC,EAAE,qBAAqB,CAAC;CAC7B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"flatten-styles.d.ts","sourceRoot":"","sources":["../../../../../src/utils/bounds/_utils/flatten-styles.ts"],"names":[],"mappings":"AAAA,wBAAgB,YAAY,CAAC,UAAU,EAAE,KAAK,EAAE,UAAU,GAAG,UAAU,CAoBtE"}
@@ -1,27 +0,0 @@
1
- import type { MeasuredDimensions } from "react-native-reanimated";
2
- import type { Layout } from "../../../types/navigator";
3
- import type { BoundsAnchor, BoundsScaleMode } from "../_types/builder";
4
- import type { ContentTransformGeometry, RelativeGeometry } from "../_types/geometry";
5
- /**
6
- * Relative geometry between start/end bounds.
7
- */
8
- export declare function computeRelativeGeometry({ start, end, entering, anchor, scaleMode, }: {
9
- start: MeasuredDimensions;
10
- end: MeasuredDimensions;
11
- entering: boolean;
12
- anchor?: BoundsAnchor;
13
- scaleMode?: BoundsScaleMode;
14
- }): RelativeGeometry;
15
- /**
16
- * Computes the transform to apply to the entire destination screen so that
17
- * its bound (end) matches the source bound (start) at progress start.
18
- */
19
- export declare function computeContentTransformGeometry({ start, end, entering, dimensions, anchor, scaleMode, }: {
20
- start: MeasuredDimensions;
21
- end: MeasuredDimensions;
22
- entering: boolean;
23
- dimensions: Layout;
24
- anchor?: BoundsAnchor;
25
- scaleMode?: BoundsScaleMode;
26
- }): ContentTransformGeometry;
27
- //# sourceMappingURL=geometry.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"geometry.d.ts","sourceRoot":"","sources":["../../../../../src/utils/bounds/_utils/geometry.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAClE,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,0BAA0B,CAAC;AACvD,OAAO,KAAK,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACvE,OAAO,KAAK,EACX,wBAAwB,EACxB,gBAAgB,EAChB,MAAM,oBAAoB,CAAC;AAsC5B;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,EACvC,KAAK,EACL,GAAG,EACH,QAAQ,EACR,MAAiB,EACjB,SAAmB,GACnB,EAAE;IACF,KAAK,EAAE,kBAAkB,CAAC;IAC1B,GAAG,EAAE,kBAAkB,CAAC;IACxB,QAAQ,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,SAAS,CAAC,EAAE,eAAe,CAAC;CAC5B,GAAG,gBAAgB,CAoCnB;AACD;;;GAGG;AACH,wBAAgB,+BAA+B,CAAC,EAC/C,KAAK,EACL,GAAG,EACH,QAAQ,EACR,UAAU,EACV,MAAiB,EACjB,SAAqB,GACrB,EAAE;IACF,KAAK,EAAE,kBAAkB,CAAC;IAC1B,GAAG,EAAE,kBAAkB,CAAC;IACxB,QAAQ,EAAE,OAAO,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,SAAS,CAAC,EAAE,eAAe,CAAC;CAC5B,GAAG,wBAAwB,CAmD3B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"get-bounds.d.ts","sourceRoot":"","sources":["../../../../../src/utils/bounds/_utils/get-bounds.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAExD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAc5D,eAAO,MAAM,SAAS,GAAI,OAAO,eAAe,KAAG,UAqClD,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"is-bounds-equal.d.ts","sourceRoot":"","sources":["../../../../../src/utils/bounds/_utils/is-bounds-equal.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAGlE,eAAO,MAAM,aAAa,GAAI,oCAI3B;IACF,QAAQ,EAAE,kBAAkB,CAAC;IAC7B,GAAG,EAAE,MAAM,CAAC;IACZ,cAAc,EAAE,MAAM,CAAC;CACvB,YAYA,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"style-composers.d.ts","sourceRoot":"","sources":["../../../../../src/utils/bounds/_utils/style-composers.ts"],"names":[],"mappings":"AAAA,OAAO,EAEN,KAAK,kBAAkB,EACvB,KAAK,UAAU,EACf,MAAM,yBAAyB,CAAC;AACjC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,KAAK,EACX,wBAAwB,EACxB,gBAAgB,EAChB,MAAM,oBAAoB,CAAC;AAE5B;;;;;GAKG;AACH,MAAM,MAAM,oBAAoB,GAAG;IAClC,KAAK,EAAE,kBAAkB,CAAC;IAC1B,GAAG,EAAE,kBAAkB,CAAC;IACxB,QAAQ,EAAE,gBAAgB,CAAC;IAC3B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAClC,cAAc,EAAE,oBAAoB,CAAC;CACrC,CAAC;AAEF;;;;;GAKG;AACH,MAAM,MAAM,oBAAoB,GAAG;IAClC,KAAK,EAAE,kBAAkB,CAAC;IAC1B,GAAG,EAAE,kBAAkB,CAAC;IACxB,QAAQ,EAAE,wBAAwB,CAAC;IACnC,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAClC,cAAc,EAAE,oBAAoB,CAAC;CACrC,CAAC;AAEF,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,oBAAoB,GAAG,UAAU,CAgC5E;AAED,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,oBAAoB,GAAG,UAAU,CAkC5E;AAED,wBAAgB,wBAAwB,CACvC,MAAM,EAAE,oBAAoB,GAC1B,UAAU,CA6BZ;AAED,wBAAgB,wBAAwB,CACvC,MAAM,EAAE,oBAAoB,GAC1B,UAAU,CAoCZ;AAED,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,oBAAoB,GAAG,UAAU,CA+B5E"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../src/utils/bounds/_utils/styles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEhF,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,sBAAsB,CAAC;AAEhD,KAAK,QAAQ,GAAG,SAAS,GAAG,SAAS,GAAG,UAAU,CAAC;AACnD,KAAK,UAAU,GAAG,SAAS,CAAC,QAAQ,CAAC,CAAC;AACtC,KAAK,gBAAgB,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;AAqD5C,wBAAgB,qBAAqB,CACpC,KAAK,EAAE,UAAU,GAAG,SAAS,GAC3B,gBAAgB,CAOlB"}
@@ -1,7 +0,0 @@
1
- import type { MeasuredDimensions } from "react-native-reanimated";
2
- import type { Complete } from "../../types/utils";
3
- import type { BoundsBuilderOptions } from "./_types/builder";
4
- import type { Layout } from "../ ../../../types/navigator";
5
- export declare const FULLSCREEN_DIMENSIONS: (dimensions: Layout) => MeasuredDimensions;
6
- export declare const DEFAULT_BUILDER_OPTIONS: Complete<Omit<BoundsBuilderOptions, "id">>;
7
- //# sourceMappingURL=constants.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../src/utils/bounds/constants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAClE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAClD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAC7D,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,8BAA8B,CAAC;AAE3D,eAAO,MAAM,qBAAqB,GACjC,YAAY,MAAM,KAChB,kBAUF,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,QAAQ,CAC7C,IAAI,CAAC,oBAAoB,EAAE,IAAI,CAAC,CAmBtB,CAAC"}
@@ -1,13 +0,0 @@
1
- import type { ScreenInterpolationProps, ScreenTransitionState } from "../../types/animation";
2
- import type { BoundsAccessor } from "../../types/bounds";
3
- import type { Layout } from "../../types/navigator";
4
- export interface BuildBoundsAccessorParams {
5
- activeBoundId: string | null;
6
- current: ScreenTransitionState;
7
- previous?: ScreenTransitionState;
8
- next?: ScreenTransitionState;
9
- progress: number;
10
- dimensions: Layout;
11
- }
12
- export declare const createBounds: (props: Omit<ScreenInterpolationProps, "bounds">) => BoundsAccessor;
13
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/utils/bounds/index.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EACX,wBAAwB,EACxB,qBAAqB,EACrB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAEzD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAmBpD,MAAM,WAAW,yBAAyB;IACzC,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,OAAO,EAAE,qBAAqB,CAAC;IAC/B,QAAQ,CAAC,EAAE,qBAAqB,CAAC;IACjC,IAAI,CAAC,EAAE,qBAAqB,CAAC;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;CACnB;AAgJD,eAAO,MAAM,YAAY,GACxB,OAAO,IAAI,CAAC,wBAAwB,EAAE,QAAQ,CAAC,KAC7C,cAgCF,CAAC"}
@@ -1,38 +0,0 @@
1
- import type { GestureStateManagerType } from "react-native-gesture-handler/lib/typescript/handlers/gestures/gestureStateManager";
2
- import type { SharedValue } from "react-native-reanimated";
3
- import { type GestureActivationArea, GestureOffsetState } from "../../types/gesture";
4
- import type { Layout } from "../../types/navigator";
5
- type Directions = {
6
- vertical: boolean;
7
- verticalInverted: boolean;
8
- horizontal: boolean;
9
- horizontalInverted: boolean;
10
- };
11
- interface CheckGestureActivationProps {
12
- initialTouch: {
13
- x: number;
14
- y: number;
15
- };
16
- touch: {
17
- x: number;
18
- y: number;
19
- };
20
- directions: Directions;
21
- manager?: GestureStateManagerType;
22
- gestureOffsetState: SharedValue<GestureOffsetState>;
23
- activationArea?: GestureActivationArea;
24
- dimensions: Layout;
25
- responseDistance?: number;
26
- }
27
- interface ReturnValues {
28
- isSwipingDown: boolean;
29
- isSwipingUp: boolean;
30
- isSwipingRight: boolean;
31
- isSwipingLeft: boolean;
32
- }
33
- /**
34
- * Since we're using onTouchesMove to activate our pan, faillOffset and activateOffset don't actually work. In that case we'll create this function to use in onTouchesMove which acts simarly to the original functionality.
35
- */
36
- export declare const applyOffsetRules: ({ initialTouch, touch, directions, manager, gestureOffsetState, activationArea, dimensions, responseDistance, }: CheckGestureActivationProps) => ReturnValues;
37
- export {};
38
- //# sourceMappingURL=apply-offset-rules.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"apply-offset-rules.d.ts","sourceRoot":"","sources":["../../../../src/utils/gesture/apply-offset-rules.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,mFAAmF,CAAC;AACjI,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAU3D,OAAO,EAEN,KAAK,qBAAqB,EAC1B,kBAAkB,EAElB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAEpD,KAAK,UAAU,GAAG;IACjB,QAAQ,EAAE,OAAO,CAAC;IAClB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,UAAU,EAAE,OAAO,CAAC;IACpB,kBAAkB,EAAE,OAAO,CAAC;CAC5B,CAAC;AAEF,UAAU,2BAA2B;IACpC,YAAY,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACvC,KAAK,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAChC,UAAU,EAAE,UAAU,CAAC;IACvB,OAAO,CAAC,EAAE,uBAAuB,CAAC;IAClC,kBAAkB,EAAE,WAAW,CAAC,kBAAkB,CAAC,CAAC;IACpD,cAAc,CAAC,EAAE,qBAAqB,CAAC;IACvC,UAAU,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC1B;AA8BD,UAAU,YAAY;IACrB,aAAa,EAAE,OAAO,CAAC;IACvB,WAAW,EAAE,OAAO,CAAC;IACrB,cAAc,EAAE,OAAO,CAAC;IACxB,aAAa,EAAE,OAAO,CAAC;CACvB;AAsJD;;GAEG;AACH,eAAO,MAAM,gBAAgB,GAAI,iHAS9B,2BAA2B,KAAG,YA+EhC,CAAC"}
@@ -1,38 +0,0 @@
1
- import type { GestureStateManagerType } from "react-native-gesture-handler/lib/typescript/handlers/gestures/gestureStateManager";
2
- import type { SharedValue } from "react-native-reanimated";
3
- import { type GestureActivationArea, GestureOffsetState } from "../../types/gesture";
4
- import type { Layout } from "../../types/navigator";
5
- type Directions = {
6
- vertical: boolean;
7
- verticalInverted: boolean;
8
- horizontal: boolean;
9
- horizontalInverted: boolean;
10
- };
11
- interface CheckGestureActivationProps {
12
- initialTouch: {
13
- x: number;
14
- y: number;
15
- };
16
- touch: {
17
- x: number;
18
- y: number;
19
- };
20
- directions: Directions;
21
- manager?: GestureStateManagerType;
22
- gestureOffsetState: SharedValue<GestureOffsetState>;
23
- activationArea?: GestureActivationArea;
24
- dimensions: Layout;
25
- responseDistance?: number;
26
- }
27
- interface ReturnValues {
28
- isSwipingDown: boolean;
29
- isSwipingUp: boolean;
30
- isSwipingRight: boolean;
31
- isSwipingLeft: boolean;
32
- }
33
- /**
34
- * Since we're using onTouchesMove to activate our pan, faillOffset and activateOffset don't actually work. In that case we'll create this function to use in onTouchesMove which acts simarly to the original functionality.
35
- */
36
- export declare const applyOffsetRules: ({ initialTouch, touch, directions, manager, gestureOffsetState, activationArea, dimensions, responseDistance, }: CheckGestureActivationProps) => ReturnValues;
37
- export {};
38
- //# sourceMappingURL=check-gesture-activation.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"check-gesture-activation.d.ts","sourceRoot":"","sources":["../../../../src/utils/gesture/check-gesture-activation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,mFAAmF,CAAC;AACjI,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,EAEN,KAAK,qBAAqB,EAC1B,kBAAkB,EAElB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAEpD,KAAK,UAAU,GAAG;IACjB,QAAQ,EAAE,OAAO,CAAC;IAClB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,UAAU,EAAE,OAAO,CAAC;IACpB,kBAAkB,EAAE,OAAO,CAAC;CAC5B,CAAC;AAEF,UAAU,2BAA2B;IACpC,YAAY,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACvC,KAAK,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAChC,UAAU,EAAE,UAAU,CAAC;IACvB,OAAO,CAAC,EAAE,uBAAuB,CAAC;IAClC,kBAAkB,EAAE,WAAW,CAAC,kBAAkB,CAAC,CAAC;IACpD,cAAc,CAAC,EAAE,qBAAqB,CAAC;IACvC,UAAU,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC1B;AA8BD,UAAU,YAAY;IACrB,aAAa,EAAE,OAAO,CAAC;IACvB,WAAW,EAAE,OAAO,CAAC;IACrB,cAAc,EAAE,OAAO,CAAC;IACxB,aAAa,EAAE,OAAO,CAAC;CACvB;AAiKD;;GAEG;AACH,eAAO,MAAM,gBAAgB,GAAI,iHAS9B,2BAA2B,KAAG,YA2EhC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"determine-dismissal.d.ts","sourceRoot":"","sources":["../../../../src/utils/gesture/determine-dismissal.ts"],"names":[],"mappings":"AAOA,UAAU,uBAAuB;IAChC,KAAK,EAAE;QACN,YAAY,EAAE,MAAM,CAAC;QACrB,YAAY,EAAE,MAAM,CAAC;QACrB,SAAS,EAAE,MAAM,CAAC;QAClB,SAAS,EAAE,MAAM,CAAC;KAClB,CAAC;IACF,UAAU,EAAE;QACX,QAAQ,EAAE,OAAO,CAAC;QAClB,gBAAgB,EAAE,OAAO,CAAC;QAC1B,UAAU,EAAE,OAAO,CAAC;QACpB,kBAAkB,EAAE,OAAO,CAAC;KAC5B,CAAC;IACF,UAAU,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IAC9C,qBAAqB,EAAE,MAAM,CAAC;CAC9B;AAmBD,eAAO,MAAM,kBAAkB,GAAI,2DAKhC,uBAAuB;;CAiCzB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"map-gesture-to-progress.d.ts","sourceRoot":"","sources":["../../../../src/utils/gesture/map-gesture-to-progress.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,oBAAoB,GAChC,aAAa,MAAM,EACnB,WAAW,MAAM,WAKjB,CAAC"}
@@ -1,16 +0,0 @@
1
- import type { GestureStateChangeEvent, PanGestureHandlerEventPayload } from "react-native-gesture-handler";
2
- import type { GestureMap } from "../../stores/gestures";
3
- import type { AnimationConfig } from "../../types/animation";
4
- interface ResetGestureValuesProps {
5
- spec?: AnimationConfig;
6
- gestures: GestureMap;
7
- shouldDismiss: boolean;
8
- event: GestureStateChangeEvent<PanGestureHandlerEventPayload>;
9
- dimensions: {
10
- width: number;
11
- height: number;
12
- };
13
- }
14
- export declare const resetGestureValues: ({ spec, gestures, shouldDismiss, event, dimensions, }: ResetGestureValuesProps) => void;
15
- export {};
16
- //# sourceMappingURL=reset-gesture-values.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"reset-gesture-values.d.ts","sourceRoot":"","sources":["../../../../src/utils/gesture/reset-gesture-values.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,uBAAuB,EACvB,6BAA6B,EAC7B,MAAM,8BAA8B,CAAC;AACtC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAI7D,UAAU,uBAAuB;IAChC,IAAI,CAAC,EAAE,eAAe,CAAC;IACvB,QAAQ,EAAE,UAAU,CAAC;IACrB,aAAa,EAAE,OAAO,CAAC;IACvB,KAAK,EAAE,uBAAuB,CAAC,6BAA6B,CAAC,CAAC;IAC9D,UAAU,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;CAC9C;AAED,eAAO,MAAM,kBAAkB,GAAI,uDAMhC,uBAAuB,SA2CzB,CAAC"}
@@ -1,25 +0,0 @@
1
- import type { GestureStateChangeEvent, PanGestureHandlerEventPayload } from "react-native-gesture-handler";
2
- import type { AnimationMap } from "../../stores/animations";
3
- interface CalculateProgressProps {
4
- animations: AnimationMap;
5
- shouldDismiss: boolean;
6
- event: GestureStateChangeEvent<PanGestureHandlerEventPayload>;
7
- dimensions: {
8
- width: number;
9
- height: number;
10
- };
11
- directions: {
12
- horizontal: boolean;
13
- horizontalInverted: boolean;
14
- vertical: boolean;
15
- verticalInverted: boolean;
16
- };
17
- }
18
- export declare const velocity: {
19
- normalize: (velocityPixelsPerSecond: number, screenSize: number) => number;
20
- calculateRestoreVelocity: (currentValueNormalized: number, baseVelocityNormalized: number) => number;
21
- calculateProgressVelocity: ({ animations, shouldDismiss, event, dimensions, directions, }: CalculateProgressProps) => number;
22
- shouldPassDismissalThreshold: (translationPixels: number, velocityPixelsPerSecond: number, screenSize: number, velocityWeight: number) => boolean;
23
- };
24
- export {};
25
- //# sourceMappingURL=velocity.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"velocity.d.ts","sourceRoot":"","sources":["../../../../src/utils/gesture/velocity.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,uBAAuB,EACvB,6BAA6B,EAC7B,MAAM,8BAA8B,CAAC;AAEtC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAE5D,UAAU,sBAAsB;IAC/B,UAAU,EAAE,YAAY,CAAC;IACzB,aAAa,EAAE,OAAO,CAAC;IACvB,KAAK,EAAE,uBAAuB,CAAC,6BAA6B,CAAC,CAAC;IAC9D,UAAU,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IAC9C,UAAU,EAAE;QACX,UAAU,EAAE,OAAO,CAAC;QACpB,kBAAkB,EAAE,OAAO,CAAC;QAC5B,QAAQ,EAAE,OAAO,CAAC;QAClB,gBAAgB,EAAE,OAAO,CAAC;KAC1B,CAAC;CACF;AAuHD,eAAO,MAAM,QAAQ;yCA9GuB,MAAM,cAAc,MAAM;uDAc7C,MAAM,0BACN,MAAM;+FAkB5B,sBAAsB;sDAyDL,MAAM,2BACA,MAAM,cACnB,MAAM,kBACF,MAAM;CAsBtB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../../src/utils/reanimated/version.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,aAAa,eAEzB,CAAC"}
@@ -1,26 +0,0 @@
1
- import {
2
- DraggableCard,
3
- ElasticCard,
4
- SharedAppleMusic,
5
- SharedIGImage,
6
- SharedXImage,
7
- SlideFromBottom,
8
- SlideFromTop,
9
- ZoomIn,
10
- } from "./presets";
11
- import { DefaultSpec } from "./specs";
12
-
13
- export const specs = {
14
- DefaultSpec,
15
- };
16
-
17
- export const presets = {
18
- SlideFromTop,
19
- ZoomIn,
20
- SlideFromBottom,
21
- DraggableCard,
22
- ElasticCard,
23
- SharedIGImage,
24
- SharedAppleMusic,
25
- SharedXImage,
26
- };