react-native-screen-transitions 3.12.0 → 3.13.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (336) hide show
  1. package/lib/commonjs/shared/components/activity/variants/activity-screen.js +1 -1
  2. package/lib/commonjs/shared/components/activity/variants/activity-screen.js.map +1 -1
  3. package/lib/commonjs/shared/components/boundary/components/boundary-lifecycle.js +0 -3
  4. package/lib/commonjs/shared/components/boundary/components/boundary-lifecycle.js.map +1 -1
  5. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-boundary-measurement-request.js +69 -0
  6. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-boundary-measurement-request.js.map +1 -0
  7. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-boundary-presence.js +11 -10
  8. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-boundary-presence.js.map +1 -1
  9. package/lib/commonjs/shared/components/boundary/hooks/use-boundary-measurement.js +3 -19
  10. package/lib/commonjs/shared/components/boundary/hooks/use-boundary-measurement.js.map +1 -1
  11. package/lib/commonjs/shared/components/boundary/hooks/use-measurer.js +6 -16
  12. package/lib/commonjs/shared/components/boundary/hooks/use-measurer.js.map +1 -1
  13. package/lib/commonjs/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js +27 -1
  14. package/lib/commonjs/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js.map +1 -1
  15. package/lib/commonjs/shared/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js +26 -8
  16. package/lib/commonjs/shared/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js.map +1 -1
  17. package/lib/commonjs/shared/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.js +8 -1
  18. package/lib/commonjs/shared/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.js.map +1 -1
  19. package/lib/commonjs/shared/components/boundary/portal/components/boundary-portal/helpers/attachment.js +19 -0
  20. package/lib/commonjs/shared/components/boundary/portal/components/boundary-portal/helpers/attachment.js.map +1 -0
  21. package/lib/commonjs/shared/components/boundary/portal/components/boundary-portal/helpers/host-readiness.js +18 -0
  22. package/lib/commonjs/shared/components/boundary/portal/components/boundary-portal/helpers/host-readiness.js.map +1 -0
  23. package/lib/commonjs/shared/components/boundary/portal/components/boundary-portal/helpers/local-measurement.js +22 -1
  24. package/lib/commonjs/shared/components/boundary/portal/components/boundary-portal/helpers/local-measurement.js.map +1 -1
  25. package/lib/commonjs/shared/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js +10 -10
  26. package/lib/commonjs/shared/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js.map +1 -1
  27. package/lib/commonjs/shared/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js +18 -6
  28. package/lib/commonjs/shared/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js.map +1 -1
  29. package/lib/commonjs/shared/providers/helpers/measured-bounds-writes.js +4 -0
  30. package/lib/commonjs/shared/providers/helpers/measured-bounds-writes.js.map +1 -1
  31. package/lib/commonjs/shared/providers/screen/animation/animation.provider.js +4 -1
  32. package/lib/commonjs/shared/providers/screen/animation/animation.provider.js.map +1 -1
  33. package/lib/commonjs/shared/providers/screen/animation/helpers/hydrate-transition-state/index.js +5 -1
  34. package/lib/commonjs/shared/providers/screen/animation/helpers/hydrate-transition-state/index.js.map +1 -1
  35. package/lib/commonjs/shared/providers/screen/animation/helpers/interpolator-participation.js +9 -0
  36. package/lib/commonjs/shared/providers/screen/animation/helpers/interpolator-participation.js.map +1 -0
  37. package/lib/commonjs/shared/providers/screen/animation/helpers/pipeline.js +13 -2
  38. package/lib/commonjs/shared/providers/screen/animation/helpers/pipeline.js.map +1 -1
  39. package/lib/commonjs/shared/providers/screen/descriptors/descriptors.provider.js +40 -8
  40. package/lib/commonjs/shared/providers/screen/descriptors/descriptors.provider.js.map +1 -1
  41. package/lib/commonjs/shared/providers/screen/descriptors/helpers/derive-descriptor-derivations.js +2 -0
  42. package/lib/commonjs/shared/providers/screen/descriptors/helpers/derive-descriptor-derivations.js.map +1 -1
  43. package/lib/commonjs/shared/providers/screen/descriptors/helpers/derive-structural-ancestor-keys.js +12 -0
  44. package/lib/commonjs/shared/providers/screen/descriptors/helpers/derive-structural-ancestor-keys.js.map +1 -0
  45. package/lib/commonjs/shared/providers/screen/gestures/pan/behavior/pan-lifecycle.js +1 -0
  46. package/lib/commonjs/shared/providers/screen/gestures/pan/behavior/pan-lifecycle.js.map +1 -1
  47. package/lib/commonjs/shared/providers/screen/gestures/pan/behavior/pan-release.js +9 -2
  48. package/lib/commonjs/shared/providers/screen/gestures/pan/behavior/pan-release.js.map +1 -1
  49. package/lib/commonjs/shared/providers/screen/gestures/pan/behavior/use-pan-behavior.js +1 -0
  50. package/lib/commonjs/shared/providers/screen/gestures/pan/behavior/use-pan-behavior.js.map +1 -1
  51. package/lib/commonjs/shared/providers/screen/styles/constants.js +2 -1
  52. package/lib/commonjs/shared/providers/screen/styles/constants.js.map +1 -1
  53. package/lib/commonjs/shared/providers/screen/styles/helpers/visibility-block-ownership.js +19 -0
  54. package/lib/commonjs/shared/providers/screen/styles/helpers/visibility-block-ownership.js.map +1 -0
  55. package/lib/commonjs/shared/providers/screen/styles/hooks/use-maybe-block-visibility.js +35 -15
  56. package/lib/commonjs/shared/providers/screen/styles/hooks/use-maybe-block-visibility.js.map +1 -1
  57. package/lib/commonjs/shared/providers/screen/styles/slot.provider.js +15 -6
  58. package/lib/commonjs/shared/providers/screen/styles/slot.provider.js.map +1 -1
  59. package/lib/commonjs/shared/stores/bounds/helpers/link-pairs.helpers.js +11 -1
  60. package/lib/commonjs/shared/stores/bounds/helpers/link-pairs.helpers.js.map +1 -1
  61. package/lib/commonjs/shared/stores/bounds/internals/clear.js +6 -0
  62. package/lib/commonjs/shared/stores/bounds/internals/clear.js.map +1 -1
  63. package/lib/commonjs/shared/stores/bounds/internals/coordinator.js +298 -0
  64. package/lib/commonjs/shared/stores/bounds/internals/coordinator.js.map +1 -0
  65. package/lib/commonjs/shared/stores/bounds/internals/entries.js +0 -27
  66. package/lib/commonjs/shared/stores/bounds/internals/entries.js.map +1 -1
  67. package/lib/commonjs/shared/stores/bounds/internals/links.js +22 -32
  68. package/lib/commonjs/shared/stores/bounds/internals/links.js.map +1 -1
  69. package/lib/commonjs/shared/stores/bounds/internals/screen-graph.js +45 -0
  70. package/lib/commonjs/shared/stores/bounds/internals/screen-graph.js.map +1 -0
  71. package/lib/commonjs/shared/stores/bounds/internals/state.js +4 -1
  72. package/lib/commonjs/shared/stores/bounds/internals/state.js.map +1 -1
  73. package/lib/commonjs/shared/utils/bounds/helpers/create-bounds-accessor-core.js +7 -3
  74. package/lib/commonjs/shared/utils/bounds/helpers/create-bounds-accessor-core.js.map +1 -1
  75. package/lib/commonjs/shared/utils/bounds/helpers/create-link-accessor.js +11 -0
  76. package/lib/commonjs/shared/utils/bounds/helpers/create-link-accessor.js.map +1 -1
  77. package/lib/commonjs/shared/utils/bounds/helpers/prepare-bound-styles.js +6 -2
  78. package/lib/commonjs/shared/utils/bounds/helpers/prepare-bound-styles.js.map +1 -1
  79. package/lib/commonjs/shared/utils/bounds/helpers/resolve-bounds-pair-key.js.map +1 -1
  80. package/lib/commonjs/shared/utils/bounds/helpers/styles/compute.js +11 -5
  81. package/lib/commonjs/shared/utils/bounds/helpers/styles/compute.js.map +1 -1
  82. package/lib/module/shared/components/activity/variants/activity-screen.js +1 -1
  83. package/lib/module/shared/components/activity/variants/activity-screen.js.map +1 -1
  84. package/lib/module/shared/components/boundary/components/boundary-lifecycle.js +0 -3
  85. package/lib/module/shared/components/boundary/components/boundary-lifecycle.js.map +1 -1
  86. package/lib/module/shared/components/boundary/hooks/lifecycles/use-boundary-measurement-request.js +64 -0
  87. package/lib/module/shared/components/boundary/hooks/lifecycles/use-boundary-measurement-request.js.map +1 -0
  88. package/lib/module/shared/components/boundary/hooks/lifecycles/use-boundary-presence.js +11 -10
  89. package/lib/module/shared/components/boundary/hooks/lifecycles/use-boundary-presence.js.map +1 -1
  90. package/lib/module/shared/components/boundary/hooks/use-boundary-measurement.js +3 -19
  91. package/lib/module/shared/components/boundary/hooks/use-boundary-measurement.js.map +1 -1
  92. package/lib/module/shared/components/boundary/hooks/use-measurer.js +6 -16
  93. package/lib/module/shared/components/boundary/hooks/use-measurer.js.map +1 -1
  94. package/lib/module/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js +24 -0
  95. package/lib/module/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js.map +1 -1
  96. package/lib/module/shared/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js +27 -9
  97. package/lib/module/shared/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js.map +1 -1
  98. package/lib/module/shared/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.js +8 -1
  99. package/lib/module/shared/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.js.map +1 -1
  100. package/lib/module/shared/components/boundary/portal/components/boundary-portal/helpers/attachment.js +14 -0
  101. package/lib/module/shared/components/boundary/portal/components/boundary-portal/helpers/attachment.js.map +1 -0
  102. package/lib/module/shared/components/boundary/portal/components/boundary-portal/helpers/host-readiness.js +13 -0
  103. package/lib/module/shared/components/boundary/portal/components/boundary-portal/helpers/host-readiness.js.map +1 -0
  104. package/lib/module/shared/components/boundary/portal/components/boundary-portal/helpers/local-measurement.js +19 -0
  105. package/lib/module/shared/components/boundary/portal/components/boundary-portal/helpers/local-measurement.js.map +1 -1
  106. package/lib/module/shared/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js +10 -10
  107. package/lib/module/shared/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js.map +1 -1
  108. package/lib/module/shared/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js +18 -6
  109. package/lib/module/shared/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js.map +1 -1
  110. package/lib/module/shared/providers/helpers/measured-bounds-writes.js +4 -0
  111. package/lib/module/shared/providers/helpers/measured-bounds-writes.js.map +1 -1
  112. package/lib/module/shared/providers/screen/animation/animation.provider.js +4 -1
  113. package/lib/module/shared/providers/screen/animation/animation.provider.js.map +1 -1
  114. package/lib/module/shared/providers/screen/animation/helpers/hydrate-transition-state/index.js +5 -1
  115. package/lib/module/shared/providers/screen/animation/helpers/hydrate-transition-state/index.js.map +1 -1
  116. package/lib/module/shared/providers/screen/animation/helpers/interpolator-participation.js +4 -0
  117. package/lib/module/shared/providers/screen/animation/helpers/interpolator-participation.js.map +1 -0
  118. package/lib/module/shared/providers/screen/animation/helpers/pipeline.js +13 -2
  119. package/lib/module/shared/providers/screen/animation/helpers/pipeline.js.map +1 -1
  120. package/lib/module/shared/providers/screen/descriptors/descriptors.provider.js +41 -9
  121. package/lib/module/shared/providers/screen/descriptors/descriptors.provider.js.map +1 -1
  122. package/lib/module/shared/providers/screen/descriptors/helpers/derive-descriptor-derivations.js +2 -0
  123. package/lib/module/shared/providers/screen/descriptors/helpers/derive-descriptor-derivations.js.map +1 -1
  124. package/lib/module/shared/providers/screen/descriptors/helpers/derive-structural-ancestor-keys.js +7 -0
  125. package/lib/module/shared/providers/screen/descriptors/helpers/derive-structural-ancestor-keys.js.map +1 -0
  126. package/lib/module/shared/providers/screen/gestures/pan/behavior/pan-lifecycle.js +1 -0
  127. package/lib/module/shared/providers/screen/gestures/pan/behavior/pan-lifecycle.js.map +1 -1
  128. package/lib/module/shared/providers/screen/gestures/pan/behavior/pan-release.js +9 -2
  129. package/lib/module/shared/providers/screen/gestures/pan/behavior/pan-release.js.map +1 -1
  130. package/lib/module/shared/providers/screen/gestures/pan/behavior/use-pan-behavior.js +1 -0
  131. package/lib/module/shared/providers/screen/gestures/pan/behavior/use-pan-behavior.js.map +1 -1
  132. package/lib/module/shared/providers/screen/styles/constants.js +2 -1
  133. package/lib/module/shared/providers/screen/styles/constants.js.map +1 -1
  134. package/lib/module/shared/providers/screen/styles/helpers/visibility-block-ownership.js +14 -0
  135. package/lib/module/shared/providers/screen/styles/helpers/visibility-block-ownership.js.map +1 -0
  136. package/lib/module/shared/providers/screen/styles/hooks/use-maybe-block-visibility.js +35 -15
  137. package/lib/module/shared/providers/screen/styles/hooks/use-maybe-block-visibility.js.map +1 -1
  138. package/lib/module/shared/providers/screen/styles/slot.provider.js +13 -5
  139. package/lib/module/shared/providers/screen/styles/slot.provider.js.map +1 -1
  140. package/lib/module/shared/stores/bounds/helpers/link-pairs.helpers.js +9 -0
  141. package/lib/module/shared/stores/bounds/helpers/link-pairs.helpers.js.map +1 -1
  142. package/lib/module/shared/stores/bounds/internals/clear.js +7 -1
  143. package/lib/module/shared/stores/bounds/internals/clear.js.map +1 -1
  144. package/lib/module/shared/stores/bounds/internals/coordinator.js +286 -0
  145. package/lib/module/shared/stores/bounds/internals/coordinator.js.map +1 -0
  146. package/lib/module/shared/stores/bounds/internals/entries.js +1 -27
  147. package/lib/module/shared/stores/bounds/internals/entries.js.map +1 -1
  148. package/lib/module/shared/stores/bounds/internals/links.js +24 -32
  149. package/lib/module/shared/stores/bounds/internals/links.js.map +1 -1
  150. package/lib/module/shared/stores/bounds/internals/screen-graph.js +39 -0
  151. package/lib/module/shared/stores/bounds/internals/screen-graph.js.map +1 -0
  152. package/lib/module/shared/stores/bounds/internals/state.js +3 -0
  153. package/lib/module/shared/stores/bounds/internals/state.js.map +1 -1
  154. package/lib/module/shared/utils/bounds/helpers/create-bounds-accessor-core.js +7 -3
  155. package/lib/module/shared/utils/bounds/helpers/create-bounds-accessor-core.js.map +1 -1
  156. package/lib/module/shared/utils/bounds/helpers/create-link-accessor.js +11 -0
  157. package/lib/module/shared/utils/bounds/helpers/create-link-accessor.js.map +1 -1
  158. package/lib/module/shared/utils/bounds/helpers/prepare-bound-styles.js +6 -2
  159. package/lib/module/shared/utils/bounds/helpers/prepare-bound-styles.js.map +1 -1
  160. package/lib/module/shared/utils/bounds/helpers/resolve-bounds-pair-key.js.map +1 -1
  161. package/lib/module/shared/utils/bounds/helpers/styles/compute.js +11 -5
  162. package/lib/module/shared/utils/bounds/helpers/styles/compute.js.map +1 -1
  163. package/lib/typescript/native-stack/views/useHeaderConfigProps.d.ts +1 -1
  164. package/lib/typescript/shared/components/boundary/components/boundary-lifecycle.d.ts.map +1 -1
  165. package/lib/typescript/shared/components/boundary/hooks/lifecycles/{use-initial-source-measurement.d.ts → use-boundary-measurement-request.d.ts} +4 -3
  166. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-boundary-measurement-request.d.ts.map +1 -0
  167. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-boundary-presence.d.ts.map +1 -1
  168. package/lib/typescript/shared/components/boundary/hooks/use-boundary-measurement.d.ts +1 -3
  169. package/lib/typescript/shared/components/boundary/hooks/use-boundary-measurement.d.ts.map +1 -1
  170. package/lib/typescript/shared/components/boundary/hooks/use-measurer.d.ts.map +1 -1
  171. package/lib/typescript/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.d.ts +12 -0
  172. package/lib/typescript/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.d.ts.map +1 -1
  173. package/lib/typescript/shared/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.d.ts.map +1 -1
  174. package/lib/typescript/shared/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.d.ts.map +1 -1
  175. package/lib/typescript/shared/components/boundary/portal/components/boundary-portal/helpers/attachment.d.ts +8 -0
  176. package/lib/typescript/shared/components/boundary/portal/components/boundary-portal/helpers/attachment.d.ts.map +1 -0
  177. package/lib/typescript/shared/components/boundary/portal/components/boundary-portal/helpers/host-readiness.d.ts +6 -0
  178. package/lib/typescript/shared/components/boundary/portal/components/boundary-portal/helpers/host-readiness.d.ts.map +1 -0
  179. package/lib/typescript/shared/components/boundary/portal/components/boundary-portal/helpers/local-measurement.d.ts +4 -1
  180. package/lib/typescript/shared/components/boundary/portal/components/boundary-portal/helpers/local-measurement.d.ts.map +1 -1
  181. package/lib/typescript/shared/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.d.ts +2 -3
  182. package/lib/typescript/shared/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.d.ts.map +1 -1
  183. package/lib/typescript/shared/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.d.ts.map +1 -1
  184. package/lib/typescript/shared/components/boundary/portal/components/boundary-portal/hooks/use-placeholder-styles.d.ts +2 -2
  185. package/lib/typescript/shared/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.d.ts +1 -1
  186. package/lib/typescript/shared/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.d.ts.map +1 -1
  187. package/lib/typescript/shared/components/boundary/types.d.ts +1 -1
  188. package/lib/typescript/shared/components/boundary/types.d.ts.map +1 -1
  189. package/lib/typescript/shared/components/create-transition-aware-component.d.ts +5 -6
  190. package/lib/typescript/shared/components/create-transition-aware-component.d.ts.map +1 -1
  191. package/lib/typescript/shared/components/overlay/hooks/use-overlay-slot.d.ts +1 -1
  192. package/lib/typescript/shared/index.d.ts +651 -703
  193. package/lib/typescript/shared/index.d.ts.map +1 -1
  194. package/lib/typescript/shared/providers/helpers/measured-bounds-writes.d.ts.map +1 -1
  195. package/lib/typescript/shared/providers/screen/animation/animation.provider.d.ts.map +1 -1
  196. package/lib/typescript/shared/providers/screen/animation/helpers/hydrate-transition-state/index.d.ts.map +1 -1
  197. package/lib/typescript/shared/providers/screen/animation/helpers/interpolator-participation.d.ts +3 -0
  198. package/lib/typescript/shared/providers/screen/animation/helpers/interpolator-participation.d.ts.map +1 -0
  199. package/lib/typescript/shared/providers/screen/animation/helpers/pipeline.d.ts +2 -1
  200. package/lib/typescript/shared/providers/screen/animation/helpers/pipeline.d.ts.map +1 -1
  201. package/lib/typescript/shared/providers/screen/descriptors/descriptors.provider.d.ts.map +1 -1
  202. package/lib/typescript/shared/providers/screen/descriptors/helpers/derive-descriptor-derivations.d.ts +4 -0
  203. package/lib/typescript/shared/providers/screen/descriptors/helpers/derive-descriptor-derivations.d.ts.map +1 -1
  204. package/lib/typescript/shared/providers/screen/descriptors/helpers/derive-structural-ancestor-keys.d.ts +5 -0
  205. package/lib/typescript/shared/providers/screen/descriptors/helpers/derive-structural-ancestor-keys.d.ts.map +1 -0
  206. package/lib/typescript/shared/providers/screen/gestures/pan/behavior/pan-lifecycle.d.ts.map +1 -1
  207. package/lib/typescript/shared/providers/screen/gestures/pan/behavior/pan-release.d.ts.map +1 -1
  208. package/lib/typescript/shared/providers/screen/gestures/pan/behavior/use-pan-behavior.d.ts.map +1 -1
  209. package/lib/typescript/shared/providers/screen/gestures/types.d.ts +1 -0
  210. package/lib/typescript/shared/providers/screen/gestures/types.d.ts.map +1 -1
  211. package/lib/typescript/shared/providers/screen/styles/constants.d.ts.map +1 -1
  212. package/lib/typescript/shared/providers/screen/styles/helpers/visibility-block-ownership.d.ts +10 -0
  213. package/lib/typescript/shared/providers/screen/styles/helpers/visibility-block-ownership.d.ts.map +1 -0
  214. package/lib/typescript/shared/providers/screen/styles/hooks/slot-resolvers.d.ts +4 -4
  215. package/lib/typescript/shared/providers/screen/styles/hooks/slot-resolvers.d.ts.map +1 -1
  216. package/lib/typescript/shared/providers/screen/styles/hooks/use-maybe-block-visibility.d.ts +10 -4
  217. package/lib/typescript/shared/providers/screen/styles/hooks/use-maybe-block-visibility.d.ts.map +1 -1
  218. package/lib/typescript/shared/providers/screen/styles/slot.provider.d.ts +1 -0
  219. package/lib/typescript/shared/providers/screen/styles/slot.provider.d.ts.map +1 -1
  220. package/lib/typescript/shared/stores/bounds/helpers/link-pairs.helpers.d.ts +1 -0
  221. package/lib/typescript/shared/stores/bounds/helpers/link-pairs.helpers.d.ts.map +1 -1
  222. package/lib/typescript/shared/stores/bounds/internals/clear.d.ts.map +1 -1
  223. package/lib/typescript/shared/stores/bounds/internals/coordinator.d.ts +36 -0
  224. package/lib/typescript/shared/stores/bounds/internals/coordinator.d.ts.map +1 -0
  225. package/lib/typescript/shared/stores/bounds/internals/entries.d.ts +1 -2
  226. package/lib/typescript/shared/stores/bounds/internals/entries.d.ts.map +1 -1
  227. package/lib/typescript/shared/stores/bounds/internals/links.d.ts +1 -3
  228. package/lib/typescript/shared/stores/bounds/internals/links.d.ts.map +1 -1
  229. package/lib/typescript/shared/stores/bounds/internals/screen-graph.d.ts +5 -0
  230. package/lib/typescript/shared/stores/bounds/internals/screen-graph.d.ts.map +1 -0
  231. package/lib/typescript/shared/stores/bounds/internals/state.d.ts +3 -1
  232. package/lib/typescript/shared/stores/bounds/internals/state.d.ts.map +1 -1
  233. package/lib/typescript/shared/stores/bounds/types.d.ts +13 -1
  234. package/lib/typescript/shared/stores/bounds/types.d.ts.map +1 -1
  235. package/lib/typescript/shared/types/screen.types.d.ts +9 -0
  236. package/lib/typescript/shared/types/screen.types.d.ts.map +1 -1
  237. package/lib/typescript/shared/utils/bounds/helpers/create-bounds-accessor-core.d.ts.map +1 -1
  238. package/lib/typescript/shared/utils/bounds/helpers/create-link-accessor.d.ts.map +1 -1
  239. package/lib/typescript/shared/utils/bounds/helpers/prepare-bound-styles.d.ts.map +1 -1
  240. package/lib/typescript/shared/utils/bounds/helpers/resolve-bounds-pair-key.d.ts.map +1 -1
  241. package/lib/typescript/shared/utils/bounds/helpers/styles/compute.d.ts.map +1 -1
  242. package/package.json +1 -1
  243. package/src/shared/components/activity/variants/activity-screen.tsx +1 -1
  244. package/src/shared/components/boundary/components/boundary-lifecycle.tsx +0 -6
  245. package/src/shared/components/boundary/hooks/lifecycles/use-boundary-measurement-request.ts +102 -0
  246. package/src/shared/components/boundary/hooks/lifecycles/use-boundary-presence.ts +20 -11
  247. package/src/shared/components/boundary/hooks/use-boundary-measurement.ts +3 -22
  248. package/src/shared/components/boundary/hooks/use-measurer.ts +5 -20
  249. package/src/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.ts +40 -0
  250. package/src/shared/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.ts +68 -20
  251. package/src/shared/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.tsx +10 -1
  252. package/src/shared/components/boundary/portal/components/boundary-portal/helpers/attachment.ts +19 -0
  253. package/src/shared/components/boundary/portal/components/boundary-portal/helpers/host-readiness.ts +14 -0
  254. package/src/shared/components/boundary/portal/components/boundary-portal/helpers/local-measurement.ts +36 -1
  255. package/src/shared/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.ts +22 -13
  256. package/src/shared/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.ts +26 -9
  257. package/src/shared/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.ts +1 -1
  258. package/src/shared/components/boundary/types.ts +1 -1
  259. package/src/shared/providers/helpers/measured-bounds-writes.ts +5 -0
  260. package/src/shared/providers/screen/animation/animation.provider.tsx +7 -1
  261. package/src/shared/providers/screen/animation/helpers/hydrate-transition-state/index.ts +18 -3
  262. package/src/shared/providers/screen/animation/helpers/interpolator-participation.ts +6 -0
  263. package/src/shared/providers/screen/animation/helpers/pipeline.ts +54 -32
  264. package/src/shared/providers/screen/descriptors/descriptors.provider.tsx +80 -14
  265. package/src/shared/providers/screen/descriptors/helpers/derive-descriptor-derivations.ts +6 -0
  266. package/src/shared/providers/screen/descriptors/helpers/derive-structural-ancestor-keys.ts +13 -0
  267. package/src/shared/providers/screen/gestures/pan/behavior/pan-lifecycle.ts +1 -0
  268. package/src/shared/providers/screen/gestures/pan/behavior/pan-release.ts +12 -2
  269. package/src/shared/providers/screen/gestures/pan/behavior/use-pan-behavior.ts +1 -0
  270. package/src/shared/providers/screen/gestures/types.ts +1 -0
  271. package/src/shared/providers/screen/styles/constants.ts +1 -0
  272. package/src/shared/providers/screen/styles/helpers/visibility-block-ownership.ts +16 -0
  273. package/src/shared/providers/screen/styles/hooks/use-maybe-block-visibility.tsx +40 -15
  274. package/src/shared/providers/screen/styles/slot.provider.tsx +19 -5
  275. package/src/shared/stores/bounds/helpers/link-pairs.helpers.ts +12 -0
  276. package/src/shared/stores/bounds/internals/clear.ts +12 -1
  277. package/src/shared/stores/bounds/internals/coordinator.ts +403 -0
  278. package/src/shared/stores/bounds/internals/entries.ts +1 -38
  279. package/src/shared/stores/bounds/internals/links.ts +28 -38
  280. package/src/shared/stores/bounds/internals/screen-graph.ts +45 -0
  281. package/src/shared/stores/bounds/internals/state.ts +10 -1
  282. package/src/shared/stores/bounds/types.ts +19 -1
  283. package/src/shared/types/screen.types.ts +10 -0
  284. package/src/shared/utils/bounds/helpers/create-bounds-accessor-core.ts +8 -3
  285. package/src/shared/utils/bounds/helpers/create-link-accessor.ts +11 -0
  286. package/src/shared/utils/bounds/helpers/prepare-bound-styles.ts +3 -2
  287. package/src/shared/utils/bounds/helpers/resolve-bounds-pair-key.ts +0 -1
  288. package/src/shared/utils/bounds/helpers/styles/compute.ts +12 -5
  289. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js +0 -177
  290. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js.map +0 -1
  291. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-initial-source-measurement.js +0 -49
  292. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-initial-source-measurement.js.map +0 -1
  293. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-refresh-boundary.js +0 -69
  294. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-refresh-boundary.js.map +0 -1
  295. package/lib/commonjs/shared/components/boundary/utils/destination-signals.js +0 -68
  296. package/lib/commonjs/shared/components/boundary/utils/destination-signals.js.map +0 -1
  297. package/lib/commonjs/shared/components/boundary/utils/refresh-signals.js +0 -97
  298. package/lib/commonjs/shared/components/boundary/utils/refresh-signals.js.map +0 -1
  299. package/lib/commonjs/shared/components/boundary/utils/source-signals.js +0 -43
  300. package/lib/commonjs/shared/components/boundary/utils/source-signals.js.map +0 -1
  301. package/lib/commonjs/shared/providers/screen/descriptors/helpers/get-ancestor-keys.js +0 -29
  302. package/lib/commonjs/shared/providers/screen/descriptors/helpers/get-ancestor-keys.js.map +0 -1
  303. package/lib/module/shared/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js +0 -173
  304. package/lib/module/shared/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js.map +0 -1
  305. package/lib/module/shared/components/boundary/hooks/lifecycles/use-initial-source-measurement.js +0 -44
  306. package/lib/module/shared/components/boundary/hooks/lifecycles/use-initial-source-measurement.js.map +0 -1
  307. package/lib/module/shared/components/boundary/hooks/lifecycles/use-refresh-boundary.js +0 -64
  308. package/lib/module/shared/components/boundary/hooks/lifecycles/use-refresh-boundary.js.map +0 -1
  309. package/lib/module/shared/components/boundary/utils/destination-signals.js +0 -63
  310. package/lib/module/shared/components/boundary/utils/destination-signals.js.map +0 -1
  311. package/lib/module/shared/components/boundary/utils/refresh-signals.js +0 -92
  312. package/lib/module/shared/components/boundary/utils/refresh-signals.js.map +0 -1
  313. package/lib/module/shared/components/boundary/utils/source-signals.js +0 -38
  314. package/lib/module/shared/components/boundary/utils/source-signals.js.map +0 -1
  315. package/lib/module/shared/providers/screen/descriptors/helpers/get-ancestor-keys.js +0 -25
  316. package/lib/module/shared/providers/screen/descriptors/helpers/get-ancestor-keys.js.map +0 -1
  317. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-initial-destination-measurement.d.ts +0 -10
  318. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-initial-destination-measurement.d.ts.map +0 -1
  319. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-initial-source-measurement.d.ts.map +0 -1
  320. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-refresh-boundary.d.ts +0 -10
  321. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-refresh-boundary.d.ts.map +0 -1
  322. package/lib/typescript/shared/components/boundary/utils/destination-signals.d.ts +0 -16
  323. package/lib/typescript/shared/components/boundary/utils/destination-signals.d.ts.map +0 -1
  324. package/lib/typescript/shared/components/boundary/utils/refresh-signals.d.ts +0 -19
  325. package/lib/typescript/shared/components/boundary/utils/refresh-signals.d.ts.map +0 -1
  326. package/lib/typescript/shared/components/boundary/utils/source-signals.d.ts +0 -14
  327. package/lib/typescript/shared/components/boundary/utils/source-signals.d.ts.map +0 -1
  328. package/lib/typescript/shared/providers/screen/descriptors/helpers/get-ancestor-keys.d.ts +0 -6
  329. package/lib/typescript/shared/providers/screen/descriptors/helpers/get-ancestor-keys.d.ts.map +0 -1
  330. package/src/shared/components/boundary/hooks/lifecycles/use-initial-destination-measurement.ts +0 -267
  331. package/src/shared/components/boundary/hooks/lifecycles/use-initial-source-measurement.ts +0 -51
  332. package/src/shared/components/boundary/hooks/lifecycles/use-refresh-boundary.ts +0 -90
  333. package/src/shared/components/boundary/utils/destination-signals.ts +0 -75
  334. package/src/shared/components/boundary/utils/refresh-signals.ts +0 -164
  335. package/src/shared/components/boundary/utils/source-signals.ts +0 -51
  336. package/src/shared/providers/screen/descriptors/helpers/get-ancestor-keys.ts +0 -28
@@ -1 +1 @@
1
- {"version":3,"names":["_constants","require","_createBoundTag","_createLinkAccessor","_prepareBoundStyles","createBoundsAccessorParts","getProps","extendResult","getLink","createLinkAccessor","createScopedBounds","identity","props","normalizedIdentity","normalizeBoundIdentity","tag","createBoundTag","syncActiveGroupId","id","group","getValues","options","prepareBoundStyles","raw","scoped","styles","active","animating","NO_STYLES","values","math","link","linkIdentity","linkTag","target","createBoundsAccessorCore","params","exports"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/create-bounds-accessor-core.ts"],"mappings":";;;;;;AAAA,IAAAA,UAAA,GAAAC,OAAA;AAaA,IAAAC,eAAA,GAAAD,OAAA;AACA,IAAAE,mBAAA,GAAAF,OAAA;AACA,IAAAG,mBAAA,GAAAH,OAAA;AAcA,MAAMI,yBAAyB,GAAGA,CAAC;EAClCC,QAAQ;EACRC;AAC+B,CAAC,KAAK;EACrC,SAAS;;EAET,MAAM;IAAEC;EAAQ,CAAC,GAAG,IAAAC,sCAAkB,EAACH,QAAQ,CAAC;EAEhD,MAAMI,kBAAkB,GACvBC,QAA6B,IACH;IAC1B,SAAS;;IACT,MAAMC,KAAK,GAAGN,QAAQ,CAAC,CAAC;IACxB,MAAMO,kBAAkB,GAAG,IAAAC,sCAAsB,EAACH,QAAQ,CAAC;IAC3D,MAAMI,GAAG,GAAG,IAAAC,8BAAc,EAACH,kBAAkB,CAAC;IAC9C,IAAAI,qCAAiB,EAAC;MACjBL,KAAK;MACLM,EAAE,EAAEL,kBAAkB,CAACK,EAAE;MACzBC,KAAK,EAAEN,kBAAkB,CAACM;IAC3B,CAAC,CAAC;IACF,MAAMC,SAAS,GACdC,OAAW,IACgB;MAC3B,SAAS;;MACT,OAAO,IAAAC,sCAAkB,EAAC;QACzBV,KAAK;QACLS,OAAO,EAAE;UACR,GAAGA,OAAO;UACVH,EAAE,EAAEL,kBAAkB,CAACK,EAAE;UACzBC,KAAK,EAAEN,kBAAkB,CAACM,KAAK;UAC/BI,GAAG,EAAE;QACN;MACD,CAAC,CAAC;IACH,CAAC;IAED,MAAMC,MAA4B,GAAG;MACpCC,MAAM,EAAGJ,OAA8B,IAAwB;QAC9D,SAAS;;QACT;QACA;QACA,IAAI,CAACT,KAAK,CAACc,MAAM,CAACC,SAAS,EAAE;UAC5B,OAAOC,oBAAS;QACjB;QAEA,OAAO,IAAAN,sCAAkB,EAAC;UACzBV,KAAK;UACLS,OAAO,EAAE;YACR,GAAGA,OAAO;YACVH,EAAE,EAAEL,kBAAkB,CAACK,EAAE;YACzBC,KAAK,EAAEN,kBAAkB,CAACM;UAC3B;QACD,CAAC,CAAC;MACH,CAAC;MACDU,MAAM,EAAET,SAAS;MACjBU,IAAI,EACHT,OAAW,IACP;QACJ,SAAS;;QACT,OAAOD,SAAS,CAACC,OAAO,CAAC;MAC1B,CAAC;MACDU,IAAI,EAAGb,EAAwB,IAAK;QACnC,SAAS;;QACT,MAAMc,YAAY,GACjBd,EAAE,IAAI,IAAI,GACPL,kBAAkB,GAClB,IAAAC,sCAAsB,EAACI,EAAE,EAAEL,kBAAkB,CAACM,KAAK,CAAC;QACxD,MAAMc,OAAO,GAAG,IAAAjB,8BAAc,EAACgB,YAAY,CAAC;QAC5C,OAAOxB,OAAO,CAACyB,OAAO,IAAI,EAAE,CAAC;MAC9B;IACD,CAAyB;IAEzB1B,YAAY,GAAG;MACd2B,MAAM,EAAEV,MAAM;MACdb,QAAQ,EAAEE,kBAAkB;MAC5BD,KAAK;MACLG;IACD,CAAC,CAAC;IAEF,OAAOS,MAAM;EACd,CAAoB;EAEpB,OAAO;IACNd;EACD,CAAC;AACF,CAAC;AAEM,MAAMyB,wBAAwB,GACpCC,MAAsC,IAClB;EACpB,SAAS;;EAET,MAAM;IAAE1B;EAAmB,CAAC,GAAGL,yBAAyB,CAAC+B,MAAM,CAAC;EAEhE,OAAO1B,kBAAkB;AAC1B,CAAC;AAAC2B,OAAA,CAAAF,wBAAA,GAAAA,wBAAA","ignoreList":[]}
1
+ {"version":3,"names":["_constants","require","_createBoundTag","_createLinkAccessor","_prepareBoundStyles","createBoundsAccessorParts","getProps","extendResult","getLink","createLinkAccessor","createScopedBounds","identity","props","normalizedIdentity","normalizeBoundIdentity","tag","createBoundTag","syncActiveGroupId","id","group","getValues","options","prepareBoundStyles","raw","scoped","styles","shouldRenderStyles","active","animating","willAnimate","NO_STYLES","preparedStyles","values","math","link","linkIdentity","linkTag","target","createBoundsAccessorCore","params","exports"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/create-bounds-accessor-core.ts"],"mappings":";;;;;;AAAA,IAAAA,UAAA,GAAAC,OAAA;AAaA,IAAAC,eAAA,GAAAD,OAAA;AACA,IAAAE,mBAAA,GAAAF,OAAA;AACA,IAAAG,mBAAA,GAAAH,OAAA;AAcA,MAAMI,yBAAyB,GAAGA,CAAC;EAClCC,QAAQ;EACRC;AAC+B,CAAC,KAAK;EACrC,SAAS;;EAET,MAAM;IAAEC;EAAQ,CAAC,GAAG,IAAAC,sCAAkB,EAACH,QAAQ,CAAC;EAEhD,MAAMI,kBAAkB,GACvBC,QAA6B,IACH;IAC1B,SAAS;;IACT,MAAMC,KAAK,GAAGN,QAAQ,CAAC,CAAC;IACxB,MAAMO,kBAAkB,GAAG,IAAAC,sCAAsB,EAACH,QAAQ,CAAC;IAC3D,MAAMI,GAAG,GAAG,IAAAC,8BAAc,EAACH,kBAAkB,CAAC;IAC9C,IAAAI,qCAAiB,EAAC;MACjBL,KAAK;MACLM,EAAE,EAAEL,kBAAkB,CAACK,EAAE;MACzBC,KAAK,EAAEN,kBAAkB,CAACM;IAC3B,CAAC,CAAC;IACF,MAAMC,SAAS,GACdC,OAAW,IACgB;MAC3B,SAAS;;MACT,OAAO,IAAAC,sCAAkB,EAAC;QACzBV,KAAK;QACLS,OAAO,EAAE;UACR,GAAGA,OAAO;UACVH,EAAE,EAAEL,kBAAkB,CAACK,EAAE;UACzBC,KAAK,EAAEN,kBAAkB,CAACM,KAAK;UAC/BI,GAAG,EAAE;QACN;MACD,CAAC,CAAC;IACH,CAAC;IAED,MAAMC,MAA4B,GAAG;MACpCC,MAAM,EAAGJ,OAA8B,IAAwB;QAC9D,SAAS;;QACT;QACA;QACA;QACA;QACA,MAAMK,kBAAkB,GAAG,CAAC,CAACd,KAAK,CAACe,MAAM,CAACC,SAAS;QACnD,IAAI,CAACF,kBAAkB,IAAI,CAACd,KAAK,CAACe,MAAM,CAACE,WAAW,EAAE;UACrD,OAAOC,oBAAS;QACjB;QAEA,MAAMC,cAAc,GAAG,IAAAT,sCAAkB,EAAC;UACzCV,KAAK;UACLS,OAAO,EAAE;YACR,GAAGA,OAAO;YACVH,EAAE,EAAEL,kBAAkB,CAACK,EAAE;YACzBC,KAAK,EAAEN,kBAAkB,CAACM;UAC3B;QACD,CAAC,CAAsB;QAEvB,OAAOO,kBAAkB,GAAGK,cAAc,GAAGD,oBAAS;MACvD,CAAC;MACDE,MAAM,EAAEZ,SAAS;MACjBa,IAAI,EACHZ,OAAW,IACP;QACJ,SAAS;;QACT,OAAOD,SAAS,CAACC,OAAO,CAAC;MAC1B,CAAC;MACDa,IAAI,EAAGhB,EAAwB,IAAK;QACnC,SAAS;;QACT,MAAMiB,YAAY,GACjBjB,EAAE,IAAI,IAAI,GACPL,kBAAkB,GAClB,IAAAC,sCAAsB,EAACI,EAAE,EAAEL,kBAAkB,CAACM,KAAK,CAAC;QACxD,MAAMiB,OAAO,GAAG,IAAApB,8BAAc,EAACmB,YAAY,CAAC;QAC5C,OAAO3B,OAAO,CAAC4B,OAAO,IAAI,EAAE,CAAC;MAC9B;IACD,CAAyB;IAEzB7B,YAAY,GAAG;MACd8B,MAAM,EAAEb,MAAM;MACdb,QAAQ,EAAEE,kBAAkB;MAC5BD,KAAK;MACLG;IACD,CAAC,CAAC;IAEF,OAAOS,MAAM;EACd,CAAoB;EAEpB,OAAO;IACNd;EACD,CAAC;AACF,CAAC;AAEM,MAAM4B,wBAAwB,GACpCC,MAAsC,IAClB;EACpB,SAAS;;EAET,MAAM;IAAE7B;EAAmB,CAAC,GAAGL,yBAAyB,CAACkC,MAAM,CAAC;EAEhE,OAAO7B,kBAAkB;AAC1B,CAAC;AAAC8B,OAAA,CAAAF,wBAAA,GAAAA,wBAAA","ignoreList":[]}
@@ -4,7 +4,9 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.createLinkAccessor = void 0;
7
+ var _coordinator = require("../../../stores/bounds/internals/coordinator");
7
8
  var _links = require("../../../stores/bounds/internals/links");
9
+ var _resolveBoundsPairKey = require("./resolve-bounds-pair-key");
8
10
  const createLinkAccessor = getProps => {
9
11
  "worklet";
10
12
 
@@ -13,6 +15,15 @@ const createLinkAccessor = getProps => {
13
15
 
14
16
  const props = getProps();
15
17
  const stringTag = String(tag);
18
+ const requestedPairKey = (0, _resolveBoundsPairKey.resolveBoundsPairKey)(props);
19
+ if (requestedPairKey) {
20
+ (0, _coordinator.requestBoundaryMeasurements)({
21
+ pairKey: requestedPairKey,
22
+ tag: stringTag,
23
+ destination: true,
24
+ refresh: !!props.active.willAnimate
25
+ });
26
+ }
16
27
  const destinationScreenKey = props.next?.route.key ?? props.current?.route.key;
17
28
  const pairKey = destinationScreenKey ? (0, _links.getPairKeyForDestination)(stringTag, destinationScreenKey) : null;
18
29
  if (!pairKey) return null;
@@ -1 +1 @@
1
- {"version":3,"names":["_links","require","createLinkAccessor","getProps","getLink","tag","props","stringTag","String","destinationScreenKey","next","route","key","current","pairKey","getPairKeyForDestination","resolved","getResolvedLink","link","id","exports"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/create-link-accessor.ts"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AAgBO,MAAMC,kBAAkB,GAAIC,QAAkB,IAAmB;EACvE,SAAS;;EAET,MAAMC,OAAO,GAAIC,GAAY,IAAwB;IACpD,SAAS;;IACT,MAAMC,KAAK,GAAGH,QAAQ,CAAC,CAAC;IACxB,MAAMI,SAAS,GAAGC,MAAM,CAACH,GAAG,CAAC;IAC7B,MAAMI,oBAAoB,GACzBH,KAAK,CAACI,IAAI,EAAEC,KAAK,CAACC,GAAG,IAAIN,KAAK,CAACO,OAAO,EAAEF,KAAK,CAACC,GAAG;IAClD,MAAME,OAAO,GAAGL,oBAAoB,GACjC,IAAAM,+BAAwB,EAACR,SAAS,EAAEE,oBAAoB,CAAC,GACzD,IAAI;IACP,IAAI,CAACK,OAAO,EAAE,OAAO,IAAI;IAEzB,MAAME,QAAQ,GAAG,IAAAC,sBAAe,EAACH,OAAO,EAAEP,SAAS,CAAC;IACpD,OAAOS,QAAQ,CAACE,IAAI,GACjB;MACAC,EAAE,EAAEH,QAAQ,CAACX,GAAG;MAChB,GAAGW,QAAQ,CAACE;IACb,CAAC,GACA,IAAI;EACR,CAAC;EAED,OAAO;IACNd;EACD,CAAC;AACF,CAAC;AAACgB,OAAA,CAAAlB,kBAAA,GAAAA,kBAAA","ignoreList":[]}
1
+ {"version":3,"names":["_coordinator","require","_links","_resolveBoundsPairKey","createLinkAccessor","getProps","getLink","tag","props","stringTag","String","requestedPairKey","resolveBoundsPairKey","requestBoundaryMeasurements","pairKey","destination","refresh","active","willAnimate","destinationScreenKey","next","route","key","current","getPairKeyForDestination","resolved","getResolvedLink","link","id","exports"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/create-link-accessor.ts"],"mappings":";;;;;;AAAA,IAAAA,YAAA,GAAAC,OAAA;AACA,IAAAC,MAAA,GAAAD,OAAA;AASA,IAAAE,qBAAA,GAAAF,OAAA;AAQO,MAAMG,kBAAkB,GAAIC,QAAkB,IAAmB;EACvE,SAAS;;EAET,MAAMC,OAAO,GAAIC,GAAY,IAAwB;IACpD,SAAS;;IACT,MAAMC,KAAK,GAAGH,QAAQ,CAAC,CAAC;IACxB,MAAMI,SAAS,GAAGC,MAAM,CAACH,GAAG,CAAC;IAC7B,MAAMI,gBAAgB,GAAG,IAAAC,0CAAoB,EAACJ,KAAK,CAAC;IACpD,IAAIG,gBAAgB,EAAE;MACrB,IAAAE,wCAA2B,EAAC;QAC3BC,OAAO,EAAEH,gBAAgB;QACzBJ,GAAG,EAAEE,SAAS;QACdM,WAAW,EAAE,IAAI;QACjBC,OAAO,EAAE,CAAC,CAACR,KAAK,CAACS,MAAM,CAACC;MACzB,CAAC,CAAC;IACH;IACA,MAAMC,oBAAoB,GACzBX,KAAK,CAACY,IAAI,EAAEC,KAAK,CAACC,GAAG,IAAId,KAAK,CAACe,OAAO,EAAEF,KAAK,CAACC,GAAG;IAClD,MAAMR,OAAO,GAAGK,oBAAoB,GACjC,IAAAK,+BAAwB,EAACf,SAAS,EAAEU,oBAAoB,CAAC,GACzD,IAAI;IACP,IAAI,CAACL,OAAO,EAAE,OAAO,IAAI;IAEzB,MAAMW,QAAQ,GAAG,IAAAC,sBAAe,EAACZ,OAAO,EAAEL,SAAS,CAAC;IACpD,OAAOgB,QAAQ,CAACE,IAAI,GACjB;MACAC,EAAE,EAAEH,QAAQ,CAAClB,GAAG;MAChB,GAAGkB,QAAQ,CAACE;IACb,CAAC,GACA,IAAI;EACR,CAAC;EAED,OAAO;IACNrB;EACD,CAAC;AACF,CAAC;AAACuB,OAAA,CAAAzB,kBAAA,GAAAA,kBAAA","ignoreList":[]}
@@ -42,10 +42,14 @@ const syncActiveGroupId = params => {
42
42
  group
43
43
  } = params;
44
44
  if (id == null || id === "" || !group) return;
45
- const pairKey = (0, _resolveBoundsPairKey.resolveBoundsPairKey)(props);
45
+ const tag = (0, _createBoundTag.createBoundTag)({
46
+ id,
47
+ group
48
+ });
49
+ const pairKey = tag ? (0, _resolveBoundsPairKey.resolveBoundsPairKey)(props) : null;
46
50
  if (!pairKey) return;
47
51
  const activeId = String(id);
48
- if ((0, _links.getActiveGroupId)(pairKey, group) === activeId) return;
52
+ if ((0, _links.getActiveGroupId)(pairKey, group) !== null) return;
49
53
  (0, _links.setActiveGroupId)(pairKey, group, activeId);
50
54
  };
51
55
  exports.syncActiveGroupId = syncActiveGroupId;
@@ -1 +1 @@
1
- {"version":3,"names":["_entries","require","_links","_constants","_createBoundTag","_resolveBoundsPairKey","_compute","buildBoundsOptions","props","id","group","overrides","tag","createBoundTag","currentScreenKey","current","route","key","boundaryConfig","getEntry","resolved","DEFAULT_BOUNDS_OPTIONS","syncActiveGroupId","params","pairKey","resolveBoundsPairKey","activeId","String","getActiveGroupId","setActiveGroupId","exports","prepareBoundStyles","options","resolvedPair","computeBoundStyles","previous","next","progress","dimensions","layouts","screen","interpolationProps"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/prepare-bound-styles.ts"],"mappings":";;;;;;AAAA,IAAAA,QAAA,GAAAC,OAAA;AACA,IAAAC,MAAA,GAAAD,OAAA;AAMA,IAAAE,UAAA,GAAAF,OAAA;AAMA,IAAAG,eAAA,GAAAH,OAAA;AACA,IAAAI,qBAAA,GAAAJ,OAAA;AACA,IAAAK,QAAA,GAAAL,OAAA;AAiBA,MAAMM,kBAAkB,GAAGA,CAAC;EAC3BC,KAAK;EACLC,EAAE;EACFC,KAAK;EACLC;AACyB,CAAC,KAAoB;EAC9C,SAAS;;EAET,MAAMC,GAAG,GAAG,IAAAC,8BAAc,EAAC;IAAEJ,EAAE;IAAEC;EAAM,CAAC,CAAC;EACzC,MAAMI,gBAAgB,GAAGN,KAAK,CAACO,OAAO,EAAEC,KAAK,CAACC,GAAG;EAEjD,MAAMC,cAAc,GACnBN,GAAG,IAAIE,gBAAgB,GACnB,IAAAK,iBAAQ,EAACP,GAAG,EAAEE,gBAAgB,CAAC,EAAEI,cAAc,IAAI,IAAI,GACxD,IAAI;EAER,MAAME,QAAQ,GAAG;IAChB,GAAGC,iCAAsB;IACzB,IAAIH,cAAc,IAAI,CAAC,CAAC,CAAC;IACzB,IAAIP,SAAS,IAAI,CAAC,CAAC,CAAC;IACpBF,EAAE,EAAEG,GAAG,IAAI,EAAE;IACbF;EACD,CAAC;EAED,OAAOU,QAAQ;AAChB,CAAC;AAEM,MAAME,iBAAiB,GAAIC,MAIjC,IAAK;EACL,SAAS;;EACT,MAAM;IAAEf,KAAK;IAAEC,EAAE;IAAEC;EAAM,CAAC,GAAGa,MAAM;EACnC,IAAId,EAAE,IAAI,IAAI,IAAIA,EAAE,KAAK,EAAE,IAAI,CAACC,KAAK,EAAE;EAEvC,MAAMc,OAAO,GAAG,IAAAC,0CAAoB,EAACjB,KAAK,CAAC;EAC3C,IAAI,CAACgB,OAAO,EAAE;EAEd,MAAME,QAAQ,GAAGC,MAAM,CAAClB,EAAE,CAAC;EAC3B,IAAI,IAAAmB,uBAAgB,EAACJ,OAAO,EAAEd,KAAK,CAAC,KAAKgB,QAAQ,EAAE;EAEnD,IAAAG,uBAAgB,EAACL,OAAO,EAAEd,KAAK,EAAEgB,QAAQ,CAAC;AAC3C,CAAC;AAACI,OAAA,CAAAR,iBAAA,GAAAA,iBAAA;AAEK,MAAMS,kBAAkB,GAAGA,CAA0B;EAC3DvB,KAAK;EACLwB,OAAO;EACPC;AACqC,CAAC,KAA6B;EACnE,SAAS;;EAET,MAAMb,QAAQ,GAAGb,kBAAkB,CAAC;IACnCC,KAAK;IACLC,EAAE,EAAEuB,OAAO,CAACvB,EAAE;IACdC,KAAK,EAAEsB,OAAO,CAACtB,KAAK;IACpBC,SAAS,EAAEqB;EACZ,CAAC,CAAC;EAEF,OAAO,IAAAE,2BAAkB,EACxB;IACCzB,EAAE,EAAEW,QAAQ,CAACX,EAAE;IACf0B,QAAQ,EAAE3B,KAAK,CAAC2B,QAAQ;IACxBpB,OAAO,EAAEP,KAAK,CAACO,OAAO;IACtBqB,IAAI,EAAE5B,KAAK,CAAC4B,IAAI;IAChBC,QAAQ,EAAEjB,QAAQ,CAACiB,QAAQ,IAAI7B,KAAK,CAAC6B,QAAQ;IAC7CC,UAAU,EAAE9B,KAAK,CAAC+B,OAAO,CAACC,MAAM;IAChCC,kBAAkB,EAAEjC;EACrB,CAAC,EACDY,QAAQ,EACRa,YACD,CAAC;AACF,CAAC;AAACH,OAAA,CAAAC,kBAAA,GAAAA,kBAAA","ignoreList":[]}
1
+ {"version":3,"names":["_entries","require","_links","_constants","_createBoundTag","_resolveBoundsPairKey","_compute","buildBoundsOptions","props","id","group","overrides","tag","createBoundTag","currentScreenKey","current","route","key","boundaryConfig","getEntry","resolved","DEFAULT_BOUNDS_OPTIONS","syncActiveGroupId","params","pairKey","resolveBoundsPairKey","activeId","String","getActiveGroupId","setActiveGroupId","exports","prepareBoundStyles","options","resolvedPair","computeBoundStyles","previous","next","progress","dimensions","layouts","screen","interpolationProps"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/prepare-bound-styles.ts"],"mappings":";;;;;;AAAA,IAAAA,QAAA,GAAAC,OAAA;AACA,IAAAC,MAAA,GAAAD,OAAA;AAMA,IAAAE,UAAA,GAAAF,OAAA;AAMA,IAAAG,eAAA,GAAAH,OAAA;AACA,IAAAI,qBAAA,GAAAJ,OAAA;AACA,IAAAK,QAAA,GAAAL,OAAA;AAiBA,MAAMM,kBAAkB,GAAGA,CAAC;EAC3BC,KAAK;EACLC,EAAE;EACFC,KAAK;EACLC;AACyB,CAAC,KAAoB;EAC9C,SAAS;;EAET,MAAMC,GAAG,GAAG,IAAAC,8BAAc,EAAC;IAAEJ,EAAE;IAAEC;EAAM,CAAC,CAAC;EACzC,MAAMI,gBAAgB,GAAGN,KAAK,CAACO,OAAO,EAAEC,KAAK,CAACC,GAAG;EAEjD,MAAMC,cAAc,GACnBN,GAAG,IAAIE,gBAAgB,GACnB,IAAAK,iBAAQ,EAACP,GAAG,EAAEE,gBAAgB,CAAC,EAAEI,cAAc,IAAI,IAAI,GACxD,IAAI;EAER,MAAME,QAAQ,GAAG;IAChB,GAAGC,iCAAsB;IACzB,IAAIH,cAAc,IAAI,CAAC,CAAC,CAAC;IACzB,IAAIP,SAAS,IAAI,CAAC,CAAC,CAAC;IACpBF,EAAE,EAAEG,GAAG,IAAI,EAAE;IACbF;EACD,CAAC;EAED,OAAOU,QAAQ;AAChB,CAAC;AAEM,MAAME,iBAAiB,GAAIC,MAIjC,IAAK;EACL,SAAS;;EACT,MAAM;IAAEf,KAAK;IAAEC,EAAE;IAAEC;EAAM,CAAC,GAAGa,MAAM;EACnC,IAAId,EAAE,IAAI,IAAI,IAAIA,EAAE,KAAK,EAAE,IAAI,CAACC,KAAK,EAAE;EAEvC,MAAME,GAAG,GAAG,IAAAC,8BAAc,EAAC;IAAEJ,EAAE;IAAEC;EAAM,CAAC,CAAC;EACzC,MAAMc,OAAO,GAAGZ,GAAG,GAAG,IAAAa,0CAAoB,EAACjB,KAAK,CAAC,GAAG,IAAI;EACxD,IAAI,CAACgB,OAAO,EAAE;EAEd,MAAME,QAAQ,GAAGC,MAAM,CAAClB,EAAE,CAAC;EAC3B,IAAI,IAAAmB,uBAAgB,EAACJ,OAAO,EAAEd,KAAK,CAAC,KAAK,IAAI,EAAE;EAE/C,IAAAmB,uBAAgB,EAACL,OAAO,EAAEd,KAAK,EAAEgB,QAAQ,CAAC;AAC3C,CAAC;AAACI,OAAA,CAAAR,iBAAA,GAAAA,iBAAA;AAEK,MAAMS,kBAAkB,GAAGA,CAA0B;EAC3DvB,KAAK;EACLwB,OAAO;EACPC;AACqC,CAAC,KAA6B;EACnE,SAAS;;EAET,MAAMb,QAAQ,GAAGb,kBAAkB,CAAC;IACnCC,KAAK;IACLC,EAAE,EAAEuB,OAAO,CAACvB,EAAE;IACdC,KAAK,EAAEsB,OAAO,CAACtB,KAAK;IACpBC,SAAS,EAAEqB;EACZ,CAAC,CAAC;EAEF,OAAO,IAAAE,2BAAkB,EACxB;IACCzB,EAAE,EAAEW,QAAQ,CAACX,EAAE;IACf0B,QAAQ,EAAE3B,KAAK,CAAC2B,QAAQ;IACxBpB,OAAO,EAAEP,KAAK,CAACO,OAAO;IACtBqB,IAAI,EAAE5B,KAAK,CAAC4B,IAAI;IAChBC,QAAQ,EAAEjB,QAAQ,CAACiB,QAAQ,IAAI7B,KAAK,CAAC6B,QAAQ;IAC7CC,UAAU,EAAE9B,KAAK,CAAC+B,OAAO,CAACC,MAAM;IAChCC,kBAAkB,EAAEjC;EACrB,CAAC,EACDY,QAAQ,EACRa,YACD,CAAC;AACF,CAAC;AAACH,OAAA,CAAAC,kBAAA,GAAAA,kBAAA","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["_linkPairs","require","resolveBoundsPairKey","props","currentScreenKey","current","route","key","previousScreenKey","previous","nextScreenKey","next","createScreenPairKey","exports"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/resolve-bounds-pair-key.ts"],"mappings":";;;;;;AAAA,IAAAA,UAAA,GAAAC,OAAA;AAIO,MAAMC,oBAAoB,GAChCC,KAA+B,IACL;EAC1B,SAAS;;EACT,MAAMC,gBAAgB,GAAGD,KAAK,CAACE,OAAO,EAAEC,KAAK,CAACC,GAAG;EACjD,MAAMC,iBAAiB,GAAGL,KAAK,CAACM,QAAQ,EAAEH,KAAK,CAACC,GAAG;EACnD,MAAMG,aAAa,GAAGP,KAAK,CAACQ,IAAI,EAAEL,KAAK,CAACC,GAAG;EAE3C,IAAIG,aAAa,IAAIN,gBAAgB,EAAE;IACtC,OAAO,IAAAQ,8BAAmB,EAACR,gBAAgB,EAAEM,aAAa,CAAC;EAC5D;EAEA,IAAIF,iBAAiB,IAAIJ,gBAAgB,EAAE;IAC1C,OAAO,IAAAQ,8BAAmB,EAACJ,iBAAiB,EAAEJ,gBAAgB,CAAC;EAChE;EAEA,OAAO,IAAI;AACZ,CAAC;AAACS,OAAA,CAAAX,oBAAA,GAAAA,oBAAA","ignoreList":[]}
1
+ {"version":3,"names":["_linkPairs","require","resolveBoundsPairKey","props","currentScreenKey","current","route","key","previousScreenKey","previous","nextScreenKey","next","createScreenPairKey","exports"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/resolve-bounds-pair-key.ts"],"mappings":";;;;;;AAAA,IAAAA,UAAA,GAAAC,OAAA;AAIO,MAAMC,oBAAoB,GAChCC,KAA+B,IACL;EAC1B,SAAS;;EACT,MAAMC,gBAAgB,GAAGD,KAAK,CAACE,OAAO,EAAEC,KAAK,CAACC,GAAG;EACjD,MAAMC,iBAAiB,GAAGL,KAAK,CAACM,QAAQ,EAAEH,KAAK,CAACC,GAAG;EACnD,MAAMG,aAAa,GAAGP,KAAK,CAACQ,IAAI,EAAEL,KAAK,CAACC,GAAG;EAC3C,IAAIG,aAAa,IAAIN,gBAAgB,EAAE;IACtC,OAAO,IAAAQ,8BAAmB,EAACR,gBAAgB,EAAEM,aAAa,CAAC;EAC5D;EAEA,IAAIF,iBAAiB,IAAIJ,gBAAgB,EAAE;IAC1C,OAAO,IAAAQ,8BAAmB,EAACJ,iBAAiB,EAAEJ,gBAAgB,CAAC;EAChE;EAEA,OAAO,IAAI;AACZ,CAAC;AAACS,OAAA,CAAAX,oBAAA,GAAAA,oBAAA","ignoreList":[]}
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.computeBoundStyles = void 0;
7
7
  var _constants = require("../../../../constants");
8
8
  var _linkPairs = require("../../../../stores/bounds/helpers/link-pairs.helpers");
9
- var _links = require("../../../../stores/bounds/internals/links");
9
+ var _coordinator = require("../../../../stores/bounds/internals/coordinator");
10
10
  var _resolver = require("../../../../stores/bounds/internals/resolver");
11
11
  var _geometry = require("../geometry");
12
12
  var _composers = require("./composers");
@@ -23,6 +23,14 @@ const resolveStartEnd = params => {
23
23
  const previousScreenKey = params.previous?.route.key;
24
24
  const nextScreenKey = params.next?.route.key;
25
25
  const sourceMeasurePairKey = entering && previousScreenKey && currentScreenKey ? (0, _linkPairs.createScreenPairKey)(previousScreenKey, currentScreenKey) : !entering && currentScreenKey && nextScreenKey ? (0, _linkPairs.createScreenPairKey)(currentScreenKey, nextScreenKey) : null;
26
+ if (sourceMeasurePairKey) {
27
+ (0, _coordinator.requestBoundaryMeasurements)({
28
+ pairKey: sourceMeasurePairKey,
29
+ tag: String(params.id),
30
+ destination: !hasTargetOverride,
31
+ refresh: params.refresh
32
+ });
33
+ }
26
34
  const resolvedPair = params.resolvedPair ?? (0, _resolver.resolveTransitionPair)(String(params.id), {
27
35
  currentScreenKey,
28
36
  previousScreenKey,
@@ -32,9 +40,6 @@ const resolveStartEnd = params => {
32
40
  const sourceBounds = resolvedPair.sourceBounds;
33
41
  const destinationBounds = resolvedPair.destinationBounds;
34
42
  if (!sourceBounds) {
35
- if (hasTargetOverride && sourceMeasurePairKey) {
36
- (0, _links.requestSourceMeasure)(sourceMeasurePairKey, String(params.id));
37
- }
38
43
  return {
39
44
  start: null,
40
45
  end: null,
@@ -107,7 +112,8 @@ const computeBoundStyles = ({
107
112
  next,
108
113
  computeOptions,
109
114
  dimensions,
110
- resolvedPair
115
+ resolvedPair,
116
+ refresh: !!interpolationProps?.active?.willAnimate
111
117
  });
112
118
  if (!start || !end) {
113
119
  return _constants.NO_STYLES;
@@ -1 +1 @@
1
- {"version":3,"names":["_constants","require","_linkPairs","_links","_resolver","_geometry","_composers","_localTransform","resolveStartEnd","params","entering","next","fullscreen","FULLSCREEN_DIMENSIONS","dimensions","isFullscreenTarget","computeOptions","target","hasCustomTarget","hasTargetOverride","currentScreenKey","current","route","key","previousScreenKey","previous","nextScreenKey","sourceMeasurePairKey","createScreenPairKey","resolvedPair","resolveTransitionPair","String","id","sourceBounds","destinationBounds","requestSourceMeasure","start","end","sourceScreenKey","destinationScreenKey","customTarget","computeBoundStyles","progress","interpolationProps","NO_STYLES","ranges","ENTER_RANGE","EXIT_RANGE","method","currentOwnsSource","contentStart","contentEnd","geometry","computeContentTransformGeometry","anchor","scaleMode","composeContentStyle","computeRelativeGeometry","common","isSize","isAbsolute","space","style","composeSizeAbsolute","composeSizeRelative","composeTransformAbsolute","composeTransformRelative","attachBoundsLocalTransform","destinationStyles","sourceStyles","exports"],"sourceRoot":"../../../../../../../src","sources":["shared/utils/bounds/helpers/styles/compute.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_constants","require","_linkPairs","_coordinator","_resolver","_geometry","_composers","_localTransform","resolveStartEnd","params","entering","next","fullscreen","FULLSCREEN_DIMENSIONS","dimensions","isFullscreenTarget","computeOptions","target","hasCustomTarget","hasTargetOverride","currentScreenKey","current","route","key","previousScreenKey","previous","nextScreenKey","sourceMeasurePairKey","createScreenPairKey","requestBoundaryMeasurements","pairKey","tag","String","id","destination","refresh","resolvedPair","resolveTransitionPair","sourceBounds","destinationBounds","start","end","sourceScreenKey","destinationScreenKey","customTarget","computeBoundStyles","progress","interpolationProps","NO_STYLES","active","willAnimate","ranges","ENTER_RANGE","EXIT_RANGE","method","currentOwnsSource","contentStart","contentEnd","geometry","computeContentTransformGeometry","anchor","scaleMode","composeContentStyle","computeRelativeGeometry","common","isSize","isAbsolute","space","style","composeSizeAbsolute","composeSizeRelative","composeTransformAbsolute","composeTransformRelative","attachBoundsLocalTransform","destinationStyles","sourceStyles","exports"],"sourceRoot":"../../../../../../../src","sources":["shared/utils/bounds/helpers/styles/compute.ts"],"mappings":"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","ignoreList":[]}
@@ -61,7 +61,7 @@ export const ActivityScreen = /*#__PURE__*/memo(function ActivityScreen({
61
61
  if (!paintDriverAnimations) {
62
62
  return false;
63
63
  }
64
- return paintDriverAnimations.transitionProgress.get() >= 1;
64
+ return paintDriverAnimations.visualProgress.get() >= 1;
65
65
  });
66
66
  const isPaintDriverSettledOnJS = useSharedValueState(isPaintDriverSettled);
67
67
  let activityState = ActivityStateByActivity[resolvedActivity];
@@ -1 +1 @@
1
- {"version":3,"names":["memo","StyleSheet","View","useDerivedValue","Screen","IS_WEB","useStack","useSharedValueState","useBlankStackStore","AnimationStore","DEFAULT_INACTIVE_BEHAVIOR","jsx","_jsx","ActivityStateByActivity","active","inert","inactive","closing","PointerEventsByActivity","ActivityScreen","activity","children","inactiveBehavior","paintDriverRouteKey","hasNestedState","routeKey","stackActivity","store","scenesByKey","undefined","stackInactiveBehavior","descriptor","options","stackRoute","route","stackPaintDriverRouteKey","routeIndex","routeKeys","indexOf","resolvedActivity","resolvedInactiveBehavior","resolvedPaintDriverRouteKey","resolvedHasNestedState","nativeScreenDisabled","s","flags","DISABLE_NATIVE_SCREENS","paintDriverAnimations","getBag","isPaintDriverSettled","transitionProgress","get","isPaintDriverSettledOnJS","activityState","shouldFreeze","visible","shouldWaitForPaintDriver","shouldUnmount","pointerEvents","style","absoluteFill","styles","hidden","collapsable","HIDDEN_SCREEN_OFFSET","create","transform","translateY"],"sourceRoot":"../../../../../../src","sources":["shared/components/activity/variants/activity-screen.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["memo","StyleSheet","View","useDerivedValue","Screen","IS_WEB","useStack","useSharedValueState","useBlankStackStore","AnimationStore","DEFAULT_INACTIVE_BEHAVIOR","jsx","_jsx","ActivityStateByActivity","active","inert","inactive","closing","PointerEventsByActivity","ActivityScreen","activity","children","inactiveBehavior","paintDriverRouteKey","hasNestedState","routeKey","stackActivity","store","scenesByKey","undefined","stackInactiveBehavior","descriptor","options","stackRoute","route","stackPaintDriverRouteKey","routeIndex","routeKeys","indexOf","resolvedActivity","resolvedInactiveBehavior","resolvedPaintDriverRouteKey","resolvedHasNestedState","nativeScreenDisabled","s","flags","DISABLE_NATIVE_SCREENS","paintDriverAnimations","getBag","isPaintDriverSettled","visualProgress","get","isPaintDriverSettledOnJS","activityState","shouldFreeze","visible","shouldWaitForPaintDriver","shouldUnmount","pointerEvents","style","absoluteFill","styles","hidden","collapsable","HIDDEN_SCREEN_OFFSET","create","transform","translateY"],"sourceRoot":"../../../../../../src","sources":["shared/components/activity/variants/activity-screen.tsx"],"mappings":"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","ignoreList":[]}
@@ -1,7 +1,6 @@
1
1
  "use strict";
2
2
 
3
3
  import { memo } from "react";
4
- import { useDescriptorsStore } from "../../../providers/screen/descriptors";
5
4
  import { useBoundaryMeasurement } from "../hooks/use-boundary-measurement";
6
5
  export const BoundaryLifecycle = /*#__PURE__*/memo(function BoundaryLifecycle({
7
6
  boundTag,
@@ -14,11 +13,9 @@ export const BoundaryLifecycle = /*#__PURE__*/memo(function BoundaryLifecycle({
14
13
  measuredRef,
15
14
  style
16
15
  }) {
17
- const hasConfiguredInterpolator = useDescriptorsStore(s => s.derivations.hasConfiguredInterpolator);
18
16
  useBoundaryMeasurement({
19
17
  boundTag,
20
18
  enabled,
21
- runtimeEnabled: enabled && hasConfiguredInterpolator,
22
19
  currentScreenKey,
23
20
  measuredRef,
24
21
  style,
@@ -1 +1 @@
1
- {"version":3,"names":["memo","useDescriptorsStore","useBoundaryMeasurement","BoundaryLifecycle","boundTag","config","currentScreenKey","enabled","escapeClipping","handoff","localMeasurement","measuredRef","style","hasConfiguredInterpolator","s","derivations","runtimeEnabled"],"sourceRoot":"../../../../../../src","sources":["shared/components/boundary/components/boundary-lifecycle.tsx"],"mappings":";;AAAA,SAASA,IAAI,QAAQ,OAAO;AAG5B,SAASC,mBAAmB,QAAQ,uCAAuC;AAE3E,SAASC,sBAAsB,QAAQ,mCAAmC;AAkB1E,OAAO,MAAMC,iBAAiB,gBAAGH,IAAI,CAAC,SAASG,iBAAiBA,CAAC;EAChEC,QAAQ;EACRC,MAAM;EACNC,gBAAgB;EAChBC,OAAO;EACPC,cAAc;EACdC,OAAO;EACPC,gBAAgB;EAChBC,WAAW;EACXC;AACuB,CAAC,EAAE;EAC1B,MAAMC,yBAAyB,GAAGZ,mBAAmB,CACnDa,CAAC,IAAKA,CAAC,CAACC,WAAW,CAACF,yBACtB,CAAC;EAEDX,sBAAsB,CAAC;IACtBE,QAAQ;IACRG,OAAO;IACPS,cAAc,EAAET,OAAO,IAAIM,yBAAyB;IACpDP,gBAAgB;IAChBK,WAAW;IACXC,KAAK;IACLH,OAAO;IACPD,cAAc;IACdE,gBAAgB;IAChBL;EACD,CAAC,CAAC;EAEF,OAAO,IAAI;AACZ,CAAC,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["memo","useBoundaryMeasurement","BoundaryLifecycle","boundTag","config","currentScreenKey","enabled","escapeClipping","handoff","localMeasurement","measuredRef","style"],"sourceRoot":"../../../../../../src","sources":["shared/components/boundary/components/boundary-lifecycle.tsx"],"mappings":";;AAAA,SAASA,IAAI,QAAQ,OAAO;AAI5B,SAASC,sBAAsB,QAAQ,mCAAmC;AAkB1E,OAAO,MAAMC,iBAAiB,gBAAGF,IAAI,CAAC,SAASE,iBAAiBA,CAAC;EAChEC,QAAQ;EACRC,MAAM;EACNC,gBAAgB;EAChBC,OAAO;EACPC,cAAc;EACdC,OAAO;EACPC,gBAAgB;EAChBC,WAAW;EACXC;AACuB,CAAC,EAAE;EAC1BV,sBAAsB,CAAC;IACtBE,QAAQ;IACRG,OAAO;IACPD,gBAAgB;IAChBK,WAAW;IACXC,KAAK;IACLH,OAAO;IACPD,cAAc;IACdE,gBAAgB;IAChBL;EACD,CAAC,CAAC;EAEF,OAAO,IAAI;AACZ,CAAC,CAAC","ignoreList":[]}
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+
3
+ import { useCallback, useEffect } from "react";
4
+ import { cancelAnimation, useAnimatedReaction, useSharedValue, withDelay, withTiming } from "react-native-reanimated";
5
+ import { abandonBoundaryMeasurement, getBoundaryMeasurementRequest } from "../../../../stores/bounds/internals/coordinator";
6
+ import { pairs } from "../../../../stores/bounds/internals/state";
7
+ import { logger } from "../../../../utils/logger";
8
+ const RETRY_DELAY_MS = 16;
9
+ const MAX_RETRIES = 20;
10
+ export const useBoundaryMeasurementRequest = params => {
11
+ const {
12
+ enabled,
13
+ boundTag,
14
+ currentScreenKey,
15
+ measureBoundary
16
+ } = params;
17
+ const retryClock = useSharedValue(0);
18
+ const fulfillRequest = useCallback(function retry(request, attempt) {
19
+ "worklet";
20
+
21
+ if (!enabled) return;
22
+ const pending = getBoundaryMeasurementRequest(boundTag.tag, currentScreenKey, pairs.get());
23
+ if (pending?.type !== request.type || pending.pairKey !== request.pairKey) {
24
+ return;
25
+ }
26
+ if (measureBoundary(request)) return;
27
+ if (attempt >= MAX_RETRIES) {
28
+ abandonBoundaryMeasurement({
29
+ ...request,
30
+ tag: boundTag.tag
31
+ });
32
+ logger.warn(`Boundary "${boundTag.tag}" on screen "${currentScreenKey}" could not complete its ${request.type} measurement after ${MAX_RETRIES} attempts; continuing without it.`);
33
+ return;
34
+ }
35
+ cancelAnimation(retryClock);
36
+ retryClock.set(withDelay(RETRY_DELAY_MS, withTiming(retryClock.get() + 1, {
37
+ duration: 0
38
+ }, finished => {
39
+ if (finished) retry(request, attempt + 1);
40
+ })));
41
+ }, [boundTag.tag, currentScreenKey, enabled, measureBoundary, retryClock]);
42
+ useEffect(() => {
43
+ return () => {
44
+ cancelAnimation(retryClock);
45
+ };
46
+ }, [retryClock]);
47
+ useAnimatedReaction(() => {
48
+ "worklet";
49
+
50
+ if (!enabled) return null;
51
+ // Read the mutable in the reaction itself. Hiding this read behind an
52
+ // imported helper prevented the mapper from subscribing to pair changes,
53
+ // so requests were only observed after a React refresh/remount.
54
+ return getBoundaryMeasurementRequest(boundTag.tag, currentScreenKey, pairs.get());
55
+ }, (request, previousRequest) => {
56
+ "worklet";
57
+
58
+ if (!request || request.type === previousRequest?.type && request.pairKey === previousRequest.pairKey) {
59
+ return;
60
+ }
61
+ fulfillRequest(request, 0);
62
+ });
63
+ };
64
+ //# sourceMappingURL=use-boundary-measurement-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["useCallback","useEffect","cancelAnimation","useAnimatedReaction","useSharedValue","withDelay","withTiming","abandonBoundaryMeasurement","getBoundaryMeasurementRequest","pairs","logger","RETRY_DELAY_MS","MAX_RETRIES","useBoundaryMeasurementRequest","params","enabled","boundTag","currentScreenKey","measureBoundary","retryClock","fulfillRequest","retry","request","attempt","pending","tag","get","type","pairKey","warn","set","duration","finished","previousRequest"],"sourceRoot":"../../../../../../../src","sources":["shared/components/boundary/hooks/lifecycles/use-boundary-measurement-request.ts"],"mappings":";;AAAA,SAASA,WAAW,EAAEC,SAAS,QAAQ,OAAO;AAC9C,SACCC,eAAe,EACfC,mBAAmB,EACnBC,cAAc,EACdC,SAAS,EACTC,UAAU,QACJ,yBAAyB;AAChC,SACCC,0BAA0B,EAC1BC,6BAA6B,QACvB,iDAAiD;AACxD,SAASC,KAAK,QAAQ,2CAA2C;AAEjE,SAASC,MAAM,QAAQ,0BAA0B;AAGjD,MAAMC,cAAc,GAAG,EAAE;AACzB,MAAMC,WAAW,GAAG,EAAE;AAEtB,OAAO,MAAMC,6BAA6B,GAAIC,MAK7C,IAAK;EACL,MAAM;IAAEC,OAAO;IAAEC,QAAQ;IAAEC,gBAAgB;IAAEC;EAAgB,CAAC,GAAGJ,MAAM;EACvE,MAAMK,UAAU,GAAGf,cAAc,CAAC,CAAC,CAAC;EAEpC,MAAMgB,cAAc,GAAGpB,WAAW,CACjC,SAASqB,KAAKA,CAACC,OAAsB,EAAEC,OAAe,EAAE;IACvD,SAAS;;IACT,IAAI,CAACR,OAAO,EAAE;IAEd,MAAMS,OAAO,GAAGhB,6BAA6B,CAC5CQ,QAAQ,CAACS,GAAG,EACZR,gBAAgB,EAChBR,KAAK,CAACiB,GAAG,CAAC,CACX,CAAC;IACD,IACCF,OAAO,EAAEG,IAAI,KAAKL,OAAO,CAACK,IAAI,IAC9BH,OAAO,CAACI,OAAO,KAAKN,OAAO,CAACM,OAAO,EAClC;MACD;IACD;IAEA,IAAIV,eAAe,CAACI,OAAO,CAAC,EAAE;IAE9B,IAAIC,OAAO,IAAIX,WAAW,EAAE;MAC3BL,0BAA0B,CAAC;QAAE,GAAGe,OAAO;QAAEG,GAAG,EAAET,QAAQ,CAACS;MAAI,CAAC,CAAC;MAC7Df,MAAM,CAACmB,IAAI,CACV,aAAab,QAAQ,CAACS,GAAG,gBAAgBR,gBAAgB,4BAA4BK,OAAO,CAACK,IAAI,sBAAsBf,WAAW,mCACnI,CAAC;MACD;IACD;IAEAV,eAAe,CAACiB,UAAU,CAAC;IAC3BA,UAAU,CAACW,GAAG,CACbzB,SAAS,CACRM,cAAc,EACdL,UAAU,CAACa,UAAU,CAACO,GAAG,CAAC,CAAC,GAAG,CAAC,EAAE;MAAEK,QAAQ,EAAE;IAAE,CAAC,EAAGC,QAAQ,IAAK;MAC/D,IAAIA,QAAQ,EAAEX,KAAK,CAACC,OAAO,EAAEC,OAAO,GAAG,CAAC,CAAC;IAC1C,CAAC,CACF,CACD,CAAC;EACF,CAAC,EACD,CAACP,QAAQ,CAACS,GAAG,EAAER,gBAAgB,EAAEF,OAAO,EAAEG,eAAe,EAAEC,UAAU,CACtE,CAAC;EAEDlB,SAAS,CAAC,MAAM;IACf,OAAO,MAAM;MACZC,eAAe,CAACiB,UAAU,CAAC;IAC5B,CAAC;EACF,CAAC,EAAE,CAACA,UAAU,CAAC,CAAC;EAEhBhB,mBAAmB,CAClB,MAAM;IACL,SAAS;;IACT,IAAI,CAACY,OAAO,EAAE,OAAO,IAAI;IACzB;IACA;IACA;IACA,OAAOP,6BAA6B,CACnCQ,QAAQ,CAACS,GAAG,EACZR,gBAAgB,EAChBR,KAAK,CAACiB,GAAG,CAAC,CACX,CAAC;EACF,CAAC,EACD,CAACJ,OAAO,EAAEW,eAAe,KAAK;IAC7B,SAAS;;IACT,IACC,CAACX,OAAO,IACPA,OAAO,CAACK,IAAI,KAAKM,eAAe,EAAEN,IAAI,IACtCL,OAAO,CAACM,OAAO,KAAKK,eAAe,CAACL,OAAQ,EAC5C;MACD;IACD;IAEAR,cAAc,CAACE,OAAO,EAAE,CAAC,CAAC;EAC3B,CACD,CAAC;AACF,CAAC","ignoreList":[]}
@@ -2,7 +2,7 @@
2
2
 
3
3
  import { useLayoutEffect } from "react";
4
4
  import { runOnUI } from "react-native-reanimated";
5
- import { removeEntry, setEntry } from "../../../../stores/bounds/internals/entries";
5
+ import { registerBoundary, unregisterBoundary } from "../../../../stores/bounds/internals/coordinator";
6
6
  export const useBoundaryPresence = params => {
7
7
  const {
8
8
  enabled,
@@ -12,19 +12,20 @@ export const useBoundaryPresence = params => {
12
12
  handoff,
13
13
  escapeClipping
14
14
  } = params;
15
- const {
16
- tag
17
- } = boundTag;
18
15
  useLayoutEffect(() => {
19
16
  if (!enabled) return;
20
- runOnUI(setEntry)(tag, currentScreenKey, {
21
- boundaryConfig,
22
- handoff: handoff ? true : null,
23
- escapeClipping: escapeClipping ? true : null
17
+ runOnUI(registerBoundary)({
18
+ boundTag,
19
+ screenKey: currentScreenKey,
20
+ entry: {
21
+ boundaryConfig,
22
+ handoff: handoff ? true : null,
23
+ escapeClipping: escapeClipping ? true : null
24
+ }
24
25
  });
25
26
  return () => {
26
- runOnUI(removeEntry)(tag, currentScreenKey);
27
+ runOnUI(unregisterBoundary)(boundTag, currentScreenKey);
27
28
  };
28
- }, [enabled, tag, currentScreenKey, boundaryConfig, handoff, escapeClipping]);
29
+ }, [enabled, boundTag, currentScreenKey, boundaryConfig, handoff, escapeClipping]);
29
30
  };
30
31
  //# sourceMappingURL=use-boundary-presence.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["useLayoutEffect","runOnUI","removeEntry","setEntry","useBoundaryPresence","params","enabled","boundTag","currentScreenKey","boundaryConfig","handoff","escapeClipping","tag"],"sourceRoot":"../../../../../../../src","sources":["shared/components/boundary/hooks/lifecycles/use-boundary-presence.ts"],"mappings":";;AAAA,SAASA,eAAe,QAAQ,OAAO;AACvC,SAASC,OAAO,QAAQ,yBAAyB;AACjD,SACCC,WAAW,EACXC,QAAQ,QACF,6CAA6C;AAIpD,OAAO,MAAMC,mBAAmB,GAAIC,MAOnC,IAAK;EACL,MAAM;IACLC,OAAO;IACPC,QAAQ;IACRC,gBAAgB;IAChBC,cAAc;IACdC,OAAO;IACPC;EACD,CAAC,GAAGN,MAAM;EACV,MAAM;IAAEO;EAAI,CAAC,GAAGL,QAAQ;EAExBP,eAAe,CAAC,MAAM;IACrB,IAAI,CAACM,OAAO,EAAE;IAEdL,OAAO,CAACE,QAAQ,CAAC,CAACS,GAAG,EAAEJ,gBAAgB,EAAE;MACxCC,cAAc;MACdC,OAAO,EAAEA,OAAO,GAAG,IAAI,GAAG,IAAI;MAC9BC,cAAc,EAAEA,cAAc,GAAG,IAAI,GAAG;IACzC,CAAC,CAAC;IAEF,OAAO,MAAM;MACZV,OAAO,CAACC,WAAW,CAAC,CAACU,GAAG,EAAEJ,gBAAgB,CAAC;IAC5C,CAAC;EACF,CAAC,EAAE,CAACF,OAAO,EAAEM,GAAG,EAAEJ,gBAAgB,EAAEC,cAAc,EAAEC,OAAO,EAAEC,cAAc,CAAC,CAAC;AAC9E,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["useLayoutEffect","runOnUI","registerBoundary","unregisterBoundary","useBoundaryPresence","params","enabled","boundTag","currentScreenKey","boundaryConfig","handoff","escapeClipping","screenKey","entry"],"sourceRoot":"../../../../../../../src","sources":["shared/components/boundary/hooks/lifecycles/use-boundary-presence.ts"],"mappings":";;AAAA,SAASA,eAAe,QAAQ,OAAO;AACvC,SAASC,OAAO,QAAQ,yBAAyB;AACjD,SACCC,gBAAgB,EAChBC,kBAAkB,QACZ,iDAAiD;AAIxD,OAAO,MAAMC,mBAAmB,GAAIC,MAOnC,IAAK;EACL,MAAM;IACLC,OAAO;IACPC,QAAQ;IACRC,gBAAgB;IAChBC,cAAc;IACdC,OAAO;IACPC;EACD,CAAC,GAAGN,MAAM;EACVL,eAAe,CAAC,MAAM;IACrB,IAAI,CAACM,OAAO,EAAE;IAEdL,OAAO,CAACC,gBAAgB,CAAC,CAAC;MACzBK,QAAQ;MACRK,SAAS,EAAEJ,gBAAgB;MAC3BK,KAAK,EAAE;QACNJ,cAAc;QACdC,OAAO,EAAEA,OAAO,GAAG,IAAI,GAAG,IAAI;QAC9BC,cAAc,EAAEA,cAAc,GAAG,IAAI,GAAG;MACzC;IACD,CAAC,CAAC;IAEF,OAAO,MAAM;MACZV,OAAO,CAACE,kBAAkB,CAAC,CAACI,QAAQ,EAAEC,gBAAgB,CAAC;IACxD,CAAC;EACF,CAAC,EAAE,CACFF,OAAO,EACPC,QAAQ,EACRC,gBAAgB,EAChBC,cAAc,EACdC,OAAO,EACPC,cAAc,CACd,CAAC;AACH,CAAC","ignoreList":[]}
@@ -2,10 +2,8 @@
2
2
 
3
3
  import { useMemo } from "react";
4
4
  import { prepareStyleForBounds } from "../../../utils/bounds/helpers/styles/styles";
5
+ import { useBoundaryMeasurementRequest } from "./lifecycles/use-boundary-measurement-request";
5
6
  import { useBoundaryPresence } from "./lifecycles/use-boundary-presence";
6
- import { useInitialDestinationMeasurement } from "./lifecycles/use-initial-destination-measurement";
7
- import { useInitialSourceMeasurement } from "./lifecycles/use-initial-source-measurement";
8
- import { useRefreshBoundary } from "./lifecycles/use-refresh-boundary";
9
7
  import { useMeasurer } from "./use-measurer";
10
8
  /**
11
9
  * Owns the full measurement lifecycle for a boundary: builds the measurer,
@@ -15,7 +13,6 @@ import { useMeasurer } from "./use-measurer";
15
13
  export const useBoundaryMeasurement = ({
16
14
  boundTag,
17
15
  enabled,
18
- runtimeEnabled,
19
16
  currentScreenKey,
20
17
  measuredRef,
21
18
  style,
@@ -47,10 +44,6 @@ export const useBoundaryMeasurement = ({
47
44
  escapeClipping,
48
45
  localMeasurement
49
46
  });
50
-
51
- // Presence and source capture must not depend on this screen owning an
52
- // interpolator: a nested source can participate in a transition owned by a
53
- // different navigator.
54
47
  useBoundaryPresence({
55
48
  enabled,
56
49
  boundTag,
@@ -59,19 +52,10 @@ export const useBoundaryMeasurement = ({
59
52
  handoff,
60
53
  escapeClipping
61
54
  });
62
- useInitialSourceMeasurement({
55
+ useBoundaryMeasurementRequest({
63
56
  enabled,
64
- measureBoundary,
65
- boundTag
66
- });
67
- useInitialDestinationMeasurement({
68
- boundTag,
69
- enabled: runtimeEnabled,
70
- measureBoundary
71
- });
72
- useRefreshBoundary({
73
- enabled: runtimeEnabled,
74
57
  boundTag,
58
+ currentScreenKey,
75
59
  measureBoundary
76
60
  });
77
61
  };
@@ -1 +1 @@
1
- {"version":3,"names":["useMemo","prepareStyleForBounds","useBoundaryPresence","useInitialDestinationMeasurement","useInitialSourceMeasurement","useRefreshBoundary","useMeasurer","useBoundaryMeasurement","boundTag","enabled","runtimeEnabled","currentScreenKey","measuredRef","style","handoff","escapeClipping","localMeasurement","config","anchor","scaleMode","target","method","boundaryConfig","preparedStyles","measureBoundary","measuredAnimatedRef"],"sourceRoot":"../../../../../../src","sources":["shared/components/boundary/hooks/use-boundary-measurement.ts"],"mappings":";;AAAA,SAASA,OAAO,QAAQ,OAAO;AAI/B,SAASC,qBAAqB,QAAQ,6CAA6C;AAKnF,SAASC,mBAAmB,QAAQ,oCAAoC;AACxE,SAASC,gCAAgC,QAAQ,kDAAkD;AACnG,SAASC,2BAA2B,QAAQ,6CAA6C;AACzF,SAASC,kBAAkB,QAAQ,mCAAmC;AACtE,SAASC,WAAW,QAAQ,gBAAgB;AAmB5C;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,sBAAsB,GAAGA,CAAC;EACtCC,QAAQ;EACRC,OAAO;EACPC,cAAc;EACdC,gBAAgB;EAChBC,WAAW;EACXC,KAAK;EACLC,OAAO;EACPC,cAAc;EACdC,gBAAgB;EAChBC;AAC6B,CAAC,KAAK;EACnC,MAAM;IAAEC,MAAM;IAAEC,SAAS;IAAEC,MAAM;IAAEC;EAAO,CAAC,GAAGJ,MAAM;EACpD,MAAMK,cAAc,GAAGtB,OAAO,CAC7B,OAAO;IAAEkB,MAAM;IAAEC,SAAS;IAAEC,MAAM;IAAEC;EAAO,CAAC,CAAC,EAC7C,CAACH,MAAM,EAAEC,SAAS,EAAEC,MAAM,EAAEC,MAAM,CACnC,CAAC;EAED,MAAME,cAAc,GAAGvB,OAAO,CAAC,MAAMC,qBAAqB,CAACY,KAAK,CAAC,EAAE,CAACA,KAAK,CAAC,CAAC;EAE3E,MAAMW,eAAe,GAAGlB,WAAW,CAAC;IACnCG,OAAO;IACPD,QAAQ;IACRG,gBAAgB;IAChBY,cAAc;IACdE,mBAAmB,EAAEb,WAAW;IAChCE,OAAO;IACPC,cAAc;IACdC;EACD,CAAC,CAAC;;EAEF;EACA;EACA;EACAd,mBAAmB,CAAC;IACnBO,OAAO;IACPD,QAAQ;IACRG,gBAAgB;IAChBW,cAAc;IACdR,OAAO;IACPC;EACD,CAAC,CAAC;EAEFX,2BAA2B,CAAC;IAC3BK,OAAO;IACPe,eAAe;IACfhB;EACD,CAAC,CAAC;EAEFL,gCAAgC,CAAC;IAChCK,QAAQ;IACRC,OAAO,EAAEC,cAAc;IACvBc;EACD,CAAC,CAAC;EAEFnB,kBAAkB,CAAC;IAClBI,OAAO,EAAEC,cAAc;IACvBF,QAAQ;IACRgB;EACD,CAAC,CAAC;AACH,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["useMemo","prepareStyleForBounds","useBoundaryMeasurementRequest","useBoundaryPresence","useMeasurer","useBoundaryMeasurement","boundTag","enabled","currentScreenKey","measuredRef","style","handoff","escapeClipping","localMeasurement","config","anchor","scaleMode","target","method","boundaryConfig","preparedStyles","measureBoundary","measuredAnimatedRef"],"sourceRoot":"../../../../../../src","sources":["shared/components/boundary/hooks/use-boundary-measurement.ts"],"mappings":";;AAAA,SAASA,OAAO,QAAQ,OAAO;AAI/B,SAASC,qBAAqB,QAAQ,6CAA6C;AAKnF,SAASC,6BAA6B,QAAQ,+CAA+C;AAC7F,SAASC,mBAAmB,QAAQ,oCAAoC;AACxE,SAASC,WAAW,QAAQ,gBAAgB;AAiB5C;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,sBAAsB,GAAGA,CAAC;EACtCC,QAAQ;EACRC,OAAO;EACPC,gBAAgB;EAChBC,WAAW;EACXC,KAAK;EACLC,OAAO;EACPC,cAAc;EACdC,gBAAgB;EAChBC;AAC6B,CAAC,KAAK;EACnC,MAAM;IAAEC,MAAM;IAAEC,SAAS;IAAEC,MAAM;IAAEC;EAAO,CAAC,GAAGJ,MAAM;EACpD,MAAMK,cAAc,GAAGnB,OAAO,CAC7B,OAAO;IAAEe,MAAM;IAAEC,SAAS;IAAEC,MAAM;IAAEC;EAAO,CAAC,CAAC,EAC7C,CAACH,MAAM,EAAEC,SAAS,EAAEC,MAAM,EAAEC,MAAM,CACnC,CAAC;EAED,MAAME,cAAc,GAAGpB,OAAO,CAAC,MAAMC,qBAAqB,CAACS,KAAK,CAAC,EAAE,CAACA,KAAK,CAAC,CAAC;EAE3E,MAAMW,eAAe,GAAGjB,WAAW,CAAC;IACnCG,OAAO;IACPD,QAAQ;IACRE,gBAAgB;IAChBY,cAAc;IACdE,mBAAmB,EAAEb,WAAW;IAChCE,OAAO;IACPC,cAAc;IACdC;EACD,CAAC,CAAC;EAEFV,mBAAmB,CAAC;IACnBI,OAAO;IACPD,QAAQ;IACRE,gBAAgB;IAChBW,cAAc;IACdR,OAAO;IACPC;EACD,CAAC,CAAC;EAEFV,6BAA6B,CAAC;IAC7BK,OAAO;IACPD,QAAQ;IACRE,gBAAgB;IAChBa;EACD,CAAC,CAAC;AACH,CAAC","ignoreList":[]}
@@ -5,7 +5,6 @@ import { useWindowDimensions } from "react-native";
5
5
  import { applyMeasuredBoundsWrites } from "../../../providers/helpers/measured-bounds-writes";
6
6
  import { useScreenSlots } from "../../../providers/screen/styles";
7
7
  import { ScrollStore } from "../../../stores/scroll.store";
8
- import { SystemStore } from "../../../stores/system.store";
9
8
  import { getVisibilityBlockOffset } from "../../../utils/visibility-block-offset";
10
9
  import { attachScrollSnapshotToMeasuredBounds, correctMeasuredBoundsForVisibilityGate, isMeasurementInViewport, measureWithOverscrollAwareness } from "../utils/measured-bounds";
11
10
  export const useMeasurer = ({
@@ -24,16 +23,15 @@ export const useMeasurer = ({
24
23
  } = useWindowDimensions();
25
24
  const scrollState = ScrollStore.getValue(currentScreenKey, "coordination");
26
25
  const scrollMetadata = ScrollStore.getValue(currentScreenKey, "metadata");
27
- const pendingLifecycleStartBlockCount = SystemStore.getValue(currentScreenKey, "pendingLifecycleStartBlockCount");
28
26
  const {
29
27
  visibilityBlocked
30
28
  } = useScreenSlots();
31
29
  return useCallback(target => {
32
30
  "worklet";
33
31
 
34
- if (!enabled) return;
32
+ if (!enabled) return false;
35
33
  const measured = measureWithOverscrollAwareness(measuredAnimatedRef, scrollState.get());
36
- if (!measured) return;
34
+ if (!measured) return false;
37
35
  const correctedMeasured = correctMeasuredBoundsForVisibilityGate({
38
36
  measured,
39
37
  visibilityBlocked: visibilityBlocked.get(),
@@ -47,17 +45,8 @@ export const useMeasurer = ({
47
45
  pairKey: target.pairKey
48
46
  });
49
47
  }
50
-
51
- /**
52
- * - Destination Pass -
53
- * Be strict while lifecycle start is blocked for destination capture.
54
- * This is the initial attach window: the transition has not started yet,
55
- * and malformed off-screen destination measurements should keep the
56
- * lifecycle blocked until a valid retry lands.
57
- */
58
- const shouldGuardDestinationViewport = pendingLifecycleStartBlockCount.get() > 0 || !!boundTag.group;
59
- const viewportAllowsDestinationWrite = target.type !== "destination" || !shouldGuardDestinationViewport || isMeasurementInViewport(correctedMeasured, viewportWidth, viewportHeight);
60
- if (!viewportAllowsDestinationWrite) return;
48
+ const viewportAllowsDestinationWrite = target.type !== "destination" || isMeasurementInViewport(correctedMeasured, viewportWidth, viewportHeight);
49
+ if (!viewportAllowsDestinationWrite) return false;
61
50
  const measuredWithScroll = attachScrollSnapshotToMeasuredBounds(correctedMeasured, scrollMetadata.get());
62
51
  applyMeasuredBoundsWrites({
63
52
  entryTag: boundTag.tag,
@@ -70,6 +59,7 @@ export const useMeasurer = ({
70
59
  handoff,
71
60
  escapeClipping
72
61
  });
73
- }, [enabled, boundTag, currentScreenKey, preparedStyles, measuredAnimatedRef, handoff, escapeClipping, localMeasurement, viewportWidth, viewportHeight, scrollState, scrollMetadata, pendingLifecycleStartBlockCount, visibilityBlocked]);
62
+ return true;
63
+ }, [enabled, boundTag, currentScreenKey, preparedStyles, measuredAnimatedRef, handoff, escapeClipping, localMeasurement, viewportWidth, viewportHeight, scrollState, scrollMetadata, visibilityBlocked]);
74
64
  };
75
65
  //# sourceMappingURL=use-measurer.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["useCallback","useWindowDimensions","applyMeasuredBoundsWrites","useScreenSlots","ScrollStore","SystemStore","getVisibilityBlockOffset","attachScrollSnapshotToMeasuredBounds","correctMeasuredBoundsForVisibilityGate","isMeasurementInViewport","measureWithOverscrollAwareness","useMeasurer","enabled","boundTag","currentScreenKey","preparedStyles","measuredAnimatedRef","handoff","escapeClipping","localMeasurement","width","viewportWidth","height","viewportHeight","scrollState","getValue","scrollMetadata","pendingLifecycleStartBlockCount","visibilityBlocked","target","measured","get","correctedMeasured","visibilityBlockOffset","type","set","bounds","pairKey","shouldGuardDestinationViewport","group","viewportAllowsDestinationWrite","measuredWithScroll","entryTag","tag","linkId","linkKey","linkWrite"],"sourceRoot":"../../../../../../src","sources":["shared/components/boundary/hooks/use-measurer.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["useCallback","useWindowDimensions","applyMeasuredBoundsWrites","useScreenSlots","ScrollStore","getVisibilityBlockOffset","attachScrollSnapshotToMeasuredBounds","correctMeasuredBoundsForVisibilityGate","isMeasurementInViewport","measureWithOverscrollAwareness","useMeasurer","enabled","boundTag","currentScreenKey","preparedStyles","measuredAnimatedRef","handoff","escapeClipping","localMeasurement","width","viewportWidth","height","viewportHeight","scrollState","getValue","scrollMetadata","visibilityBlocked","target","measured","get","correctedMeasured","visibilityBlockOffset","type","set","bounds","pairKey","viewportAllowsDestinationWrite","measuredWithScroll","entryTag","tag","linkId","linkKey","group","linkWrite"],"sourceRoot":"../../../../../../src","sources":["shared/components/boundary/hooks/use-measurer.ts"],"mappings":";;AAAA,SAASA,WAAW,QAAQ,OAAO;AAEnC,SAASC,mBAAmB,QAAQ,cAAc;AAElD,SAASC,yBAAyB,QAAQ,mDAAmD;AAC7F,SAASC,cAAc,QAAQ,kCAAkC;AAEjE,SAASC,WAAW,QAAQ,8BAA8B;AAC1D,SAASC,wBAAwB,QAAQ,wCAAwC;AAEjF,SACCC,oCAAoC,EACpCC,sCAAsC,EACtCC,uBAAuB,EACvBC,8BAA8B,QACxB,0BAA0B;AAajC,OAAO,MAAMC,WAAW,GAAGA,CAAC;EAC3BC,OAAO;EACPC,QAAQ;EACRC,gBAAgB;EAChBC,cAAc;EACdC,mBAAmB;EACnBC,OAAO;EACPC,cAAc;EACdC;AACkB,CAAC,KAAsB;EACzC,MAAM;IAAEC,KAAK,EAAEC,aAAa;IAAEC,MAAM,EAAEC;EAAe,CAAC,GACrDrB,mBAAmB,CAAC,CAAC;EAEtB,MAAMsB,WAAW,GAAGnB,WAAW,CAACoB,QAAQ,CAACX,gBAAgB,EAAE,cAAc,CAAC;EAC1E,MAAMY,cAAc,GAAGrB,WAAW,CAACoB,QAAQ,CAACX,gBAAgB,EAAE,UAAU,CAAC;EACzE,MAAM;IAAEa;EAAkB,CAAC,GAAGvB,cAAc,CAAC,CAAC;EAE9C,OAAOH,WAAW,CAChB2B,MAAM,IAAK;IACX,SAAS;;IACT,IAAI,CAAChB,OAAO,EAAE,OAAO,KAAK;IAE1B,MAAMiB,QAAQ,GAAGnB,8BAA8B,CAC9CM,mBAAmB,EACnBQ,WAAW,CAACM,GAAG,CAAC,CACjB,CAAC;IAED,IAAI,CAACD,QAAQ,EAAE,OAAO,KAAK;IAE3B,MAAME,iBAAiB,GAAGvB,sCAAsC,CAAC;MAChEqB,QAAQ;MACRF,iBAAiB,EAAEA,iBAAiB,CAACG,GAAG,CAAC,CAAC;MAC1CE,qBAAqB,EAAE1B,wBAAwB,CAACiB,cAAc,CAAC;MAC/DF,aAAa;MACbE;IACD,CAAC,CAAC;IAEF,IAAIL,cAAc,IAAIU,MAAM,CAACK,IAAI,KAAK,QAAQ,EAAE;MAC/Cd,gBAAgB,CAACe,GAAG,CAAC;QACpBC,MAAM,EAAEN,QAAQ;QAChBO,OAAO,EAAER,MAAM,CAACQ;MACjB,CAAC,CAAC;IACH;IAEA,MAAMC,8BAA8B,GACnCT,MAAM,CAACK,IAAI,KAAK,aAAa,IAC7BxB,uBAAuB,CACtBsB,iBAAiB,EACjBV,aAAa,EACbE,cACD,CAAC;IAEF,IAAI,CAACc,8BAA8B,EAAE,OAAO,KAAK;IAEjD,MAAMC,kBAAkB,GAAG/B,oCAAoC,CAC9DwB,iBAAiB,EACjBL,cAAc,CAACI,GAAG,CAAC,CACpB,CAAC;IAED3B,yBAAyB,CAAC;MACzBoC,QAAQ,EAAE1B,QAAQ,CAAC2B,GAAG;MACtBC,MAAM,EAAE5B,QAAQ,CAAC6B,OAAO;MACxBC,KAAK,EAAE9B,QAAQ,CAAC8B,KAAK;MACrB7B,gBAAgB;MAChBe,QAAQ,EAAES,kBAAkB;MAC5BvB,cAAc;MACd6B,SAAS,EAAEhB,MAAM;MACjBX,OAAO;MACPC;IACD,CAAC,CAAC;IAEF,OAAO,IAAI;EACZ,CAAC,EACD,CACCN,OAAO,EACPC,QAAQ,EACRC,gBAAgB,EAChBC,cAAc,EACdC,mBAAmB,EACnBC,OAAO,EACPC,cAAc,EACdC,gBAAgB,EAChBE,aAAa,EACbE,cAAc,EACdC,WAAW,EACXE,cAAc,EACdC,iBAAiB,CAEnB,CAAC;AACF,CAAC","ignoreList":[]}
@@ -1,5 +1,14 @@
1
1
  "use strict";
2
2
 
3
+ export const hasNestedHandoffTopology = ({
4
+ inheritedSourcePair,
5
+ pairDestinationScreenKey,
6
+ transitionDestinationScreenKey
7
+ }) => {
8
+ "worklet";
9
+
10
+ return inheritedSourcePair || !!pairDestinationScreenKey && pairDestinationScreenKey !== transitionDestinationScreenKey;
11
+ };
3
12
  export const resolveActiveHandoffReceiver = ({
4
13
  focusedIndex,
5
14
  routes,
@@ -57,4 +66,19 @@ export const resolveHandoffAttachmentCandidate = ({
57
66
  }
58
67
  return activeReceiverScreenKey;
59
68
  };
69
+ export const resolveNestedHandoffAttachmentCandidate = ({
70
+ attachedReceiverScreenKey,
71
+ currentScreenKey,
72
+ hasActiveCloseFinished,
73
+ interpolatorReady,
74
+ pairDestinationScreenKey
75
+ }) => {
76
+ "worklet";
77
+
78
+ if (hasActiveCloseFinished) return currentScreenKey;
79
+ if (interpolatorReady && pairDestinationScreenKey) {
80
+ return pairDestinationScreenKey;
81
+ }
82
+ return attachedReceiverScreenKey;
83
+ };
60
84
  //# sourceMappingURL=active-handoff-receiver.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["resolveActiveHandoffReceiver","focusedIndex","routes","scenes","index","length","scene","activity","route","key","resolvePreviousHandoffReceiver","previousIndex","previousScene","resolveHandoffAttachmentCandidate","activeReceiverClosing","activeReceiverScreenKey","attachedReceiverScreenKey","hasActiveCloseFinished","interpolatorReady","pairChangedDuringClose","pairDestinationScreenKey","previousReceiverScreenKey"],"sourceRoot":"../../../../../../../../../src","sources":["shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.ts"],"mappings":";;AAeA,OAAO,MAAMA,4BAA4B,GAAGA,CAAC;EAC5CC,YAAY;EACZC,MAAM;EACNC;AACmC,CAAC,KAAoB;EACxD,KAAK,IAAIC,KAAK,GAAGD,MAAM,CAACE,MAAM,GAAG,CAAC,EAAED,KAAK,IAAI,CAAC,EAAEA,KAAK,EAAE,EAAE;IACxD,MAAME,KAAK,GAAGH,MAAM,CAACC,KAAK,CAAC;IAC3B,IAAIE,KAAK,EAAEC,QAAQ,KAAK,SAAS,EAAE;MAClC,OAAOD,KAAK,CAACE,KAAK,CAACC,GAAG;IACvB;EACD;EAEA,OAAOP,MAAM,CAACD,YAAY,CAAC,EAAEQ,GAAG,IAAI,IAAI;AACzC,CAAC;AAED,OAAO,MAAMC,8BAA8B,GAAGA,CAAC;EAC9CT,YAAY;EACZC,MAAM;EACNC;AACmC,CAAC,KAAoB;EACxD,KAAK,IAAIC,KAAK,GAAGD,MAAM,CAACE,MAAM,GAAG,CAAC,EAAED,KAAK,IAAI,CAAC,EAAEA,KAAK,EAAE,EAAE;IACxD,IAAID,MAAM,CAACC,KAAK,CAAC,EAAEG,QAAQ,KAAK,SAAS,EAAE;MAC1C;IACD;IAEA,KAAK,IAAII,aAAa,GAAGP,KAAK,GAAG,CAAC,EAAEO,aAAa,IAAI,CAAC,EAAEA,aAAa,EAAE,EAAE;MACxE,MAAMC,aAAa,GAAGT,MAAM,CAACQ,aAAa,CAAC;MAC3C,IAAIC,aAAa,EAAEL,QAAQ,KAAK,SAAS,EAAE;QAC1C,OAAOK,aAAa,EAAEJ,KAAK,CAACC,GAAG,IAAI,IAAI;MACxC;IACD;EACD;EAEA,OAAOP,MAAM,CAACD,YAAY,CAAC,EAAEQ,GAAG,IAAI,IAAI;AACzC,CAAC;AAED,OAAO,MAAMI,iCAAiC,GAAGA,CAAC;EACjDC,qBAAqB;EACrBC,uBAAuB;EACvBC,yBAAyB;EACzBC,sBAAsB;EACtBC,iBAAiB;EACjBC,sBAAsB,GAAG,KAAK;EAC9BC,wBAAwB;EACxBC;AAUD,CAAC,KAAK;EACL,SAAS;;EAET,IACCP,qBAAqB,IACrBI,iBAAiB,IACjBE,wBAAwB,IACxBD,sBAAsB,EACrB;IACD,OAAOC,wBAAwB;EAChC;EAEA,IACCH,sBAAsB,IACtBD,yBAAyB,KAAKD,uBAAuB,EACpD;IACD,OAAOM,yBAAyB;EACjC;EAEA,IAAIJ,sBAAsB,EAAE;IAC3B,OAAOD,yBAAyB;EACjC;EAEA,IACCF,qBAAqB,IACrBE,yBAAyB,KAAKD,uBAAuB,IACrDG,iBAAiB,IACjBE,wBAAwB,EACvB;IACD,OAAOA,wBAAwB;EAChC;EAEA,OAAOL,uBAAuB;AAC/B,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["hasNestedHandoffTopology","inheritedSourcePair","pairDestinationScreenKey","transitionDestinationScreenKey","resolveActiveHandoffReceiver","focusedIndex","routes","scenes","index","length","scene","activity","route","key","resolvePreviousHandoffReceiver","previousIndex","previousScene","resolveHandoffAttachmentCandidate","activeReceiverClosing","activeReceiverScreenKey","attachedReceiverScreenKey","hasActiveCloseFinished","interpolatorReady","pairChangedDuringClose","previousReceiverScreenKey","resolveNestedHandoffAttachmentCandidate","currentScreenKey"],"sourceRoot":"../../../../../../../../../src","sources":["shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.ts"],"mappings":";;AAeA,OAAO,MAAMA,wBAAwB,GAAGA,CAAC;EACxCC,mBAAmB;EACnBC,wBAAwB;EACxBC;AAKD,CAAC,KAAK;EACL,SAAS;;EACT,OACCF,mBAAmB,IAClB,CAAC,CAACC,wBAAwB,IAC1BA,wBAAwB,KAAKC,8BAA+B;AAE/D,CAAC;AAED,OAAO,MAAMC,4BAA4B,GAAGA,CAAC;EAC5CC,YAAY;EACZC,MAAM;EACNC;AACmC,CAAC,KAAoB;EACxD,KAAK,IAAIC,KAAK,GAAGD,MAAM,CAACE,MAAM,GAAG,CAAC,EAAED,KAAK,IAAI,CAAC,EAAEA,KAAK,EAAE,EAAE;IACxD,MAAME,KAAK,GAAGH,MAAM,CAACC,KAAK,CAAC;IAC3B,IAAIE,KAAK,EAAEC,QAAQ,KAAK,SAAS,EAAE;MAClC,OAAOD,KAAK,CAACE,KAAK,CAACC,GAAG;IACvB;EACD;EAEA,OAAOP,MAAM,CAACD,YAAY,CAAC,EAAEQ,GAAG,IAAI,IAAI;AACzC,CAAC;AAED,OAAO,MAAMC,8BAA8B,GAAGA,CAAC;EAC9CT,YAAY;EACZC,MAAM;EACNC;AACmC,CAAC,KAAoB;EACxD,KAAK,IAAIC,KAAK,GAAGD,MAAM,CAACE,MAAM,GAAG,CAAC,EAAED,KAAK,IAAI,CAAC,EAAEA,KAAK,EAAE,EAAE;IACxD,IAAID,MAAM,CAACC,KAAK,CAAC,EAAEG,QAAQ,KAAK,SAAS,EAAE;MAC1C;IACD;IAEA,KAAK,IAAII,aAAa,GAAGP,KAAK,GAAG,CAAC,EAAEO,aAAa,IAAI,CAAC,EAAEA,aAAa,EAAE,EAAE;MACxE,MAAMC,aAAa,GAAGT,MAAM,CAACQ,aAAa,CAAC;MAC3C,IAAIC,aAAa,EAAEL,QAAQ,KAAK,SAAS,EAAE;QAC1C,OAAOK,aAAa,EAAEJ,KAAK,CAACC,GAAG,IAAI,IAAI;MACxC;IACD;EACD;EAEA,OAAOP,MAAM,CAACD,YAAY,CAAC,EAAEQ,GAAG,IAAI,IAAI;AACzC,CAAC;AAED,OAAO,MAAMI,iCAAiC,GAAGA,CAAC;EACjDC,qBAAqB;EACrBC,uBAAuB;EACvBC,yBAAyB;EACzBC,sBAAsB;EACtBC,iBAAiB;EACjBC,sBAAsB,GAAG,KAAK;EAC9BrB,wBAAwB;EACxBsB;AAUD,CAAC,KAAK;EACL,SAAS;;EAET,IACCN,qBAAqB,IACrBI,iBAAiB,IACjBpB,wBAAwB,IACxBqB,sBAAsB,EACrB;IACD,OAAOrB,wBAAwB;EAChC;EAEA,IACCmB,sBAAsB,IACtBD,yBAAyB,KAAKD,uBAAuB,EACpD;IACD,OAAOK,yBAAyB;EACjC;EAEA,IAAIH,sBAAsB,EAAE;IAC3B,OAAOD,yBAAyB;EACjC;EAEA,IACCF,qBAAqB,IACrBE,yBAAyB,KAAKD,uBAAuB,IACrDG,iBAAiB,IACjBpB,wBAAwB,EACvB;IACD,OAAOA,wBAAwB;EAChC;EAEA,OAAOiB,uBAAuB;AAC/B,CAAC;AAED,OAAO,MAAMM,uCAAuC,GAAGA,CAAC;EACvDL,yBAAyB;EACzBM,gBAAgB;EAChBL,sBAAsB;EACtBC,iBAAiB;EACjBpB;AAOD,CAAC,KAAK;EACL,SAAS;;EAET,IAAImB,sBAAsB,EAAE,OAAOK,gBAAgB;EACnD,IAAIJ,iBAAiB,IAAIpB,wBAAwB,EAAE;IAClD,OAAOA,wBAAwB;EAChC;EAEA,OAAOkB,yBAAyB;AACjC,CAAC","ignoreList":[]}