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":["createGroupTag","ensurePairGroups","ensurePairLinks","ensurePairSourceRequests","getDestinationScreenKeyFromPairKey","getGroupKeyFromTag","getLinkKeyFromTag","getActiveGroupId","getPairActiveGroupId","getDestination","getPairDestination","getLink","getPairLink","getSource","getPairSource","getSourceScreenKeyFromPairKey","pairs","syncLinkStatus","link","status","source","destination","isSharedValueLike","value","_isReanimatedSharedValue","snapshotSharedValue","snapshotTransformArrayValue","snapshot","index","length","snapshotValue","snapshotTransformEntryValue","undefined","push","Array","isArray","snapshotTransformItem","hasValue","key","snapshotTransform","snapshotStyles","styles","transform","createLinkSide","screenKey","bounds","runtimeFlags","handoff","escapeClipping","writePairLink","state","pairKey","linkKey","writeGroup","group","activeId","initialId","previousInitialId","groups","writeDestination","existingLink","initialDestination","setSource","tag","modify","pairLinks","initialSource","sourceRequests","setDestination","setActiveGroupId","requestSourceMeasure","get","hasSourceLink","getResolvedLink","initialLink","getPairKeyForSource","getPairKeyForDestination"],"sourceRoot":"../../../../../../src","sources":["shared/stores/bounds/internals/links.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["createGroupTag","ensurePairGroups","ensurePairLinks","ensurePairSourceRequests","getDestinationScreenKeyFromPairKey","getGroupKeyFromTag","getLinkKeyFromTag","getActiveGroupId","getPairActiveGroupId","getDestination","getPairDestination","getLink","getPairLink","getSource","getPairSource","screenBelongsToScope","pairs","syncLinkStatus","link","status","source","destination","isSharedValueLike","value","_isReanimatedSharedValue","snapshotSharedValue","snapshotTransformArrayValue","snapshot","index","length","snapshotValue","snapshotTransformEntryValue","undefined","push","Array","isArray","snapshotTransformItem","hasValue","key","snapshotTransform","snapshotStyles","styles","transform","createLinkSide","screenKey","bounds","runtimeFlags","handoff","escapeClipping","writePairLink","state","pairKey","linkKey","writeGroup","group","activeId","initialId","previousInitialId","groups","writeDestination","existingLink","initialDestination","setSource","tag","modify","pairLinks","initialSource","sourceRequests","setDestination","destinationRequests","setActiveGroupId","get","hasSourceLink","getResolvedLink","resolvedLinkKey","initialLink","getPairKeyForDestination","resolvedLink","links"],"sourceRoot":"../../../../../../src","sources":["shared/stores/bounds/internals/links.ts"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+
3
+ import { boundsScreens } from "./state";
4
+ const MAX_PARENT_DEPTH = 100;
5
+ export function registerBoundsScreen(screenKey, node) {
6
+ "worklet";
7
+
8
+ boundsScreens.modify(state => {
9
+ "worklet";
10
+
11
+ state[screenKey] = node;
12
+ return state;
13
+ });
14
+ }
15
+ export function unregisterBoundsScreen(screenKey) {
16
+ "worklet";
17
+
18
+ boundsScreens.modify(state => {
19
+ "worklet";
20
+
21
+ delete state[screenKey];
22
+ return state;
23
+ });
24
+ }
25
+ export function screenBelongsToScope(screenKey, scopeScreenKey) {
26
+ "worklet";
27
+
28
+ if (screenKey === scopeScreenKey) return true;
29
+ const screens = boundsScreens.get();
30
+ let parentScreenKey = screens[screenKey]?.parentScreenKey;
31
+ let depth = 0;
32
+ while (parentScreenKey && depth < MAX_PARENT_DEPTH) {
33
+ if (parentScreenKey === scopeScreenKey) return true;
34
+ parentScreenKey = screens[parentScreenKey]?.parentScreenKey;
35
+ depth += 1;
36
+ }
37
+ return false;
38
+ }
39
+ //# sourceMappingURL=screen-graph.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["boundsScreens","MAX_PARENT_DEPTH","registerBoundsScreen","screenKey","node","modify","state","unregisterBoundsScreen","screenBelongsToScope","scopeScreenKey","screens","get","parentScreenKey","depth"],"sourceRoot":"../../../../../../src","sources":["shared/stores/bounds/internals/screen-graph.ts"],"mappings":";;AACA,SAASA,aAAa,QAAQ,SAAS;AAEvC,MAAMC,gBAAgB,GAAG,GAAG;AAE5B,OAAO,SAASC,oBAAoBA,CACnCC,SAAoB,EACpBC,IAAsB,EACrB;EACD,SAAS;;EACTJ,aAAa,CAACK,MAAM,CAA+BC,KAAQ,IAAQ;IAClE,SAAS;;IACRA,KAAK,CAAuBH,SAAS,CAAC,GAAGC,IAAI;IAC9C,OAAOE,KAAK;EACb,CAAC,CAAC;AACH;AAEA,OAAO,SAASC,sBAAsBA,CAACJ,SAAoB,EAAE;EAC5D,SAAS;;EACTH,aAAa,CAACK,MAAM,CAA+BC,KAAQ,IAAQ;IAClE,SAAS;;IACT,OAAQA,KAAK,CAAuBH,SAAS,CAAC;IAC9C,OAAOG,KAAK;EACb,CAAC,CAAC;AACH;AAEA,OAAO,SAASE,oBAAoBA,CACnCL,SAAoB,EACpBM,cAAyB,EACf;EACV,SAAS;;EACT,IAAIN,SAAS,KAAKM,cAAc,EAAE,OAAO,IAAI;EAE7C,MAAMC,OAAO,GAAGV,aAAa,CAACW,GAAG,CAAC,CAAC;EACnC,IAAIC,eAAe,GAAGF,OAAO,CAACP,SAAS,CAAC,EAAES,eAAe;EACzD,IAAIC,KAAK,GAAG,CAAC;EAEb,OAAOD,eAAe,IAAIC,KAAK,GAAGZ,gBAAgB,EAAE;IACnD,IAAIW,eAAe,KAAKH,cAAc,EAAE,OAAO,IAAI;IACnDG,eAAe,GAAGF,OAAO,CAACE,eAAe,CAAC,EAAEA,eAAe;IAC3DC,KAAK,IAAI,CAAC;EACX;EAEA,OAAO,KAAK;AACb","ignoreList":[]}
@@ -26,4 +26,7 @@ export const boundaryRegistry = makeMutable({});
26
26
  * }
27
27
  */
28
28
  export const pairs = makeMutable({});
29
+
30
+ /** Stable ownership graph used to match leaf boundaries to transition roots. */
31
+ export const boundsScreens = makeMutable({});
29
32
  //# sourceMappingURL=state.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["makeMutable","boundaryRegistry","pairs"],"sourceRoot":"../../../../../../src","sources":["shared/stores/bounds/internals/state.ts"],"mappings":";;AAAA,SAASA,WAAW,QAAQ,yBAAyB;AAQrD,OAAO,MAAMC,gBAAgB,GAAGD,WAAW,CAAuB,CAAC,CAAC,CAAC;;AAErE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAME,KAAK,GAAGF,WAAW,CAAiB,CAAC,CAAC,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["makeMutable","boundaryRegistry","pairs","boundsScreens"],"sourceRoot":"../../../../../../src","sources":["shared/stores/bounds/internals/state.ts"],"mappings":";;AAAA,SAASA,WAAW,QAAQ,yBAAyB;AAcrD,OAAO,MAAMC,gBAAgB,GAAGD,WAAW,CAAuB,CAAC,CAAC,CAAC;;AAErE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAME,KAAK,GAAGF,WAAW,CAAiB,CAAC,CAAC,CAAC;;AAEpD;AACA,OAAO,MAAMG,aAAa,GAAGH,WAAW,CAAoB,CAAC,CAAC,CAAC","ignoreList":[]}
@@ -42,11 +42,14 @@ const createBoundsAccessorParts = ({
42
42
  "worklet";
43
43
 
44
44
  // Keep the component at its base layout for pre-animation refresh
45
- // measurement, then remove generated styles again after settlement.
46
- if (!props.active.animating) {
45
+ // measurement, then remove generated styles again after settlement. The
46
+ // pre-animation pass still has to reach the bounds coordinator so both
47
+ // endpoints are captured before generated transforms attach.
48
+ const shouldRenderStyles = !!props.active.animating;
49
+ if (!shouldRenderStyles && !props.active.willAnimate) {
47
50
  return NO_STYLES;
48
51
  }
49
- return prepareBoundStyles({
52
+ const preparedStyles = prepareBoundStyles({
50
53
  props,
51
54
  options: {
52
55
  ...options,
@@ -54,6 +57,7 @@ const createBoundsAccessorParts = ({
54
57
  group: normalizedIdentity.group
55
58
  }
56
59
  });
60
+ return shouldRenderStyles ? preparedStyles : NO_STYLES;
57
61
  },
58
62
  values: getValues,
59
63
  math: options => {
@@ -1 +1 @@
1
- {"version":3,"names":["NO_STYLES","createBoundTag","normalizeBoundIdentity","createLinkAccessor","prepareBoundStyles","syncActiveGroupId","createBoundsAccessorParts","getProps","extendResult","getLink","createScopedBounds","identity","props","normalizedIdentity","tag","id","group","getValues","options","raw","scoped","styles","active","animating","values","math","link","linkIdentity","linkTag","target","createBoundsAccessorCore","params"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/create-bounds-accessor-core.ts"],"mappings":";;AAAA,SAASA,SAAS,QAAQ,oBAAoB;AAa9C,SAASC,cAAc,EAAEC,sBAAsB,QAAQ,oBAAoB;AAC3E,SAASC,kBAAkB,QAAQ,wBAAwB;AAC3D,SAASC,kBAAkB,EAAEC,iBAAiB,QAAQ,wBAAwB;AAc9E,MAAMC,yBAAyB,GAAGA,CAAC;EAClCC,QAAQ;EACRC;AAC+B,CAAC,KAAK;EACrC,SAAS;;EAET,MAAM;IAAEC;EAAQ,CAAC,GAAGN,kBAAkB,CAACI,QAAQ,CAAC;EAEhD,MAAMG,kBAAkB,GACvBC,QAA6B,IACH;IAC1B,SAAS;;IACT,MAAMC,KAAK,GAAGL,QAAQ,CAAC,CAAC;IACxB,MAAMM,kBAAkB,GAAGX,sBAAsB,CAACS,QAAQ,CAAC;IAC3D,MAAMG,GAAG,GAAGb,cAAc,CAACY,kBAAkB,CAAC;IAC9CR,iBAAiB,CAAC;MACjBO,KAAK;MACLG,EAAE,EAAEF,kBAAkB,CAACE,EAAE;MACzBC,KAAK,EAAEH,kBAAkB,CAACG;IAC3B,CAAC,CAAC;IACF,MAAMC,SAAS,GACdC,OAAW,IACgB;MAC3B,SAAS;;MACT,OAAOd,kBAAkB,CAAC;QACzBQ,KAAK;QACLM,OAAO,EAAE;UACR,GAAGA,OAAO;UACVH,EAAE,EAAEF,kBAAkB,CAACE,EAAE;UACzBC,KAAK,EAAEH,kBAAkB,CAACG,KAAK;UAC/BG,GAAG,EAAE;QACN;MACD,CAAC,CAAC;IACH,CAAC;IAED,MAAMC,MAA4B,GAAG;MACpCC,MAAM,EAAGH,OAA8B,IAAwB;QAC9D,SAAS;;QACT;QACA;QACA,IAAI,CAACN,KAAK,CAACU,MAAM,CAACC,SAAS,EAAE;UAC5B,OAAOvB,SAAS;QACjB;QAEA,OAAOI,kBAAkB,CAAC;UACzBQ,KAAK;UACLM,OAAO,EAAE;YACR,GAAGA,OAAO;YACVH,EAAE,EAAEF,kBAAkB,CAACE,EAAE;YACzBC,KAAK,EAAEH,kBAAkB,CAACG;UAC3B;QACD,CAAC,CAAC;MACH,CAAC;MACDQ,MAAM,EAAEP,SAAS;MACjBQ,IAAI,EACHP,OAAW,IACP;QACJ,SAAS;;QACT,OAAOD,SAAS,CAACC,OAAO,CAAC;MAC1B,CAAC;MACDQ,IAAI,EAAGX,EAAwB,IAAK;QACnC,SAAS;;QACT,MAAMY,YAAY,GACjBZ,EAAE,IAAI,IAAI,GACPF,kBAAkB,GAClBX,sBAAsB,CAACa,EAAE,EAAEF,kBAAkB,CAACG,KAAK,CAAC;QACxD,MAAMY,OAAO,GAAG3B,cAAc,CAAC0B,YAAY,CAAC;QAC5C,OAAOlB,OAAO,CAACmB,OAAO,IAAI,EAAE,CAAC;MAC9B;IACD,CAAyB;IAEzBpB,YAAY,GAAG;MACdqB,MAAM,EAAET,MAAM;MACdT,QAAQ,EAAEE,kBAAkB;MAC5BD,KAAK;MACLE;IACD,CAAC,CAAC;IAEF,OAAOM,MAAM;EACd,CAAoB;EAEpB,OAAO;IACNV;EACD,CAAC;AACF,CAAC;AAED,OAAO,MAAMoB,wBAAwB,GACpCC,MAAsC,IAClB;EACpB,SAAS;;EAET,MAAM;IAAErB;EAAmB,CAAC,GAAGJ,yBAAyB,CAACyB,MAAM,CAAC;EAEhE,OAAOrB,kBAAkB;AAC1B,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["NO_STYLES","createBoundTag","normalizeBoundIdentity","createLinkAccessor","prepareBoundStyles","syncActiveGroupId","createBoundsAccessorParts","getProps","extendResult","getLink","createScopedBounds","identity","props","normalizedIdentity","tag","id","group","getValues","options","raw","scoped","styles","shouldRenderStyles","active","animating","willAnimate","preparedStyles","values","math","link","linkIdentity","linkTag","target","createBoundsAccessorCore","params"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/create-bounds-accessor-core.ts"],"mappings":";;AAAA,SAASA,SAAS,QAAQ,oBAAoB;AAa9C,SAASC,cAAc,EAAEC,sBAAsB,QAAQ,oBAAoB;AAC3E,SAASC,kBAAkB,QAAQ,wBAAwB;AAC3D,SAASC,kBAAkB,EAAEC,iBAAiB,QAAQ,wBAAwB;AAc9E,MAAMC,yBAAyB,GAAGA,CAAC;EAClCC,QAAQ;EACRC;AAC+B,CAAC,KAAK;EACrC,SAAS;;EAET,MAAM;IAAEC;EAAQ,CAAC,GAAGN,kBAAkB,CAACI,QAAQ,CAAC;EAEhD,MAAMG,kBAAkB,GACvBC,QAA6B,IACH;IAC1B,SAAS;;IACT,MAAMC,KAAK,GAAGL,QAAQ,CAAC,CAAC;IACxB,MAAMM,kBAAkB,GAAGX,sBAAsB,CAACS,QAAQ,CAAC;IAC3D,MAAMG,GAAG,GAAGb,cAAc,CAACY,kBAAkB,CAAC;IAC9CR,iBAAiB,CAAC;MACjBO,KAAK;MACLG,EAAE,EAAEF,kBAAkB,CAACE,EAAE;MACzBC,KAAK,EAAEH,kBAAkB,CAACG;IAC3B,CAAC,CAAC;IACF,MAAMC,SAAS,GACdC,OAAW,IACgB;MAC3B,SAAS;;MACT,OAAOd,kBAAkB,CAAC;QACzBQ,KAAK;QACLM,OAAO,EAAE;UACR,GAAGA,OAAO;UACVH,EAAE,EAAEF,kBAAkB,CAACE,EAAE;UACzBC,KAAK,EAAEH,kBAAkB,CAACG,KAAK;UAC/BG,GAAG,EAAE;QACN;MACD,CAAC,CAAC;IACH,CAAC;IAED,MAAMC,MAA4B,GAAG;MACpCC,MAAM,EAAGH,OAA8B,IAAwB;QAC9D,SAAS;;QACT;QACA;QACA;QACA;QACA,MAAMI,kBAAkB,GAAG,CAAC,CAACV,KAAK,CAACW,MAAM,CAACC,SAAS;QACnD,IAAI,CAACF,kBAAkB,IAAI,CAACV,KAAK,CAACW,MAAM,CAACE,WAAW,EAAE;UACrD,OAAOzB,SAAS;QACjB;QAEA,MAAM0B,cAAc,GAAGtB,kBAAkB,CAAC;UACzCQ,KAAK;UACLM,OAAO,EAAE;YACR,GAAGA,OAAO;YACVH,EAAE,EAAEF,kBAAkB,CAACE,EAAE;YACzBC,KAAK,EAAEH,kBAAkB,CAACG;UAC3B;QACD,CAAC,CAAsB;QAEvB,OAAOM,kBAAkB,GAAGI,cAAc,GAAG1B,SAAS;MACvD,CAAC;MACD2B,MAAM,EAAEV,SAAS;MACjBW,IAAI,EACHV,OAAW,IACP;QACJ,SAAS;;QACT,OAAOD,SAAS,CAACC,OAAO,CAAC;MAC1B,CAAC;MACDW,IAAI,EAAGd,EAAwB,IAAK;QACnC,SAAS;;QACT,MAAMe,YAAY,GACjBf,EAAE,IAAI,IAAI,GACPF,kBAAkB,GAClBX,sBAAsB,CAACa,EAAE,EAAEF,kBAAkB,CAACG,KAAK,CAAC;QACxD,MAAMe,OAAO,GAAG9B,cAAc,CAAC6B,YAAY,CAAC;QAC5C,OAAOrB,OAAO,CAACsB,OAAO,IAAI,EAAE,CAAC;MAC9B;IACD,CAAyB;IAEzBvB,YAAY,GAAG;MACdwB,MAAM,EAAEZ,MAAM;MACdT,QAAQ,EAAEE,kBAAkB;MAC5BD,KAAK;MACLE;IACD,CAAC,CAAC;IAEF,OAAOM,MAAM;EACd,CAAoB;EAEpB,OAAO;IACNV;EACD,CAAC;AACF,CAAC;AAED,OAAO,MAAMuB,wBAAwB,GACpCC,MAAsC,IAClB;EACpB,SAAS;;EAET,MAAM;IAAExB;EAAmB,CAAC,GAAGJ,yBAAyB,CAAC4B,MAAM,CAAC;EAEhE,OAAOxB,kBAAkB;AAC1B,CAAC","ignoreList":[]}
@@ -1,6 +1,8 @@
1
1
  "use strict";
2
2
 
3
+ import { requestBoundaryMeasurements } from "../../../stores/bounds/internals/coordinator";
3
4
  import { getPairKeyForDestination, getResolvedLink } from "../../../stores/bounds/internals/links";
5
+ import { resolveBoundsPairKey } from "./resolve-bounds-pair-key";
4
6
  export const createLinkAccessor = getProps => {
5
7
  "worklet";
6
8
 
@@ -9,6 +11,15 @@ export const createLinkAccessor = getProps => {
9
11
 
10
12
  const props = getProps();
11
13
  const stringTag = String(tag);
14
+ const requestedPairKey = resolveBoundsPairKey(props);
15
+ if (requestedPairKey) {
16
+ requestBoundaryMeasurements({
17
+ pairKey: requestedPairKey,
18
+ tag: stringTag,
19
+ destination: true,
20
+ refresh: !!props.active.willAnimate
21
+ });
22
+ }
12
23
  const destinationScreenKey = props.next?.route.key ?? props.current?.route.key;
13
24
  const pairKey = destinationScreenKey ? getPairKeyForDestination(stringTag, destinationScreenKey) : null;
14
25
  if (!pairKey) return null;
@@ -1 +1 @@
1
- {"version":3,"names":["getPairKeyForDestination","getResolvedLink","createLinkAccessor","getProps","getLink","tag","props","stringTag","String","destinationScreenKey","next","route","key","current","pairKey","resolved","link","id"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/create-link-accessor.ts"],"mappings":";;AAAA,SACCA,wBAAwB,EACxBC,eAAe,QACT,wCAAwC;AAa/C,OAAO,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,GACjCT,wBAAwB,CAACO,SAAS,EAAEE,oBAAoB,CAAC,GACzD,IAAI;IACP,IAAI,CAACK,OAAO,EAAE,OAAO,IAAI;IAEzB,MAAMC,QAAQ,GAAGd,eAAe,CAACa,OAAO,EAAEP,SAAS,CAAC;IACpD,OAAOQ,QAAQ,CAACC,IAAI,GACjB;MACAC,EAAE,EAAEF,QAAQ,CAACV,GAAG;MAChB,GAAGU,QAAQ,CAACC;IACb,CAAC,GACA,IAAI;EACR,CAAC;EAED,OAAO;IACNZ;EACD,CAAC;AACF,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["requestBoundaryMeasurements","getPairKeyForDestination","getResolvedLink","resolveBoundsPairKey","createLinkAccessor","getProps","getLink","tag","props","stringTag","String","requestedPairKey","pairKey","destination","refresh","active","willAnimate","destinationScreenKey","next","route","key","current","resolved","link","id"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/create-link-accessor.ts"],"mappings":";;AAAA,SAASA,2BAA2B,QAAQ,8CAA8C;AAC1F,SACCC,wBAAwB,EACxBC,eAAe,QACT,wCAAwC;AAM/C,SAASC,oBAAoB,QAAQ,2BAA2B;AAQhE,OAAO,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,gBAAgB,GAAGR,oBAAoB,CAACK,KAAK,CAAC;IACpD,IAAIG,gBAAgB,EAAE;MACrBX,2BAA2B,CAAC;QAC3BY,OAAO,EAAED,gBAAgB;QACzBJ,GAAG,EAAEE,SAAS;QACdI,WAAW,EAAE,IAAI;QACjBC,OAAO,EAAE,CAAC,CAACN,KAAK,CAACO,MAAM,CAACC;MACzB,CAAC,CAAC;IACH;IACA,MAAMC,oBAAoB,GACzBT,KAAK,CAACU,IAAI,EAAEC,KAAK,CAACC,GAAG,IAAIZ,KAAK,CAACa,OAAO,EAAEF,KAAK,CAACC,GAAG;IAClD,MAAMR,OAAO,GAAGK,oBAAoB,GACjChB,wBAAwB,CAACQ,SAAS,EAAEQ,oBAAoB,CAAC,GACzD,IAAI;IACP,IAAI,CAACL,OAAO,EAAE,OAAO,IAAI;IAEzB,MAAMU,QAAQ,GAAGpB,eAAe,CAACU,OAAO,EAAEH,SAAS,CAAC;IACpD,OAAOa,QAAQ,CAACC,IAAI,GACjB;MACAC,EAAE,EAAEF,QAAQ,CAACf,GAAG;MAChB,GAAGe,QAAQ,CAACC;IACb,CAAC,GACA,IAAI;EACR,CAAC;EAED,OAAO;IACNjB;EACD,CAAC;AACF,CAAC","ignoreList":[]}
@@ -38,10 +38,14 @@ export const syncActiveGroupId = params => {
38
38
  group
39
39
  } = params;
40
40
  if (id == null || id === "" || !group) return;
41
- const pairKey = resolveBoundsPairKey(props);
41
+ const tag = createBoundTag({
42
+ id,
43
+ group
44
+ });
45
+ const pairKey = tag ? resolveBoundsPairKey(props) : null;
42
46
  if (!pairKey) return;
43
47
  const activeId = String(id);
44
- if (getActiveGroupId(pairKey, group) === activeId) return;
48
+ if (getActiveGroupId(pairKey, group) !== null) return;
45
49
  setActiveGroupId(pairKey, group, activeId);
46
50
  };
47
51
  export const prepareBoundStyles = ({
@@ -1 +1 @@
1
- {"version":3,"names":["getEntry","getActiveGroupId","setActiveGroupId","DEFAULT_BOUNDS_OPTIONS","createBoundTag","resolveBoundsPairKey","computeBoundStyles","buildBoundsOptions","props","id","group","overrides","tag","currentScreenKey","current","route","key","boundaryConfig","resolved","syncActiveGroupId","params","pairKey","activeId","String","prepareBoundStyles","options","resolvedPair","previous","next","progress","dimensions","layouts","screen","interpolationProps"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/prepare-bound-styles.ts"],"mappings":";;AAAA,SAASA,QAAQ,QAAQ,0CAA0C;AACnE,SACCC,gBAAgB,EAChBC,gBAAgB,QACV,wCAAwC;AAG/C,SAASC,sBAAsB,QAAQ,cAAc;AAMrD,SAASC,cAAc,QAAQ,oBAAoB;AACnD,SAASC,oBAAoB,QAAQ,2BAA2B;AAChE,SAASC,kBAAkB,QAAQ,kBAAkB;AAiBrD,MAAMC,kBAAkB,GAAGA,CAAC;EAC3BC,KAAK;EACLC,EAAE;EACFC,KAAK;EACLC;AACyB,CAAC,KAAoB;EAC9C,SAAS;;EAET,MAAMC,GAAG,GAAGR,cAAc,CAAC;IAAEK,EAAE;IAAEC;EAAM,CAAC,CAAC;EACzC,MAAMG,gBAAgB,GAAGL,KAAK,CAACM,OAAO,EAAEC,KAAK,CAACC,GAAG;EAEjD,MAAMC,cAAc,GACnBL,GAAG,IAAIC,gBAAgB,GACnBb,QAAQ,CAACY,GAAG,EAAEC,gBAAgB,CAAC,EAAEI,cAAc,IAAI,IAAI,GACxD,IAAI;EAER,MAAMC,QAAQ,GAAG;IAChB,GAAGf,sBAAsB;IACzB,IAAIc,cAAc,IAAI,CAAC,CAAC,CAAC;IACzB,IAAIN,SAAS,IAAI,CAAC,CAAC,CAAC;IACpBF,EAAE,EAAEG,GAAG,IAAI,EAAE;IACbF;EACD,CAAC;EAED,OAAOQ,QAAQ;AAChB,CAAC;AAED,OAAO,MAAMC,iBAAiB,GAAIC,MAIjC,IAAK;EACL,SAAS;;EACT,MAAM;IAAEZ,KAAK;IAAEC,EAAE;IAAEC;EAAM,CAAC,GAAGU,MAAM;EACnC,IAAIX,EAAE,IAAI,IAAI,IAAIA,EAAE,KAAK,EAAE,IAAI,CAACC,KAAK,EAAE;EAEvC,MAAMW,OAAO,GAAGhB,oBAAoB,CAACG,KAAK,CAAC;EAC3C,IAAI,CAACa,OAAO,EAAE;EAEd,MAAMC,QAAQ,GAAGC,MAAM,CAACd,EAAE,CAAC;EAC3B,IAAIR,gBAAgB,CAACoB,OAAO,EAAEX,KAAK,CAAC,KAAKY,QAAQ,EAAE;EAEnDpB,gBAAgB,CAACmB,OAAO,EAAEX,KAAK,EAAEY,QAAQ,CAAC;AAC3C,CAAC;AAED,OAAO,MAAME,kBAAkB,GAAGA,CAA0B;EAC3DhB,KAAK;EACLiB,OAAO;EACPC;AACqC,CAAC,KAA6B;EACnE,SAAS;;EAET,MAAMR,QAAQ,GAAGX,kBAAkB,CAAC;IACnCC,KAAK;IACLC,EAAE,EAAEgB,OAAO,CAAChB,EAAE;IACdC,KAAK,EAAEe,OAAO,CAACf,KAAK;IACpBC,SAAS,EAAEc;EACZ,CAAC,CAAC;EAEF,OAAOnB,kBAAkB,CACxB;IACCG,EAAE,EAAES,QAAQ,CAACT,EAAE;IACfkB,QAAQ,EAAEnB,KAAK,CAACmB,QAAQ;IACxBb,OAAO,EAAEN,KAAK,CAACM,OAAO;IACtBc,IAAI,EAAEpB,KAAK,CAACoB,IAAI;IAChBC,QAAQ,EAAEX,QAAQ,CAACW,QAAQ,IAAIrB,KAAK,CAACqB,QAAQ;IAC7CC,UAAU,EAAEtB,KAAK,CAACuB,OAAO,CAACC,MAAM;IAChCC,kBAAkB,EAAEzB;EACrB,CAAC,EACDU,QAAQ,EACRQ,YACD,CAAC;AACF,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["getEntry","getActiveGroupId","setActiveGroupId","DEFAULT_BOUNDS_OPTIONS","createBoundTag","resolveBoundsPairKey","computeBoundStyles","buildBoundsOptions","props","id","group","overrides","tag","currentScreenKey","current","route","key","boundaryConfig","resolved","syncActiveGroupId","params","pairKey","activeId","String","prepareBoundStyles","options","resolvedPair","previous","next","progress","dimensions","layouts","screen","interpolationProps"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/prepare-bound-styles.ts"],"mappings":";;AAAA,SAASA,QAAQ,QAAQ,0CAA0C;AACnE,SACCC,gBAAgB,EAChBC,gBAAgB,QACV,wCAAwC;AAG/C,SAASC,sBAAsB,QAAQ,cAAc;AAMrD,SAASC,cAAc,QAAQ,oBAAoB;AACnD,SAASC,oBAAoB,QAAQ,2BAA2B;AAChE,SAASC,kBAAkB,QAAQ,kBAAkB;AAiBrD,MAAMC,kBAAkB,GAAGA,CAAC;EAC3BC,KAAK;EACLC,EAAE;EACFC,KAAK;EACLC;AACyB,CAAC,KAAoB;EAC9C,SAAS;;EAET,MAAMC,GAAG,GAAGR,cAAc,CAAC;IAAEK,EAAE;IAAEC;EAAM,CAAC,CAAC;EACzC,MAAMG,gBAAgB,GAAGL,KAAK,CAACM,OAAO,EAAEC,KAAK,CAACC,GAAG;EAEjD,MAAMC,cAAc,GACnBL,GAAG,IAAIC,gBAAgB,GACnBb,QAAQ,CAACY,GAAG,EAAEC,gBAAgB,CAAC,EAAEI,cAAc,IAAI,IAAI,GACxD,IAAI;EAER,MAAMC,QAAQ,GAAG;IAChB,GAAGf,sBAAsB;IACzB,IAAIc,cAAc,IAAI,CAAC,CAAC,CAAC;IACzB,IAAIN,SAAS,IAAI,CAAC,CAAC,CAAC;IACpBF,EAAE,EAAEG,GAAG,IAAI,EAAE;IACbF;EACD,CAAC;EAED,OAAOQ,QAAQ;AAChB,CAAC;AAED,OAAO,MAAMC,iBAAiB,GAAIC,MAIjC,IAAK;EACL,SAAS;;EACT,MAAM;IAAEZ,KAAK;IAAEC,EAAE;IAAEC;EAAM,CAAC,GAAGU,MAAM;EACnC,IAAIX,EAAE,IAAI,IAAI,IAAIA,EAAE,KAAK,EAAE,IAAI,CAACC,KAAK,EAAE;EAEvC,MAAME,GAAG,GAAGR,cAAc,CAAC;IAAEK,EAAE;IAAEC;EAAM,CAAC,CAAC;EACzC,MAAMW,OAAO,GAAGT,GAAG,GAAGP,oBAAoB,CAACG,KAAK,CAAC,GAAG,IAAI;EACxD,IAAI,CAACa,OAAO,EAAE;EAEd,MAAMC,QAAQ,GAAGC,MAAM,CAACd,EAAE,CAAC;EAC3B,IAAIR,gBAAgB,CAACoB,OAAO,EAAEX,KAAK,CAAC,KAAK,IAAI,EAAE;EAE/CR,gBAAgB,CAACmB,OAAO,EAAEX,KAAK,EAAEY,QAAQ,CAAC;AAC3C,CAAC;AAED,OAAO,MAAME,kBAAkB,GAAGA,CAA0B;EAC3DhB,KAAK;EACLiB,OAAO;EACPC;AACqC,CAAC,KAA6B;EACnE,SAAS;;EAET,MAAMR,QAAQ,GAAGX,kBAAkB,CAAC;IACnCC,KAAK;IACLC,EAAE,EAAEgB,OAAO,CAAChB,EAAE;IACdC,KAAK,EAAEe,OAAO,CAACf,KAAK;IACpBC,SAAS,EAAEc;EACZ,CAAC,CAAC;EAEF,OAAOnB,kBAAkB,CACxB;IACCG,EAAE,EAAES,QAAQ,CAACT,EAAE;IACfkB,QAAQ,EAAEnB,KAAK,CAACmB,QAAQ;IACxBb,OAAO,EAAEN,KAAK,CAACM,OAAO;IACtBc,IAAI,EAAEpB,KAAK,CAACoB,IAAI;IAChBC,QAAQ,EAAEX,QAAQ,CAACW,QAAQ,IAAIrB,KAAK,CAACqB,QAAQ;IAC7CC,UAAU,EAAEtB,KAAK,CAACuB,OAAO,CAACC,MAAM;IAChCC,kBAAkB,EAAEzB;EACrB,CAAC,EACDU,QAAQ,EACRQ,YACD,CAAC;AACF,CAAC","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["createScreenPairKey","resolveBoundsPairKey","props","currentScreenKey","current","route","key","previousScreenKey","previous","nextScreenKey","next"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/resolve-bounds-pair-key.ts"],"mappings":";;AAAA,SAASA,mBAAmB,QAAQ,mDAAmD;AAIvF,OAAO,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,OAAOH,mBAAmB,CAACG,gBAAgB,EAAEM,aAAa,CAAC;EAC5D;EAEA,IAAIF,iBAAiB,IAAIJ,gBAAgB,EAAE;IAC1C,OAAOH,mBAAmB,CAACO,iBAAiB,EAAEJ,gBAAgB,CAAC;EAChE;EAEA,OAAO,IAAI;AACZ,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["createScreenPairKey","resolveBoundsPairKey","props","currentScreenKey","current","route","key","previousScreenKey","previous","nextScreenKey","next"],"sourceRoot":"../../../../../../src","sources":["shared/utils/bounds/helpers/resolve-bounds-pair-key.ts"],"mappings":";;AAAA,SAASA,mBAAmB,QAAQ,mDAAmD;AAIvF,OAAO,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,OAAOH,mBAAmB,CAACG,gBAAgB,EAAEM,aAAa,CAAC;EAC5D;EAEA,IAAIF,iBAAiB,IAAIJ,gBAAgB,EAAE;IAC1C,OAAOH,mBAAmB,CAACO,iBAAiB,EAAEJ,gBAAgB,CAAC;EAChE;EAEA,OAAO,IAAI;AACZ,CAAC","ignoreList":[]}
@@ -2,7 +2,7 @@
2
2
 
3
3
  import { ENTER_RANGE, EXIT_RANGE, FULLSCREEN_DIMENSIONS, NO_STYLES } from "../../../../constants";
4
4
  import { createScreenPairKey } from "../../../../stores/bounds/helpers/link-pairs.helpers";
5
- import { requestSourceMeasure } from "../../../../stores/bounds/internals/links";
5
+ import { requestBoundaryMeasurements } from "../../../../stores/bounds/internals/coordinator";
6
6
  import { resolveTransitionPair } from "../../../../stores/bounds/internals/resolver";
7
7
  import { computeContentTransformGeometry, computeRelativeGeometry } from "../geometry";
8
8
  import { composeContentStyle, composeSizeAbsolute, composeSizeRelative, composeTransformAbsolute, composeTransformRelative } from "./composers";
@@ -19,6 +19,14 @@ const resolveStartEnd = params => {
19
19
  const previousScreenKey = params.previous?.route.key;
20
20
  const nextScreenKey = params.next?.route.key;
21
21
  const sourceMeasurePairKey = entering && previousScreenKey && currentScreenKey ? createScreenPairKey(previousScreenKey, currentScreenKey) : !entering && currentScreenKey && nextScreenKey ? createScreenPairKey(currentScreenKey, nextScreenKey) : null;
22
+ if (sourceMeasurePairKey) {
23
+ requestBoundaryMeasurements({
24
+ pairKey: sourceMeasurePairKey,
25
+ tag: String(params.id),
26
+ destination: !hasTargetOverride,
27
+ refresh: params.refresh
28
+ });
29
+ }
22
30
  const resolvedPair = params.resolvedPair ?? resolveTransitionPair(String(params.id), {
23
31
  currentScreenKey,
24
32
  previousScreenKey,
@@ -28,9 +36,6 @@ const resolveStartEnd = params => {
28
36
  const sourceBounds = resolvedPair.sourceBounds;
29
37
  const destinationBounds = resolvedPair.destinationBounds;
30
38
  if (!sourceBounds) {
31
- if (hasTargetOverride && sourceMeasurePairKey) {
32
- requestSourceMeasure(sourceMeasurePairKey, String(params.id));
33
- }
34
39
  return {
35
40
  start: null,
36
41
  end: null,
@@ -103,7 +108,8 @@ export const computeBoundStyles = ({
103
108
  next,
104
109
  computeOptions,
105
110
  dimensions,
106
- resolvedPair
111
+ resolvedPair,
112
+ refresh: !!interpolationProps?.active?.willAnimate
107
113
  });
108
114
  if (!start || !end) {
109
115
  return NO_STYLES;
@@ -1 +1 @@
1
- {"version":3,"names":["ENTER_RANGE","EXIT_RANGE","FULLSCREEN_DIMENSIONS","NO_STYLES","createScreenPairKey","requestSourceMeasure","resolveTransitionPair","computeContentTransformGeometry","computeRelativeGeometry","composeContentStyle","composeSizeAbsolute","composeSizeRelative","composeTransformAbsolute","composeTransformRelative","attachBoundsLocalTransform","resolveStartEnd","params","entering","next","fullscreen","dimensions","isFullscreenTarget","computeOptions","target","hasCustomTarget","hasTargetOverride","currentScreenKey","current","route","key","previousScreenKey","previous","nextScreenKey","sourceMeasurePairKey","resolvedPair","String","id","sourceBounds","destinationBounds","start","end","sourceScreenKey","destinationScreenKey","customTarget","computeBoundStyles","progress","interpolationProps","ranges","method","currentOwnsSource","contentStart","contentEnd","geometry","anchor","scaleMode","common","isSize","isAbsolute","space","style","destinationStyles","sourceStyles"],"sourceRoot":"../../../../../../../src","sources":["shared/utils/bounds/helpers/styles/compute.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["ENTER_RANGE","EXIT_RANGE","FULLSCREEN_DIMENSIONS","NO_STYLES","createScreenPairKey","requestBoundaryMeasurements","resolveTransitionPair","computeContentTransformGeometry","computeRelativeGeometry","composeContentStyle","composeSizeAbsolute","composeSizeRelative","composeTransformAbsolute","composeTransformRelative","attachBoundsLocalTransform","resolveStartEnd","params","entering","next","fullscreen","dimensions","isFullscreenTarget","computeOptions","target","hasCustomTarget","hasTargetOverride","currentScreenKey","current","route","key","previousScreenKey","previous","nextScreenKey","sourceMeasurePairKey","pairKey","tag","String","id","destination","refresh","resolvedPair","sourceBounds","destinationBounds","start","end","sourceScreenKey","destinationScreenKey","customTarget","computeBoundStyles","progress","interpolationProps","active","willAnimate","ranges","method","currentOwnsSource","contentStart","contentEnd","geometry","anchor","scaleMode","common","isSize","isAbsolute","space","style","destinationStyles","sourceStyles"],"sourceRoot":"../../../../../../../src","sources":["shared/utils/bounds/helpers/styles/compute.ts"],"mappings":"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","ignoreList":[]}
@@ -17,7 +17,7 @@ export declare function useHeaderConfigProps({ headerBackImageSource, headerBack
17
17
  readonly backButtonDisplayMode: import("react-native-screens").BackButtonDisplayMode | undefined;
18
18
  readonly backTitleFontFamily: string | undefined;
19
19
  readonly backTitleFontSize: number | undefined;
20
- readonly blurEffect: import("react-native-screens").BlurEffectTypes | undefined;
20
+ readonly blurEffect: import("react-native-screens").BlurEffect | undefined;
21
21
  readonly color: string;
22
22
  readonly direction: import("@react-navigation/native").LocaleDirection;
23
23
  readonly disableBackButtonMenu: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"boundary-lifecycle.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/boundary/components/boundary-lifecycle.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAE3D,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAE7D,OAAO,KAAK,EACX,mBAAmB,EACnB,6BAA6B,EAC7B,MAAM,UAAU,CAAC;AAElB,UAAU,sBAAsB;IAC/B,QAAQ,EAAE,QAAQ,CAAC;IACnB,MAAM,EAAE,mBAAmB,CAAC;IAC5B,gBAAgB,EAAE,MAAM,CAAC;IACzB,OAAO,EAAE,OAAO,CAAC;IACjB,cAAc,EAAE,OAAO,CAAC;IACxB,OAAO,EAAE,OAAO,CAAC;IACjB,gBAAgB,EAAE,6BAA6B,CAAC;IAChD,WAAW,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;IAC/B,KAAK,CAAC,EAAE,OAAO,CAAC;CAChB;AAED,eAAO,MAAM,iBAAiB,wJAU3B,sBAAsB,UAmBvB,CAAC"}
1
+ {"version":3,"file":"boundary-lifecycle.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/boundary/components/boundary-lifecycle.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAE7D,OAAO,KAAK,EACX,mBAAmB,EACnB,6BAA6B,EAC7B,MAAM,UAAU,CAAC;AAElB,UAAU,sBAAsB;IAC/B,QAAQ,EAAE,QAAQ,CAAC;IACnB,MAAM,EAAE,mBAAmB,CAAC;IAC5B,gBAAgB,EAAE,MAAM,CAAC;IACzB,OAAO,EAAE,OAAO,CAAC;IACjB,cAAc,EAAE,OAAO,CAAC;IACxB,OAAO,EAAE,OAAO,CAAC;IACjB,gBAAgB,EAAE,6BAA6B,CAAC;IAChD,WAAW,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;IAC/B,KAAK,CAAC,EAAE,OAAO,CAAC;CAChB;AAED,eAAO,MAAM,iBAAiB,wJAU3B,sBAAsB,UAcvB,CAAC"}
@@ -1,8 +1,9 @@
1
1
  import type { BoundTag } from "../../../../stores/bounds/types";
2
2
  import type { MeasureBoundary } from "../../types";
3
- export declare const useInitialSourceMeasurement: (params: {
3
+ export declare const useBoundaryMeasurementRequest: (params: {
4
4
  enabled: boolean;
5
- measureBoundary: MeasureBoundary;
6
5
  boundTag: BoundTag;
6
+ currentScreenKey: string;
7
+ measureBoundary: MeasureBoundary;
7
8
  }) => void;
8
- //# sourceMappingURL=use-initial-source-measurement.d.ts.map
9
+ //# sourceMappingURL=use-boundary-measurement-request.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"use-boundary-measurement-request.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/hooks/lifecycles/use-boundary-measurement-request.ts"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iCAAiC,CAAC;AAEhE,OAAO,KAAK,EAAE,eAAe,EAAiB,MAAM,aAAa,CAAC;AAKlE,eAAO,MAAM,6BAA6B,GAAI,QAAQ;IACrD,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,QAAQ,CAAC;IACnB,gBAAgB,EAAE,MAAM,CAAC;IACzB,eAAe,EAAE,eAAe,CAAC;CACjC,SA4EA,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"use-boundary-presence.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/hooks/lifecycles/use-boundary-presence.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iCAAiC,CAAC;AAChE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAEvD,eAAO,MAAM,mBAAmB,GAAI,QAAQ;IAC3C,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,QAAQ,CAAC;IACnB,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,CAAC,EAAE,mBAAmB,CAAC;IACrC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,cAAc,CAAC,EAAE,OAAO,CAAC;CACzB,SAwBA,CAAC"}
1
+ {"version":3,"file":"use-boundary-presence.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/hooks/lifecycles/use-boundary-presence.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iCAAiC,CAAC;AAChE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAEvD,eAAO,MAAM,mBAAmB,GAAI,QAAQ;IAC3C,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,QAAQ,CAAC;IACnB,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,CAAC,EAAE,mBAAmB,CAAC;IACrC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,cAAc,CAAC,EAAE,OAAO,CAAC;CACzB,SAiCA,CAAC"}
@@ -6,8 +6,6 @@ interface UseBoundaryMeasurementParams {
6
6
  boundTag: BoundTag;
7
7
  /** Raw `enabled` prop — drives the measurer and the passive-source gate. */
8
8
  enabled: boolean;
9
- /** `enabled && hasConfiguredInterpolator` — gates presence + lifecycle. */
10
- runtimeEnabled: boolean;
11
9
  currentScreenKey: string;
12
10
  /** Surface to measure: a nested target's placeholder, else the root. */
13
11
  measuredRef: AnimatedRef<View>;
@@ -23,6 +21,6 @@ interface UseBoundaryMeasurementParams {
23
21
  * registers presence, runs the initial source/destination + refresh reactions,
24
22
  * and keeps the component itself away from the measurer.
25
23
  */
26
- export declare const useBoundaryMeasurement: ({ boundTag, enabled, runtimeEnabled, currentScreenKey, measuredRef, style, handoff, escapeClipping, localMeasurement, config, }: UseBoundaryMeasurementParams) => void;
24
+ export declare const useBoundaryMeasurement: ({ boundTag, enabled, currentScreenKey, measuredRef, style, handoff, escapeClipping, localMeasurement, config, }: UseBoundaryMeasurementParams) => void;
27
25
  export {};
28
26
  //# sourceMappingURL=use-boundary-measurement.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"use-boundary-measurement.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/boundary/hooks/use-boundary-measurement.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAE7D,OAAO,KAAK,EACX,mBAAmB,EACnB,6BAA6B,EAC7B,MAAM,UAAU,CAAC;AAOlB,UAAU,4BAA4B;IACrC,QAAQ,EAAE,QAAQ,CAAC;IACnB,4EAA4E;IAC5E,OAAO,EAAE,OAAO,CAAC;IACjB,2EAA2E;IAC3E,cAAc,EAAE,OAAO,CAAC;IACxB,gBAAgB,EAAE,MAAM,CAAC;IACzB,wEAAwE;IACxE,WAAW,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;IAC/B,2DAA2D;IAC3D,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,OAAO,CAAC;IACjB,cAAc,EAAE,OAAO,CAAC;IACxB,gBAAgB,EAAE,6BAA6B,CAAC;IAChD,MAAM,EAAE,mBAAmB,CAAC;CAC5B;AAED;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,GAAI,iIAWpC,4BAA4B,SAiD9B,CAAC"}
1
+ {"version":3,"file":"use-boundary-measurement.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/boundary/hooks/use-boundary-measurement.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAE7D,OAAO,KAAK,EACX,mBAAmB,EACnB,6BAA6B,EAC7B,MAAM,UAAU,CAAC;AAKlB,UAAU,4BAA4B;IACrC,QAAQ,EAAE,QAAQ,CAAC;IACnB,4EAA4E;IAC5E,OAAO,EAAE,OAAO,CAAC;IACjB,gBAAgB,EAAE,MAAM,CAAC;IACzB,wEAAwE;IACxE,WAAW,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;IAC/B,2DAA2D;IAC3D,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,OAAO,CAAC;IACjB,cAAc,EAAE,OAAO,CAAC;IACxB,gBAAgB,EAAE,6BAA6B,CAAC;IAChD,MAAM,EAAE,mBAAmB,CAAC;CAC5B;AAED;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,GAAI,iHAUpC,4BAA4B,SAmC9B,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"use-measurer.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/boundary/hooks/use-measurer.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAEzC,OAAO,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAGvE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAI7D,OAAO,KAAK,EAAE,6BAA6B,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAQ/E,UAAU,iBAAiB;IAC1B,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,QAAQ,CAAC;IACnB,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,UAAU,CAAC;IAC3B,mBAAmB,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;IACvC,OAAO,EAAE,OAAO,CAAC;IACjB,cAAc,EAAE,OAAO,CAAC;IACxB,gBAAgB,EAAE,6BAA6B,CAAC;CAChD;AAED,eAAO,MAAM,WAAW,GAAI,0HASzB,iBAAiB,KAAG,eA8FtB,CAAC"}
1
+ {"version":3,"file":"use-measurer.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/boundary/hooks/use-measurer.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAEzC,OAAO,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAGvE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAG7D,OAAO,KAAK,EAAE,6BAA6B,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAQ/E,UAAU,iBAAiB;IAC1B,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,QAAQ,CAAC;IACnB,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,UAAU,CAAC;IAC3B,mBAAmB,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;IACvC,OAAO,EAAE,OAAO,CAAC;IACjB,cAAc,EAAE,OAAO,CAAC;IACxB,gBAAgB,EAAE,6BAA6B,CAAC;CAChD;AAED,eAAO,MAAM,WAAW,GAAI,0HASzB,iBAAiB,KAAG,eAgFtB,CAAC"}
@@ -10,6 +10,11 @@ type ResolveActiveHandoffReceiverParams = {
10
10
  routes: ReceiverRoute[];
11
11
  scenes: ReceiverScene[];
12
12
  };
13
+ export declare const hasNestedHandoffTopology: ({ inheritedSourcePair, pairDestinationScreenKey, transitionDestinationScreenKey, }: {
14
+ inheritedSourcePair: boolean;
15
+ pairDestinationScreenKey: string | null;
16
+ transitionDestinationScreenKey?: string;
17
+ }) => boolean;
13
18
  export declare const resolveActiveHandoffReceiver: ({ focusedIndex, routes, scenes, }: ResolveActiveHandoffReceiverParams) => string | null;
14
19
  export declare const resolvePreviousHandoffReceiver: ({ focusedIndex, routes, scenes, }: ResolveActiveHandoffReceiverParams) => string | null;
15
20
  export declare const resolveHandoffAttachmentCandidate: ({ activeReceiverClosing, activeReceiverScreenKey, attachedReceiverScreenKey, hasActiveCloseFinished, interpolatorReady, pairChangedDuringClose, pairDestinationScreenKey, previousReceiverScreenKey, }: {
@@ -22,5 +27,12 @@ export declare const resolveHandoffAttachmentCandidate: ({ activeReceiverClosing
22
27
  pairDestinationScreenKey: string | null;
23
28
  previousReceiverScreenKey: string | null;
24
29
  }) => string | null;
30
+ export declare const resolveNestedHandoffAttachmentCandidate: ({ attachedReceiverScreenKey, currentScreenKey, hasActiveCloseFinished, interpolatorReady, pairDestinationScreenKey, }: {
31
+ attachedReceiverScreenKey: string;
32
+ currentScreenKey: string;
33
+ hasActiveCloseFinished: boolean;
34
+ interpolatorReady: boolean;
35
+ pairDestinationScreenKey: string | null;
36
+ }) => string;
25
37
  export {};
26
38
  //# sourceMappingURL=active-handoff-receiver.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"active-handoff-receiver.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.ts"],"names":[],"mappings":"AAAA,KAAK,aAAa,GAAG;IACpB,GAAG,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,KAAK,aAAa,GAAG;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,aAAa,CAAC;CACrB,CAAC;AAEF,KAAK,kCAAkC,GAAG;IACzC,YAAY,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,aAAa,EAAE,CAAC;IACxB,MAAM,EAAE,aAAa,EAAE,CAAC;CACxB,CAAC;AAEF,eAAO,MAAM,4BAA4B,GAAI,mCAI1C,kCAAkC,KAAG,MAAM,GAAG,IAShD,CAAC;AAEF,eAAO,MAAM,8BAA8B,GAAI,mCAI5C,kCAAkC,KAAG,MAAM,GAAG,IAehD,CAAC;AAEF,eAAO,MAAM,iCAAiC,GAAI,wMAS/C;IACF,qBAAqB,EAAE,OAAO,CAAC;IAC/B,uBAAuB,EAAE,MAAM,GAAG,IAAI,CAAC;IACvC,yBAAyB,EAAE,MAAM,CAAC;IAClC,sBAAsB,EAAE,OAAO,CAAC;IAChC,iBAAiB,EAAE,OAAO,CAAC;IAC3B,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,wBAAwB,EAAE,MAAM,GAAG,IAAI,CAAC;IACxC,yBAAyB,EAAE,MAAM,GAAG,IAAI,CAAC;CACzC,kBAiCA,CAAC"}
1
+ {"version":3,"file":"active-handoff-receiver.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.ts"],"names":[],"mappings":"AAAA,KAAK,aAAa,GAAG;IACpB,GAAG,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,KAAK,aAAa,GAAG;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,aAAa,CAAC;CACrB,CAAC;AAEF,KAAK,kCAAkC,GAAG;IACzC,YAAY,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,aAAa,EAAE,CAAC;IACxB,MAAM,EAAE,aAAa,EAAE,CAAC;CACxB,CAAC;AAEF,eAAO,MAAM,wBAAwB,GAAI,oFAItC;IACF,mBAAmB,EAAE,OAAO,CAAC;IAC7B,wBAAwB,EAAE,MAAM,GAAG,IAAI,CAAC;IACxC,8BAA8B,CAAC,EAAE,MAAM,CAAC;CACxC,YAOA,CAAC;AAEF,eAAO,MAAM,4BAA4B,GAAI,mCAI1C,kCAAkC,KAAG,MAAM,GAAG,IAShD,CAAC;AAEF,eAAO,MAAM,8BAA8B,GAAI,mCAI5C,kCAAkC,KAAG,MAAM,GAAG,IAehD,CAAC;AAEF,eAAO,MAAM,iCAAiC,GAAI,wMAS/C;IACF,qBAAqB,EAAE,OAAO,CAAC;IAC/B,uBAAuB,EAAE,MAAM,GAAG,IAAI,CAAC;IACvC,yBAAyB,EAAE,MAAM,CAAC;IAClC,sBAAsB,EAAE,OAAO,CAAC;IAChC,iBAAiB,EAAE,OAAO,CAAC;IAC3B,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,wBAAwB,EAAE,MAAM,GAAG,IAAI,CAAC;IACxC,yBAAyB,EAAE,MAAM,GAAG,IAAI,CAAC;CACzC,kBAiCA,CAAC;AAEF,eAAO,MAAM,uCAAuC,GAAI,uHAMrD;IACF,yBAAyB,EAAE,MAAM,CAAC;IAClC,gBAAgB,EAAE,MAAM,CAAC;IACzB,sBAAsB,EAAE,OAAO,CAAC;IAChC,iBAAiB,EAAE,OAAO,CAAC;IAC3B,wBAAwB,EAAE,MAAM,GAAG,IAAI,CAAC;CACxC,WASA,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"use-boundary-content-portal-attachment.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.ts"],"names":[],"mappings":"AAmBA,UAAU,wCAAwC;IACjD,UAAU,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,kCAAkC,GAAI,iBAEhD,wCAAwC;;;;CAuH1C,CAAC"}
1
+ {"version":3,"file":"use-boundary-content-portal-attachment.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.ts"],"names":[],"mappings":"AAqBA,UAAU,wCAAwC;IACjD,UAAU,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,kCAAkC,GAAI,iBAEhD,wCAAwC;;;;CAqK1C,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"portal-boundary-host.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.tsx"],"names":[],"mappings":"AACA,OAAO,EAEN,KAAK,SAAS,EAEd,KAAK,SAAS,EACd,MAAM,cAAc,CAAC;AACtB,OAAiB,EAChB,KAAK,kBAAkB,EACvB,KAAK,WAAW,EAGhB,MAAM,yBAAyB,CAAC;AAMjC,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AAcrF,KAAK,uBAAuB,GAAG;IAC9B,IAAI,EAAE,wBAAwB,CAAC;IAC/B,UAAU,EAAE,WAAW,CAAC,kBAAkB,GAAG,IAAI,CAAC,CAAC;IACnD,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,eAAe,EAAE,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAC5C,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC7B,CAAC;AAEF,eAAO,MAAM,kBAAkB,0GAM5B,uBAAuB,oDA0ExB,CAAC"}
1
+ {"version":3,"file":"portal-boundary-host.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.tsx"],"names":[],"mappings":"AACA,OAAO,EAEN,KAAK,SAAS,EAEd,KAAK,SAAS,EACd,MAAM,cAAc,CAAC;AACtB,OAAiB,EAChB,KAAK,kBAAkB,EACvB,KAAK,WAAW,EAGhB,MAAM,yBAAyB,CAAC;AAQjC,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AAcrF,KAAK,uBAAuB,GAAG;IAC9B,IAAI,EAAE,wBAAwB,CAAC;IAC/B,UAAU,EAAE,WAAW,CAAC,kBAAkB,GAAG,IAAI,CAAC,CAAC;IACnD,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,eAAe,EAAE,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAC5C,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC7B,CAAC;AAEF,eAAO,MAAM,kBAAkB,0GAM5B,uBAAuB,oDAiFxB,CAAC"}
@@ -0,0 +1,8 @@
1
+ import type { BoundaryTeleportControl } from "../../../../../../types/animation.types";
2
+ export declare const shouldAttachBoundaryPortal: ({ focused, portalHostReady, slotActive, teleport, }: {
3
+ focused: boolean;
4
+ portalHostReady: boolean;
5
+ slotActive: boolean;
6
+ teleport?: BoundaryTeleportControl;
7
+ }) => boolean;
8
+ //# sourceMappingURL=attachment.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"attachment.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-portal/helpers/attachment.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,yCAAyC,CAAC;AAGvF,eAAO,MAAM,0BAA0B,GAAI,qDAKxC;IACF,OAAO,EAAE,OAAO,CAAC;IACjB,eAAe,EAAE,OAAO,CAAC;IACzB,UAAU,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,uBAAuB,CAAC;CACnC,YAKA,CAAC"}
@@ -0,0 +1,6 @@
1
+ export declare const resolveReadyPortalHostName: ({ currentReadyHostName, hostName, ready, }: {
2
+ currentReadyHostName: string | null;
3
+ hostName: string;
4
+ ready: boolean;
5
+ }) => string | null;
6
+ //# sourceMappingURL=host-readiness.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"host-readiness.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-portal/helpers/host-readiness.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,0BAA0B,GAAI,4CAIxC;IACF,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,OAAO,CAAC;CACf,kBAKA,CAAC"}
@@ -1,4 +1,7 @@
1
- import type { ScreenPairKey } from "../../../../../../stores/bounds/types";
1
+ import type { LinkPairsState, ScreenPairKey } from "../../../../../../stores/bounds/types";
2
+ import type { NormalizedTransitionSlotStyle } from "../../../../../../types/animation.types";
2
3
  import type { BoundaryLocalMeasurement } from "../../../../types";
4
+ export declare const resolveBoundaryPortalPairKey: (measurement: BoundaryLocalMeasurement | null) => ScreenPairKey | null;
5
+ export declare const resolveActiveBoundaryPortalPairKey: (measurement: BoundaryLocalMeasurement | null, slot: NormalizedTransitionSlotStyle | undefined, boundaryId: string, pairsState: LinkPairsState) => ScreenPairKey | null;
3
6
  export declare const resolveBoundaryLocalMeasurement: (measurement: BoundaryLocalMeasurement | null, pairKey: ScreenPairKey) => import("react-native-reanimated").MeasuredDimensions | null;
4
7
  //# sourceMappingURL=local-measurement.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"local-measurement.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-portal/helpers/local-measurement.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,uCAAuC,CAAC;AAC3E,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,mBAAmB,CAAC;AAElE,eAAO,MAAM,+BAA+B,GAC3C,aAAa,wBAAwB,GAAG,IAAI,EAC5C,SAAS,aAAa,gEAItB,CAAC"}
1
+ {"version":3,"file":"local-measurement.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-portal/helpers/local-measurement.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACX,cAAc,EACd,aAAa,EACb,MAAM,uCAAuC,CAAC;AAC/C,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,yCAAyC,CAAC;AAC7F,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,mBAAmB,CAAC;AAGlE,eAAO,MAAM,4BAA4B,GACxC,aAAa,wBAAwB,GAAG,IAAI,KAC1C,aAAa,GAAG,IAGlB,CAAC;AAEF,eAAO,MAAM,kCAAkC,GAC9C,aAAa,wBAAwB,GAAG,IAAI,EAC5C,MAAM,6BAA6B,GAAG,SAAS,EAC/C,YAAY,MAAM,EAClB,YAAY,cAAc,KACxB,aAAa,GAAG,IAYlB,CAAC;AAEF,eAAO,MAAM,+BAA+B,GAC3C,aAAa,wBAAwB,GAAG,IAAI,EAC5C,SAAS,aAAa,gEAItB,CAAC"}
@@ -3,13 +3,12 @@ import type { NormalizedTransitionInterpolatedStyle } from "../../../../../../ty
3
3
  import type { BoundaryLocalMeasurementValue } from "../../../../types";
4
4
  type UseActivePortalBoundaryHostParams = {
5
5
  boundaryId: string;
6
- currentScreenKey: string;
7
6
  escapeHostKey?: string;
8
7
  localMeasurement: BoundaryLocalMeasurementValue;
9
8
  portalHostName: SharedValue<string | null>;
10
- portalHostReady: SharedValue<boolean>;
9
+ portalHostReady: SharedValue<string | null>;
11
10
  slotsMap: SharedValue<NormalizedTransitionInterpolatedStyle>;
12
11
  };
13
- export declare const useActivePortalBoundaryHost: ({ boundaryId, currentScreenKey, escapeHostKey, localMeasurement, portalHostName, portalHostReady, slotsMap, }: UseActivePortalBoundaryHostParams) => void;
12
+ export declare const useActivePortalBoundaryHost: ({ boundaryId, escapeHostKey, localMeasurement, portalHostName, portalHostReady, slotsMap, }: UseActivePortalBoundaryHostParams) => void;
14
13
  export {};
15
14
  //# sourceMappingURL=use-active-portal-boundary-host.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"use-active-portal-boundary-host.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.ts"],"names":[],"mappings":"AACA,OAAO,EAEN,KAAK,WAAW,EAEhB,MAAM,yBAAyB,CAAC;AAGjC,OAAO,KAAK,EAAE,qCAAqC,EAAE,MAAM,yCAAyC,CAAC;AACrG,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,mBAAmB,CAAC;AAOvE,KAAK,iCAAiC,GAAG;IACxC,UAAU,EAAE,MAAM,CAAC;IACnB,gBAAgB,EAAE,MAAM,CAAC;IACzB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,EAAE,6BAA6B,CAAC;IAChD,cAAc,EAAE,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAC3C,eAAe,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;IACtC,QAAQ,EAAE,WAAW,CAAC,qCAAqC,CAAC,CAAC;CAC7D,CAAC;AAEF,eAAO,MAAM,2BAA2B,GAAI,+GAQzC,iCAAiC,SAoEnC,CAAC"}
1
+ {"version":3,"file":"use-active-portal-boundary-host.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.ts"],"names":[],"mappings":"AACA,OAAO,EAEN,KAAK,WAAW,EAEhB,MAAM,yBAAyB,CAAC;AAGjC,OAAO,KAAK,EAAE,qCAAqC,EAAE,MAAM,yCAAyC,CAAC;AACrG,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,mBAAmB,CAAC;AASvE,KAAK,iCAAiC,GAAG;IACxC,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,EAAE,6BAA6B,CAAC;IAChD,cAAc,EAAE,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAC3C,eAAe,EAAE,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAC5C,QAAQ,EAAE,WAAW,CAAC,qCAAqC,CAAC,CAAC;CAC7D,CAAC;AAEF,eAAO,MAAM,2BAA2B,GAAI,6FAOzC,iCAAiC,SA6EnC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"use-boundary-portal-attachment.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.ts"],"names":[],"mappings":"AASA,UAAU,iCAAiC;IAC1C,UAAU,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,2BAA2B,GAAI,iBAEzC,iCAAiC;;;;CAoDnC,CAAC"}
1
+ {"version":3,"file":"use-boundary-portal-attachment.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.ts"],"names":[],"mappings":"AAYA,UAAU,iCAAiC;IAC1C,UAAU,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,2BAA2B,GAAI,iBAEzC,iCAAiC;;;;CAkEnC,CAAC"}
@@ -1,12 +1,12 @@
1
1
  import type { LayoutRectangle } from "react-native";
2
2
  export declare const usePlaceholderStyles: () => {
3
- placeholderStyle: {
3
+ placeholderStyle: import("react-native-reanimated/lib/typescript/hook/commonTypes").AnimatedStyleHandle<{
4
4
  readonly width: "auto";
5
5
  readonly height: "auto";
6
6
  } | {
7
7
  width: number;
8
8
  height: number;
9
- };
9
+ }>;
10
10
  handleOnLayout: (layout: LayoutRectangle) => void;
11
11
  };
12
12
  //# sourceMappingURL=use-placeholder-styles.d.ts.map
@@ -7,7 +7,7 @@ export type ActivePortalBoundaryHost = {
7
7
  localMeasurement: BoundaryLocalMeasurementValue;
8
8
  pairKey: string;
9
9
  portalHostName: string;
10
- portalHostReady: SharedValue<boolean>;
10
+ portalHostReady: SharedValue<string | null>;
11
11
  slotsMap: SharedValue<NormalizedTransitionInterpolatedStyle>;
12
12
  };
13
13
  export declare const mountPortalBoundaryHost: (host: ActivePortalBoundaryHost) => void;
@@ -1 +1 @@
1
- {"version":3,"file":"portal-boundary-host.store.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAE,qCAAqC,EAAE,MAAM,yCAAyC,CAAC;AACrG,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,mBAAmB,CAAC;AAEvE,MAAM,MAAM,wBAAwB,GAAG;IACtC,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,gBAAgB,EAAE,6BAA6B,CAAC;IAChD,OAAO,EAAE,MAAM,CAAC;IAChB,cAAc,EAAE,MAAM,CAAC;IACvB,eAAe,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;IACtC,QAAQ,EAAE,WAAW,CAAC,qCAAqC,CAAC,CAAC;CAC7D,CAAC;AAoDF,eAAO,MAAM,uBAAuB,GAAI,MAAM,wBAAwB,SAQrE,CAAC;AAEF,eAAO,MAAM,+BAA+B,GAC3C,gBAAgB,MAAM,GAAG,IAAI,GAAG,SAAS,SAOzC,CAAC;AAUF,eAAO,MAAM,4BAA4B,GAAI,SAAS,MAAM,+BAM3D,CAAC"}
1
+ {"version":3,"file":"portal-boundary-host.store.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/shared/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAE,qCAAqC,EAAE,MAAM,yCAAyC,CAAC;AACrG,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,mBAAmB,CAAC;AAEvE,MAAM,MAAM,wBAAwB,GAAG;IACtC,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,gBAAgB,EAAE,6BAA6B,CAAC;IAChD,OAAO,EAAE,MAAM,CAAC;IAChB,cAAc,EAAE,MAAM,CAAC;IACvB,eAAe,EAAE,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAC5C,QAAQ,EAAE,WAAW,CAAC,qCAAqC,CAAC,CAAC;CAC7D,CAAC;AAoDF,eAAO,MAAM,uBAAuB,GAAI,MAAM,wBAAwB,SAQrE,CAAC;AAEF,eAAO,MAAM,+BAA+B,GAC3C,gBAAgB,MAAM,GAAG,IAAI,GAAG,SAAS,SAOzC,CAAC;AAUF,eAAO,MAAM,4BAA4B,GAAI,SAAS,MAAM,+BAM3D,CAAC"}
@@ -48,7 +48,7 @@ export type MeasureTarget = {
48
48
  type: "destination";
49
49
  pairKey: ScreenPairKey;
50
50
  };
51
- export type MeasureBoundary = (target: MeasureTarget) => void;
51
+ export type MeasureBoundary = (target: MeasureTarget) => boolean;
52
52
  export type BoundaryLocalMeasurement = {
53
53
  bounds: MeasuredDimensions;
54
54
  pairKey: ScreenPairKey;
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/shared/components/boundary/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC/E,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AAEtE,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,MAAM,CAAC;AAEzC,MAAM,MAAM,mBAAmB,GAAG,IAAI,CACrC,aAAa,EACb,QAAQ,GAAG,WAAW,GAAG,QAAQ,GAAG,QAAQ,CAC5C,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,gBAAiB,SAAQ,mBAAmB;IAC5D;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;;;;OAKG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;;;;OAKG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,EAAE,EAAE,UAAU,CAAC;CACf;AAED;;;GAGG;AACH,MAAM,MAAM,sBAAsB,CAAC,CAAC,SAAS,MAAM,IAAI,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,GACnE,gBAAgB,CAAC;AAElB,MAAM,MAAM,aAAa,GACtB;IACA,IAAI,EAAE,QAAQ,CAAC;IACf,OAAO,EAAE,aAAa,CAAC;CACtB,GACD;IACA,IAAI,EAAE,aAAa,CAAC;IACpB,OAAO,EAAE,aAAa,CAAC;CACtB,CAAC;AAEL,MAAM,MAAM,eAAe,GAAG,CAAC,MAAM,EAAE,aAAa,KAAK,IAAI,CAAC;AAE9D,MAAM,MAAM,wBAAwB,GAAG;IACtC,MAAM,EAAE,kBAAkB,CAAC;IAC3B,OAAO,EAAE,aAAa,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,6BAA6B,GACxC,WAAW,CAAC,wBAAwB,GAAG,IAAI,CAAC,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/shared/components/boundary/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC/E,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AAEtE,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,MAAM,CAAC;AAEzC,MAAM,MAAM,mBAAmB,GAAG,IAAI,CACrC,aAAa,EACb,QAAQ,GAAG,WAAW,GAAG,QAAQ,GAAG,QAAQ,CAC5C,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,gBAAiB,SAAQ,mBAAmB;IAC5D;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;;;;OAKG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;;;;OAKG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,EAAE,EAAE,UAAU,CAAC;CACf;AAED;;;GAGG;AACH,MAAM,MAAM,sBAAsB,CAAC,CAAC,SAAS,MAAM,IAAI,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,GACnE,gBAAgB,CAAC;AAElB,MAAM,MAAM,aAAa,GACtB;IACA,IAAI,EAAE,QAAQ,CAAC;IACf,OAAO,EAAE,aAAa,CAAC;CACtB,GACD;IACA,IAAI,EAAE,aAAa,CAAC;IACpB,OAAO,EAAE,aAAa,CAAC;CACtB,CAAC;AAEL,MAAM,MAAM,eAAe,GAAG,CAAC,MAAM,EAAE,aAAa,KAAK,OAAO,CAAC;AAEjE,MAAM,MAAM,wBAAwB,GAAG;IACtC,MAAM,EAAE,kBAAkB,CAAC;IAC3B,OAAO,EAAE,aAAa,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,6BAA6B,GACxC,WAAW,CAAC,wBAAwB,GAAG,IAAI,CAAC,CAAC"}