react-native-screen-transitions 3.9.0-alpha.1 → 3.9.0-alpha.3

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 (481) hide show
  1. package/lib/commonjs/shared/components/boundary/components/boundary-target.js +21 -16
  2. package/lib/commonjs/shared/components/boundary/components/boundary-target.js.map +1 -1
  3. package/lib/commonjs/shared/components/boundary/create-boundary-component.js +88 -114
  4. package/lib/commonjs/shared/components/boundary/create-boundary-component.js.map +1 -1
  5. package/lib/commonjs/shared/components/boundary/hooks/{use-boundary-presence.js → lifecycles/use-boundary-presence.js} +14 -7
  6. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-boundary-presence.js.map +1 -0
  7. package/lib/commonjs/shared/components/boundary/hooks/{use-initial-destination-measurement.js → lifecycles/use-initial-destination-measurement.js} +51 -24
  8. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js.map +1 -0
  9. package/lib/commonjs/shared/components/boundary/hooks/{use-initial-source-measurement.js → lifecycles/use-initial-source-measurement.js} +7 -10
  10. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-initial-source-measurement.js.map +1 -0
  11. package/lib/commonjs/shared/components/boundary/hooks/{use-refresh-boundary.js → lifecycles/use-refresh-boundary.js} +10 -7
  12. package/lib/commonjs/shared/components/boundary/hooks/lifecycles/use-refresh-boundary.js.map +1 -0
  13. package/lib/commonjs/shared/components/boundary/hooks/use-boundary-measurement.js +82 -0
  14. package/lib/commonjs/shared/components/boundary/hooks/use-boundary-measurement.js.map +1 -0
  15. package/lib/commonjs/shared/components/boundary/hooks/use-measurer.js +10 -13
  16. package/lib/commonjs/shared/components/boundary/hooks/use-measurer.js.map +1 -1
  17. package/lib/commonjs/shared/components/boundary/index.js +27 -30
  18. package/lib/commonjs/shared/components/boundary/index.js.map +1 -1
  19. package/lib/commonjs/shared/components/boundary/portal/components/boundary-local-portal-host.js +58 -0
  20. package/lib/commonjs/shared/components/boundary/portal/components/boundary-local-portal-host.js.map +1 -0
  21. package/lib/commonjs/shared/components/boundary/portal/components/host.js +20 -4
  22. package/lib/commonjs/shared/components/boundary/portal/components/host.js.map +1 -1
  23. package/lib/commonjs/shared/components/boundary/portal/components/portal-boundary-host.js +53 -32
  24. package/lib/commonjs/shared/components/boundary/portal/components/portal-boundary-host.js.map +1 -1
  25. package/lib/commonjs/shared/components/boundary/portal/components/portal.js +206 -96
  26. package/lib/commonjs/shared/components/boundary/portal/components/portal.js.map +1 -1
  27. package/lib/commonjs/shared/components/boundary/portal/hooks/use-host-measurement.js +14 -2
  28. package/lib/commonjs/shared/components/boundary/portal/hooks/use-host-measurement.js.map +1 -1
  29. package/lib/commonjs/shared/components/boundary/portal/stores/host-registry.store.js +5 -44
  30. package/lib/commonjs/shared/components/boundary/portal/stores/host-registry.store.js.map +1 -1
  31. package/lib/commonjs/shared/components/boundary/portal/stores/portal-boundary-host.store.js +37 -5
  32. package/lib/commonjs/shared/components/boundary/portal/stores/portal-boundary-host.store.js.map +1 -1
  33. package/lib/commonjs/shared/components/boundary/portal/teleport.js +15 -2
  34. package/lib/commonjs/shared/components/boundary/portal/teleport.js.map +1 -1
  35. package/lib/commonjs/shared/components/boundary/portal/utils/has-local-slot.js +18 -0
  36. package/lib/commonjs/shared/components/boundary/portal/utils/has-local-slot.js.map +1 -0
  37. package/lib/commonjs/shared/components/boundary/portal/utils/naming.js +10 -3
  38. package/lib/commonjs/shared/components/boundary/portal/utils/naming.js.map +1 -1
  39. package/lib/commonjs/shared/components/boundary/portal/utils/offset-style.js +28 -49
  40. package/lib/commonjs/shared/components/boundary/portal/utils/offset-style.js.map +1 -1
  41. package/lib/commonjs/shared/components/boundary/portal/utils/ownership.js +254 -0
  42. package/lib/commonjs/shared/components/boundary/portal/utils/ownership.js.map +1 -0
  43. package/lib/commonjs/shared/components/boundary/portal/utils/resolve-portal.js +38 -0
  44. package/lib/commonjs/shared/components/boundary/portal/utils/resolve-portal.js.map +1 -0
  45. package/lib/commonjs/shared/components/boundary/portal/utils/shallow-equal.js +29 -0
  46. package/lib/commonjs/shared/components/boundary/portal/utils/shallow-equal.js.map +1 -0
  47. package/lib/commonjs/shared/components/boundary/portal/utils/teleport-control.js +10 -1
  48. package/lib/commonjs/shared/components/boundary/portal/utils/teleport-control.js.map +1 -1
  49. package/lib/commonjs/shared/components/boundary/portal/utils/visible-host.js +25 -0
  50. package/lib/commonjs/shared/components/boundary/portal/utils/visible-host.js.map +1 -0
  51. package/lib/commonjs/shared/components/boundary/providers/boundary-root.provider.js +65 -0
  52. package/lib/commonjs/shared/components/boundary/providers/boundary-root.provider.js.map +1 -0
  53. package/lib/commonjs/shared/components/boundary/utils/destination-signals.js +12 -2
  54. package/lib/commonjs/shared/components/boundary/utils/destination-signals.js.map +1 -1
  55. package/lib/commonjs/shared/components/boundary/utils/refresh-signals.js +0 -21
  56. package/lib/commonjs/shared/components/boundary/utils/refresh-signals.js.map +1 -1
  57. package/lib/commonjs/shared/components/boundary/utils/source-signals.js +4 -9
  58. package/lib/commonjs/shared/components/boundary/utils/source-signals.js.map +1 -1
  59. package/lib/commonjs/shared/components/create-transition-aware-component.js +2 -20
  60. package/lib/commonjs/shared/components/create-transition-aware-component.js.map +1 -1
  61. package/lib/commonjs/shared/components/overlay/variations/float-overlay.js +1 -1
  62. package/lib/commonjs/shared/components/overlay/variations/float-overlay.js.map +1 -1
  63. package/lib/commonjs/shared/components/screen-container/layers/backdrop.js +2 -14
  64. package/lib/commonjs/shared/components/screen-container/layers/backdrop.js.map +1 -1
  65. package/lib/commonjs/shared/components/screen-container/layers/content.js +4 -16
  66. package/lib/commonjs/shared/components/screen-container/layers/content.js.map +1 -1
  67. package/lib/commonjs/shared/components/screen-container/layers/maybe-masked-navigation-container.js +4 -15
  68. package/lib/commonjs/shared/components/screen-container/layers/maybe-masked-navigation-container.js.map +1 -1
  69. package/lib/commonjs/shared/components/screen-container/layers/surface-container.js +4 -16
  70. package/lib/commonjs/shared/components/screen-container/layers/surface-container.js.map +1 -1
  71. package/lib/commonjs/shared/index.js.map +1 -1
  72. package/lib/commonjs/shared/providers/helpers/measured-bounds-writes.js +6 -3
  73. package/lib/commonjs/shared/providers/helpers/measured-bounds-writes.js.map +1 -1
  74. package/lib/commonjs/shared/providers/screen/animation/helpers/derivations.js +1 -0
  75. package/lib/commonjs/shared/providers/screen/animation/helpers/derivations.js.map +1 -1
  76. package/lib/commonjs/shared/providers/screen/animation/helpers/pipeline.js +143 -24
  77. package/lib/commonjs/shared/providers/screen/animation/helpers/pipeline.js.map +1 -1
  78. package/lib/commonjs/shared/providers/screen/screen-composer.js +1 -1
  79. package/lib/commonjs/shared/providers/screen/screen-composer.js.map +1 -1
  80. package/lib/commonjs/shared/providers/screen/styles/helpers/compose-slot-style.js +95 -0
  81. package/lib/commonjs/shared/providers/screen/styles/helpers/compose-slot-style.js.map +1 -0
  82. package/lib/commonjs/shared/providers/screen/styles/helpers/normalize-slots.js +30 -9
  83. package/lib/commonjs/shared/providers/screen/styles/helpers/normalize-slots.js.map +1 -1
  84. package/lib/commonjs/shared/providers/screen/styles/helpers/opening-phase.js +32 -0
  85. package/lib/commonjs/shared/providers/screen/styles/helpers/opening-phase.js.map +1 -0
  86. package/lib/commonjs/shared/providers/screen/styles/helpers/resolve-slot-styles/index.js +16 -11
  87. package/lib/commonjs/shared/providers/screen/styles/helpers/resolve-slot-styles/index.js.map +1 -1
  88. package/lib/commonjs/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.js +2 -0
  89. package/lib/commonjs/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.js.map +1 -1
  90. package/lib/commonjs/shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.js +1 -20
  91. package/lib/commonjs/shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.js.map +1 -1
  92. package/lib/commonjs/shared/providers/screen/styles/helpers/visibility-gate.js +1 -11
  93. package/lib/commonjs/shared/providers/screen/styles/helpers/visibility-gate.js.map +1 -1
  94. package/lib/commonjs/shared/providers/screen/styles/hooks/slot-resolvers.js +96 -0
  95. package/lib/commonjs/shared/providers/screen/styles/hooks/slot-resolvers.js.map +1 -0
  96. package/lib/commonjs/shared/providers/screen/styles/hooks/use-interpolated-style-maps.js +36 -36
  97. package/lib/commonjs/shared/providers/screen/styles/hooks/use-interpolated-style-maps.js.map +1 -1
  98. package/lib/commonjs/shared/providers/screen/styles/hooks/use-maybe-block-visibility.js +1 -19
  99. package/lib/commonjs/shared/providers/screen/styles/hooks/use-maybe-block-visibility.js.map +1 -1
  100. package/lib/commonjs/shared/providers/screen/styles/hooks/use-resolved-slot-style-map.js +8 -3
  101. package/lib/commonjs/shared/providers/screen/styles/hooks/use-resolved-slot-style-map.js.map +1 -1
  102. package/lib/commonjs/shared/providers/screen/styles/index.js +38 -7
  103. package/lib/commonjs/shared/providers/screen/styles/index.js.map +1 -1
  104. package/lib/commonjs/shared/providers/screen/styles/{styles.provider.js → slot.provider.js} +34 -21
  105. package/lib/commonjs/shared/providers/screen/styles/slot.provider.js.map +1 -0
  106. package/lib/commonjs/shared/providers/screen/styles/stores/slot-references.store.js +53 -0
  107. package/lib/commonjs/shared/providers/screen/styles/stores/slot-references.store.js.map +1 -0
  108. package/lib/commonjs/shared/stores/bounds/helpers/link-pairs.helpers.js +37 -2
  109. package/lib/commonjs/shared/stores/bounds/helpers/link-pairs.helpers.js.map +1 -1
  110. package/lib/commonjs/shared/stores/bounds/internals/entries.js +11 -4
  111. package/lib/commonjs/shared/stores/bounds/internals/entries.js.map +1 -1
  112. package/lib/commonjs/shared/stores/bounds/internals/links.js +134 -51
  113. package/lib/commonjs/shared/stores/bounds/internals/links.js.map +1 -1
  114. package/lib/commonjs/shared/stores/bounds/internals/resolver.js +1 -3
  115. package/lib/commonjs/shared/stores/bounds/internals/resolver.js.map +1 -1
  116. package/lib/commonjs/shared/stores/system.store.js +5 -0
  117. package/lib/commonjs/shared/stores/system.store.js.map +1 -1
  118. package/lib/commonjs/shared/utils/bounds/helpers/styles/compute.js +10 -69
  119. package/lib/commonjs/shared/utils/bounds/helpers/styles/compute.js.map +1 -1
  120. package/lib/commonjs/shared/utils/bounds/helpers/styles/local-transform.js +59 -0
  121. package/lib/commonjs/shared/utils/bounds/helpers/styles/local-transform.js.map +1 -0
  122. package/lib/commonjs/shared/utils/bounds/navigation/zoom/build.js +8 -1
  123. package/lib/commonjs/shared/utils/bounds/navigation/zoom/build.js.map +1 -1
  124. package/lib/commonjs/shared/utils/bounds/navigation/zoom/helpers.js +59 -0
  125. package/lib/commonjs/shared/utils/bounds/navigation/zoom/helpers.js.map +1 -1
  126. package/lib/commonjs/shared/utils/logger.js +11 -0
  127. package/lib/commonjs/shared/utils/logger.js.map +1 -1
  128. package/lib/module/shared/components/boundary/components/boundary-target.js +19 -14
  129. package/lib/module/shared/components/boundary/components/boundary-target.js.map +1 -1
  130. package/lib/module/shared/components/boundary/create-boundary-component.js +93 -119
  131. package/lib/module/shared/components/boundary/create-boundary-component.js.map +1 -1
  132. package/lib/module/shared/components/boundary/hooks/lifecycles/use-boundary-presence.js +30 -0
  133. package/lib/module/shared/components/boundary/hooks/lifecycles/use-boundary-presence.js.map +1 -0
  134. package/lib/module/shared/components/boundary/hooks/{use-initial-destination-measurement.js → lifecycles/use-initial-destination-measurement.js} +51 -24
  135. package/lib/module/shared/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js.map +1 -0
  136. package/lib/module/shared/components/boundary/hooks/{use-initial-source-measurement.js → lifecycles/use-initial-source-measurement.js} +7 -10
  137. package/lib/module/shared/components/boundary/hooks/lifecycles/use-initial-source-measurement.js.map +1 -0
  138. package/lib/module/shared/components/boundary/hooks/{use-refresh-boundary.js → lifecycles/use-refresh-boundary.js} +10 -7
  139. package/lib/module/shared/components/boundary/hooks/lifecycles/use-refresh-boundary.js.map +1 -0
  140. package/lib/module/shared/components/boundary/hooks/use-boundary-measurement.js +77 -0
  141. package/lib/module/shared/components/boundary/hooks/use-boundary-measurement.js.map +1 -0
  142. package/lib/module/shared/components/boundary/hooks/use-measurer.js +10 -13
  143. package/lib/module/shared/components/boundary/hooks/use-measurer.js.map +1 -1
  144. package/lib/module/shared/components/boundary/index.js +27 -30
  145. package/lib/module/shared/components/boundary/index.js.map +1 -1
  146. package/lib/module/shared/components/boundary/portal/components/boundary-local-portal-host.js +53 -0
  147. package/lib/module/shared/components/boundary/portal/components/boundary-local-portal-host.js.map +1 -0
  148. package/lib/module/shared/components/boundary/portal/components/host.js +21 -5
  149. package/lib/module/shared/components/boundary/portal/components/host.js.map +1 -1
  150. package/lib/module/shared/components/boundary/portal/components/portal-boundary-host.js +53 -32
  151. package/lib/module/shared/components/boundary/portal/components/portal-boundary-host.js.map +1 -1
  152. package/lib/module/shared/components/boundary/portal/components/portal.js +213 -103
  153. package/lib/module/shared/components/boundary/portal/components/portal.js.map +1 -1
  154. package/lib/module/shared/components/boundary/portal/hooks/use-host-measurement.js +15 -3
  155. package/lib/module/shared/components/boundary/portal/hooks/use-host-measurement.js.map +1 -1
  156. package/lib/module/shared/components/boundary/portal/stores/host-registry.store.js +4 -41
  157. package/lib/module/shared/components/boundary/portal/stores/host-registry.store.js.map +1 -1
  158. package/lib/module/shared/components/boundary/portal/stores/portal-boundary-host.store.js +35 -4
  159. package/lib/module/shared/components/boundary/portal/stores/portal-boundary-host.store.js.map +1 -1
  160. package/lib/module/shared/components/boundary/portal/teleport.js +16 -2
  161. package/lib/module/shared/components/boundary/portal/teleport.js.map +1 -1
  162. package/lib/module/shared/components/boundary/portal/utils/has-local-slot.js +13 -0
  163. package/lib/module/shared/components/boundary/portal/utils/has-local-slot.js.map +1 -0
  164. package/lib/module/shared/components/boundary/portal/utils/naming.js +8 -2
  165. package/lib/module/shared/components/boundary/portal/utils/naming.js.map +1 -1
  166. package/lib/module/shared/components/boundary/portal/utils/offset-style.js +29 -49
  167. package/lib/module/shared/components/boundary/portal/utils/offset-style.js.map +1 -1
  168. package/lib/module/shared/components/boundary/portal/utils/ownership.js +246 -0
  169. package/lib/module/shared/components/boundary/portal/utils/ownership.js.map +1 -0
  170. package/lib/module/shared/components/boundary/portal/utils/resolve-portal.js +33 -0
  171. package/lib/module/shared/components/boundary/portal/utils/resolve-portal.js.map +1 -0
  172. package/lib/module/shared/components/boundary/portal/utils/shallow-equal.js +24 -0
  173. package/lib/module/shared/components/boundary/portal/utils/shallow-equal.js.map +1 -0
  174. package/lib/module/shared/components/boundary/portal/utils/teleport-control.js +8 -0
  175. package/lib/module/shared/components/boundary/portal/utils/teleport-control.js.map +1 -1
  176. package/lib/module/shared/components/boundary/portal/utils/visible-host.js +20 -0
  177. package/lib/module/shared/components/boundary/portal/utils/visible-host.js.map +1 -0
  178. package/lib/module/shared/components/boundary/providers/boundary-root.provider.js +57 -0
  179. package/lib/module/shared/components/boundary/providers/boundary-root.provider.js.map +1 -0
  180. package/lib/module/shared/components/boundary/utils/destination-signals.js +12 -2
  181. package/lib/module/shared/components/boundary/utils/destination-signals.js.map +1 -1
  182. package/lib/module/shared/components/boundary/utils/refresh-signals.js +0 -21
  183. package/lib/module/shared/components/boundary/utils/refresh-signals.js.map +1 -1
  184. package/lib/module/shared/components/boundary/utils/source-signals.js +4 -9
  185. package/lib/module/shared/components/boundary/utils/source-signals.js.map +1 -1
  186. package/lib/module/shared/components/create-transition-aware-component.js +4 -22
  187. package/lib/module/shared/components/create-transition-aware-component.js.map +1 -1
  188. package/lib/module/shared/components/overlay/variations/float-overlay.js +2 -2
  189. package/lib/module/shared/components/overlay/variations/float-overlay.js.map +1 -1
  190. package/lib/module/shared/components/screen-container/layers/backdrop.js +4 -16
  191. package/lib/module/shared/components/screen-container/layers/backdrop.js.map +1 -1
  192. package/lib/module/shared/components/screen-container/layers/content.js +4 -16
  193. package/lib/module/shared/components/screen-container/layers/content.js.map +1 -1
  194. package/lib/module/shared/components/screen-container/layers/maybe-masked-navigation-container.js +5 -16
  195. package/lib/module/shared/components/screen-container/layers/maybe-masked-navigation-container.js.map +1 -1
  196. package/lib/module/shared/components/screen-container/layers/surface-container.js +4 -16
  197. package/lib/module/shared/components/screen-container/layers/surface-container.js.map +1 -1
  198. package/lib/module/shared/index.js.map +1 -1
  199. package/lib/module/shared/providers/helpers/measured-bounds-writes.js +6 -3
  200. package/lib/module/shared/providers/helpers/measured-bounds-writes.js.map +1 -1
  201. package/lib/module/shared/providers/screen/animation/helpers/derivations.js +1 -0
  202. package/lib/module/shared/providers/screen/animation/helpers/derivations.js.map +1 -1
  203. package/lib/module/shared/providers/screen/animation/helpers/pipeline.js +144 -25
  204. package/lib/module/shared/providers/screen/animation/helpers/pipeline.js.map +1 -1
  205. package/lib/module/shared/providers/screen/screen-composer.js +2 -2
  206. package/lib/module/shared/providers/screen/screen-composer.js.map +1 -1
  207. package/lib/module/shared/providers/screen/styles/helpers/compose-slot-style.js +89 -0
  208. package/lib/module/shared/providers/screen/styles/helpers/compose-slot-style.js.map +1 -0
  209. package/lib/module/shared/providers/screen/styles/helpers/normalize-slots.js +30 -9
  210. package/lib/module/shared/providers/screen/styles/helpers/normalize-slots.js.map +1 -1
  211. package/lib/module/shared/providers/screen/styles/helpers/opening-phase.js +26 -0
  212. package/lib/module/shared/providers/screen/styles/helpers/opening-phase.js.map +1 -0
  213. package/lib/module/shared/providers/screen/styles/helpers/resolve-slot-styles/index.js +16 -11
  214. package/lib/module/shared/providers/screen/styles/helpers/resolve-slot-styles/index.js.map +1 -1
  215. package/lib/module/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.js +2 -0
  216. package/lib/module/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.js.map +1 -1
  217. package/lib/module/shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.js +0 -18
  218. package/lib/module/shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.js.map +1 -1
  219. package/lib/module/shared/providers/screen/styles/helpers/visibility-gate.js +0 -9
  220. package/lib/module/shared/providers/screen/styles/helpers/visibility-gate.js.map +1 -1
  221. package/lib/module/shared/providers/screen/styles/hooks/slot-resolvers.js +87 -0
  222. package/lib/module/shared/providers/screen/styles/hooks/slot-resolvers.js.map +1 -0
  223. package/lib/module/shared/providers/screen/styles/hooks/use-interpolated-style-maps.js +36 -36
  224. package/lib/module/shared/providers/screen/styles/hooks/use-interpolated-style-maps.js.map +1 -1
  225. package/lib/module/shared/providers/screen/styles/hooks/use-maybe-block-visibility.js +1 -19
  226. package/lib/module/shared/providers/screen/styles/hooks/use-maybe-block-visibility.js.map +1 -1
  227. package/lib/module/shared/providers/screen/styles/hooks/use-resolved-slot-style-map.js +9 -4
  228. package/lib/module/shared/providers/screen/styles/hooks/use-resolved-slot-style-map.js.map +1 -1
  229. package/lib/module/shared/providers/screen/styles/index.js +2 -1
  230. package/lib/module/shared/providers/screen/styles/index.js.map +1 -1
  231. package/lib/module/shared/providers/screen/styles/slot.provider.js +66 -0
  232. package/lib/module/shared/providers/screen/styles/slot.provider.js.map +1 -0
  233. package/lib/module/shared/providers/screen/styles/stores/slot-references.store.js +47 -0
  234. package/lib/module/shared/providers/screen/styles/stores/slot-references.store.js.map +1 -0
  235. package/lib/module/shared/stores/bounds/helpers/link-pairs.helpers.js +33 -1
  236. package/lib/module/shared/stores/bounds/helpers/link-pairs.helpers.js.map +1 -1
  237. package/lib/module/shared/stores/bounds/internals/entries.js +11 -4
  238. package/lib/module/shared/stores/bounds/internals/entries.js.map +1 -1
  239. package/lib/module/shared/stores/bounds/internals/links.js +135 -53
  240. package/lib/module/shared/stores/bounds/internals/links.js.map +1 -1
  241. package/lib/module/shared/stores/bounds/internals/resolver.js +1 -3
  242. package/lib/module/shared/stores/bounds/internals/resolver.js.map +1 -1
  243. package/lib/module/shared/stores/system.store.js +5 -0
  244. package/lib/module/shared/stores/system.store.js.map +1 -1
  245. package/lib/module/shared/types/animation.types.js.map +1 -1
  246. package/lib/module/shared/utils/bounds/helpers/styles/compute.js +10 -69
  247. package/lib/module/shared/utils/bounds/helpers/styles/compute.js.map +1 -1
  248. package/lib/module/shared/utils/bounds/helpers/styles/local-transform.js +52 -0
  249. package/lib/module/shared/utils/bounds/helpers/styles/local-transform.js.map +1 -0
  250. package/lib/module/shared/utils/bounds/navigation/zoom/build.js +9 -2
  251. package/lib/module/shared/utils/bounds/navigation/zoom/build.js.map +1 -1
  252. package/lib/module/shared/utils/bounds/navigation/zoom/helpers.js +58 -0
  253. package/lib/module/shared/utils/bounds/navigation/zoom/helpers.js.map +1 -1
  254. package/lib/module/shared/utils/logger.js +11 -0
  255. package/lib/module/shared/utils/logger.js.map +1 -1
  256. package/lib/typescript/shared/components/boundary/components/boundary-target.d.ts.map +1 -1
  257. package/lib/typescript/shared/components/boundary/create-boundary-component.d.ts +0 -1
  258. package/lib/typescript/shared/components/boundary/create-boundary-component.d.ts.map +1 -1
  259. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-boundary-presence.d.ts +11 -0
  260. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-boundary-presence.d.ts.map +1 -0
  261. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-initial-destination-measurement.d.ts +10 -0
  262. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-initial-destination-measurement.d.ts.map +1 -0
  263. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-initial-source-measurement.d.ts +8 -0
  264. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-initial-source-measurement.d.ts.map +1 -0
  265. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-refresh-boundary.d.ts +10 -0
  266. package/lib/typescript/shared/components/boundary/hooks/lifecycles/use-refresh-boundary.d.ts.map +1 -0
  267. package/lib/typescript/shared/components/boundary/hooks/use-boundary-measurement.d.ts +28 -0
  268. package/lib/typescript/shared/components/boundary/hooks/use-boundary-measurement.d.ts.map +1 -0
  269. package/lib/typescript/shared/components/boundary/hooks/use-measurer.d.ts +5 -6
  270. package/lib/typescript/shared/components/boundary/hooks/use-measurer.d.ts.map +1 -1
  271. package/lib/typescript/shared/components/boundary/index.d.ts +36 -229
  272. package/lib/typescript/shared/components/boundary/index.d.ts.map +1 -1
  273. package/lib/typescript/shared/components/boundary/portal/components/boundary-local-portal-host.d.ts +8 -0
  274. package/lib/typescript/shared/components/boundary/portal/components/boundary-local-portal-host.d.ts.map +1 -0
  275. package/lib/typescript/shared/components/boundary/portal/components/host.d.ts.map +1 -1
  276. package/lib/typescript/shared/components/boundary/portal/components/portal-boundary-host.d.ts +1 -1
  277. package/lib/typescript/shared/components/boundary/portal/components/portal-boundary-host.d.ts.map +1 -1
  278. package/lib/typescript/shared/components/boundary/portal/components/portal.d.ts +4 -3
  279. package/lib/typescript/shared/components/boundary/portal/components/portal.d.ts.map +1 -1
  280. package/lib/typescript/shared/components/boundary/portal/hooks/use-host-measurement.d.ts.map +1 -1
  281. package/lib/typescript/shared/components/boundary/portal/stores/host-registry.store.d.ts +0 -7
  282. package/lib/typescript/shared/components/boundary/portal/stores/host-registry.store.d.ts.map +1 -1
  283. package/lib/typescript/shared/components/boundary/portal/stores/portal-boundary-host.store.d.ts +16 -1
  284. package/lib/typescript/shared/components/boundary/portal/stores/portal-boundary-host.store.d.ts.map +1 -1
  285. package/lib/typescript/shared/components/boundary/portal/teleport.d.ts +1 -1
  286. package/lib/typescript/shared/components/boundary/portal/teleport.d.ts.map +1 -1
  287. package/lib/typescript/shared/components/boundary/portal/utils/has-local-slot.d.ts +3 -0
  288. package/lib/typescript/shared/components/boundary/portal/utils/has-local-slot.d.ts.map +1 -0
  289. package/lib/typescript/shared/components/boundary/portal/utils/naming.d.ts +2 -1
  290. package/lib/typescript/shared/components/boundary/portal/utils/naming.d.ts.map +1 -1
  291. package/lib/typescript/shared/components/boundary/portal/utils/offset-style.d.ts +16 -32
  292. package/lib/typescript/shared/components/boundary/portal/utils/offset-style.d.ts.map +1 -1
  293. package/lib/typescript/shared/components/boundary/portal/utils/ownership.d.ts +35 -0
  294. package/lib/typescript/shared/components/boundary/portal/utils/ownership.d.ts.map +1 -0
  295. package/lib/typescript/shared/components/boundary/portal/utils/resolve-portal.d.ts +12 -0
  296. package/lib/typescript/shared/components/boundary/portal/utils/resolve-portal.d.ts.map +1 -0
  297. package/lib/typescript/shared/components/boundary/portal/utils/shallow-equal.d.ts +8 -0
  298. package/lib/typescript/shared/components/boundary/portal/utils/shallow-equal.d.ts.map +1 -0
  299. package/lib/typescript/shared/components/boundary/portal/utils/teleport-control.d.ts +4 -0
  300. package/lib/typescript/shared/components/boundary/portal/utils/teleport-control.d.ts.map +1 -1
  301. package/lib/typescript/shared/components/boundary/portal/utils/visible-host.d.ts +8 -0
  302. package/lib/typescript/shared/components/boundary/portal/utils/visible-host.d.ts.map +1 -0
  303. package/lib/typescript/shared/components/boundary/providers/boundary-root.provider.d.ts +37 -0
  304. package/lib/typescript/shared/components/boundary/providers/boundary-root.provider.d.ts.map +1 -0
  305. package/lib/typescript/shared/components/boundary/types.d.ts +9 -36
  306. package/lib/typescript/shared/components/boundary/types.d.ts.map +1 -1
  307. package/lib/typescript/shared/components/boundary/utils/destination-signals.d.ts +1 -0
  308. package/lib/typescript/shared/components/boundary/utils/destination-signals.d.ts.map +1 -1
  309. package/lib/typescript/shared/components/boundary/utils/refresh-signals.d.ts.map +1 -1
  310. package/lib/typescript/shared/components/boundary/utils/source-signals.d.ts +0 -1
  311. package/lib/typescript/shared/components/boundary/utils/source-signals.d.ts.map +1 -1
  312. package/lib/typescript/shared/components/create-transition-aware-component.d.ts.map +1 -1
  313. package/lib/typescript/shared/components/screen-container/layers/backdrop.d.ts.map +1 -1
  314. package/lib/typescript/shared/components/screen-container/layers/content.d.ts.map +1 -1
  315. package/lib/typescript/shared/components/screen-container/layers/maybe-masked-navigation-container.d.ts.map +1 -1
  316. package/lib/typescript/shared/components/screen-container/layers/surface-container.d.ts.map +1 -1
  317. package/lib/typescript/shared/index.d.ts +3 -215
  318. package/lib/typescript/shared/index.d.ts.map +1 -1
  319. package/lib/typescript/shared/providers/helpers/measured-bounds-writes.d.ts +3 -3
  320. package/lib/typescript/shared/providers/helpers/measured-bounds-writes.d.ts.map +1 -1
  321. package/lib/typescript/shared/providers/screen/animation/helpers/derivations.d.ts +1 -0
  322. package/lib/typescript/shared/providers/screen/animation/helpers/derivations.d.ts.map +1 -1
  323. package/lib/typescript/shared/providers/screen/animation/helpers/pipeline.d.ts.map +1 -1
  324. package/lib/typescript/shared/providers/screen/styles/helpers/compose-slot-style.d.ts +4 -0
  325. package/lib/typescript/shared/providers/screen/styles/helpers/compose-slot-style.d.ts.map +1 -0
  326. package/lib/typescript/shared/providers/screen/styles/helpers/normalize-slots.d.ts.map +1 -1
  327. package/lib/typescript/shared/providers/screen/styles/helpers/opening-phase.d.ts +16 -0
  328. package/lib/typescript/shared/providers/screen/styles/helpers/opening-phase.d.ts.map +1 -0
  329. package/lib/typescript/shared/providers/screen/styles/helpers/resolve-slot-styles/index.d.ts +3 -4
  330. package/lib/typescript/shared/providers/screen/styles/helpers/resolve-slot-styles/index.d.ts.map +1 -1
  331. package/lib/typescript/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.d.ts +2 -1
  332. package/lib/typescript/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.d.ts.map +1 -1
  333. package/lib/typescript/shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.d.ts +0 -1
  334. package/lib/typescript/shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.d.ts.map +1 -1
  335. package/lib/typescript/shared/providers/screen/styles/helpers/visibility-gate.d.ts +0 -1
  336. package/lib/typescript/shared/providers/screen/styles/helpers/visibility-gate.d.ts.map +1 -1
  337. package/lib/typescript/shared/providers/screen/styles/hooks/slot-resolvers.d.ts +11 -0
  338. package/lib/typescript/shared/providers/screen/styles/hooks/slot-resolvers.d.ts.map +1 -0
  339. package/lib/typescript/shared/providers/screen/styles/hooks/use-interpolated-style-maps.d.ts +4 -6
  340. package/lib/typescript/shared/providers/screen/styles/hooks/use-interpolated-style-maps.d.ts.map +1 -1
  341. package/lib/typescript/shared/providers/screen/styles/hooks/use-maybe-block-visibility.d.ts +0 -1
  342. package/lib/typescript/shared/providers/screen/styles/hooks/use-maybe-block-visibility.d.ts.map +1 -1
  343. package/lib/typescript/shared/providers/screen/styles/hooks/use-resolved-slot-style-map.d.ts.map +1 -1
  344. package/lib/typescript/shared/providers/screen/styles/index.d.ts +2 -1
  345. package/lib/typescript/shared/providers/screen/styles/index.d.ts.map +1 -1
  346. package/lib/typescript/shared/providers/screen/styles/slot.provider.d.ts +18 -0
  347. package/lib/typescript/shared/providers/screen/styles/slot.provider.d.ts.map +1 -0
  348. package/lib/typescript/shared/providers/screen/styles/stores/slot-references.store.d.ts +6 -0
  349. package/lib/typescript/shared/providers/screen/styles/stores/slot-references.store.d.ts.map +1 -0
  350. package/lib/typescript/shared/stores/bounds/helpers/link-pairs.helpers.d.ts +8 -1
  351. package/lib/typescript/shared/stores/bounds/helpers/link-pairs.helpers.d.ts.map +1 -1
  352. package/lib/typescript/shared/stores/bounds/internals/entries.d.ts.map +1 -1
  353. package/lib/typescript/shared/stores/bounds/internals/links.d.ts +4 -3
  354. package/lib/typescript/shared/stores/bounds/internals/links.d.ts.map +1 -1
  355. package/lib/typescript/shared/stores/bounds/internals/resolver.d.ts.map +1 -1
  356. package/lib/typescript/shared/stores/bounds/types.d.ts +22 -20
  357. package/lib/typescript/shared/stores/bounds/types.d.ts.map +1 -1
  358. package/lib/typescript/shared/stores/system.store.d.ts +1 -0
  359. package/lib/typescript/shared/stores/system.store.d.ts.map +1 -1
  360. package/lib/typescript/shared/types/animation.types.d.ts +7 -1
  361. package/lib/typescript/shared/types/animation.types.d.ts.map +1 -1
  362. package/lib/typescript/shared/utils/bounds/helpers/styles/compute.d.ts.map +1 -1
  363. package/lib/typescript/shared/utils/bounds/helpers/styles/local-transform.d.ts +6 -0
  364. package/lib/typescript/shared/utils/bounds/helpers/styles/local-transform.d.ts.map +1 -0
  365. package/lib/typescript/shared/utils/bounds/navigation/zoom/build.d.ts.map +1 -1
  366. package/lib/typescript/shared/utils/bounds/navigation/zoom/helpers.d.ts +9 -0
  367. package/lib/typescript/shared/utils/bounds/navigation/zoom/helpers.d.ts.map +1 -1
  368. package/lib/typescript/shared/utils/logger.d.ts +6 -0
  369. package/lib/typescript/shared/utils/logger.d.ts.map +1 -1
  370. package/package.json +1 -1
  371. package/src/shared/components/boundary/components/boundary-target.tsx +30 -16
  372. package/src/shared/components/boundary/create-boundary-component.tsx +132 -164
  373. package/src/shared/components/boundary/hooks/lifecycles/use-boundary-presence.ts +41 -0
  374. package/src/shared/components/boundary/hooks/{use-initial-destination-measurement.ts → lifecycles/use-initial-destination-measurement.ts} +65 -22
  375. package/src/shared/components/boundary/hooks/{use-initial-source-measurement.ts → lifecycles/use-initial-source-measurement.ts} +10 -12
  376. package/src/shared/components/boundary/hooks/{use-refresh-boundary.ts → lifecycles/use-refresh-boundary.ts} +10 -10
  377. package/src/shared/components/boundary/hooks/use-boundary-measurement.ts +97 -0
  378. package/src/shared/components/boundary/hooks/use-measurer.ts +16 -24
  379. package/src/shared/components/boundary/index.tsx +56 -30
  380. package/src/shared/components/boundary/portal/components/boundary-local-portal-host.tsx +66 -0
  381. package/src/shared/components/boundary/portal/components/host.tsx +20 -5
  382. package/src/shared/components/boundary/portal/components/portal-boundary-host.tsx +67 -52
  383. package/src/shared/components/boundary/portal/components/portal.tsx +281 -120
  384. package/src/shared/components/boundary/portal/hooks/use-host-measurement.ts +23 -2
  385. package/src/shared/components/boundary/portal/stores/host-registry.store.ts +4 -51
  386. package/src/shared/components/boundary/portal/stores/portal-boundary-host.store.ts +59 -6
  387. package/src/shared/components/boundary/portal/teleport.ts +28 -3
  388. package/src/shared/components/boundary/portal/utils/has-local-slot.ts +16 -0
  389. package/src/shared/components/boundary/portal/utils/naming.ts +11 -1
  390. package/src/shared/components/boundary/portal/utils/offset-style.ts +37 -139
  391. package/src/shared/components/boundary/portal/utils/ownership.ts +371 -0
  392. package/src/shared/components/boundary/portal/utils/resolve-portal.ts +50 -0
  393. package/src/shared/components/boundary/portal/utils/shallow-equal.ts +25 -0
  394. package/src/shared/components/boundary/portal/utils/teleport-control.ts +12 -0
  395. package/src/shared/components/boundary/portal/utils/visible-host.ts +24 -0
  396. package/src/shared/components/boundary/providers/{boundary-owner.provider.tsx → boundary-root.provider.tsx} +33 -47
  397. package/src/shared/components/boundary/types.ts +9 -39
  398. package/src/shared/components/boundary/utils/destination-signals.ts +22 -2
  399. package/src/shared/components/boundary/utils/refresh-signals.ts +0 -41
  400. package/src/shared/components/boundary/utils/source-signals.ts +5 -17
  401. package/src/shared/components/create-transition-aware-component.tsx +3 -25
  402. package/src/shared/components/overlay/variations/float-overlay.tsx +3 -3
  403. package/src/shared/components/screen-container/layers/backdrop.tsx +4 -17
  404. package/src/shared/components/screen-container/layers/content.tsx +4 -16
  405. package/src/shared/components/screen-container/layers/maybe-masked-navigation-container.tsx +8 -18
  406. package/src/shared/components/screen-container/layers/surface-container.tsx +4 -17
  407. package/src/shared/index.ts +0 -5
  408. package/src/shared/providers/helpers/measured-bounds-writes.ts +6 -11
  409. package/src/shared/providers/screen/animation/helpers/derivations.ts +3 -0
  410. package/src/shared/providers/screen/animation/helpers/pipeline.ts +251 -68
  411. package/src/shared/providers/screen/screen-composer.tsx +3 -3
  412. package/src/shared/providers/screen/styles/helpers/compose-slot-style.ts +129 -0
  413. package/src/shared/providers/screen/styles/helpers/normalize-slots.ts +45 -8
  414. package/src/shared/providers/screen/styles/helpers/opening-phase.ts +25 -0
  415. package/src/shared/providers/screen/styles/helpers/resolve-slot-styles/index.ts +22 -12
  416. package/src/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.ts +3 -1
  417. package/src/shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.ts +0 -24
  418. package/src/shared/providers/screen/styles/helpers/visibility-gate.ts +0 -12
  419. package/src/shared/providers/screen/styles/hooks/slot-resolvers.tsx +111 -0
  420. package/src/shared/providers/screen/styles/hooks/use-interpolated-style-maps.tsx +48 -38
  421. package/src/shared/providers/screen/styles/hooks/use-maybe-block-visibility.tsx +0 -18
  422. package/src/shared/providers/screen/styles/hooks/use-resolved-slot-style-map.tsx +17 -4
  423. package/src/shared/providers/screen/styles/index.tsx +13 -4
  424. package/src/shared/providers/screen/styles/slot.provider.tsx +93 -0
  425. package/src/shared/providers/screen/styles/stores/slot-references.store.ts +71 -0
  426. package/src/shared/stores/bounds/helpers/link-pairs.helpers.ts +41 -1
  427. package/src/shared/stores/bounds/internals/entries.ts +13 -5
  428. package/src/shared/stores/bounds/internals/links.ts +167 -85
  429. package/src/shared/stores/bounds/internals/resolver.ts +0 -2
  430. package/src/shared/stores/bounds/types.ts +24 -22
  431. package/src/shared/stores/system.store.ts +6 -0
  432. package/src/shared/types/animation.types.ts +8 -1
  433. package/src/shared/utils/bounds/helpers/styles/compute.ts +22 -124
  434. package/src/shared/utils/bounds/helpers/styles/local-transform.ts +86 -0
  435. package/src/shared/utils/bounds/navigation/zoom/build.ts +9 -1
  436. package/src/shared/utils/bounds/navigation/zoom/helpers.ts +96 -0
  437. package/src/shared/utils/logger.ts +12 -0
  438. package/lib/commonjs/shared/components/boundary/hooks/use-boundary-presence.js.map +0 -1
  439. package/lib/commonjs/shared/components/boundary/hooks/use-initial-destination-measurement.js.map +0 -1
  440. package/lib/commonjs/shared/components/boundary/hooks/use-initial-source-measurement.js.map +0 -1
  441. package/lib/commonjs/shared/components/boundary/hooks/use-refresh-boundary.js.map +0 -1
  442. package/lib/commonjs/shared/components/boundary/portal/utils/attachment.js +0 -40
  443. package/lib/commonjs/shared/components/boundary/portal/utils/attachment.js.map +0 -1
  444. package/lib/commonjs/shared/components/boundary/providers/boundary-owner.provider.js +0 -68
  445. package/lib/commonjs/shared/components/boundary/providers/boundary-owner.provider.js.map +0 -1
  446. package/lib/commonjs/shared/providers/screen/styles/helpers/preserve-animated-props-only.js +0 -26
  447. package/lib/commonjs/shared/providers/screen/styles/helpers/preserve-animated-props-only.js.map +0 -1
  448. package/lib/commonjs/shared/providers/screen/styles/styles.provider.js.map +0 -1
  449. package/lib/module/shared/components/boundary/hooks/use-boundary-presence.js +0 -23
  450. package/lib/module/shared/components/boundary/hooks/use-boundary-presence.js.map +0 -1
  451. package/lib/module/shared/components/boundary/hooks/use-initial-destination-measurement.js.map +0 -1
  452. package/lib/module/shared/components/boundary/hooks/use-initial-source-measurement.js.map +0 -1
  453. package/lib/module/shared/components/boundary/hooks/use-refresh-boundary.js.map +0 -1
  454. package/lib/module/shared/components/boundary/portal/utils/attachment.js +0 -35
  455. package/lib/module/shared/components/boundary/portal/utils/attachment.js.map +0 -1
  456. package/lib/module/shared/components/boundary/providers/boundary-owner.provider.js +0 -60
  457. package/lib/module/shared/components/boundary/providers/boundary-owner.provider.js.map +0 -1
  458. package/lib/module/shared/providers/screen/styles/helpers/preserve-animated-props-only.js +0 -21
  459. package/lib/module/shared/providers/screen/styles/helpers/preserve-animated-props-only.js.map +0 -1
  460. package/lib/module/shared/providers/screen/styles/styles.provider.js +0 -53
  461. package/lib/module/shared/providers/screen/styles/styles.provider.js.map +0 -1
  462. package/lib/typescript/shared/components/boundary/hooks/use-boundary-presence.d.ts +0 -8
  463. package/lib/typescript/shared/components/boundary/hooks/use-boundary-presence.d.ts.map +0 -1
  464. package/lib/typescript/shared/components/boundary/hooks/use-initial-destination-measurement.d.ts +0 -9
  465. package/lib/typescript/shared/components/boundary/hooks/use-initial-destination-measurement.d.ts.map +0 -1
  466. package/lib/typescript/shared/components/boundary/hooks/use-initial-source-measurement.d.ts +0 -9
  467. package/lib/typescript/shared/components/boundary/hooks/use-initial-source-measurement.d.ts.map +0 -1
  468. package/lib/typescript/shared/components/boundary/hooks/use-refresh-boundary.d.ts +0 -10
  469. package/lib/typescript/shared/components/boundary/hooks/use-refresh-boundary.d.ts.map +0 -1
  470. package/lib/typescript/shared/components/boundary/portal/utils/attachment.d.ts +0 -21
  471. package/lib/typescript/shared/components/boundary/portal/utils/attachment.d.ts.map +0 -1
  472. package/lib/typescript/shared/components/boundary/providers/boundary-owner.provider.d.ts +0 -44
  473. package/lib/typescript/shared/components/boundary/providers/boundary-owner.provider.d.ts.map +0 -1
  474. package/lib/typescript/shared/providers/screen/styles/helpers/preserve-animated-props-only.d.ts +0 -3
  475. package/lib/typescript/shared/providers/screen/styles/helpers/preserve-animated-props-only.d.ts.map +0 -1
  476. package/lib/typescript/shared/providers/screen/styles/styles.provider.d.ts +0 -14
  477. package/lib/typescript/shared/providers/screen/styles/styles.provider.d.ts.map +0 -1
  478. package/src/shared/components/boundary/hooks/use-boundary-presence.ts +0 -28
  479. package/src/shared/components/boundary/portal/utils/attachment.ts +0 -48
  480. package/src/shared/providers/screen/styles/helpers/preserve-animated-props-only.ts +0 -22
  481. package/src/shared/providers/screen/styles/styles.provider.tsx +0 -60
@@ -1 +1 @@
1
- {"version":3,"names":["isExplicitTransitionSlot","value","isAlreadyNormalizedStyleMap","raw","key","undefined","normalizeSlots","normalized","style"],"sourceRoot":"../../../../../../../src","sources":["shared/providers/screen/styles/helpers/normalize-slots.ts"],"mappings":";;AAKA,MAAMA,wBAAwB,GAAIC,KAAc,IAAK;EACpD,SAAS;;EACT,OACC,OAAOA,KAAK,KAAK,QAAQ,IACzBA,KAAK,IAAI,IAAI,KACZ,OAAO,IAAIA,KAAK,IAAI,OAAO,IAAIA,KAAK,CAAC;AAExC,CAAC;AAED,MAAMC,2BAA2B,GAAIC,GAAwB,IAAK;EACjE,SAAS;;EAET,KAAK,MAAMC,GAAG,IAAID,GAAG,EAAE;IACtB,MAAMF,KAAK,GAAGE,GAAG,CAACC,GAAG,CAAC;IAEtB,IAAIH,KAAK,KAAKI,SAAS,EAAE;MACxB;IACD;IAEA,IAAI,CAACL,wBAAwB,CAACC,KAAK,CAAC,EAAE;MACrC,OAAO,KAAK;IACb;EACD;EAEA,OAAO,IAAI;AACZ,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASK,cAAcA,CAC7BH,GAAwB,EACgB;EACxC,SAAS;;EAET;EACA;EACA;EACA,IAAID,2BAA2B,CAACC,GAAG,CAAC,EAAE;IACrC,OAAOA,GAAG;EACX;EAEA,MAAMI,UAAqE,GAC1E,CAAC,CAAC;EAEH,KAAK,MAAMH,GAAG,IAAID,GAAG,EAAE;IACtB,MAAMF,KAAK,GAAGE,GAAG,CAACC,GAAG,CAAC;;IAEtB;IACA,IAAIH,KAAK,KAAKI,SAAS,EAAE;MACxBE,UAAU,CAACH,GAAG,CAAC,GAAGC,SAAS;MAC3B;IACD;IAEA,IAAIL,wBAAwB,CAACC,KAAK,CAAC,EAAE;MACpC;MACAM,UAAU,CAACH,GAAG,CAAC,GAAGH,KAAsC;IACzD,CAAC,MAAM;MACN;MACAM,UAAU,CAACH,GAAG,CAAC,GAAG;QAAEI,KAAK,EAAEP;MAAM,CAAC;IACnC;EACD;EAEA,OAAOM,UAAU;AAClB","ignoreList":[]}
1
+ {"version":3,"names":["getBoundsLocalTransform","stripBoundsLocalTransform","isExplicitTransitionSlot","value","hasBoundsLocalTransformMarker","style","length","isAlreadyNormalizedStyleMapWithoutBoundsMetadata","raw","key","undefined","normalizeSlots","normalized","explicitSlot","boundsLocalTransform","props"],"sourceRoot":"../../../../../../../src","sources":["shared/providers/screen/styles/helpers/normalize-slots.ts"],"mappings":";;AAIA,SACCA,uBAAuB,EACvBC,yBAAyB,QACnB,yDAAyD;AAEhE,MAAMC,wBAAwB,GAAIC,KAAc,IAAK;EACpD,SAAS;;EACT,OACC,OAAOA,KAAK,KAAK,QAAQ,IACzBA,KAAK,IAAI,IAAI,KACZ,OAAO,IAAIA,KAAK,IAAI,OAAO,IAAIA,KAAK,CAAC;AAExC,CAAC;AAED,MAAMC,6BAA6B,GAAIC,KAAc,IAAK;EACzD,SAAS;;EACT,OAAO,CAAC,CAACL,uBAAuB,CAACK,KAAY,CAAC,EAAEC,MAAM;AACvD,CAAC;AAED,MAAMC,gDAAgD,GACrDC,GAAwB,IACpB;EACJ,SAAS;;EAET,KAAK,MAAMC,GAAG,IAAID,GAAG,EAAE;IACtB,MAAML,KAAK,GAAGK,GAAG,CAACC,GAAG,CAAC;IAEtB,IAAIN,KAAK,KAAKO,SAAS,EAAE;MACxB;IACD;IAEA,IAAI,CAACR,wBAAwB,CAACC,KAAK,CAAC,EAAE;MACrC,OAAO,KAAK;IACb;IAEA,IACCC,6BAA6B,CAC3BD,KAAK,CAAmCE,KAC1C,CAAC,EACA;MACD,OAAO,KAAK;IACb;EACD;EAEA,OAAO,IAAI;AACZ,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASM,cAAcA,CAC7BH,GAAwB,EACgB;EACxC,SAAS;;EAET,IAAID,gDAAgD,CAACC,GAAG,CAAC,EAAE;IAC1D,OAAOA,GAAG;EACX;EAEA,MAAMI,UAAqE,GAC1E,CAAC,CAAC;EAEH,KAAK,MAAMH,GAAG,IAAID,GAAG,EAAE;IACtB,MAAML,KAAK,GAAGK,GAAG,CAACC,GAAG,CAAC;;IAEtB;IACA,IAAIN,KAAK,KAAKO,SAAS,EAAE;MACxBE,UAAU,CAACH,GAAG,CAAC,GAAGC,SAAS;MAC3B;IACD;IAEA,IAAIR,wBAAwB,CAACC,KAAK,CAAC,EAAE;MACpC,MAAMU,YAAY,GAAGV,KAAsC;MAC3D,MAAMW,oBAAoB,GAAGd,uBAAuB,CAACa,YAAY,CAACR,KAAK,CAAC;MAExE,IAAI,CAACS,oBAAoB,EAAER,MAAM,EAAE;QAClCM,UAAU,CAACH,GAAG,CAAC,GAAGI,YAAY;QAC9B;MACD;MAEAD,UAAU,CAACH,GAAG,CAAC,GAAG;QACjBJ,KAAK,EAAEQ,YAAY,CAACR,KAAK,GACtBJ,yBAAyB,CAACY,YAAY,CAACR,KAAK,CAAC,GAC7CK,SAAS;QACZK,KAAK,EAAEF,YAAY,CAACE,KAAK;QACzBD;MACD,CAAC;IACF,CAAC,MAAM;MACN,MAAMA,oBAAoB,GAAGd,uBAAuB,CAACG,KAAK,CAAC;MAC3D,MAAME,KAAK,GACVS,oBAAoB,EAAER,MAAM,IAAIH,KAAK,GAClCF,yBAAyB,CAACE,KAAK,CAAC,GAChCA,KAAK;;MAET;MACAS,UAAU,CAACH,GAAG,CAAC,GAAGK,oBAAoB,EAAER,MAAM,GAC3C;QAAED,KAAK;QAAES;MAAqB,CAAC,GAC/B;QAAET;MAAM,CAAC;IACb;EACD;EAEA,OAAOO,UAAU;AAClB","ignoreList":[]}
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+
3
+ /**
4
+ * The "pre-start" window of an opening transition: the screen has committed to
5
+ * opening (`entering`) but `transitionProgress` has not yet moved past 0, so no
6
+ * transformed frame has been produced yet.
7
+ *
8
+ * This window is a quarantine, and two source-level guards key off it:
9
+ * - the visibility gate keeps the entering screen hidden (it must not be SEEN), and
10
+ * - interpolator ownership stays on "current" so the entering screen does not
11
+ * DRIVE other screens' styles until its transition is actually live.
12
+ *
13
+ * Both must agree on when the open transition has started, so the threshold
14
+ * lives here in one place rather than being re-derived at each site.
15
+ */
16
+ export const hasOpenTransitionStarted = transitionProgress => {
17
+ "worklet";
18
+
19
+ return transitionProgress > 0;
20
+ };
21
+ export const isOpeningBeforeStart = (entering, transitionProgress) => {
22
+ "worklet";
23
+
24
+ return !!entering && !hasOpenTransitionStarted(transitionProgress);
25
+ };
26
+ //# sourceMappingURL=opening-phase.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["hasOpenTransitionStarted","transitionProgress","isOpeningBeforeStart","entering"],"sourceRoot":"../../../../../../../src","sources":["shared/providers/screen/styles/helpers/opening-phase.ts"],"mappings":";;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMA,wBAAwB,GAAIC,kBAA0B,IAAK;EACvE,SAAS;;EACT,OAAOA,kBAAkB,GAAG,CAAC;AAC9B,CAAC;AAED,OAAO,MAAMC,oBAAoB,GAAGA,CACnCC,QAAgB,EAChBF,kBAA0B,KACtB;EACJ,SAAS;;EACT,OAAO,CAAC,CAACE,QAAQ,IAAI,CAACH,wBAAwB,CAACC,kBAAkB,CAAC;AACnE,CAAC","ignoreList":[]}
@@ -12,15 +12,15 @@ const getForwardedSlot = (slot, hasAnyKeys) => {
12
12
  }
13
13
  return slot;
14
14
  };
15
- const hasEitherResetPatch = (hasStyleResetPatch, hasPropResetPatch) => {
15
+ const hasDefinedBucketValue = value => {
16
16
  "worklet";
17
17
 
18
- return hasStyleResetPatch || hasPropResetPatch;
18
+ return value !== undefined && value !== null;
19
19
  };
20
- const hasDefinedBucketValue = value => {
20
+ const hasEitherResetPatch = (hasStyleResetPatch, hasPropResetPatch) => {
21
21
  "worklet";
22
22
 
23
- return value !== undefined && value !== null;
23
+ return hasStyleResetPatch || hasPropResetPatch;
24
24
  };
25
25
  const hasResettableDisappearedKeys = (previousKeys, previousResetValues, currentKeys) => {
26
26
  "worklet";
@@ -58,6 +58,7 @@ const getResolvedSlotOutput = ({
58
58
  resolvedSlot: materializeResolvedSlot({
59
59
  baseStyle: state.baseStyle,
60
60
  baseProps: state.baseProps,
61
+ boundsLocalTransform: slot?.boundsLocalTransform,
61
62
  previousState,
62
63
  styleKeys: state.styleKeys,
63
64
  propKeys: state.propKeys,
@@ -101,6 +102,7 @@ const getMergedLocalSlot = (context, slotId) => {
101
102
 
102
103
  let mergedStyle;
103
104
  let mergedProps;
105
+ let boundsLocalTransform;
104
106
  for (let index = 0; index < context.localStylesMaps.length; index++) {
105
107
  const slot = context.localStylesMaps[index]?.[slotId];
106
108
  if (slot === undefined) {
@@ -108,13 +110,17 @@ const getMergedLocalSlot = (context, slotId) => {
108
110
  }
109
111
  mergedStyle = mergeBucket(mergedStyle, slot.style);
110
112
  mergedProps = mergeBucket(mergedProps, slot.props);
113
+ if (slot.boundsLocalTransform?.length) {
114
+ boundsLocalTransform = slot.boundsLocalTransform;
115
+ }
111
116
  }
112
- if (!mergedStyle && !mergedProps) {
117
+ if (!mergedStyle && !mergedProps && !boundsLocalTransform) {
113
118
  return undefined;
114
119
  }
115
120
  return {
116
121
  style: mergedStyle,
117
- props: mergedProps
122
+ props: mergedProps,
123
+ boundsLocalTransform
118
124
  };
119
125
  };
120
126
  const getSlotForId = (context, slotId) => {
@@ -226,7 +232,7 @@ const areSlotsEqual = (left, right) => {
226
232
  if (!left || !right) {
227
233
  return false;
228
234
  }
229
- return areFlatObjectsEqual(left.style, right.style) && areFlatObjectsEqual(left.props, right.props);
235
+ return areFlatObjectsEqual(left.style, right.style) && areFlatObjectsEqual(left.props, right.props) && areTransformArraysEqual(left.boundsLocalTransform, right.boundsLocalTransform);
230
236
  };
231
237
  export const reuseEqualResolvedSlots = ({
232
238
  resolvedStylesMap,
@@ -317,10 +323,9 @@ const appendPreviousSlots = context => {
317
323
  };
318
324
 
319
325
  /**
320
- * Resolves slot styles for the current screen pass and resets keys a slot
321
- * emitted previously but no longer returns. Reanimated does not reliably clear
322
- * animated values with undefined, so known keys and numeric values are reset to
323
- * concrete identity values.
326
+ * Resolves slot styles for the current screen pass and emits reset values for
327
+ * transition-owned keys that existed in the previous resolved map but no longer
328
+ * exist in the current one.
324
329
  */
325
330
  export const resolveSlotStyles = ({
326
331
  localStylesMaps,
@@ -1 +1 @@
1
- {"version":3,"names":["shouldSlotInherit","materializeResolvedSlot","getResolvedSlotState","areResettableStatesBySlotEqual","getForwardedSlot","slot","hasAnyKeys","undefined","hasEitherResetPatch","hasStyleResetPatch","hasPropResetPatch","hasDefinedBucketValue","value","hasResettableDisappearedKeys","previousKeys","previousResetValues","currentKeys","key","getResolvedSlotOutput","previousState","state","styleKeys","styleResetValues","propKeys","propResetValues","hasResetPatch","resolvedSlot","nextState","baseStyle","baseProps","hasAnyStyleKeys","hasAnyPropKeys","hasLocalSlot","context","slotId","index","localStylesMaps","length","mergeBucket","resolvedBucket","source","nextBucket","getMergedLocalSlot","mergedStyle","mergedProps","style","props","getSlotForId","ancestorStylesMap","writeResolvedSlotOutput","nextPreviousStyleStatesBySlot","resolvedStylesMap","areTransformItemsEqual","left","right","leftObject","rightObject","areTransformArraysEqual","Array","isArray","i","areFlatObjectsEqual","leftValue","rightValue","areSlotsEqual","reuseEqualResolvedSlots","previousResolvedStylesMap","changed","stableStylesMap","nextSlot","previousSlot","appendResolvedSlot","previousStyleStatesBySlot","appendCurrentSlots","appendedSlotIds","stylesMap","shouldAppendInheritedSlot","appendInheritedSlots","shouldAppendPreviousSlot","inheritedSlotExists","appendPreviousSlots","resolveSlotStyles"],"sourceRoot":"../../../../../../../../src","sources":["shared/providers/screen/styles/helpers/resolve-slot-styles/index.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["shouldSlotInherit","materializeResolvedSlot","getResolvedSlotState","areResettableStatesBySlotEqual","getForwardedSlot","slot","hasAnyKeys","undefined","hasDefinedBucketValue","value","hasEitherResetPatch","hasStyleResetPatch","hasPropResetPatch","hasResettableDisappearedKeys","previousKeys","previousResetValues","currentKeys","key","getResolvedSlotOutput","previousState","state","styleKeys","styleResetValues","propKeys","propResetValues","hasResetPatch","resolvedSlot","nextState","baseStyle","baseProps","boundsLocalTransform","hasAnyStyleKeys","hasAnyPropKeys","hasLocalSlot","context","slotId","index","localStylesMaps","length","mergeBucket","resolvedBucket","source","nextBucket","getMergedLocalSlot","mergedStyle","mergedProps","style","props","getSlotForId","ancestorStylesMap","writeResolvedSlotOutput","nextPreviousStyleStatesBySlot","resolvedStylesMap","areTransformItemsEqual","left","right","leftObject","rightObject","areTransformArraysEqual","Array","isArray","i","areFlatObjectsEqual","leftValue","rightValue","areSlotsEqual","reuseEqualResolvedSlots","previousResolvedStylesMap","changed","stableStylesMap","nextSlot","previousSlot","appendResolvedSlot","previousStyleStatesBySlot","appendCurrentSlots","appendedSlotIds","stylesMap","shouldAppendInheritedSlot","appendInheritedSlots","shouldAppendPreviousSlot","inheritedSlotExists","appendPreviousSlots","resolveSlotStyles"],"sourceRoot":"../../../../../../../../src","sources":["shared/providers/screen/styles/helpers/resolve-slot-styles/index.ts"],"mappings":";;AAIA,SAASA,iBAAiB,QAAQ,iBAAiB;AACnD,SAASC,uBAAuB,QAAQ,oBAAoB;AAC5D,SAASC,oBAAoB,QAAQ,cAAc;AAOnD,SAASC,8BAA8B,QAAQ,+BAA+B;AAW9E,MAAMC,gBAAgB,GAAGA,CACxBC,IAA+C,EAC/CC,UAAmB,KACf;EACJ,SAAS;;EAET,IAAI,CAACA,UAAU,EAAE;IAChB,OAAOC,SAAS;EACjB;EAEA,OAAOF,IAAI;AACZ,CAAC;AAED,MAAMG,qBAAqB,GAAIC,KAAc,IAAK;EACjD,SAAS;;EACT,OAAOA,KAAK,KAAKF,SAAS,IAAIE,KAAK,KAAK,IAAI;AAC7C,CAAC;AAED,MAAMC,mBAAmB,GAAGA,CAC3BC,kBAA2B,EAC3BC,iBAA0B,KACtB;EACJ,SAAS;;EACT,OAAOD,kBAAkB,IAAIC,iBAAiB;AAC/C,CAAC;AAED,MAAMC,4BAA4B,GAAGA,CACpCC,YAA8C,EAC9CC,mBAAwD,EACxDC,WAA6C,KACzC;EACJ,SAAS;;EAET,IAAI,CAACF,YAAY,IAAI,CAACC,mBAAmB,EAAE;IAC1C,OAAO,KAAK;EACb;EAEA,KAAK,MAAME,GAAG,IAAIH,YAAY,EAAE;IAC/B,IAAIE,WAAW,KAAKT,SAAS,IAAIS,WAAW,CAACC,GAAG,CAAC,KAAK,IAAI,EAAE;MAC3D;IACD;IAEA,IAAIF,mBAAmB,CAACE,GAAG,CAAC,KAAKV,SAAS,EAAE;MAC3C,OAAO,IAAI;IACZ;EACD;EAEA,OAAO,KAAK;AACb,CAAC;AAED,MAAMW,qBAAqB,GAAGA,CAAC;EAC9Bb,IAAI;EACJc;AAID,CAAC,KAAK;EACL,SAAS;;EACT,MAAMC,KAAK,GAAGlB,oBAAoB,CAACG,IAAI,CAAC;EACxC,MAAMM,kBAAkB,GAAGE,4BAA4B,CACtDM,aAAa,EAAEE,SAAS,EACxBF,aAAa,EAAEG,gBAAgB,EAC/BF,KAAK,CAACC,SACP,CAAC;EACD,MAAMT,iBAAiB,GAAGC,4BAA4B,CACrDM,aAAa,EAAEI,QAAQ,EACvBJ,aAAa,EAAEK,eAAe,EAC9BJ,KAAK,CAACG,QACP,CAAC;EACD,MAAME,aAAa,GAAGf,mBAAmB,CACxCC,kBAAkB,EAClBC,iBACD,CAAC;EAED,IAAI,CAACa,aAAa,EAAE;IACnB,OAAO;MACNC,YAAY,EAAEtB,gBAAgB,CAACC,IAAI,EAAEe,KAAK,CAACd,UAAU,CAAC;MACtDqB,SAAS,EAAEP,KAAK,CAACO;IAClB,CAAC;EACF;EAEA,OAAO;IACND,YAAY,EAAEzB,uBAAuB,CAAC;MACrC2B,SAAS,EAAER,KAAK,CAACQ,SAAS;MAC1BC,SAAS,EAAET,KAAK,CAACS,SAAS;MAC1BC,oBAAoB,EAAEzB,IAAI,EAAEyB,oBAAoB;MAChDX,aAAa;MACbE,SAAS,EAAED,KAAK,CAACC,SAAS;MAC1BE,QAAQ,EAAEH,KAAK,CAACG,QAAQ;MACxBQ,eAAe,EAAEX,KAAK,CAACW,eAAe;MACtCC,cAAc,EAAEZ,KAAK,CAACY,cAAc;MACpCrB,kBAAkB;MAClBC;IACD,CAAC,CAAC;IACFe,SAAS,EAAEP,KAAK,CAACO;EAClB,CAAC;AACF,CAAC;AAED,MAAMM,YAAY,GAAGA,CAACC,OAAiC,EAAEC,MAAc,KAAK;EAC3E,SAAS;;EAET,KAAK,IAAIC,KAAK,GAAG,CAAC,EAAEA,KAAK,GAAGF,OAAO,CAACG,eAAe,CAACC,MAAM,EAAEF,KAAK,EAAE,EAAE;IACpE,IAAIF,OAAO,CAACG,eAAe,CAACD,KAAK,CAAC,GAAGD,MAAM,CAAC,KAAK5B,SAAS,EAAE;MAC3D,OAAO,IAAI;IACZ;EACD;EAEA,OAAO,KAAK;AACb,CAAC;AAED,MAAMgC,WAAW,GAAGA,CACnBC,cAAmD,EACnDC,MAA2C,KACvC;EACJ,SAAS;;EAET,IAAI,CAACA,MAAM,EAAE;IACZ,OAAOD,cAAc;EACtB;EAEA,IAAIE,UAAU,GAAGF,cAAc;EAE/B,KAAK,MAAMvB,GAAG,IAAIwB,MAAM,EAAE;IACzB,MAAMhC,KAAK,GAAGgC,MAAM,CAACxB,GAAG,CAAC;IAEzB,IAAI,CAACT,qBAAqB,CAACC,KAAK,CAAC,EAAE;MAClC;IACD;IAEAiC,UAAU,GAAGA,UAAU,IAAI,CAAC,CAAC;IAC7BA,UAAU,CAACzB,GAAG,CAAC,GAAGR,KAAK;EACxB;EAEA,OAAOiC,UAAU;AAClB,CAAC;AAED,MAAMC,kBAAkB,GAAGA,CAC1BT,OAAiC,EACjCC,MAAc,KACV;EACJ,SAAS;;EACT,IAAIS,WAAgD;EACpD,IAAIC,WAAgD;EACpD,IAAIf,oBAEQ;EAEZ,KAAK,IAAIM,KAAK,GAAG,CAAC,EAAEA,KAAK,GAAGF,OAAO,CAACG,eAAe,CAACC,MAAM,EAAEF,KAAK,EAAE,EAAE;IACpE,MAAM/B,IAAI,GAAG6B,OAAO,CAACG,eAAe,CAACD,KAAK,CAAC,GAAGD,MAAM,CAAC;IAErD,IAAI9B,IAAI,KAAKE,SAAS,EAAE;MACvB;IACD;IAEAqC,WAAW,GAAGL,WAAW,CACxBK,WAAW,EACXvC,IAAI,CAACyC,KACN,CAAC;IACDD,WAAW,GAAGN,WAAW,CAACM,WAAW,EAAExC,IAAI,CAAC0C,KAAK,CAAC;IAClD,IAAI1C,IAAI,CAACyB,oBAAoB,EAAEQ,MAAM,EAAE;MACtCR,oBAAoB,GAAGzB,IAAI,CAACyB,oBAAoB;IACjD;EACD;EAEA,IAAI,CAACc,WAAW,IAAI,CAACC,WAAW,IAAI,CAACf,oBAAoB,EAAE;IAC1D,OAAOvB,SAAS;EACjB;EAEA,OAAO;IACNuC,KAAK,EAAEF,WAAW;IAClBG,KAAK,EAAEF,WAAW;IAClBf;EACD,CAAC;AACF,CAAC;AAED,MAAMkB,YAAY,GAAGA,CAACd,OAAiC,EAAEC,MAAc,KAAK;EAC3E,SAAS;;EAET,IAAIF,YAAY,CAACC,OAAO,EAAEC,MAAM,CAAC,EAAE;IAClC,OAAOQ,kBAAkB,CAACT,OAAO,EAAEC,MAAM,CAAC;EAC3C;EAEA,IAAInC,iBAAiB,CAACmC,MAAM,CAAC,EAAE;IAC9B,OAAOD,OAAO,CAACe,iBAAiB,CAACd,MAAM,CAAC;EACzC;EAEA,OAAO5B,SAAS;AACjB,CAAC;AAED,MAAM2C,uBAAuB,GAAGA,CAAC;EAChChB,OAAO;EACPC,MAAM;EACNT,YAAY;EACZC;AAMD,CAAC,KAAK;EACL,SAAS;;EAET,IAAIA,SAAS,EAAE;IACdO,OAAO,CAACiB,6BAA6B,CAAChB,MAAM,CAAC,GAAGR,SAAS;EAC1D;EAEA,IAAI,CAACD,YAAY,EAAE;IAClB;EACD;EAEAQ,OAAO,CAACkB,iBAAiB,CAACjB,MAAM,CAAC,GAAGT,YAAY;AACjD,CAAC;AAED,MAAM2B,sBAAsB,GAAGA,CAACC,IAAa,EAAEC,KAAc,KAAc;EAC1E,SAAS;;EACT,IAAID,IAAI,KAAKC,KAAK,EAAE;IACnB,OAAO,IAAI;EACZ;EAEA,IACC,OAAOD,IAAI,KAAK,QAAQ,IACxBA,IAAI,KAAK,IAAI,IACb,OAAOC,KAAK,KAAK,QAAQ,IACzBA,KAAK,KAAK,IAAI,EACb;IACD,OAAO,KAAK;EACb;EAEA,MAAMC,UAAU,GAAGF,IAA+B;EAClD,MAAMG,WAAW,GAAGF,KAAgC;EAEpD,KAAK,MAAMtC,GAAG,IAAIuC,UAAU,EAAE;IAC7B,IAAIA,UAAU,CAACvC,GAAG,CAAC,KAAKwC,WAAW,CAACxC,GAAG,CAAC,EAAE;MACzC,OAAO,KAAK;IACb;EACD;EAEA,KAAK,MAAMA,GAAG,IAAIwC,WAAW,EAAE;IAC9B,IAAI,EAAExC,GAAG,IAAIuC,UAAU,CAAC,EAAE;MACzB,OAAO,KAAK;IACb;EACD;EAEA,OAAO,IAAI;AACZ,CAAC;AAED,MAAME,uBAAuB,GAAGA,CAACJ,IAAa,EAAEC,KAAc,KAAc;EAC3E,SAAS;;EACT,IAAID,IAAI,KAAKC,KAAK,EAAE;IACnB,OAAO,IAAI;EACZ;EAEA,IAAI,CAACI,KAAK,CAACC,OAAO,CAACN,IAAI,CAAC,IAAI,CAACK,KAAK,CAACC,OAAO,CAACL,KAAK,CAAC,EAAE;IAClD,OAAO,KAAK;EACb;EAEA,IAAID,IAAI,CAAChB,MAAM,KAAKiB,KAAK,CAACjB,MAAM,EAAE;IACjC,OAAO,KAAK;EACb;EAEA,KAAK,IAAIuB,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGP,IAAI,CAAChB,MAAM,EAAEuB,CAAC,EAAE,EAAE;IACrC,IAAI,CAACR,sBAAsB,CAACC,IAAI,CAACO,CAAC,CAAC,EAAEN,KAAK,CAACM,CAAC,CAAC,CAAC,EAAE;MAC/C,OAAO,KAAK;IACb;EACD;EAEA,OAAO,IAAI;AACZ,CAAC;AAED,MAAMC,mBAAmB,GAAGA,CAACR,IAAa,EAAEC,KAAc,KAAc;EACvE,SAAS;;EACT,IAAID,IAAI,KAAKC,KAAK,EAAE;IACnB,OAAO,IAAI;EACZ;EAEA,IACC,OAAOD,IAAI,KAAK,QAAQ,IACxBA,IAAI,KAAK,IAAI,IACb,OAAOC,KAAK,KAAK,QAAQ,IACzBA,KAAK,KAAK,IAAI,IACdI,KAAK,CAACC,OAAO,CAACN,IAAI,CAAC,IACnBK,KAAK,CAACC,OAAO,CAACL,KAAK,CAAC,EACnB;IACD,OAAO,KAAK;EACb;EAEA,MAAMC,UAAU,GAAGF,IAA+B;EAClD,MAAMG,WAAW,GAAGF,KAAgC;EAEpD,KAAK,MAAMtC,GAAG,IAAIuC,UAAU,EAAE;IAC7B,MAAMO,SAAS,GAAGP,UAAU,CAACvC,GAAG,CAAC;IACjC,MAAM+C,UAAU,GAAGP,WAAW,CAACxC,GAAG,CAAC;IAEnC,IAAIA,GAAG,KAAK,WAAW,EAAE;MACxB,IAAI,CAACyC,uBAAuB,CAACK,SAAS,EAAEC,UAAU,CAAC,EAAE;QACpD,OAAO,KAAK;MACb;MACA;IACD;IAEA,IAAI,CAACX,sBAAsB,CAACU,SAAS,EAAEC,UAAU,CAAC,EAAE;MACnD,OAAO,KAAK;IACb;EACD;EAEA,KAAK,MAAM/C,GAAG,IAAIwC,WAAW,EAAE;IAC9B,IAAI,EAAExC,GAAG,IAAIuC,UAAU,CAAC,EAAE;MACzB,OAAO,KAAK;IACb;EACD;EAEA,OAAO,IAAI;AACZ,CAAC;AAED,MAAMS,aAAa,GAAGA,CACrBX,IAA+C,EAC/CC,KAAgD,KAC5C;EACJ,SAAS;;EACT,IAAID,IAAI,KAAKC,KAAK,EAAE;IACnB,OAAO,IAAI;EACZ;EAEA,IAAI,CAACD,IAAI,IAAI,CAACC,KAAK,EAAE;IACpB,OAAO,KAAK;EACb;EAEA,OACCO,mBAAmB,CAACR,IAAI,CAACR,KAAK,EAAES,KAAK,CAACT,KAAK,CAAC,IAC5CgB,mBAAmB,CAACR,IAAI,CAACP,KAAK,EAAEQ,KAAK,CAACR,KAAK,CAAC,IAC5CW,uBAAuB,CACtBJ,IAAI,CAACxB,oBAAoB,EACzByB,KAAK,CAACzB,oBACP,CAAC;AAEH,CAAC;AAED,OAAO,MAAMoC,uBAAuB,GAAGA,CAAC;EACvCd,iBAAiB;EACjBe;AAID,CAAC,KAA4C;EAC5C,SAAS;;EACT,IAAIC,OAAO,GAAG,KAAK;EACnB,MAAMC,eAAsD,GAAG,CAAC,CAAC;EAEjE,KAAK,MAAMlC,MAAM,IAAIiB,iBAAiB,EAAE;IACvC,MAAMkB,QAAQ,GAAGlB,iBAAiB,CAACjB,MAAM,CAAC;IAC1C,MAAMoC,YAAY,GAAGJ,yBAAyB,CAAChC,MAAM,CAAC;IAEtD,IAAI8B,aAAa,CAACK,QAAQ,EAAEC,YAAY,CAAC,EAAE;MAC1CF,eAAe,CAAClC,MAAM,CAAC,GAAGoC,YAAY;MACtC;IACD;IAEAH,OAAO,GAAG,IAAI;IACdC,eAAe,CAAClC,MAAM,CAAC,GAAGmC,QAAQ;EACnC;EAEA,KAAK,MAAMnC,MAAM,IAAIgC,yBAAyB,EAAE;IAC/C,IAAI,EAAEhC,MAAM,IAAIiB,iBAAiB,CAAC,EAAE;MACnCgB,OAAO,GAAG,IAAI;MACd;IACD;EACD;EAEA,OAAOA,OAAO,GAAGC,eAAe,GAAGF,yBAAyB;AAC7D,CAAC;AAED,MAAMK,kBAAkB,GAAGA,CAC1BtC,OAAiC,EACjCC,MAAc,KACV;EACJ,SAAS;;EACT,MAAM;IAAET,YAAY;IAAEC;EAAU,CAAC,GAAGT,qBAAqB,CAAC;IACzDb,IAAI,EAAE2C,YAAY,CAACd,OAAO,EAAEC,MAAM,CAAC;IACnChB,aAAa,EAAEe,OAAO,CAACuC,yBAAyB,CAACtC,MAAM;EACxD,CAAC,CAAC;EAEFe,uBAAuB,CAAC;IACvBhB,OAAO;IACPC,MAAM;IACNT,YAAY;IACZC;EACD,CAAC,CAAC;AACH,CAAC;AAED,MAAM+C,kBAAkB,GAAIxC,OAAiC,IAAK;EACjE,SAAS;;EACT,MAAMyC,eAAqC,GAAG,CAAC,CAAC;EAEhD,KAAK,IAAIvC,KAAK,GAAG,CAAC,EAAEA,KAAK,GAAGF,OAAO,CAACG,eAAe,CAACC,MAAM,EAAEF,KAAK,EAAE,EAAE;IACpE,MAAMwC,SAAS,GAAG1C,OAAO,CAACG,eAAe,CAACD,KAAK,CAAC;IAEhD,KAAK,MAAMD,MAAM,IAAIyC,SAAS,EAAE;MAC/B,IAAIA,SAAS,CAACzC,MAAM,CAAC,KAAK5B,SAAS,IAAIoE,eAAe,CAACxC,MAAM,CAAC,EAAE;QAC/D;MACD;MAEAwC,eAAe,CAACxC,MAAM,CAAC,GAAG,IAAI;MAC9BqC,kBAAkB,CAACtC,OAAO,EAAEC,MAAM,CAAC;IACpC;EACD;AACD,CAAC;AAED,MAAM0C,yBAAyB,GAAGA,CACjC3C,OAAiC,EACjCC,MAAc,KACV;EACJ,SAAS;;EACT,OAAOnC,iBAAiB,CAACmC,MAAM,CAAC,IAAI,CAACF,YAAY,CAACC,OAAO,EAAEC,MAAM,CAAC;AACnE,CAAC;AAED,MAAM2C,oBAAoB,GAAI5C,OAAiC,IAAK;EACnE,SAAS;;EAET,KAAK,MAAMC,MAAM,IAAID,OAAO,CAACe,iBAAiB,EAAE;IAC/C,IAAI4B,yBAAyB,CAAC3C,OAAO,EAAEC,MAAM,CAAC,EAAE;MAC/CqC,kBAAkB,CAACtC,OAAO,EAAEC,MAAM,CAAC;IACpC;EACD;AACD,CAAC;AAED,MAAM4C,wBAAwB,GAAGA,CAChC7C,OAAiC,EACjCC,MAAc,KACV;EACJ,SAAS;;EACT,MAAM6C,mBAAmB,GACxBhF,iBAAiB,CAACmC,MAAM,CAAC,IACzBD,OAAO,CAACe,iBAAiB,CAACd,MAAM,CAAC,KAAK5B,SAAS;EAEhD,OAAO,CAAC0B,YAAY,CAACC,OAAO,EAAEC,MAAM,CAAC,IAAI,CAAC6C,mBAAmB;AAC9D,CAAC;AAED,MAAMC,mBAAmB,GAAI/C,OAAiC,IAAK;EAClE,SAAS;;EAET,KAAK,MAAMC,MAAM,IAAID,OAAO,CAACuC,yBAAyB,EAAE;IACvD,IAAIM,wBAAwB,CAAC7C,OAAO,EAAEC,MAAM,CAAC,EAAE;MAC9CqC,kBAAkB,CAACtC,OAAO,EAAEC,MAAM,CAAC;IACpC;EACD;AACD,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA,OAAO,MAAM+C,iBAAiB,GAAGA,CAAC;EACjC7C,eAAe;EACfY,iBAAiB;EACjBwB;AAKD,CAAC,KAAK;EACL,SAAS;;EACT,MAAMrB,iBAAwD,GAAG,CAAC,CAAC;EACnE,MAAMD,6BAA0D,GAAG,CAAC,CAAC;EACrE,MAAMjB,OAAO,GAAG;IACfG,eAAe;IACfY,iBAAiB;IACjBwB,yBAAyB;IACzBrB,iBAAiB;IACjBD;EACD,CAAC;EAEDuB,kBAAkB,CAACxC,OAAO,CAAC;EAC3B4C,oBAAoB,CAAC5C,OAAO,CAAC;EAC7B+C,mBAAmB,CAAC/C,OAAO,CAAC;EAE5B,OAAO;IACNkB,iBAAiB;IACjBD;EACD,CAAC;AACF,CAAC","ignoreList":[]}
@@ -79,6 +79,7 @@ const materializeResolvedProps = ({
79
79
  export const materializeResolvedSlot = ({
80
80
  baseStyle,
81
81
  baseProps,
82
+ boundsLocalTransform,
82
83
  previousState,
83
84
  styleKeys,
84
85
  propKeys,
@@ -106,6 +107,7 @@ export const materializeResolvedSlot = ({
106
107
  });
107
108
  resolvedSlot.style = resolvedStyle;
108
109
  resolvedSlot.props = resolvedProps;
110
+ resolvedSlot.boundsLocalTransform = boundsLocalTransform;
109
111
  if (!resolvedSlot.style && !resolvedSlot.props) {
110
112
  return undefined;
111
113
  }
@@ -1 +1 @@
1
- {"version":3,"names":["PROP_RESET_VALUES","STYLE_RESET_VALUES","materializeResolvedBucket","source","previousKeys","previousResetValues","currentKeys","hasAnyKeys","hasResetPatch","resetValues","undefined","resolvedBucket","keysToReset","key","previousResetValue","resetValue","value","materializeResolvedStyle","baseStyle","previousState","styleKeys","hasAnyStyleKeys","hasStyleResetPatch","styleResetValues","materializeResolvedProps","baseProps","propKeys","hasAnyPropKeys","hasPropResetPatch","propResetValues","materializeResolvedSlot","resolvedSlot","resolvedStyle","resolvedProps","style","props"],"sourceRoot":"../../../../../../../../src","sources":["shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["PROP_RESET_VALUES","STYLE_RESET_VALUES","materializeResolvedBucket","source","previousKeys","previousResetValues","currentKeys","hasAnyKeys","hasResetPatch","resetValues","undefined","resolvedBucket","keysToReset","key","previousResetValue","resetValue","value","materializeResolvedStyle","baseStyle","previousState","styleKeys","hasAnyStyleKeys","hasStyleResetPatch","styleResetValues","materializeResolvedProps","baseProps","propKeys","hasAnyPropKeys","hasPropResetPatch","propResetValues","materializeResolvedSlot","boundsLocalTransform","resolvedSlot","resolvedStyle","resolvedProps","style","props"],"sourceRoot":"../../../../../../../../src","sources":["shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.ts"],"mappings":";;AACA,SAASA,iBAAiB,EAAEC,kBAAkB,QAAQ,iBAAiB;AAGvE;AACA,MAAMC,yBAAyB,GAAGA,CAAC;EAClCC,MAAM;EACNC,YAAY;EACZC,mBAAmB;EACnBC,WAAW;EACXC,UAAU;EACVC,aAAa;EACbC;AASD,CAAC,KAAK;EACL,SAAS;;EAET,IAAI,CAACF,UAAU,IAAI,CAACC,aAAa,EAAE;IAClC,OAAOE,SAAS;EACjB;EAEA,MAAMC,cAAuC,GAAG,CAAC,CAAC;EAClD,MAAMC,WAAW,GAAGR,YAAY,IAAI,CAAC,CAAC;EAEtC,KAAK,MAAMS,GAAG,IAAID,WAAW,EAAE;IAC9B,IAAIN,WAAW,KAAKI,SAAS,IAAIJ,WAAW,CAACO,GAAG,CAAC,KAAK,IAAI,EAAE;MAC3D;IACD;IAEA,MAAMC,kBAAkB,GAAGT,mBAAmB,GAAGQ,GAAG,CAAC;IACrD,MAAME,UAAU,GACfD,kBAAkB,KAAKJ,SAAS,GAC7BI,kBAAkB,GAClBL,WAAW,GAAGI,GAAG,CAAC;IAEtB,IAAIE,UAAU,KAAKL,SAAS,EAAE;MAC7BC,cAAc,CAACE,GAAG,CAAC,GAAGE,UAAU;IACjC;EACD;EAEA,IAAIZ,MAAM,EAAE;IACX,KAAK,MAAMU,GAAG,IAAIV,MAAM,EAAE;MACzB,MAAMa,KAAK,GAAGb,MAAM,CAACU,GAAG,CAAC;MAEzB,IAAIG,KAAK,KAAKN,SAAS,IAAIM,KAAK,KAAK,IAAI,EAAE;QAC1CL,cAAc,CAACE,GAAG,CAAC,GAAGG,KAAK;MAC5B;IACD;EACD;EAEA,OAAOL,cAAc;AACtB,CAAC;AAED,MAAMM,wBAAwB,GAAGA,CAAC;EACjCC,SAAS;EACTC,aAAa;EACbC,SAAS;EACTC,eAAe;EACfC;AAOD,CAAC,KAAK;EACL,SAAS;;EACT,OAAOpB,yBAAyB,CAAC;IAChCC,MAAM,EAAEe,SAAS;IACjBd,YAAY,EAAEe,aAAa,EAAEC,SAAS;IACtCf,mBAAmB,EAAEc,aAAa,EAAEI,gBAAgB;IACpDjB,WAAW,EAAEc,SAAS;IACtBb,UAAU,EAAEc,eAAe;IAC3Bb,aAAa,EAAEc,kBAAkB;IACjCb,WAAW,EAAER;EACd,CAAC,CAAC;AACH,CAAC;AAED,MAAMuB,wBAAwB,GAAGA,CAAC;EACjCC,SAAS;EACTN,aAAa;EACbO,QAAQ;EACRC,cAAc;EACdC;AAOD,CAAC,KAAK;EACL,SAAS;;EACT,OAAO1B,yBAAyB,CAAC;IAChCC,MAAM,EAAEsB,SAAS;IACjBrB,YAAY,EAAEe,aAAa,EAAEO,QAAQ;IACrCrB,mBAAmB,EAAEc,aAAa,EAAEU,eAAe;IACnDvB,WAAW,EAAEoB,QAAQ;IACrBnB,UAAU,EAAEoB,cAAc;IAC1BnB,aAAa,EAAEoB,iBAAiB;IAChCnB,WAAW,EAAET;EACd,CAAC,CAAC;AACH,CAAC;AAED,OAAO,MAAM8B,uBAAuB,GAAGA,CAAC;EACvCZ,SAAS;EACTO,SAAS;EACTM,oBAAoB;EACpBZ,aAAa;EACbC,SAAS;EACTM,QAAQ;EACRL,eAAe;EACfM,cAAc;EACdL,kBAAkB;EAClBM;AAYD,CAAC,KAAK;EACL,SAAS;;EACT,MAAMI,YAAY,GAAG,CAAC,CAAkC;EAExD,MAAMC,aAAa,GAAGhB,wBAAwB,CAAC;IAC9CC,SAAS;IACTC,aAAa;IACbC,SAAS;IACTC,eAAe;IACfC;EACD,CAAC,CAAC;EACF,MAAMY,aAAa,GAAGV,wBAAwB,CAAC;IAC9CC,SAAS;IACTN,aAAa;IACbO,QAAQ;IACRC,cAAc;IACdC;EACD,CAAC,CAAC;EAEFI,YAAY,CAACG,KAAK,GAAGF,aAAa;EAClCD,YAAY,CAACI,KAAK,GAAGF,aAAa;EAClCF,YAAY,CAACD,oBAAoB,GAAGA,oBAAoB;EAExD,IAAI,CAACC,YAAY,CAACG,KAAK,IAAI,CAACH,YAAY,CAACI,KAAK,EAAE;IAC/C,OAAO1B,SAAS;EACjB;EAEA,OAAOsB,YAAY;AACpB,CAAC","ignoreList":[]}
@@ -1,11 +1,6 @@
1
1
  "use strict";
2
2
 
3
3
  import { getPropResetValue, getStyleResetValue } from "./reset-values";
4
- const hasTrackedKey = (keys, key) => {
5
- "worklet";
6
-
7
- return keys !== undefined && keys[key] === true;
8
- };
9
4
  const isDefinedStyleValue = value => {
10
5
  "worklet";
11
6
 
@@ -43,19 +38,6 @@ const collectDefinedKeys = ({
43
38
  hasKeys
44
39
  };
45
40
  };
46
- export const hasDisappearedKeys = (previousKeys, currentKeys) => {
47
- "worklet";
48
-
49
- if (!previousKeys) {
50
- return false;
51
- }
52
- for (const key in previousKeys) {
53
- if (!hasTrackedKey(currentKeys, key)) {
54
- return true;
55
- }
56
- }
57
- return false;
58
- };
59
41
  const hasEitherKeySet = (styleKeys, propKeys) => {
60
42
  "worklet";
61
43
 
@@ -1 +1 @@
1
- {"version":3,"names":["getPropResetValue","getStyleResetValue","hasTrackedKey","keys","key","undefined","isDefinedStyleValue","value","collectDefinedKeys","source","getResetValue","sourceValues","resetValues","hasKeys","hasResetValues","resetValue","hasDisappearedKeys","previousKeys","currentKeys","hasEitherKeySet","styleKeys","propKeys","getNextStyleState","styleResetValues","propResetValues","getResolvedSlotState","slot","baseStyle","style","baseProps","props","hasAnyStyleKeys","hasAnyPropKeys","hasAnyKeys","nextState"],"sourceRoot":"../../../../../../../../src","sources":["shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["getPropResetValue","getStyleResetValue","isDefinedStyleValue","value","undefined","collectDefinedKeys","source","getResetValue","sourceValues","keys","resetValues","hasKeys","hasResetValues","key","resetValue","hasEitherKeySet","styleKeys","propKeys","getNextStyleState","styleResetValues","propResetValues","getResolvedSlotState","slot","baseStyle","style","baseProps","props","hasAnyStyleKeys","hasAnyPropKeys","hasAnyKeys","nextState"],"sourceRoot":"../../../../../../../../src","sources":["shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.ts"],"mappings":";;AACA,SAASA,iBAAiB,EAAEC,kBAAkB,QAAQ,gBAAgB;AAGtE,MAAMC,mBAAmB,GAAIC,KAAc,IAAK;EAC/C,SAAS;;EACT,OAAOA,KAAK,KAAKC,SAAS,IAAID,KAAK,KAAK,IAAI;AAC7C,CAAC;;AAED;AACA,MAAME,kBAAkB,GAAGA,CAAC;EAC3BC,MAAM;EACNC;AAID,CAAC,KAAK;EACL,SAAS;;EACT,MAAMC,YAAY,GAAGF,MAAM,IAAI,CAAC,CAAC;EACjC,MAAMG,IAA0B,GAAG,CAAC,CAAC;EACrC,MAAMC,WAAoC,GAAG,CAAC,CAAC;EAC/C,IAAIC,OAAO,GAAG,KAAK;EACnB,IAAIC,cAAc,GAAG,KAAK;EAE1B,KAAK,MAAMC,GAAG,IAAIL,YAAY,EAAE;IAC/B,MAAML,KAAK,GAAGK,YAAY,CAACK,GAAG,CAAC;IAE/B,IAAI,CAACX,mBAAmB,CAACC,KAAK,CAAC,EAAE;MAChC;IACD;IAEAM,IAAI,CAACI,GAAG,CAAC,GAAG,IAAI;IAChBF,OAAO,GAAG,IAAI;IAEd,MAAMG,UAAU,GAAGP,aAAa,CAACM,GAAG,EAAEV,KAAK,CAAC;IAE5C,IAAIW,UAAU,KAAKV,SAAS,EAAE;MAC7BM,WAAW,CAACG,GAAG,CAAC,GAAGC,UAAU;MAC7BF,cAAc,GAAG,IAAI;IACtB;EACD;EAEA,OAAO;IACNH,IAAI,EAAEE,OAAO,GAAGF,IAAI,GAAGL,SAAS;IAChCM,WAAW,EAAEE,cAAc,GAAGF,WAAW,GAAGN,SAAS;IACrDO;EACD,CAAC;AACF,CAAC;AAED,MAAMI,eAAe,GAAGA,CACvBC,SAA2C,EAC3CC,QAA0C,KACtC;EACJ,SAAS;;EACT,OAAOD,SAAS,KAAKZ,SAAS,IAAIa,QAAQ,KAAKb,SAAS;AACzD,CAAC;AAED,MAAMc,iBAAiB,GAAGA,CAAC;EAC1BF,SAAS;EACTG,gBAAgB;EAChBF,QAAQ;EACRG;AAMD,CAAC,KAAuC;EACvC,SAAS;;EAET,IAAI,CAACL,eAAe,CAACC,SAAS,EAAEC,QAAQ,CAAC,EAAE;IAC1C,OAAOb,SAAS;EACjB;EAEA,OAAO;IACNY,SAAS;IACTG,gBAAgB;IAChBF,QAAQ;IACRG;EACD,CAAC;AACF,CAAC;AAED,OAAO,MAAMC,oBAAoB,GAChCC,IAA+C,IAC3C;EACJ,SAAS;;EACT,MAAMC,SAAS,GAAGD,IAAI,EAAEE,KAA4C;EACpE,MAAMC,SAAS,GAAGH,IAAI,EAAEI,KAA4C;EAEpE,MAAM;IACLjB,IAAI,EAAEO,SAAS;IACfN,WAAW,EAAES,gBAAgB;IAC7BR,OAAO,EAAEgB;EACV,CAAC,GAAGtB,kBAAkB,CAAC;IACtBC,MAAM,EAAEiB,SAAS;IACjBhB,aAAa,EAAEN;EAChB,CAAC,CAAC;EACF,MAAM;IACLQ,IAAI,EAAEQ,QAAQ;IACdP,WAAW,EAAEU,eAAe;IAC5BT,OAAO,EAAEiB;EACV,CAAC,GAAGvB,kBAAkB,CAAC;IACtBC,MAAM,EAAEmB,SAAS;IACjBlB,aAAa,EAAEP;EAChB,CAAC,CAAC;EAEF,OAAO;IACNuB,SAAS;IACTE,SAAS;IACTT,SAAS;IACTC,QAAQ;IACRU,eAAe;IACfC,cAAc;IACdC,UAAU,EAAEF,eAAe,IAAIC,cAAc;IAC7CE,SAAS,EAAEZ,iBAAiB,CAAC;MAC5BF,SAAS;MACTG,gBAAgB;MAChBF,QAAQ;MACRG;IACD,CAAC;EACF,CAAC;AACF,CAAC","ignoreList":[]}
@@ -20,10 +20,6 @@ export const resolveScreenVisibilityGate = ({
20
20
  const hasPendingLifecycleBlock = pendingLifecycleStartBlockCount > 0;
21
21
  const isPendingOpen = pendingLifecycleRequestKind === LifecycleTransitionRequestKind.Open;
22
22
  const isOpening = isPendingOpen || !!entering;
23
-
24
- // Keep the screen hidden until the first transformed opening frame exists.
25
- // The lifecycle request is cleared before the RAF-scheduled progress
26
- // animation starts, so `entering` carries the gate through that one-frame gap.
27
23
  const isWaitingForOpenToStart = progress <= 0;
28
24
  const shouldBlock = (hasPendingLifecycleBlock || isWaitingForOpenToStart) && isOpening;
29
25
  return {
@@ -31,9 +27,4 @@ export const resolveScreenVisibilityGate = ({
31
27
  shouldOpenGate: !shouldBlock && progress > 0
32
28
  };
33
29
  };
34
- export const shouldBlockScreenVisibility = state => {
35
- "worklet";
36
-
37
- return resolveScreenVisibilityGate(state).shouldBlock;
38
- };
39
30
  //# sourceMappingURL=visibility-gate.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["LifecycleTransitionRequestKind","resolveScreenVisibilityGate","isFloatingOverlay","hasVisibilityGateOpened","pendingLifecycleStartBlockCount","pendingLifecycleRequestKind","progress","entering","shouldBlock","shouldOpenGate","hasPendingLifecycleBlock","isPendingOpen","Open","isOpening","isWaitingForOpenToStart","shouldBlockScreenVisibility","state"],"sourceRoot":"../../../../../../../src","sources":["shared/providers/screen/styles/helpers/visibility-gate.ts"],"mappings":";;AAAA,SAASA,8BAA8B,QAAQ,iCAAiC;AAgBhF,OAAO,MAAMC,2BAA2B,GAAGA,CAAC;EAC3CC,iBAAiB;EACjBC,uBAAuB;EACvBC,+BAA+B;EAC/BC,2BAA2B;EAC3BC,QAAQ;EACRC;AAC0B,CAAC,KAAmC;EAC9D,SAAS;;EACT,IAAIL,iBAAiB,IAAIC,uBAAuB,EAAE;IACjD,OAAO;MACNK,WAAW,EAAE,KAAK;MAClBC,cAAc,EAAE;IACjB,CAAC;EACF;EAEA,MAAMC,wBAAwB,GAAGN,+BAA+B,GAAG,CAAC;EACpE,MAAMO,aAAa,GAClBN,2BAA2B,KAAKL,8BAA8B,CAACY,IAAI;EACpE,MAAMC,SAAS,GAAGF,aAAa,IAAI,CAAC,CAACJ,QAAQ;;EAE7C;EACA;EACA;EACA,MAAMO,uBAAuB,GAAGR,QAAQ,IAAI,CAAC;EAE7C,MAAME,WAAW,GAChB,CAACE,wBAAwB,IAAII,uBAAuB,KAAKD,SAAS;EAEnE,OAAO;IACNL,WAAW;IACXC,cAAc,EAAE,CAACD,WAAW,IAAIF,QAAQ,GAAG;EAC5C,CAAC;AACF,CAAC;AAED,OAAO,MAAMS,2BAA2B,GACvCC,KAAgC,IAC5B;EACJ,SAAS;;EACT,OAAOf,2BAA2B,CAACe,KAAK,CAAC,CAACR,WAAW;AACtD,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["LifecycleTransitionRequestKind","resolveScreenVisibilityGate","isFloatingOverlay","hasVisibilityGateOpened","pendingLifecycleStartBlockCount","pendingLifecycleRequestKind","progress","entering","shouldBlock","shouldOpenGate","hasPendingLifecycleBlock","isPendingOpen","Open","isOpening","isWaitingForOpenToStart"],"sourceRoot":"../../../../../../../src","sources":["shared/providers/screen/styles/helpers/visibility-gate.ts"],"mappings":";;AAAA,SAASA,8BAA8B,QAAQ,iCAAiC;AAgBhF,OAAO,MAAMC,2BAA2B,GAAGA,CAAC;EAC3CC,iBAAiB;EACjBC,uBAAuB;EACvBC,+BAA+B;EAC/BC,2BAA2B;EAC3BC,QAAQ;EACRC;AAC0B,CAAC,KAAmC;EAC9D,SAAS;;EACT,IAAIL,iBAAiB,IAAIC,uBAAuB,EAAE;IACjD,OAAO;MACNK,WAAW,EAAE,KAAK;MAClBC,cAAc,EAAE;IACjB,CAAC;EACF;EAEA,MAAMC,wBAAwB,GAAGN,+BAA+B,GAAG,CAAC;EACpE,MAAMO,aAAa,GAClBN,2BAA2B,KAAKL,8BAA8B,CAACY,IAAI;EACpE,MAAMC,SAAS,GAAGF,aAAa,IAAI,CAAC,CAACJ,QAAQ;EAC7C,MAAMO,uBAAuB,GAAGR,QAAQ,IAAI,CAAC;EAC7C,MAAME,WAAW,GAChB,CAACE,wBAAwB,IAAII,uBAAuB,KAAKD,SAAS;EAEnE,OAAO;IACNL,WAAW;IACXC,cAAc,EAAE,CAACD,WAAW,IAAIF,QAAQ,GAAG;EAC5C,CAAC;AACF,CAAC","ignoreList":[]}
@@ -0,0 +1,87 @@
1
+ "use strict";
2
+
3
+ import { useMemo } from "react";
4
+ import { useAnimatedProps, useAnimatedStyle } from "react-native-reanimated";
5
+ import { NO_PROPS, NO_STYLES } from "../../../../constants";
6
+ import { composeSlotStyleWithLocalTransform, getLocalTransformForSlotComposition } from "../helpers/compose-slot-style";
7
+ import { useScreenSlots } from "../slot.provider";
8
+ export const useSlotStyles = slotId => {
9
+ const {
10
+ slotsMap
11
+ } = useScreenSlots();
12
+ return useAnimatedStyle(() => {
13
+ const slot = slotId ? slotsMap.get()[slotId] : undefined;
14
+ const slotStyle = slot?.style ?? NO_STYLES;
15
+ return composeSlotStyleWithLocalTransform(slotStyle, undefined, slot?.boundsLocalTransform);
16
+ });
17
+ };
18
+ export const useComposedSlotStyles = (slotId, style) => {
19
+ const {
20
+ slotsMap
21
+ } = useScreenSlots();
22
+ const localTransform = useMemo(() => getLocalTransformForSlotComposition(style), [style]);
23
+ return useAnimatedStyle(() => {
24
+ const slot = slotId ? slotsMap.get()[slotId] : undefined;
25
+ const slotStyle = slot?.style ?? NO_STYLES;
26
+ return composeSlotStyleWithLocalTransform(slotStyle, localTransform, slot?.boundsLocalTransform);
27
+ });
28
+ };
29
+
30
+ /**
31
+ * Stacking-only slice (`zIndex`/`elevation`) of a slot's style. Returned
32
+ * separately so an owner can keep just its stacking context while a nested
33
+ * target takes the full associated style. Yields `NO_STYLES` when neither is set.
34
+ */
35
+ export const useSlotStackingStyles = slotId => {
36
+ const {
37
+ slotsMap
38
+ } = useScreenSlots();
39
+ return useAnimatedStyle(() => {
40
+ const baseStyle = slotId ? slotsMap.get()[slotId]?.style : undefined;
41
+ const zIndex = baseStyle?.zIndex ?? 0;
42
+ const elevation = baseStyle?.elevation ?? 0;
43
+ if (zIndex === 0 && elevation === 0) {
44
+ return NO_STYLES;
45
+ }
46
+ return {
47
+ zIndex,
48
+ elevation
49
+ };
50
+ });
51
+ };
52
+ export const useSlotLayoutStyles = slotId => {
53
+ const {
54
+ slotsMap
55
+ } = useScreenSlots();
56
+ return useAnimatedStyle(() => {
57
+ const baseStyle = slotId ? slotsMap.get()[slotId]?.style : undefined;
58
+ const width = baseStyle?.width;
59
+ const height = baseStyle?.height;
60
+ const minWidth = baseStyle?.minWidth;
61
+ const minHeight = baseStyle?.minHeight;
62
+ const maxWidth = baseStyle?.maxWidth;
63
+ const maxHeight = baseStyle?.maxHeight;
64
+ const aspectRatio = baseStyle?.aspectRatio;
65
+ if (width === undefined && height === undefined && minWidth === undefined && minHeight === undefined && maxWidth === undefined && maxHeight === undefined && aspectRatio === undefined) {
66
+ return NO_STYLES;
67
+ }
68
+ return {
69
+ width,
70
+ height,
71
+ minWidth,
72
+ minHeight,
73
+ maxWidth,
74
+ maxHeight,
75
+ aspectRatio
76
+ };
77
+ });
78
+ };
79
+ export const useSlotProps = slotId => {
80
+ const {
81
+ slotsMap
82
+ } = useScreenSlots();
83
+ return useAnimatedProps(() => {
84
+ return (slotId ? slotsMap.get()[slotId]?.props : undefined) ?? NO_PROPS;
85
+ });
86
+ };
87
+ //# sourceMappingURL=slot-resolvers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["useMemo","useAnimatedProps","useAnimatedStyle","NO_PROPS","NO_STYLES","composeSlotStyleWithLocalTransform","getLocalTransformForSlotComposition","useScreenSlots","useSlotStyles","slotId","slotsMap","slot","get","undefined","slotStyle","style","boundsLocalTransform","useComposedSlotStyles","localTransform","useSlotStackingStyles","baseStyle","zIndex","elevation","useSlotLayoutStyles","width","height","minWidth","minHeight","maxWidth","maxHeight","aspectRatio","useSlotProps","props"],"sourceRoot":"../../../../../../../src","sources":["shared/providers/screen/styles/hooks/slot-resolvers.tsx"],"mappings":"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","ignoreList":[]}
@@ -2,27 +2,28 @@
2
2
 
3
3
  import { useDerivedValue, useSharedValue } from "react-native-reanimated";
4
4
  import { NO_STYLES } from "../../../../constants";
5
- import { SystemStore } from "../../../../stores/system.store";
5
+ import { AnimationStore } from "../../../../stores/animation.store";
6
+ import { LifecycleTransitionRequestKind, SystemStore } from "../../../../stores/system.store";
6
7
  import { logger } from "../../../../utils/logger";
7
8
  import { useScreenAnimationContext } from "../../animation";
8
9
  import { useBuildBoundsAccessor } from "../../animation/helpers/accessors/use-build-bounds-accessor";
9
10
  import { useBuildTransitionAccessor } from "../../animation/helpers/accessors/use-build-transition-accessor";
10
11
  import { readScreenAnimationRevisions } from "../../animation/helpers/read-screen-animation-revisions";
11
12
  import { syncSelectedInterpolatorOptions } from "../../animation/helpers/selected-interpolator-options";
12
- import { useDescriptorDerivations } from "../../descriptors";
13
+ import { useDescriptorsStore } from "../../descriptors";
13
14
  import { syncScreenOptionsOverrides, useScreenOptionsContext } from "../../options";
14
15
  import { normalizeSlots } from "../helpers/normalize-slots";
15
- import { preserveAnimatedPropsOnly } from "../helpers/preserve-animated-props-only";
16
+ import { isOpeningBeforeStart } from "../helpers/opening-phase";
16
17
  import { stripInterpolatorOptions } from "../helpers/strip-interpolator-options";
17
18
  const NO_STYLE_LAYERS = [];
18
- const normalizeRawStyleMap = (rawStyleMap, shouldDeferStyleBuckets) => {
19
+ const normalizeRawStyleMap = rawStyleMap => {
19
20
  "worklet";
20
21
 
21
22
  if (!rawStyleMap) {
22
23
  return NO_STYLES;
23
24
  }
24
25
  const stylesMap = normalizeSlots(stripInterpolatorOptions(rawStyleMap));
25
- return shouldDeferStyleBuckets ? preserveAnimatedPropsOnly(stylesMap) : stylesMap;
26
+ return stylesMap;
26
27
  };
27
28
  const runInterpolator = ({
28
29
  interpolator,
@@ -30,8 +31,7 @@ const runInterpolator = ({
30
31
  progress,
31
32
  next,
32
33
  bounds,
33
- transition,
34
- shouldDeferStyleBuckets
34
+ transition
35
35
  }) => {
36
36
  "worklet";
37
37
 
@@ -49,7 +49,7 @@ const runInterpolator = ({
49
49
  const rawStyleMap = typeof raw === "object" && raw != null ? raw : undefined;
50
50
  return {
51
51
  rawStyleMap,
52
- stylesMap: normalizeRawStyleMap(rawStyleMap, shouldDeferStyleBuckets)
52
+ stylesMap: normalizeRawStyleMap(rawStyleMap)
53
53
  };
54
54
  } catch (_) {
55
55
  if (__DEV__) {
@@ -82,19 +82,13 @@ const appendLayer = (layers, result) => {
82
82
  * normal interpolator selection once the gesture-driven close is no longer in
83
83
  * play.
84
84
  *
85
- * Visibility gating happens downstream while lifecycle start is blocked for
86
- * pending destination measurement. We still run the interpolator during that
87
- * hidden window so animated props and runtime options stay warm, but defer style
88
- * buckets so measurement sees the final untransformed layout.
89
- *
90
85
  * The result is ordered from lowest to highest priority. Resolution happens
91
86
  * downstream, where slot ids determine whether slots inherit from ancestors and
92
87
  * where higher owner layers override lower owner layers per key.
93
88
  */
94
89
  export const useInterpolatedStylesMap = () => {
95
- const {
96
- currentScreenKey
97
- } = useDescriptorDerivations();
90
+ const currentScreenKey = useDescriptorsStore(s => s.derivations.currentScreenKey);
91
+ const nextScreenKey = useDescriptorsStore(s => s.derivations.nextScreenKey);
98
92
  const screenOptions = useScreenOptionsContext();
99
93
  const {
100
94
  screenInterpolatorProps,
@@ -107,26 +101,21 @@ export const useInterpolatedStylesMap = () => {
107
101
  } = useScreenAnimationContext();
108
102
  const boundsAccessor = useBuildBoundsAccessor();
109
103
  const transition = useBuildTransitionAccessor();
110
- const pendingLifecycleStartBlockCount = SystemStore.getValue(currentScreenKey, "pendingLifecycleStartBlockCount");
104
+ const nextInterpolatorReady = useSharedValue(0);
105
+ const activeScreenKey = nextScreenKey ?? currentScreenKey;
106
+ const {
107
+ entering: activeEntering,
108
+ transitionProgress: activeTransitionProgress
109
+ } = AnimationStore.getBag(activeScreenKey);
110
+ const {
111
+ pendingLifecycleRequestKind: activePendingLifecycleRequestKind
112
+ } = SystemStore.getBag(activeScreenKey);
111
113
  const isGesturingDuringCloseAnimation = useSharedValue(false);
112
- return useDerivedValue(() => {
114
+ const localStylesMaps = useDerivedValue(() => {
113
115
  "worklet";
114
116
 
115
117
  readScreenAnimationRevisions(screenInterpolatorPropsRevision, ancestorScreenAnimationSources, descendantScreenAnimationSources);
116
118
  const props = screenInterpolatorProps.get();
117
-
118
- /**
119
- * There is a niche case where bounds can be attached to a view that's styles are out of viewport.
120
- * Due to our blocking mechanism and ensuring accurate measurement, this boundary measurement
121
- * will be blocked and the screen will never be visible. To mitigate this, we:
122
- *
123
- * - Defer the style buckets (props are fine), to ensure we get the correct position of the boundary
124
- *
125
- * Again this is very niche, and since we're not marketing ourselves as a proper shared element transition
126
- * package, we won't spend time finding a better solution for this.
127
- *
128
- */
129
- const shouldDeferStyleBuckets = pendingLifecycleStartBlockCount.get() > 0;
130
119
  const {
131
120
  current,
132
121
  next,
@@ -145,7 +134,16 @@ export const useInterpolatedStylesMap = () => {
145
134
  isGesturingDuringCloseAnimation.set(false);
146
135
  }
147
136
  const isInGestureMode = !!isDragging || isGesturingDuringCloseAnimation.get();
148
- const interpolatorOptionsOwner = isInGestureMode || !nextInterpolator ? "current" : "next";
137
+
138
+ // The current screen keeps interpolator ownership until the next screen is
139
+ // genuinely live: never during a gesture-driven close, never before a next
140
+ // interpolator exists, and never in the next screen's pre-start window
141
+ // (entering, but no transformed frame yet). Only then does "next" take over.
142
+ const isPendingOpen = activePendingLifecycleRequestKind.get() === LifecycleTransitionRequestKind.Open;
143
+ const activeOpening = isPendingOpen || !!activeEntering.get();
144
+ const currentOwnsInterpolator = isInGestureMode || !nextInterpolator || isOpeningBeforeStart(activeOpening ? 1 : 0, activeTransitionProgress.get());
145
+ nextInterpolatorReady.set(currentOwnsInterpolator ? 0 : 1);
146
+ const interpolatorOptionsOwner = currentOwnsInterpolator ? "current" : "next";
149
147
  let selectedProgress = progress;
150
148
  let selectedNext = next;
151
149
  if (isInGestureMode) {
@@ -158,8 +156,7 @@ export const useInterpolatedStylesMap = () => {
158
156
  progress: selectedProgress,
159
157
  next: selectedNext,
160
158
  bounds: boundsAccessor,
161
- transition,
162
- shouldDeferStyleBuckets
159
+ transition
163
160
  });
164
161
  if (interpolatorOptionsOwner === "current") {
165
162
  syncSelectedInterpolatorOptions(selectedInterpolatorOptions, "current", currentResult?.rawStyleMap?.options);
@@ -175,8 +172,7 @@ export const useInterpolatedStylesMap = () => {
175
172
  progress: selectedProgress,
176
173
  next: selectedNext,
177
174
  bounds: boundsAccessor,
178
- transition,
179
- shouldDeferStyleBuckets
175
+ transition
180
176
  });
181
177
  syncSelectedInterpolatorOptions(selectedInterpolatorOptions, "next", nextResult?.rawStyleMap?.options);
182
178
  syncScreenOptionsOverrides(undefined, screenOptions);
@@ -188,5 +184,9 @@ export const useInterpolatedStylesMap = () => {
188
184
  }
189
185
  return layers;
190
186
  });
187
+ return {
188
+ localStylesMaps,
189
+ nextInterpolatorReady
190
+ };
191
191
  };
192
192
  //# sourceMappingURL=use-interpolated-style-maps.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["useDerivedValue","useSharedValue","NO_STYLES","SystemStore","logger","useScreenAnimationContext","useBuildBoundsAccessor","useBuildTransitionAccessor","readScreenAnimationRevisions","syncSelectedInterpolatorOptions","useDescriptorDerivations","syncScreenOptionsOverrides","useScreenOptionsContext","normalizeSlots","preserveAnimatedPropsOnly","stripInterpolatorOptions","NO_STYLE_LAYERS","normalizeRawStyleMap","rawStyleMap","shouldDeferStyleBuckets","stylesMap","runInterpolator","interpolator","props","progress","next","bounds","transition","undefined","raw","_","__DEV__","warn","appendLayer","layers","result","push","useInterpolatedStylesMap","currentScreenKey","screenOptions","screenInterpolatorProps","screenInterpolatorPropsRevision","selectedInterpolatorOptions","nextInterpolator","currentInterpolator","ancestorScreenAnimationSources","descendantScreenAnimationSources","boundsAccessor","pendingLifecycleStartBlockCount","getValue","isGesturingDuringCloseAnimation","get","current","isDragging","gesture","dragging","isNextClosing","closing","set","isInGestureMode","interpolatorOptionsOwner","selectedProgress","selectedNext","currentResult","options","nextResult","length"],"sourceRoot":"../../../../../../../src","sources":["shared/providers/screen/styles/hooks/use-interpolated-style-maps.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["useDerivedValue","useSharedValue","NO_STYLES","AnimationStore","LifecycleTransitionRequestKind","SystemStore","logger","useScreenAnimationContext","useBuildBoundsAccessor","useBuildTransitionAccessor","readScreenAnimationRevisions","syncSelectedInterpolatorOptions","useDescriptorsStore","syncScreenOptionsOverrides","useScreenOptionsContext","normalizeSlots","isOpeningBeforeStart","stripInterpolatorOptions","NO_STYLE_LAYERS","normalizeRawStyleMap","rawStyleMap","stylesMap","runInterpolator","interpolator","props","progress","next","bounds","transition","undefined","raw","_","__DEV__","warn","appendLayer","layers","result","push","useInterpolatedStylesMap","currentScreenKey","s","derivations","nextScreenKey","screenOptions","screenInterpolatorProps","screenInterpolatorPropsRevision","selectedInterpolatorOptions","nextInterpolator","currentInterpolator","ancestorScreenAnimationSources","descendantScreenAnimationSources","boundsAccessor","nextInterpolatorReady","activeScreenKey","entering","activeEntering","transitionProgress","activeTransitionProgress","getBag","pendingLifecycleRequestKind","activePendingLifecycleRequestKind","isGesturingDuringCloseAnimation","localStylesMaps","get","current","isDragging","gesture","dragging","isNextClosing","closing","set","isInGestureMode","isPendingOpen","Open","activeOpening","currentOwnsInterpolator","interpolatorOptionsOwner","selectedProgress","selectedNext","currentResult","options","nextResult","length"],"sourceRoot":"../../../../../../../src","sources":["shared/providers/screen/styles/hooks/use-interpolated-style-maps.tsx"],"mappings":"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","ignoreList":[]}
@@ -24,16 +24,6 @@ export const useMaybeBlockVisibility = isFloatingOverlay => {
24
24
  } = SystemStore.getBag(currentScreenKey);
25
25
  const hasVisibilityGateOpened = useSharedValue(false);
26
26
  const shouldBlockVisibility = useSharedValue(!isFloatingOverlay);
27
-
28
- /**
29
- * Visibility has to start blocked before the first animated style pass.
30
- *
31
- * `useDerivedValue` can publish its computed value after `useAnimatedStyle`
32
- * has already read the initial one, which briefly exposes an unhydrated
33
- * screen. Keep the visible state in an eagerly initialized shared value, then
34
- * let the reaction open it once the visibility gate allows the first
35
- * transformed frame to render.
36
- */
37
27
  useAnimatedReaction(() => {
38
28
  "worklet";
39
29
 
@@ -56,13 +46,6 @@ export const useMaybeBlockVisibility = isFloatingOverlay => {
56
46
  const animatedStyle = useAnimatedStyle(() => {
57
47
  "worklet";
58
48
 
59
- /**
60
- * Keep blocked screens physically offscreen. On physical devices,
61
- * opacity: 0 can break Liquid Glass sampling.
62
- *
63
- * See: https://github.com/expo/expo/issues/41024
64
- *
65
- */
66
49
  const offset = getVisibilityBlockOffset(height);
67
50
  return {
68
51
  transform: [{
@@ -79,8 +62,7 @@ export const useMaybeBlockVisibility = isFloatingOverlay => {
79
62
  });
80
63
  return {
81
64
  animatedStyle,
82
- animatedProps,
83
- shouldBlockVisibility
65
+ animatedProps
84
66
  };
85
67
  };
86
68
  //# sourceMappingURL=use-maybe-block-visibility.js.map