react-native-screen-transitions 2.4.2 → 3.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (902) hide show
  1. package/README.md +85 -71
  2. package/lib/commonjs/blank-stack/components/Overlay.js +140 -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 +136 -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 +217 -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 +1324 -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 +87 -67
  382. package/src/blank-stack/components/Overlay.tsx +149 -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 +272 -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 +26 -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
@@ -0,0 +1,493 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.NativeStackView = NativeStackView;
7
+ var _elements = require("@react-navigation/elements");
8
+ var _native = require("@react-navigation/native");
9
+ var React = _interopRequireWildcard(require("react"));
10
+ var _reactNative = require("react-native");
11
+ var _reactNativeGestureHandler = require("react-native-gesture-handler");
12
+ var _reactNativeSafeAreaContext = require("react-native-safe-area-context");
13
+ var _reactNativeScreens = require("react-native-screens");
14
+ var _screenLifecycle = require("../../shared/components/controllers/screen-lifecycle");
15
+ var _screenTransitionProvider = require("../../shared/providers/screen-transition-provider");
16
+ var _debounce = require("../utils/debounce");
17
+ var _getModalRoutesKeys = require("../utils/getModalRoutesKeys");
18
+ var _useAnimatedHeaderHeight = require("../utils/useAnimatedHeaderHeight");
19
+ var _useDismissedRouteError = require("../utils/useDismissedRouteError");
20
+ var _useInvalidPreventRemoveError = require("../utils/useInvalidPreventRemoveError");
21
+ var _useHeaderConfigProps = require("./useHeaderConfigProps");
22
+ var _jsxRuntime = require("react/jsx-runtime");
23
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
24
+ const ANDROID_DEFAULT_HEADER_HEIGHT = 56;
25
+ function isFabric() {
26
+ return "nativeFabricUIManager" in global;
27
+ }
28
+ const useNativeDriver = _reactNative.Platform.OS !== "web";
29
+ const SceneView = ({
30
+ index,
31
+ focused,
32
+ shouldFreeze,
33
+ descriptor,
34
+ previousDescriptor,
35
+ nextDescriptor,
36
+ isPresentationModal,
37
+ isPreloaded,
38
+ onWillDisappear,
39
+ onWillAppear,
40
+ onAppear,
41
+ onDisappear,
42
+ onDismissed,
43
+ onHeaderBackButtonClicked,
44
+ onNativeDismissCancelled,
45
+ onGestureCancel,
46
+ onSheetDetentChanged
47
+ }) => {
48
+ const {
49
+ route,
50
+ navigation,
51
+ options,
52
+ render
53
+ } = descriptor;
54
+ let {
55
+ animation,
56
+ animationMatchesGesture,
57
+ presentation = isPresentationModal ? "modal" : "card",
58
+ fullScreenGestureEnabled
59
+ } = options;
60
+ const {
61
+ animationDuration,
62
+ animationTypeForReplace = "push",
63
+ fullScreenGestureShadowEnabled = true,
64
+ nativeGestureEnabled,
65
+ nativeGestureDirection = presentation === "card" ? "horizontal" : "vertical",
66
+ nativeGestureResponseDistance,
67
+ header,
68
+ headerBackButtonMenuEnabled,
69
+ headerShown,
70
+ headerBackground,
71
+ headerTransparent,
72
+ autoHideHomeIndicator,
73
+ keyboardHandlingEnabled,
74
+ navigationBarColor,
75
+ navigationBarTranslucent,
76
+ navigationBarHidden,
77
+ orientation,
78
+ sheetAllowedDetents = [1.0],
79
+ sheetLargestUndimmedDetentIndex = -1,
80
+ sheetGrabberVisible = false,
81
+ sheetCornerRadius = -1.0,
82
+ sheetElevation = 24,
83
+ sheetExpandsWhenScrolledToEdge = true,
84
+ sheetInitialDetentIndex = 0,
85
+ statusBarAnimation,
86
+ statusBarHidden,
87
+ statusBarStyle,
88
+ statusBarTranslucent,
89
+ statusBarBackgroundColor,
90
+ unstable_sheetFooter,
91
+ freezeOnBlur,
92
+ contentStyle,
93
+ enableTransitions
94
+ } = options;
95
+ if (nativeGestureDirection === "vertical" && _reactNative.Platform.OS === "ios") {
96
+ // for `vertical` direction to work, we need to set `fullScreenGestureEnabled` to `true`
97
+ // so the screen can be dismissed from any point on screen.
98
+ // `animationMatchesGesture` needs to be set to `true` so the `animation` set by user can be used,
99
+ // otherwise `simple_push` will be used.
100
+ // Also, the default animation for this direction seems to be `slide_from_bottom`.
101
+ if (fullScreenGestureEnabled === undefined) {
102
+ fullScreenGestureEnabled = true;
103
+ }
104
+ if (animationMatchesGesture === undefined) {
105
+ animationMatchesGesture = true;
106
+ }
107
+ if (animation === undefined) {
108
+ animation = "slide_from_bottom";
109
+ }
110
+ }
111
+
112
+ // workaround for rn-screens where gestureDirection has to be set on both
113
+ // current and previous screen - software-mansion/react-native-screens/pull/1509
114
+ const nextGestureDirection = nextDescriptor?.options.nativeGestureDirection;
115
+ const gestureDirectionOverride = nextGestureDirection != null ? nextGestureDirection : nativeGestureDirection;
116
+ if (index === 0) {
117
+ // first screen should always be treated as `card`, it resolves problems with no header animation
118
+ // for navigator with first screen as `modal` and the next as `card`
119
+ presentation = "card";
120
+ }
121
+ const {
122
+ colors
123
+ } = (0, _native.useTheme)();
124
+ const insets = (0, _reactNativeSafeAreaContext.useSafeAreaInsets)();
125
+
126
+ // `modal` and `formSheet` presentations do not take whole screen, so should not take the inset.
127
+ const isModal = presentation === "modal" || presentation === "formSheet";
128
+
129
+ // Modals are fullscreen in landscape only on iPhone
130
+ const isIPhone = _reactNative.Platform.OS === "ios" && !(_reactNative.Platform.isPad || _reactNative.Platform.isTV);
131
+ const isParentHeaderShown = React.useContext(_elements.HeaderShownContext);
132
+ const parentHeaderHeight = React.useContext(_elements.HeaderHeightContext);
133
+ const parentHeaderBack = React.useContext(_elements.HeaderBackContext);
134
+ const isLandscape = (0, _elements.useFrameSize)(frame => frame.width > frame.height);
135
+ const topInset = isParentHeaderShown || _reactNative.Platform.OS === "ios" && isModal || isIPhone && isLandscape ? 0 : insets.top;
136
+ const defaultHeaderHeight = (0, _elements.useFrameSize)(frame => _reactNative.Platform.select({
137
+ // FIXME: Currently screens isn't using Material 3
138
+ // So our `getDefaultHeaderHeight` doesn't return the correct value
139
+ // So we hardcode the value here for now until screens is updated
140
+ android: ANDROID_DEFAULT_HEADER_HEIGHT + topInset,
141
+ default: (0, _elements.getDefaultHeaderHeight)(frame, isModal, topInset)
142
+ }));
143
+ const {
144
+ preventedRoutes
145
+ } = (0, _native.usePreventRemoveContext)();
146
+ const [headerHeight, setHeaderHeight] = React.useState(defaultHeaderHeight);
147
+
148
+ // eslint-disable-next-line react-hooks/exhaustive-deps
149
+ const setHeaderHeightDebounced = React.useCallback(
150
+ // Debounce the header height updates to avoid excessive re-renders
151
+ (0, _debounce.debounce)(setHeaderHeight, 100), []);
152
+ const hasCustomHeader = header != null;
153
+ let headerHeightCorrectionOffset = 0;
154
+ if (_reactNative.Platform.OS === "android" && !hasCustomHeader) {
155
+ const statusBarHeight = _reactNative.StatusBar.currentHeight ?? 0;
156
+
157
+ // FIXME: On Android, the native header height is not correctly calculated
158
+ // It includes status bar height even if statusbar is not translucent
159
+ // And the statusbar value itself doesn't match the actual status bar height
160
+ // So we subtract the bogus status bar height and add the actual top inset
161
+ headerHeightCorrectionOffset = -statusBarHeight + topInset;
162
+ }
163
+ const rawAnimatedHeaderHeight = (0, _reactNative.useAnimatedValue)(defaultHeaderHeight);
164
+ const animatedHeaderHeight = React.useMemo(() => _reactNative.Animated.add(rawAnimatedHeaderHeight, headerHeightCorrectionOffset), [headerHeightCorrectionOffset, rawAnimatedHeaderHeight]);
165
+
166
+ // During the very first render topInset is > 0 when running
167
+ // in non edge-to-edge mode on Android, while on every consecutive render
168
+ // topInset === 0, causing header content to jump, as we add padding on the first frame,
169
+ // just to remove it in next one. To prevent this, when statusBarTranslucent is set,
170
+ // we apply additional padding in header only if its true.
171
+ // For more details see: https://github.com/react-navigation/react-navigation/pull/12014
172
+ const headerTopInsetEnabled = typeof statusBarTranslucent === "boolean" ? statusBarTranslucent : topInset !== 0;
173
+ const canGoBack = previousDescriptor != null || parentHeaderBack != null;
174
+ const backTitle = previousDescriptor ? (0, _elements.getHeaderTitle)(previousDescriptor.options, previousDescriptor.route.name) : parentHeaderBack?.title;
175
+ const headerBack = React.useMemo(() => {
176
+ if (canGoBack) {
177
+ return {
178
+ href: undefined,
179
+ // No href needed for native
180
+ title: backTitle
181
+ };
182
+ }
183
+ return undefined;
184
+ }, [canGoBack, backTitle]);
185
+ const isRemovePrevented = preventedRoutes[route.key]?.preventRemove;
186
+ const modifiedPresentation = enableTransitions ? "containedTransparentModal" : presentation === "card" ? "push" : presentation;
187
+ const modifiedAnimation = enableTransitions ? "none" : animation;
188
+ const modifiedHeaderShown = enableTransitions || header !== undefined ? false : headerShown;
189
+ const headerConfig = (0, _useHeaderConfigProps.useHeaderConfigProps)({
190
+ ...options,
191
+ route,
192
+ headerBackButtonMenuEnabled: isRemovePrevented !== undefined ? !isRemovePrevented : headerBackButtonMenuEnabled,
193
+ headerBackTitle: options.headerBackTitle !== undefined ? options.headerBackTitle : undefined,
194
+ headerHeight,
195
+ headerShown: modifiedHeaderShown,
196
+ headerTopInsetEnabled,
197
+ headerBack
198
+ });
199
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_native.NavigationContext.Provider, {
200
+ value: navigation,
201
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_native.NavigationRouteContext.Provider, {
202
+ value: route,
203
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeScreens.ScreenStackItem, {
204
+ screenId: route.key,
205
+ activityState: isPreloaded ? 0 : 2,
206
+ style: _reactNative.StyleSheet.absoluteFill,
207
+ "aria-hidden": !focused,
208
+ customAnimationOnSwipe: animationMatchesGesture,
209
+ fullScreenSwipeEnabled: fullScreenGestureEnabled,
210
+ fullScreenSwipeShadowEnabled: fullScreenGestureShadowEnabled,
211
+ freezeOnBlur: freezeOnBlur,
212
+ gestureEnabled: _reactNative.Platform.OS === "android" ?
213
+ // This prop enables handling of system back gestures on Android
214
+ // Since we handle them in JS side, we disable this
215
+ false : nativeGestureEnabled,
216
+ homeIndicatorHidden: autoHideHomeIndicator,
217
+ hideKeyboardOnSwipe: keyboardHandlingEnabled,
218
+ navigationBarColor: navigationBarColor,
219
+ navigationBarTranslucent: navigationBarTranslucent,
220
+ navigationBarHidden: navigationBarHidden,
221
+ replaceAnimation: animationTypeForReplace,
222
+ stackPresentation: modifiedPresentation,
223
+ stackAnimation: modifiedAnimation,
224
+ screenOrientation: orientation,
225
+ sheetAllowedDetents: sheetAllowedDetents,
226
+ sheetLargestUndimmedDetentIndex: sheetLargestUndimmedDetentIndex,
227
+ sheetGrabberVisible: sheetGrabberVisible,
228
+ sheetInitialDetentIndex: sheetInitialDetentIndex,
229
+ sheetCornerRadius: sheetCornerRadius,
230
+ sheetElevation: sheetElevation,
231
+ sheetExpandsWhenScrolledToEdge: sheetExpandsWhenScrolledToEdge,
232
+ statusBarAnimation: statusBarAnimation,
233
+ statusBarHidden: statusBarHidden,
234
+ statusBarStyle: statusBarStyle,
235
+ statusBarColor: statusBarBackgroundColor,
236
+ statusBarTranslucent: statusBarTranslucent,
237
+ swipeDirection: gestureDirectionOverride,
238
+ transitionDuration: animationDuration,
239
+ onWillAppear: onWillAppear,
240
+ onWillDisappear: onWillDisappear,
241
+ onAppear: onAppear,
242
+ onDisappear: onDisappear,
243
+ onDismissed: onDismissed,
244
+ onGestureCancel: onGestureCancel,
245
+ onSheetDetentChanged: onSheetDetentChanged,
246
+ gestureResponseDistance: nativeGestureResponseDistance,
247
+ nativeBackButtonDismissalEnabled: false // on Android
248
+ ,
249
+ onHeaderBackButtonClicked: onHeaderBackButtonClicked,
250
+ preventNativeDismiss: isRemovePrevented // on iOS
251
+ ,
252
+ onNativeDismissCancelled: onNativeDismissCancelled
253
+ // Unfortunately, because of the bug that exists on Fabric, where native event drivers
254
+ // for Animated objects are being created after the first notifications about the header height
255
+ // from the native side, `onHeaderHeightChange` event does not notify
256
+ // `animatedHeaderHeight` about initial values on appearing screens at the moment.
257
+ ,
258
+ onHeaderHeightChange: _reactNative.Animated.event([{
259
+ nativeEvent: {
260
+ headerHeight: rawAnimatedHeaderHeight
261
+ }
262
+ }], {
263
+ useNativeDriver,
264
+ listener: e => {
265
+ if (hasCustomHeader) {
266
+ // If we have a custom header, don't use native header height
267
+ return;
268
+ }
269
+ if (_reactNative.Platform.OS === "android" && (options.headerBackground != null || options.headerTransparent)) {
270
+ // FIXME: On Android, we get 0 if the header is translucent
271
+ // So we set a default height in that case
272
+ setHeaderHeight(ANDROID_DEFAULT_HEADER_HEIGHT + topInset);
273
+ return;
274
+ }
275
+ if (e.nativeEvent && typeof e.nativeEvent === "object" && "headerHeight" in e.nativeEvent && typeof e.nativeEvent.headerHeight === "number") {
276
+ const headerHeight = e.nativeEvent.headerHeight + headerHeightCorrectionOffset;
277
+
278
+ // Only debounce if header has large title or search bar
279
+ // As it's the only case where the header height can change frequently
280
+ const doesHeaderAnimate = _reactNative.Platform.OS === "ios" && (options.headerLargeTitle || options.headerSearchBarOptions);
281
+ if (doesHeaderAnimate) {
282
+ setHeaderHeightDebounced(headerHeight);
283
+ } else {
284
+ setHeaderHeight(headerHeight);
285
+ }
286
+ }
287
+ }
288
+ }),
289
+ contentStyle: [modifiedPresentation !== "transparentModal" && modifiedPresentation !== "containedTransparentModal" && {
290
+ backgroundColor: colors.background
291
+ }, contentStyle],
292
+ headerConfig: headerConfig,
293
+ unstable_sheetFooter: unstable_sheetFooter
294
+ // When ts-expect-error is added, it affects all the props below it
295
+ // So we keep any props that need it at the end
296
+ // Otherwise invalid props may not be caught by TypeScript
297
+ ,
298
+ shouldFreeze: shouldFreeze,
299
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_useAnimatedHeaderHeight.AnimatedHeaderHeightContext.Provider, {
300
+ value: animatedHeaderHeight,
301
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_elements.HeaderHeightContext.Provider, {
302
+ value: headerShown !== false ? headerHeight : parentHeaderHeight ?? 0,
303
+ children: [headerBackground != null ?
304
+ /*#__PURE__*/
305
+ /**
306
+ * To show a custom header background, we render it at the top of the screen below the header
307
+ * The header also needs to be positioned absolutely (with `translucent` style)
308
+ */
309
+ (0, _jsxRuntime.jsx)(_reactNative.View, {
310
+ style: [styles.background, headerTransparent ? styles.translucent : null, {
311
+ height: headerHeight
312
+ }],
313
+ children: headerBackground()
314
+ }) : null, header != null && headerShown !== false ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
315
+ onLayout: e => {
316
+ const headerHeight = e.nativeEvent.layout.height;
317
+ setHeaderHeight(headerHeight);
318
+ rawAnimatedHeaderHeight.setValue(headerHeight);
319
+ },
320
+ style: [styles.header, headerTransparent ? styles.absolute : null],
321
+ children: header({
322
+ back: headerBack,
323
+ options,
324
+ route,
325
+ navigation
326
+ })
327
+ }) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(_elements.HeaderShownContext.Provider, {
328
+ value: isParentHeaderShown || headerShown !== false,
329
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_elements.HeaderBackContext.Provider, {
330
+ value: headerBack,
331
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_screenTransitionProvider.ScreenTransitionProvider, {
332
+ previous: previousDescriptor,
333
+ current: descriptor,
334
+ next: nextDescriptor,
335
+ LifecycleController: _screenLifecycle.NativeStackScreenLifecycleController,
336
+ children: render()
337
+ })
338
+ })
339
+ })]
340
+ })
341
+ })
342
+ }, route.key)
343
+ })
344
+ });
345
+ };
346
+ function NativeStackView({
347
+ state,
348
+ navigation,
349
+ descriptors,
350
+ describe
351
+ }) {
352
+ const {
353
+ setNextDismissedKey
354
+ } = (0, _useDismissedRouteError.useDismissedRouteError)(state);
355
+ (0, _useInvalidPreventRemoveError.useInvalidPreventRemoveError)(descriptors);
356
+ const modalRouteKeys = (0, _getModalRoutesKeys.getModalRouteKeys)(state.routes, descriptors);
357
+ const preloadedDescriptors = state.preloadedRoutes.reduce((acc, route) => {
358
+ acc[route.key] = acc[route.key] || describe(route, true);
359
+ return acc;
360
+ }, {});
361
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeGestureHandler.GestureHandlerRootView, {
362
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_elements.SafeAreaProviderCompat, {
363
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeScreens.ScreenStack, {
364
+ style: styles.container,
365
+ children: state.routes.concat(state.preloadedRoutes).map((route, index) => {
366
+ const descriptor = descriptors[route.key] ?? preloadedDescriptors[route.key];
367
+ const isFocused = state.index === index;
368
+ const isBelowFocused = state.index - 1 === index;
369
+ const previousKey = state.routes[index - 1]?.key;
370
+ const nextKey = state.routes[index + 1]?.key;
371
+ const previousDescriptor = previousKey ? descriptors[previousKey] : undefined;
372
+ const nextDescriptor = nextKey ? descriptors[nextKey] : undefined;
373
+ const isModal = modalRouteKeys.includes(route.key);
374
+ const isPreloaded = preloadedDescriptors[route.key] !== undefined && descriptors[route.key] === undefined;
375
+
376
+ // On Fabric, when screen is frozen, animated and reanimated values are not updated
377
+ // due to component being unmounted. To avoid this, we don't freeze the previous screen there
378
+ const shouldFreeze = isFabric() ? !isPreloaded && !isFocused && !isBelowFocused : !isPreloaded && !isFocused;
379
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(SceneView, {
380
+ index: index,
381
+ focused: isFocused,
382
+ shouldFreeze: shouldFreeze,
383
+ descriptor: descriptor,
384
+ previousDescriptor: previousDescriptor,
385
+ nextDescriptor: nextDescriptor,
386
+ isPresentationModal: isModal,
387
+ isPreloaded: isPreloaded,
388
+ onWillDisappear: () => {
389
+ navigation.emit({
390
+ type: "transitionStart",
391
+ data: {
392
+ closing: true
393
+ },
394
+ target: route.key
395
+ });
396
+ },
397
+ onWillAppear: () => {
398
+ navigation.emit({
399
+ type: "transitionStart",
400
+ data: {
401
+ closing: false
402
+ },
403
+ target: route.key
404
+ });
405
+ },
406
+ onAppear: () => {
407
+ navigation.emit({
408
+ type: "transitionEnd",
409
+ data: {
410
+ closing: false
411
+ },
412
+ target: route.key
413
+ });
414
+ },
415
+ onDisappear: () => {
416
+ navigation.emit({
417
+ type: "transitionEnd",
418
+ data: {
419
+ closing: true
420
+ },
421
+ target: route.key
422
+ });
423
+ },
424
+ onDismissed: event => {
425
+ navigation.dispatch({
426
+ ..._native.StackActions.pop(event.nativeEvent.dismissCount),
427
+ source: route.key,
428
+ target: state.key
429
+ });
430
+ setNextDismissedKey(route.key);
431
+ },
432
+ onHeaderBackButtonClicked: () => {
433
+ navigation.dispatch({
434
+ ..._native.StackActions.pop(),
435
+ source: route.key,
436
+ target: state.key
437
+ });
438
+ },
439
+ onNativeDismissCancelled: event => {
440
+ navigation.dispatch({
441
+ ..._native.StackActions.pop(event.nativeEvent.dismissCount),
442
+ source: route.key,
443
+ target: state.key
444
+ });
445
+ },
446
+ onGestureCancel: () => {
447
+ navigation.emit({
448
+ type: "gestureCancel",
449
+ target: route.key
450
+ });
451
+ },
452
+ onSheetDetentChanged: event => {
453
+ navigation.emit({
454
+ type: "sheetDetentChange",
455
+ target: route.key,
456
+ data: {
457
+ index: event.nativeEvent.index,
458
+ stable: event.nativeEvent.isStable
459
+ }
460
+ });
461
+ }
462
+ }, route.key);
463
+ })
464
+ })
465
+ })
466
+ });
467
+ }
468
+ const styles = _reactNative.StyleSheet.create({
469
+ container: {
470
+ flex: 1
471
+ },
472
+ header: {
473
+ zIndex: 1
474
+ },
475
+ absolute: {
476
+ position: "absolute",
477
+ top: 0,
478
+ start: 0,
479
+ end: 0
480
+ },
481
+ translucent: {
482
+ position: "absolute",
483
+ top: 0,
484
+ start: 0,
485
+ end: 0,
486
+ zIndex: 1,
487
+ elevation: 1
488
+ },
489
+ background: {
490
+ overflow: "hidden"
491
+ }
492
+ });
493
+ //# sourceMappingURL=NativeStackView.native.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_elements","require","_native","React","_interopRequireWildcard","_reactNative","_reactNativeGestureHandler","_reactNativeSafeAreaContext","_reactNativeScreens","_screenLifecycle","_screenTransitionProvider","_debounce","_getModalRoutesKeys","_useAnimatedHeaderHeight","_useDismissedRouteError","_useInvalidPreventRemoveError","_useHeaderConfigProps","_jsxRuntime","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","ANDROID_DEFAULT_HEADER_HEIGHT","isFabric","global","useNativeDriver","Platform","OS","SceneView","index","focused","shouldFreeze","descriptor","previousDescriptor","nextDescriptor","isPresentationModal","isPreloaded","onWillDisappear","onWillAppear","onAppear","onDisappear","onDismissed","onHeaderBackButtonClicked","onNativeDismissCancelled","onGestureCancel","onSheetDetentChanged","route","navigation","options","render","animation","animationMatchesGesture","presentation","fullScreenGestureEnabled","animationDuration","animationTypeForReplace","fullScreenGestureShadowEnabled","nativeGestureEnabled","nativeGestureDirection","nativeGestureResponseDistance","header","headerBackButtonMenuEnabled","headerShown","headerBackground","headerTransparent","autoHideHomeIndicator","keyboardHandlingEnabled","navigationBarColor","navigationBarTranslucent","navigationBarHidden","orientation","sheetAllowedDetents","sheetLargestUndimmedDetentIndex","sheetGrabberVisible","sheetCornerRadius","sheetElevation","sheetExpandsWhenScrolledToEdge","sheetInitialDetentIndex","statusBarAnimation","statusBarHidden","statusBarStyle","statusBarTranslucent","statusBarBackgroundColor","unstable_sheetFooter","freezeOnBlur","contentStyle","enableTransitions","undefined","nextGestureDirection","gestureDirectionOverride","colors","useTheme","insets","useSafeAreaInsets","isModal","isIPhone","isPad","isTV","isParentHeaderShown","useContext","HeaderShownContext","parentHeaderHeight","HeaderHeightContext","parentHeaderBack","HeaderBackContext","isLandscape","useFrameSize","frame","width","height","topInset","top","defaultHeaderHeight","select","android","getDefaultHeaderHeight","preventedRoutes","usePreventRemoveContext","headerHeight","setHeaderHeight","useState","setHeaderHeightDebounced","useCallback","debounce","hasCustomHeader","headerHeightCorrectionOffset","statusBarHeight","StatusBar","currentHeight","rawAnimatedHeaderHeight","useAnimatedValue","animatedHeaderHeight","useMemo","Animated","add","headerTopInsetEnabled","canGoBack","backTitle","getHeaderTitle","name","title","headerBack","href","isRemovePrevented","key","preventRemove","modifiedPresentation","modifiedAnimation","modifiedHeaderShown","headerConfig","useHeaderConfigProps","headerBackTitle","jsx","NavigationContext","Provider","value","children","NavigationRouteContext","ScreenStackItem","screenId","activityState","style","StyleSheet","absoluteFill","customAnimationOnSwipe","fullScreenSwipeEnabled","fullScreenSwipeShadowEnabled","gestureEnabled","homeIndicatorHidden","hideKeyboardOnSwipe","replaceAnimation","stackPresentation","stackAnimation","screenOrientation","statusBarColor","swipeDirection","transitionDuration","gestureResponseDistance","nativeBackButtonDismissalEnabled","preventNativeDismiss","onHeaderHeightChange","event","nativeEvent","listener","doesHeaderAnimate","headerLargeTitle","headerSearchBarOptions","backgroundColor","background","AnimatedHeaderHeightContext","jsxs","View","styles","translucent","onLayout","layout","setValue","absolute","back","ScreenTransitionProvider","previous","current","next","LifecycleController","NativeStackScreenLifecycleController","NativeStackView","state","descriptors","describe","setNextDismissedKey","useDismissedRouteError","useInvalidPreventRemoveError","modalRouteKeys","getModalRouteKeys","routes","preloadedDescriptors","preloadedRoutes","reduce","acc","GestureHandlerRootView","SafeAreaProviderCompat","ScreenStack","container","concat","map","isFocused","isBelowFocused","previousKey","nextKey","includes","emit","type","data","closing","target","dispatch","StackActions","pop","dismissCount","source","stable","isStable","create","flex","zIndex","position","start","end","elevation","overflow"],"sourceRoot":"../../../../src","sources":["native-stack/views/NativeStackView.native.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_elements","require","_native","_reactNative","_reactNativeScreens","_FontProcessor","_jsxRuntime","useHeaderConfigProps","headerBackImageSource","headerBackButtonDisplayMode","headerBackButtonMenuEnabled","headerBackTitle","headerBackTitleStyle","headerBackVisible","headerShadowVisible","headerLargeStyle","headerLargeTitle","headerLargeTitleShadowVisible","headerLargeTitleStyle","headerBackground","headerLeft","headerRight","headerShown","headerStyle","headerBlurEffect","headerTintColor","headerTitle","headerTitleAlign","headerTitleStyle","headerTransparent","headerSearchBarOptions","headerTopInsetEnabled","headerBack","route","title","direction","useLocale","colors","fonts","useTheme","tintColor","Platform","OS","primary","text","headerBackTitleStyleFlattened","StyleSheet","flatten","regular","headerLargeTitleStyleFlattened","select","ios","heavy","default","medium","headerTitleStyleFlattened","bold","headerStyleFlattened","headerLargeStyleFlattened","backTitleFontFamily","largeTitleFontFamily","titleFontFamily","processFonts","fontFamily","backTitleFontSize","fontSize","undefined","titleText","getHeaderTitle","name","titleColor","color","titleFontSize","titleFontWeight","fontWeight","largeTitleBackgroundColor","backgroundColor","largeTitleColor","largeTitleFontSize","largeTitleFontWeight","headerTitleStyleSupported","headerBackgroundColor","card","canGoBack","headerLeftElement","label","href","headerRightElement","headerTitleElement","children","hasHeaderSearchBar","isSearchBarAvailableForCurrentPlatform","backButtonInCustomView","translucent","isBackButtonDisplayModeAvailable","parseInt","Version","isCenterViewRenderedAndroid","jsxs","Fragment","jsx","ScreenStackHeaderLeftView","ScreenStackHeaderCenterView","style","flex","View","HeaderTitle","ScreenStackHeaderBackButtonImage","source","ScreenStackHeaderRightView","ScreenStackHeaderSearchBarView","SearchBar","backTitle","backTitleVisible","backButtonDisplayMode","blurEffect","disableBackButtonMenu","hidden","hideBackButton","hideShadow","largeTitle","largeTitleHideShadow","String","topInsetEnabled"],"sourceRoot":"../../../../src","sources":["native-stack/views/useHeaderConfigProps.tsx"],"mappings":"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","ignoreList":[]}