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

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 (298) hide show
  1. package/lib/commonjs/shared/components/boundary/components/boundary-target.js +10 -10
  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 +45 -109
  4. package/lib/commonjs/shared/components/boundary/create-boundary-component.js.map +1 -1
  5. package/lib/commonjs/shared/components/boundary/hooks/use-boundary-measurement.js +103 -0
  6. package/lib/commonjs/shared/components/boundary/hooks/use-boundary-measurement.js.map +1 -0
  7. package/lib/commonjs/shared/components/boundary/hooks/use-boundary-presence.js +7 -4
  8. package/lib/commonjs/shared/components/boundary/hooks/use-boundary-presence.js.map +1 -1
  9. package/lib/commonjs/shared/components/boundary/hooks/use-initial-destination-measurement.js +24 -14
  10. package/lib/commonjs/shared/components/boundary/hooks/use-initial-destination-measurement.js.map +1 -1
  11. package/lib/commonjs/shared/components/boundary/hooks/use-initial-source-measurement.js +3 -4
  12. package/lib/commonjs/shared/components/boundary/hooks/use-initial-source-measurement.js.map +1 -1
  13. package/lib/commonjs/shared/components/boundary/hooks/use-measurer.js +6 -8
  14. package/lib/commonjs/shared/components/boundary/hooks/use-measurer.js.map +1 -1
  15. package/lib/commonjs/shared/components/boundary/hooks/use-refresh-boundary.js +6 -3
  16. package/lib/commonjs/shared/components/boundary/hooks/use-refresh-boundary.js.map +1 -1
  17. package/lib/commonjs/shared/components/boundary/index.js +2 -2
  18. package/lib/commonjs/shared/components/boundary/portal/components/portal.js +3 -3
  19. package/lib/commonjs/shared/components/boundary/portal/components/portal.js.map +1 -1
  20. package/lib/commonjs/shared/components/boundary/portal/resolve-portal.js +36 -0
  21. package/lib/commonjs/shared/components/boundary/portal/resolve-portal.js.map +1 -0
  22. package/lib/commonjs/shared/components/boundary/providers/{boundary-owner.provider.js → boundary-root.provider.js} +21 -23
  23. package/lib/commonjs/shared/components/boundary/providers/boundary-root.provider.js.map +1 -0
  24. package/lib/commonjs/shared/components/boundary/utils/destination-signals.js +33 -2
  25. package/lib/commonjs/shared/components/boundary/utils/destination-signals.js.map +1 -1
  26. package/lib/commonjs/shared/components/create-transition-aware-component.js +2 -20
  27. package/lib/commonjs/shared/components/create-transition-aware-component.js.map +1 -1
  28. package/lib/commonjs/shared/components/overlay/variations/float-overlay.js +1 -1
  29. package/lib/commonjs/shared/components/overlay/variations/float-overlay.js.map +1 -1
  30. package/lib/commonjs/shared/components/screen-container/layers/backdrop.js +2 -14
  31. package/lib/commonjs/shared/components/screen-container/layers/backdrop.js.map +1 -1
  32. package/lib/commonjs/shared/components/screen-container/layers/content.js +4 -16
  33. package/lib/commonjs/shared/components/screen-container/layers/content.js.map +1 -1
  34. package/lib/commonjs/shared/components/screen-container/layers/maybe-masked-navigation-container.js +4 -15
  35. package/lib/commonjs/shared/components/screen-container/layers/maybe-masked-navigation-container.js.map +1 -1
  36. package/lib/commonjs/shared/components/screen-container/layers/surface-container.js +4 -16
  37. package/lib/commonjs/shared/components/screen-container/layers/surface-container.js.map +1 -1
  38. package/lib/commonjs/shared/providers/screen/animation/helpers/pipeline.js +142 -24
  39. package/lib/commonjs/shared/providers/screen/animation/helpers/pipeline.js.map +1 -1
  40. package/lib/commonjs/shared/providers/screen/screen-composer.js +1 -1
  41. package/lib/commonjs/shared/providers/screen/screen-composer.js.map +1 -1
  42. package/lib/commonjs/shared/providers/screen/styles/helpers/opening-phase.js +32 -0
  43. package/lib/commonjs/shared/providers/screen/styles/helpers/opening-phase.js.map +1 -0
  44. package/lib/commonjs/shared/providers/screen/styles/helpers/resolve-slot-styles/index.js +7 -8
  45. package/lib/commonjs/shared/providers/screen/styles/helpers/resolve-slot-styles/index.js.map +1 -1
  46. package/lib/commonjs/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.js.map +1 -1
  47. package/lib/commonjs/shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.js +1 -20
  48. package/lib/commonjs/shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.js.map +1 -1
  49. package/lib/commonjs/shared/providers/screen/styles/helpers/visibility-gate.js +1 -11
  50. package/lib/commonjs/shared/providers/screen/styles/helpers/visibility-gate.js.map +1 -1
  51. package/lib/commonjs/shared/providers/screen/styles/hooks/use-interpolated-style-maps.js +23 -36
  52. package/lib/commonjs/shared/providers/screen/styles/hooks/use-interpolated-style-maps.js.map +1 -1
  53. package/lib/commonjs/shared/providers/screen/styles/hooks/use-maybe-block-visibility.js +1 -19
  54. package/lib/commonjs/shared/providers/screen/styles/hooks/use-maybe-block-visibility.js.map +1 -1
  55. package/lib/commonjs/shared/providers/screen/styles/hooks/use-resolved-slot-style-map.js +8 -3
  56. package/lib/commonjs/shared/providers/screen/styles/hooks/use-resolved-slot-style-map.js.map +1 -1
  57. package/lib/commonjs/shared/providers/screen/styles/index.js +25 -7
  58. package/lib/commonjs/shared/providers/screen/styles/index.js.map +1 -1
  59. package/lib/commonjs/shared/providers/screen/styles/slot.provider.js +103 -0
  60. package/lib/commonjs/shared/providers/screen/styles/slot.provider.js.map +1 -0
  61. package/lib/commonjs/shared/stores/bounds/helpers/link-pairs.helpers.js +16 -1
  62. package/lib/commonjs/shared/stores/bounds/helpers/link-pairs.helpers.js.map +1 -1
  63. package/lib/commonjs/shared/utils/bounds/navigation/zoom/build.js +8 -1
  64. package/lib/commonjs/shared/utils/bounds/navigation/zoom/build.js.map +1 -1
  65. package/lib/commonjs/shared/utils/bounds/navigation/zoom/helpers.js +59 -0
  66. package/lib/commonjs/shared/utils/bounds/navigation/zoom/helpers.js.map +1 -1
  67. package/lib/commonjs/shared/utils/logger.js +11 -0
  68. package/lib/commonjs/shared/utils/logger.js.map +1 -1
  69. package/lib/module/shared/components/boundary/components/boundary-target.js +10 -10
  70. package/lib/module/shared/components/boundary/components/boundary-target.js.map +1 -1
  71. package/lib/module/shared/components/boundary/create-boundary-component.js +47 -111
  72. package/lib/module/shared/components/boundary/create-boundary-component.js.map +1 -1
  73. package/lib/module/shared/components/boundary/hooks/use-boundary-measurement.js +98 -0
  74. package/lib/module/shared/components/boundary/hooks/use-boundary-measurement.js.map +1 -0
  75. package/lib/module/shared/components/boundary/hooks/use-boundary-presence.js +7 -4
  76. package/lib/module/shared/components/boundary/hooks/use-boundary-presence.js.map +1 -1
  77. package/lib/module/shared/components/boundary/hooks/use-initial-destination-measurement.js +24 -14
  78. package/lib/module/shared/components/boundary/hooks/use-initial-destination-measurement.js.map +1 -1
  79. package/lib/module/shared/components/boundary/hooks/use-initial-source-measurement.js +3 -4
  80. package/lib/module/shared/components/boundary/hooks/use-initial-source-measurement.js.map +1 -1
  81. package/lib/module/shared/components/boundary/hooks/use-measurer.js +6 -8
  82. package/lib/module/shared/components/boundary/hooks/use-measurer.js.map +1 -1
  83. package/lib/module/shared/components/boundary/hooks/use-refresh-boundary.js +6 -3
  84. package/lib/module/shared/components/boundary/hooks/use-refresh-boundary.js.map +1 -1
  85. package/lib/module/shared/components/boundary/index.js +2 -2
  86. package/lib/module/shared/components/boundary/portal/components/portal.js +4 -4
  87. package/lib/module/shared/components/boundary/portal/components/portal.js.map +1 -1
  88. package/lib/module/shared/components/boundary/portal/resolve-portal.js +31 -0
  89. package/lib/module/shared/components/boundary/portal/resolve-portal.js.map +1 -0
  90. package/lib/module/shared/components/boundary/providers/{boundary-owner.provider.js → boundary-root.provider.js} +18 -20
  91. package/lib/module/shared/components/boundary/providers/boundary-root.provider.js.map +1 -0
  92. package/lib/module/shared/components/boundary/utils/destination-signals.js +33 -2
  93. package/lib/module/shared/components/boundary/utils/destination-signals.js.map +1 -1
  94. package/lib/module/shared/components/create-transition-aware-component.js +4 -22
  95. package/lib/module/shared/components/create-transition-aware-component.js.map +1 -1
  96. package/lib/module/shared/components/overlay/variations/float-overlay.js +2 -2
  97. package/lib/module/shared/components/overlay/variations/float-overlay.js.map +1 -1
  98. package/lib/module/shared/components/screen-container/layers/backdrop.js +4 -16
  99. package/lib/module/shared/components/screen-container/layers/backdrop.js.map +1 -1
  100. package/lib/module/shared/components/screen-container/layers/content.js +4 -16
  101. package/lib/module/shared/components/screen-container/layers/content.js.map +1 -1
  102. package/lib/module/shared/components/screen-container/layers/maybe-masked-navigation-container.js +5 -16
  103. package/lib/module/shared/components/screen-container/layers/maybe-masked-navigation-container.js.map +1 -1
  104. package/lib/module/shared/components/screen-container/layers/surface-container.js +4 -16
  105. package/lib/module/shared/components/screen-container/layers/surface-container.js.map +1 -1
  106. package/lib/module/shared/providers/screen/animation/helpers/pipeline.js +143 -25
  107. package/lib/module/shared/providers/screen/animation/helpers/pipeline.js.map +1 -1
  108. package/lib/module/shared/providers/screen/screen-composer.js +2 -2
  109. package/lib/module/shared/providers/screen/screen-composer.js.map +1 -1
  110. package/lib/module/shared/providers/screen/styles/helpers/opening-phase.js +26 -0
  111. package/lib/module/shared/providers/screen/styles/helpers/opening-phase.js.map +1 -0
  112. package/lib/module/shared/providers/screen/styles/helpers/resolve-slot-styles/index.js +7 -8
  113. package/lib/module/shared/providers/screen/styles/helpers/resolve-slot-styles/index.js.map +1 -1
  114. package/lib/module/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.js.map +1 -1
  115. package/lib/module/shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.js +0 -18
  116. package/lib/module/shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.js.map +1 -1
  117. package/lib/module/shared/providers/screen/styles/helpers/visibility-gate.js +0 -9
  118. package/lib/module/shared/providers/screen/styles/helpers/visibility-gate.js.map +1 -1
  119. package/lib/module/shared/providers/screen/styles/hooks/use-interpolated-style-maps.js +22 -35
  120. package/lib/module/shared/providers/screen/styles/hooks/use-interpolated-style-maps.js.map +1 -1
  121. package/lib/module/shared/providers/screen/styles/hooks/use-maybe-block-visibility.js +1 -19
  122. package/lib/module/shared/providers/screen/styles/hooks/use-maybe-block-visibility.js.map +1 -1
  123. package/lib/module/shared/providers/screen/styles/hooks/use-resolved-slot-style-map.js +9 -4
  124. package/lib/module/shared/providers/screen/styles/hooks/use-resolved-slot-style-map.js.map +1 -1
  125. package/lib/module/shared/providers/screen/styles/index.js +1 -1
  126. package/lib/module/shared/providers/screen/styles/index.js.map +1 -1
  127. package/lib/module/shared/providers/screen/styles/slot.provider.js +91 -0
  128. package/lib/module/shared/providers/screen/styles/slot.provider.js.map +1 -0
  129. package/lib/module/shared/stores/bounds/helpers/link-pairs.helpers.js +14 -0
  130. package/lib/module/shared/stores/bounds/helpers/link-pairs.helpers.js.map +1 -1
  131. package/lib/module/shared/utils/bounds/navigation/zoom/build.js +9 -2
  132. package/lib/module/shared/utils/bounds/navigation/zoom/build.js.map +1 -1
  133. package/lib/module/shared/utils/bounds/navigation/zoom/helpers.js +58 -0
  134. package/lib/module/shared/utils/bounds/navigation/zoom/helpers.js.map +1 -1
  135. package/lib/module/shared/utils/logger.js +11 -0
  136. package/lib/module/shared/utils/logger.js.map +1 -1
  137. package/lib/typescript/blank-stack/navigators/create-blank-stack-navigator.d.ts +2 -1
  138. package/lib/typescript/blank-stack/navigators/create-blank-stack-navigator.d.ts.map +1 -1
  139. package/lib/typescript/component-stack/components/component-screen.d.ts +1 -1
  140. package/lib/typescript/component-stack/components/component-screen.d.ts.map +1 -1
  141. package/lib/typescript/component-stack/navigators/create-component-stack-navigator.d.ts +2 -1
  142. package/lib/typescript/component-stack/navigators/create-component-stack-navigator.d.ts.map +1 -1
  143. package/lib/typescript/native-stack/navigators/createNativeStackNavigator.d.ts +1 -1
  144. package/lib/typescript/native-stack/navigators/createNativeStackNavigator.d.ts.map +1 -1
  145. package/lib/typescript/native-stack/views/NativeStackView.d.ts +2 -1
  146. package/lib/typescript/native-stack/views/NativeStackView.d.ts.map +1 -1
  147. package/lib/typescript/native-stack/views/useHeaderConfigProps.d.ts +2 -2
  148. package/lib/typescript/shared/adapters/with-screen-transitions/context.d.ts +1 -1
  149. package/lib/typescript/shared/adapters/with-screen-transitions/context.d.ts.map +1 -1
  150. package/lib/typescript/shared/adapters/with-screen-transitions/stack-layout.d.ts +1 -1
  151. package/lib/typescript/shared/adapters/with-screen-transitions/stack-layout.d.ts.map +1 -1
  152. package/lib/typescript/shared/components/activity/variants/activity-container.d.ts +1 -1
  153. package/lib/typescript/shared/components/activity/variants/activity-container.d.ts.map +1 -1
  154. package/lib/typescript/shared/components/activity/variants/activity-screen.d.ts +1 -1
  155. package/lib/typescript/shared/components/activity/variants/activity-screen.d.ts.map +1 -1
  156. package/lib/typescript/shared/components/boundary/components/boundary-target.d.ts +1 -1
  157. package/lib/typescript/shared/components/boundary/components/boundary-target.d.ts.map +1 -1
  158. package/lib/typescript/shared/components/boundary/create-boundary-component.d.ts.map +1 -1
  159. package/lib/typescript/shared/components/boundary/hooks/use-boundary-measurement.d.ts +32 -0
  160. package/lib/typescript/shared/components/boundary/hooks/use-boundary-measurement.d.ts.map +1 -0
  161. package/lib/typescript/shared/components/boundary/hooks/use-boundary-presence.d.ts +2 -1
  162. package/lib/typescript/shared/components/boundary/hooks/use-boundary-presence.d.ts.map +1 -1
  163. package/lib/typescript/shared/components/boundary/hooks/use-initial-destination-measurement.d.ts +3 -2
  164. package/lib/typescript/shared/components/boundary/hooks/use-initial-destination-measurement.d.ts.map +1 -1
  165. package/lib/typescript/shared/components/boundary/hooks/use-initial-source-measurement.d.ts +2 -2
  166. package/lib/typescript/shared/components/boundary/hooks/use-initial-source-measurement.d.ts.map +1 -1
  167. package/lib/typescript/shared/components/boundary/hooks/use-measurer.d.ts +3 -5
  168. package/lib/typescript/shared/components/boundary/hooks/use-measurer.d.ts.map +1 -1
  169. package/lib/typescript/shared/components/boundary/hooks/use-refresh-boundary.d.ts +3 -3
  170. package/lib/typescript/shared/components/boundary/hooks/use-refresh-boundary.d.ts.map +1 -1
  171. package/lib/typescript/shared/components/boundary/index.d.ts +7 -211
  172. package/lib/typescript/shared/components/boundary/index.d.ts.map +1 -1
  173. package/lib/typescript/shared/components/boundary/portal/components/host.d.ts +2 -2
  174. package/lib/typescript/shared/components/boundary/portal/components/host.d.ts.map +1 -1
  175. package/lib/typescript/shared/components/boundary/portal/components/portal-boundary-host.d.ts +1 -1
  176. package/lib/typescript/shared/components/boundary/portal/components/portal-boundary-host.d.ts.map +1 -1
  177. package/lib/typescript/shared/components/boundary/portal/components/portal-provider.d.ts +1 -1
  178. package/lib/typescript/shared/components/boundary/portal/components/portal-provider.d.ts.map +1 -1
  179. package/lib/typescript/shared/components/boundary/portal/components/portal.d.ts +1 -1
  180. package/lib/typescript/shared/components/boundary/portal/components/portal.d.ts.map +1 -1
  181. package/lib/typescript/shared/components/boundary/portal/resolve-portal.d.ts +14 -0
  182. package/lib/typescript/shared/components/boundary/portal/resolve-portal.d.ts.map +1 -0
  183. package/lib/typescript/shared/components/boundary/providers/{boundary-owner.provider.d.ts → boundary-root.provider.d.ts} +12 -14
  184. package/lib/typescript/shared/components/boundary/providers/boundary-root.provider.d.ts.map +1 -0
  185. package/lib/typescript/shared/components/boundary/utils/destination-signals.d.ts +1 -0
  186. package/lib/typescript/shared/components/boundary/utils/destination-signals.d.ts.map +1 -1
  187. package/lib/typescript/shared/components/create-transition-aware-component.d.ts +5 -6
  188. package/lib/typescript/shared/components/create-transition-aware-component.d.ts.map +1 -1
  189. package/lib/typescript/shared/components/masked-view.d.ts +1 -1
  190. package/lib/typescript/shared/components/masked-view.d.ts.map +1 -1
  191. package/lib/typescript/shared/components/overlay/variations/float-overlay.d.ts +1 -1
  192. package/lib/typescript/shared/components/overlay/variations/float-overlay.d.ts.map +1 -1
  193. package/lib/typescript/shared/components/overlay/variations/overlay-host.d.ts +1 -1
  194. package/lib/typescript/shared/components/overlay/variations/overlay-host.d.ts.map +1 -1
  195. package/lib/typescript/shared/components/scene-view.d.ts +1 -1
  196. package/lib/typescript/shared/components/scene-view.d.ts.map +1 -1
  197. package/lib/typescript/shared/components/screen-container/index.d.ts +1 -1
  198. package/lib/typescript/shared/components/screen-container/index.d.ts.map +1 -1
  199. package/lib/typescript/shared/components/screen-container/layers/backdrop.d.ts +1 -1
  200. package/lib/typescript/shared/components/screen-container/layers/backdrop.d.ts.map +1 -1
  201. package/lib/typescript/shared/components/screen-container/layers/content.d.ts +1 -1
  202. package/lib/typescript/shared/components/screen-container/layers/content.d.ts.map +1 -1
  203. package/lib/typescript/shared/components/screen-container/layers/maybe-masked-navigation-container.d.ts +1 -1
  204. package/lib/typescript/shared/components/screen-container/layers/maybe-masked-navigation-container.d.ts.map +1 -1
  205. package/lib/typescript/shared/components/screen-container/layers/surface-container.d.ts +1 -1
  206. package/lib/typescript/shared/components/screen-container/layers/surface-container.d.ts.map +1 -1
  207. package/lib/typescript/shared/hooks/navigation/use-stack.d.ts +1 -1
  208. package/lib/typescript/shared/hooks/navigation/use-stack.d.ts.map +1 -1
  209. package/lib/typescript/shared/index.d.ts +663 -919
  210. package/lib/typescript/shared/index.d.ts.map +1 -1
  211. package/lib/typescript/shared/providers/screen/animation/helpers/pipeline.d.ts.map +1 -1
  212. package/lib/typescript/shared/providers/screen/descriptors/descriptors.provider.d.ts +1 -1
  213. package/lib/typescript/shared/providers/screen/descriptors/descriptors.provider.d.ts.map +1 -1
  214. package/lib/typescript/shared/providers/screen/screen-composer.d.ts +1 -1
  215. package/lib/typescript/shared/providers/screen/screen-composer.d.ts.map +1 -1
  216. package/lib/typescript/shared/providers/screen/styles/components/floating-overlay-layer.d.ts +1 -1
  217. package/lib/typescript/shared/providers/screen/styles/components/floating-overlay-layer.d.ts.map +1 -1
  218. package/lib/typescript/shared/providers/screen/styles/helpers/opening-phase.d.ts +16 -0
  219. package/lib/typescript/shared/providers/screen/styles/helpers/opening-phase.d.ts.map +1 -0
  220. package/lib/typescript/shared/providers/screen/styles/helpers/resolve-slot-styles/index.d.ts +3 -4
  221. package/lib/typescript/shared/providers/screen/styles/helpers/resolve-slot-styles/index.d.ts.map +1 -1
  222. package/lib/typescript/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.d.ts.map +1 -1
  223. package/lib/typescript/shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.d.ts +0 -1
  224. package/lib/typescript/shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.d.ts.map +1 -1
  225. package/lib/typescript/shared/providers/screen/styles/helpers/visibility-gate.d.ts +0 -1
  226. package/lib/typescript/shared/providers/screen/styles/helpers/visibility-gate.d.ts.map +1 -1
  227. package/lib/typescript/shared/providers/screen/styles/hooks/use-interpolated-style-maps.d.ts +0 -5
  228. package/lib/typescript/shared/providers/screen/styles/hooks/use-interpolated-style-maps.d.ts.map +1 -1
  229. package/lib/typescript/shared/providers/screen/styles/hooks/use-maybe-block-visibility.d.ts +2 -3
  230. package/lib/typescript/shared/providers/screen/styles/hooks/use-maybe-block-visibility.d.ts.map +1 -1
  231. package/lib/typescript/shared/providers/screen/styles/hooks/use-resolved-slot-style-map.d.ts.map +1 -1
  232. package/lib/typescript/shared/providers/screen/styles/index.d.ts +1 -1
  233. package/lib/typescript/shared/providers/screen/styles/index.d.ts.map +1 -1
  234. package/lib/typescript/shared/providers/screen/styles/slot.provider.d.ts +23 -0
  235. package/lib/typescript/shared/providers/screen/styles/slot.provider.d.ts.map +1 -0
  236. package/lib/typescript/shared/stores/bounds/helpers/link-pairs.helpers.d.ts +6 -1
  237. package/lib/typescript/shared/stores/bounds/helpers/link-pairs.helpers.d.ts.map +1 -1
  238. package/lib/typescript/shared/stores/bounds/types.d.ts +13 -0
  239. package/lib/typescript/shared/stores/bounds/types.d.ts.map +1 -1
  240. package/lib/typescript/shared/utils/bounds/navigation/zoom/build.d.ts.map +1 -1
  241. package/lib/typescript/shared/utils/bounds/navigation/zoom/helpers.d.ts +9 -0
  242. package/lib/typescript/shared/utils/bounds/navigation/zoom/helpers.d.ts.map +1 -1
  243. package/lib/typescript/shared/utils/logger.d.ts +6 -0
  244. package/lib/typescript/shared/utils/logger.d.ts.map +1 -1
  245. package/package.json +1 -1
  246. package/src/shared/components/boundary/components/boundary-target.tsx +12 -12
  247. package/src/shared/components/boundary/create-boundary-component.tsx +59 -155
  248. package/src/shared/components/boundary/hooks/use-boundary-measurement.ts +127 -0
  249. package/src/shared/components/boundary/hooks/use-boundary-presence.ts +7 -5
  250. package/src/shared/components/boundary/hooks/use-initial-destination-measurement.ts +27 -11
  251. package/src/shared/components/boundary/hooks/use-initial-source-measurement.ts +5 -5
  252. package/src/shared/components/boundary/hooks/use-measurer.ts +11 -14
  253. package/src/shared/components/boundary/hooks/use-refresh-boundary.ts +5 -5
  254. package/src/shared/components/boundary/index.tsx +2 -2
  255. package/src/shared/components/boundary/portal/components/portal.tsx +3 -3
  256. package/src/shared/components/boundary/portal/resolve-portal.ts +40 -0
  257. package/src/shared/components/boundary/providers/{boundary-owner.provider.tsx → boundary-root.provider.tsx} +27 -32
  258. package/src/shared/components/boundary/utils/destination-signals.ts +53 -2
  259. package/src/shared/components/create-transition-aware-component.tsx +3 -25
  260. package/src/shared/components/overlay/variations/float-overlay.tsx +3 -3
  261. package/src/shared/components/screen-container/layers/backdrop.tsx +4 -17
  262. package/src/shared/components/screen-container/layers/content.tsx +4 -16
  263. package/src/shared/components/screen-container/layers/maybe-masked-navigation-container.tsx +8 -18
  264. package/src/shared/components/screen-container/layers/surface-container.tsx +4 -17
  265. package/src/shared/providers/screen/animation/helpers/pipeline.ts +250 -68
  266. package/src/shared/providers/screen/screen-composer.tsx +3 -3
  267. package/src/shared/providers/screen/styles/helpers/opening-phase.ts +25 -0
  268. package/src/shared/providers/screen/styles/helpers/resolve-slot-styles/index.ts +8 -10
  269. package/src/shared/providers/screen/styles/helpers/resolve-slot-styles/materialize-slot.ts +0 -1
  270. package/src/shared/providers/screen/styles/helpers/resolve-slot-styles/slot-state.ts +0 -24
  271. package/src/shared/providers/screen/styles/helpers/visibility-gate.ts +0 -12
  272. package/src/shared/providers/screen/styles/hooks/use-interpolated-style-maps.tsx +29 -37
  273. package/src/shared/providers/screen/styles/hooks/use-maybe-block-visibility.tsx +0 -18
  274. package/src/shared/providers/screen/styles/hooks/use-resolved-slot-style-map.tsx +17 -4
  275. package/src/shared/providers/screen/styles/index.tsx +8 -4
  276. package/src/shared/providers/screen/styles/slot.provider.tsx +111 -0
  277. package/src/shared/stores/bounds/helpers/link-pairs.helpers.ts +17 -0
  278. package/src/shared/stores/bounds/types.ts +14 -0
  279. package/src/shared/utils/bounds/navigation/zoom/build.ts +9 -1
  280. package/src/shared/utils/bounds/navigation/zoom/helpers.ts +96 -0
  281. package/src/shared/utils/logger.ts +12 -0
  282. package/lib/commonjs/shared/components/boundary/providers/boundary-owner.provider.js.map +0 -1
  283. package/lib/commonjs/shared/providers/screen/styles/helpers/preserve-animated-props-only.js +0 -26
  284. package/lib/commonjs/shared/providers/screen/styles/helpers/preserve-animated-props-only.js.map +0 -1
  285. package/lib/commonjs/shared/providers/screen/styles/styles.provider.js +0 -61
  286. package/lib/commonjs/shared/providers/screen/styles/styles.provider.js.map +0 -1
  287. package/lib/module/shared/components/boundary/providers/boundary-owner.provider.js.map +0 -1
  288. package/lib/module/shared/providers/screen/styles/helpers/preserve-animated-props-only.js +0 -21
  289. package/lib/module/shared/providers/screen/styles/helpers/preserve-animated-props-only.js.map +0 -1
  290. package/lib/module/shared/providers/screen/styles/styles.provider.js +0 -53
  291. package/lib/module/shared/providers/screen/styles/styles.provider.js.map +0 -1
  292. package/lib/typescript/shared/components/boundary/providers/boundary-owner.provider.d.ts.map +0 -1
  293. package/lib/typescript/shared/providers/screen/styles/helpers/preserve-animated-props-only.d.ts +0 -3
  294. package/lib/typescript/shared/providers/screen/styles/helpers/preserve-animated-props-only.d.ts.map +0 -1
  295. package/lib/typescript/shared/providers/screen/styles/styles.provider.d.ts +0 -14
  296. package/lib/typescript/shared/providers/screen/styles/styles.provider.d.ts.map +0 -1
  297. package/src/shared/providers/screen/styles/helpers/preserve-animated-props-only.ts +0 -22
  298. package/src/shared/providers/screen/styles/styles.provider.tsx +0 -60
@@ -1,17 +1,15 @@
1
1
  import type { View } from "react-native";
2
2
  import { type AnimatedRef, type StyleProps } from "react-native-reanimated";
3
- import type { BoundsPortalAttachTarget } from "../../../stores/bounds/types";
3
+ import type { BoundsPortalAttachTarget, BoundTag } from "../../../stores/bounds/types";
4
4
  import type { MeasureBoundary } from "../types";
5
5
  interface UseMeasurerParams {
6
6
  enabled: boolean;
7
- entryTag: string;
8
- linkId: string;
9
- group?: string;
7
+ boundTag: BoundTag;
10
8
  currentScreenKey: string;
11
9
  preparedStyles: StyleProps;
12
10
  measuredAnimatedRef: AnimatedRef<View>;
13
11
  portalHost?: BoundsPortalAttachTarget;
14
12
  }
15
- export declare const useMeasurer: ({ enabled, entryTag, linkId, group, currentScreenKey, preparedStyles, measuredAnimatedRef, portalHost, }: UseMeasurerParams) => MeasureBoundary;
13
+ export declare const useMeasurer: ({ enabled, boundTag, currentScreenKey, preparedStyles, measuredAnimatedRef, portalHost, }: UseMeasurerParams) => MeasureBoundary;
16
14
  export {};
17
15
  //# sourceMappingURL=use-measurer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"use-measurer.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/boundary/hooks/use-measurer.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAEzC,OAAO,EACN,KAAK,WAAW,EAEhB,KAAK,UAAU,EACf,MAAM,yBAAyB,CAAC;AAGjC,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AAI7E,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAQhD,UAAU,iBAAiB;IAC1B,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,UAAU,CAAC;IAC3B,mBAAmB,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;IACvC,UAAU,CAAC,EAAE,wBAAwB,CAAC;CACtC;AAED,eAAO,MAAM,WAAW,GAAI,0GASzB,iBAAiB,KAAG,eAyFtB,CAAC"}
1
+ {"version":3,"file":"use-measurer.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/boundary/hooks/use-measurer.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAEzC,OAAO,EACN,KAAK,WAAW,EAEhB,KAAK,UAAU,EACf,MAAM,yBAAyB,CAAC;AAGjC,OAAO,KAAK,EACX,wBAAwB,EACxB,QAAQ,EACR,MAAM,8BAA8B,CAAC;AAItC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAQhD,UAAU,iBAAiB;IAC1B,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,QAAQ,CAAC;IACnB,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,UAAU,CAAC;IAC3B,mBAAmB,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;IACvC,UAAU,CAAC,EAAE,wBAAwB,CAAC;CACtC;AAED,eAAO,MAAM,WAAW,GAAI,2FAOzB,iBAAiB,KAAG,eAuFtB,CAAC"}
@@ -1,10 +1,10 @@
1
+ import type { BoundTag } from "../../../stores/bounds/types";
1
2
  import type { MeasureBoundary } from "../types";
2
3
  interface UseRefreshBoundaryParams {
3
4
  enabled: boolean;
4
- linkId: string;
5
- group?: string;
5
+ boundTag: BoundTag;
6
6
  measureBoundary: MeasureBoundary;
7
7
  }
8
- export declare const useRefreshBoundary: ({ enabled, linkId, group, measureBoundary, }: UseRefreshBoundaryParams) => void;
8
+ export declare const useRefreshBoundary: ({ enabled, boundTag, measureBoundary, }: UseRefreshBoundaryParams) => void;
9
9
  export {};
10
10
  //# sourceMappingURL=use-refresh-boundary.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"use-refresh-boundary.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/boundary/hooks/use-refresh-boundary.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAGhD,UAAU,wBAAwB;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,eAAe,EAAE,eAAe,CAAC;CACjC;AAED,eAAO,MAAM,kBAAkB,GAAI,8CAKhC,wBAAwB,SAkE1B,CAAC"}
1
+ {"version":3,"file":"use-refresh-boundary.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/boundary/hooks/use-refresh-boundary.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAC7D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAGhD,UAAU,wBAAwB;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,QAAQ,CAAC;IACnB,eAAe,EAAE,eAAe,CAAC;CACjC;AAED,eAAO,MAAM,kBAAkB,GAAI,yCAIhC,wBAAwB,SAmE1B,CAAC"}
@@ -18,7 +18,7 @@ export { createBoundaryComponent };
18
18
  * Use:
19
19
  * - `Boundary.View` for passive/shared elements.
20
20
  * - `Boundary.Trigger` for tappable elements that start navigation.
21
- * - `Boundary.Target` to measure a nested descendant instead of the owner.
21
+ * - `Boundary.Target` to measure a nested descendant instead of the root.
22
22
  * - `Boundary.Host` to make nested portal placement explicit.
23
23
  */
24
24
  export declare const Boundary: {
@@ -29,220 +29,16 @@ export declare const Boundary: {
29
29
  /**
30
30
  * Pressable boundary wrapper with press-priority source capture.
31
31
  */
32
- Trigger: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("react-native").PressableProps & import("react").RefAttributes<View>, "id"> & import("./types").BoundaryOwnProps & import("react").RefAttributes<View | import("react").Component<import("react-native").PressableProps & import("react").RefAttributes<View>, any, any>>>>;
32
+ Trigger: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("react-native").PressableProps & import("react").RefAttributes<View>, "id"> & import("./types").BoundaryOwnProps & import("react").RefAttributes<never>>>;
33
33
  /**
34
- * Optional nested measurement override inside a boundary owner.
34
+ * Optional nested measurement override inside a boundary root.
35
35
  */
36
- Target: import("react").MemoExoticComponent<(props: {
37
- id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
38
- children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
39
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
40
- collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
41
- hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
42
- needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
43
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
44
- removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
45
- testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
46
- nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
47
- collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
48
- onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
49
- onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
50
- renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
51
- focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
52
- tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
53
- shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
54
- isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
55
- hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
56
- tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
57
- tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
58
- tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
59
- tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
60
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
61
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
62
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
63
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
64
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
65
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
66
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
67
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
68
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
69
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
70
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
71
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
72
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
73
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
74
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
75
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
76
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
77
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
78
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
79
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
80
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
81
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
82
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
83
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
84
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
85
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
86
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
87
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
88
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
89
- accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
90
- accessibilityActions?: readonly Readonly<{
91
- name: import("react-native").AccessibilityActionName | string;
92
- label?: string | undefined;
93
- }>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
94
- name: import("react-native").AccessibilityActionName | string;
95
- label?: string | undefined;
96
- }>[] | undefined> | undefined;
97
- accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
98
- 'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
99
- accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
100
- accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
101
- 'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
102
- 'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
103
- 'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
104
- 'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
105
- 'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
106
- accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
107
- accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
108
- 'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
109
- 'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
110
- 'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
111
- 'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
112
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
113
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
114
- 'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
115
- 'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
116
- role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
117
- accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
118
- 'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
119
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
120
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
121
- screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
122
- accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
123
- accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
124
- onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
125
- onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
126
- onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
127
- accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
128
- accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
129
- accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
130
- accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
131
- accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
132
- } & {
133
- style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
134
- } & {
135
- layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
136
- entering?: import("react-native-reanimated").EntryOrExitLayoutType;
137
- exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
138
- } & {
139
- animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
140
- id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
141
- children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
142
- pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
143
- collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
144
- hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
145
- needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
146
- onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
147
- removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
148
- testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
149
- nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
150
- collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
151
- onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
152
- onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
153
- renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
154
- focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
155
- tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
156
- shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
157
- isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
158
- hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
159
- tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
160
- tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
161
- tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
162
- tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
163
- onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
164
- onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
165
- onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
166
- onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
167
- onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
168
- onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
169
- onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
170
- onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
171
- onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
172
- onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
173
- onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
174
- onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
175
- onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
176
- onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
177
- onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
178
- onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
179
- onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
180
- onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
181
- onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
182
- onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
183
- onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
184
- onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
185
- onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
186
- onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
187
- onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
188
- onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
189
- onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
190
- onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
191
- onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
192
- accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
193
- accessibilityActions?: readonly Readonly<{
194
- name: import("react-native").AccessibilityActionName | string;
195
- label?: string | undefined;
196
- }>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
197
- name: import("react-native").AccessibilityActionName | string;
198
- label?: string | undefined;
199
- }>[] | undefined> | undefined;
200
- accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
201
- 'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
202
- accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
203
- accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
204
- 'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
205
- 'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
206
- 'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
207
- 'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
208
- 'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
209
- accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
210
- accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
211
- 'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
212
- 'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
213
- 'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
214
- 'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
215
- onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
216
- importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
217
- 'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
218
- 'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
219
- role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
220
- accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
221
- 'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
222
- accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
223
- 'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
224
- screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
225
- accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
226
- accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
227
- onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
228
- onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
229
- onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
230
- accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
231
- accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
232
- accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
233
- accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
234
- accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
235
- } & {
236
- style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
237
- } & {
238
- layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
239
- entering?: import("react-native-reanimated").EntryOrExitLayoutType;
240
- exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
241
- }> | import("react-native-reanimated").CSSStyle<import("react-native").ViewProps>> | undefined;
242
- }) => import("react/jsx-runtime").JSX.Element>;
36
+ Target: import("react").MemoExoticComponent<(props: Omit<import("react-native-reanimated").AnimatedProps<Readonly<import("react-native").ViewProps>>, "ref"> & {
37
+ ref?: (import("react").Ref<View> | import("react-native-reanimated").AnimatedRef | import("react-native-reanimated").AnimatedRef<typeof View>) | undefined;
38
+ }) => import("react").JSX.Element>;
243
39
  /**
244
40
  * Explicit portal host for scrollable or otherwise clipped coordinate spaces.
245
41
  */
246
- Host: import("react").MemoExoticComponent<(props: import("./portal/components/host").PublicHostProps) => import("react/jsx-runtime").JSX.Element>;
42
+ Host: import("react").MemoExoticComponent<(props: import("./portal/components/host").PublicHostProps) => import("react").JSX.Element>;
247
43
  };
248
44
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/shared/components/boundary/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,IAAI,EAAE,MAAM,cAAc,CAAC;AAE/C,OAAO,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AAGtE,YAAY,EACX,cAAc,EACd,0BAA0B,EAC1B,qBAAqB,GACrB,MAAM,SAAS,CAAC;AACjB,OAAO,EAAE,uBAAuB,EAAE,CAAC;AAWnC;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAM,QAAQ;IACpB;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;OAEG;;CAEH,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/shared/components/boundary/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,IAAI,EAAE,MAAM,cAAc,CAAC;AAE/C,OAAO,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AAGtE,YAAY,EACX,cAAc,EACd,0BAA0B,EAC1B,qBAAqB,GACrB,MAAM,SAAS,CAAC;AACjB,OAAO,EAAE,uBAAuB,EAAE,CAAC;AAWnC;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAM,QAAQ;IACpB;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;;;IAEH;;OAEG;;CAEH,CAAC"}
@@ -2,6 +2,6 @@ import { type StyleProp, type ViewStyle } from "react-native";
2
2
  export type PublicHostProps = {
3
3
  style?: StyleProp<ViewStyle>;
4
4
  };
5
- export declare const Host: import("react").MemoExoticComponent<(props: PublicHostProps) => import("react/jsx-runtime").JSX.Element>;
6
- export declare const ScreenFallbackHost: import("react").MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
5
+ export declare const Host: import("react").MemoExoticComponent<(props: PublicHostProps) => import("react").JSX.Element>;
6
+ export declare const ScreenFallbackHost: import("react").MemoExoticComponent<() => import("react").JSX.Element>;
7
7
  //# sourceMappingURL=host.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"host.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/portal/components/host.tsx"],"names":[],"mappings":"AACA,OAAO,EACN,KAAK,SAAS,EAId,KAAK,SAAS,EACd,MAAM,cAAc,CAAC;AAUtB,MAAM,MAAM,eAAe,GAAG;IAC7B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC7B,CAAC;AAuEF,eAAO,MAAM,IAAI,8CAA6B,eAAe,6CAE3D,CAAC;AAEH,eAAO,MAAM,kBAAkB,oFAE7B,CAAC"}
1
+ {"version":3,"file":"host.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/portal/components/host.tsx"],"names":[],"mappings":"AACA,OAAO,EACN,KAAK,SAAS,EAId,KAAK,SAAS,EACd,MAAM,cAAc,CAAC;AAUtB,MAAM,MAAM,eAAe,GAAG;IAC7B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC7B,CAAC;AAuEF,eAAO,MAAM,IAAI,8CAA6B,eAAe,iCAE3D,CAAC;AAEH,eAAO,MAAM,kBAAkB,wEAE7B,CAAC"}
@@ -4,6 +4,6 @@ type PortalBoundaryHostProps = {
4
4
  host: ActivePortalBoundaryHost;
5
5
  style?: StyleProp<ViewStyle>;
6
6
  };
7
- export declare const PortalBoundaryHost: import("react").MemoExoticComponent<({ host, style, }: PortalBoundaryHostProps) => import("react/jsx-runtime").JSX.Element | null>;
7
+ export declare const PortalBoundaryHost: import("react").MemoExoticComponent<({ host, style, }: PortalBoundaryHostProps) => import("react").JSX.Element | null>;
8
8
  export {};
9
9
  //# sourceMappingURL=portal-boundary-host.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"portal-boundary-host.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/portal/components/portal-boundary-host.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAQzD,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AAYrF,KAAK,uBAAuB,GAAG;IAC9B,IAAI,EAAE,wBAAwB,CAAC;IAC/B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC7B,CAAC;AAEF,eAAO,MAAM,kBAAkB,yDAG5B,uBAAuB,oDAmExB,CAAC"}
1
+ {"version":3,"file":"portal-boundary-host.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/portal/components/portal-boundary-host.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAQzD,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AAYrF,KAAK,uBAAuB,GAAG;IAC9B,IAAI,EAAE,wBAAwB,CAAC;IAC/B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC7B,CAAC;AAEF,eAAO,MAAM,kBAAkB,yDAG5B,uBAAuB,wCAmExB,CAAC"}
@@ -1,4 +1,4 @@
1
1
  export declare const PortalProvider: import("react").MemoExoticComponent<({ children, }: {
2
2
  children: React.ReactNode;
3
- }) => string | number | bigint | boolean | Iterable<import("react").ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined>;
3
+ }) => string | number | bigint | boolean | Iterable<import("react").ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | null | undefined> | import("react").JSX.Element | null | undefined>;
4
4
  //# sourceMappingURL=portal-provider.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"portal-provider.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/portal/components/portal-provider.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,cAAc,sDAExB;IACF,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC1B,6WAMC,CAAC"}
1
+ {"version":3,"file":"portal-provider.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/portal/components/portal-provider.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,cAAc,sDAExB;IACF,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC1B,iWAMC,CAAC"}
@@ -14,6 +14,6 @@ interface PortalProps {
14
14
  */
15
15
  placeholderRef?: AnimatedRef<View>;
16
16
  }
17
- export declare const Portal: import("react").MemoExoticComponent<({ id, children, mode, placeholderRef, }: PortalProps) => string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined>;
17
+ export declare const Portal: import("react").MemoExoticComponent<({ id, children, mode, placeholderRef, }: PortalProps) => string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | import("react").JSX.Element | null | undefined>;
18
18
  export {};
19
19
  //# sourceMappingURL=portal.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"portal.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/portal/components/portal.tsx"],"names":[],"mappings":"AAAA,OAAO,EAIN,KAAK,SAAS,EAId,MAAM,OAAO,CAAC;AACf,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACzC,OAAiB,EAChB,KAAK,WAAW,EAMhB,MAAM,yBAAyB,CAAC;AAQjC,OAAO,KAAK,EAAE,cAAc,EAA8B,MAAM,aAAa,CAAC;AAiC9E,UAAU,WAAW;IACpB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,SAAS,CAAC;IACpB,IAAI,CAAC,EAAE,cAAc,CAAC;IACtB;;;;;OAKG;IACH,cAAc,CAAC,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;CACnC;AAED,eAAO,MAAM,MAAM,gFAKhB,WAAW,6UA8MZ,CAAC"}
1
+ {"version":3,"file":"portal.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/portal/components/portal.tsx"],"names":[],"mappings":"AAAA,OAAO,EAIN,KAAK,SAAS,EAId,MAAM,OAAO,CAAC;AACf,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACzC,OAAiB,EAChB,KAAK,WAAW,EAMhB,MAAM,yBAAyB,CAAC;AAQjC,OAAO,KAAK,EAAE,cAAc,EAA8B,MAAM,aAAa,CAAC;AAiC9E,UAAU,WAAW;IACpB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,SAAS,CAAC;IACpB,IAAI,CAAC,EAAE,cAAc,CAAC;IACtB;;;;;OAKG;IACH,cAAc,CAAC,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;CACnC;AAED,eAAO,MAAM,MAAM,gFAKhB,WAAW,iUA8MZ,CAAC"}
@@ -0,0 +1,14 @@
1
+ import type { BoundsPortalAttachTarget } from "../../../stores/bounds/types";
2
+ import type { BoundaryPortal } from "../types";
3
+ /**
4
+ * Resolves the `portal` prop against teleport availability. When
5
+ * `react-native-teleport` is missing, portal boundaries degrade to inline
6
+ * rendering and we warn once for the whole app.
7
+ */
8
+ export declare const resolveBoundaryPortal: (portal?: BoundaryPortal) => BoundaryPortal | undefined;
9
+ /**
10
+ * Resolves which screen host a portal'd boundary attaches to. Object form may
11
+ * pin an explicit `attachTo`; bare `true` defaults to the current screen.
12
+ */
13
+ export declare const resolvePortalHost: (portal?: BoundaryPortal) => BoundsPortalAttachTarget | undefined;
14
+ //# sourceMappingURL=resolve-portal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resolve-portal.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/boundary/portal/resolve-portal.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,8BAA8B,CAAC;AAE7E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAG/C;;;;GAIG;AACH,eAAO,MAAM,qBAAqB,GACjC,SAAS,cAAc,KACrB,cAAc,GAAG,SAanB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,iBAAiB,GAC7B,SAAS,cAAc,KACrB,wBAAwB,GAAG,SAM7B,CAAC"}
@@ -3,42 +3,40 @@ import { type ReactNode } from "react";
3
3
  import type { View } from "react-native";
4
4
  import type Animated from "react-native-reanimated";
5
5
  import type { AnimatedRef, StyleProps } from "react-native-reanimated";
6
+ import type { BoundTag } from "../../../stores/bounds/types";
6
7
  import type { BoundaryPortal } from "../types";
7
8
  type BoundaryAssociatedStyle = React.ComponentProps<typeof Animated.View>["style"];
8
- interface BoundaryOwnerContextValue {
9
- ownerRef: AnimatedRef<View>;
9
+ interface BoundaryRootContextValue {
10
10
  registerTargetRef: (targetRef: AnimatedRef<View>, preparedStyles: StyleProps, measurementRef?: AnimatedRef<View>) => void;
11
11
  unregisterTargetRef: (targetRef: AnimatedRef<View>) => void;
12
12
  activeTargetRef: AnimatedRef<View> | null;
13
13
  associatedTargetStyles?: BoundaryAssociatedStyle;
14
- entryTag: string;
14
+ boundTag: BoundTag;
15
15
  portal?: BoundaryPortal;
16
16
  }
17
- export declare const TARGET_OUTSIDE_OWNER_WARNING = "Boundary.Target must be rendered inside a Boundary owner (Boundary.View, Boundary.Trigger, or a component created by createBoundaryComponent).";
18
- interface BoundaryOwnerProps {
19
- value: BoundaryOwnerContextValue;
17
+ export declare const TARGET_OUTSIDE_ROOT_WARNING = "Boundary.Target must be rendered inside a Boundary root (Boundary.View, Boundary.Trigger, or a component created by createBoundaryComponent).";
18
+ interface BoundaryRootProps {
19
+ value: BoundaryRootContextValue;
20
20
  children: ReactNode;
21
21
  }
22
- export declare const BoundaryOwnerProvider: React.FC<BoundaryOwnerProps>, useBoundaryOwnerContext: () => BoundaryOwnerContextValue | null;
23
- export declare const useBoundaryOwner: (params: {
24
- ownerRef: AnimatedRef<View>;
22
+ export declare const BoundaryRootProvider: React.FC<BoundaryRootProps>, useBoundaryRootContext: () => BoundaryRootContextValue | null;
23
+ export declare const useBoundaryRootState: (params: {
25
24
  associatedTargetStyles?: BoundaryAssociatedStyle;
26
- entryTag: string;
25
+ boundTag: BoundTag;
27
26
  portal?: BoundaryPortal;
28
27
  }) => {
28
+ ref: AnimatedRef<View>;
29
29
  contextValue: {
30
- ownerRef: AnimatedRef<View>;
31
30
  registerTargetRef: (targetRef: AnimatedRef<View>, preparedStyles: StyleProps, measurementRef?: AnimatedRef<View>) => void;
32
31
  unregisterTargetRef: (targetRef: AnimatedRef<View>) => void;
33
32
  activeTargetRef: AnimatedRef<View> | null;
34
33
  associatedTargetStyles: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
35
- entryTag: string;
34
+ boundTag: BoundTag;
36
35
  portal: BoundaryPortal | undefined;
37
36
  };
38
37
  hasActiveTarget: boolean;
39
38
  measuredRef: AnimatedRef<View>;
40
39
  targetPreparedStyles: StyleProps | undefined;
41
- portal: BoundaryPortal | undefined;
42
40
  };
43
41
  export {};
44
- //# sourceMappingURL=boundary-owner.provider.d.ts.map
42
+ //# sourceMappingURL=boundary-root.provider.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"boundary-root.provider.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/boundary/providers/boundary-root.provider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,KAAK,SAAS,EAAkC,MAAM,OAAO,CAAC;AACvE,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,KAAK,QAAQ,MAAM,yBAAyB,CAAC;AACpD,OAAO,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAEvE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAG7D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAE/C,KAAK,uBAAuB,GAAG,KAAK,CAAC,cAAc,CAClD,OAAO,QAAQ,CAAC,IAAI,CACpB,CAAC,OAAO,CAAC,CAAC;AAEX,UAAU,wBAAwB;IACjC,iBAAiB,EAAE,CAClB,SAAS,EAAE,WAAW,CAAC,IAAI,CAAC,EAC5B,cAAc,EAAE,UAAU,EAC1B,cAAc,CAAC,EAAE,WAAW,CAAC,IAAI,CAAC,KAC9B,IAAI,CAAC;IACV,mBAAmB,EAAE,CAAC,SAAS,EAAE,WAAW,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC;IAC5D,eAAe,EAAE,WAAW,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAC1C,sBAAsB,CAAC,EAAE,uBAAuB,CAAC;IACjD,QAAQ,EAAE,QAAQ,CAAC;IACnB,MAAM,CAAC,EAAE,cAAc,CAAC;CACxB;AAaD,eAAO,MAAM,2BAA2B,kJACwG,CAAC;AAEjJ,UAAU,iBAAiB;IAC1B,KAAK,EAAE,wBAAwB,CAAC;IAChC,QAAQ,EAAE,SAAS,CAAC;CACpB;AAED,eAAO,MAAQ,oBAAoB,+BAAE,sBAAsB,uCAGK,CAAC;AAEjE,eAAO,MAAM,oBAAoB,GAAI,QAAQ;IAC5C,sBAAsB,CAAC,EAAE,uBAAuB,CAAC;IACjD,QAAQ,EAAE,QAAQ,CAAC;IACnB,MAAM,CAAC,EAAE,cAAc,CAAC;CACxB;;;uCASa,WAAW,CAAC,IAAI,CAAC,kBACZ,UAAU,mBACT,WAAW,CAAC,IAAI,CAAC;yCA0BgB,WAAW,CAAC,IAAI,CAAC;;;;;;;;;CA8BrE,CAAC"}
@@ -4,6 +4,7 @@ export declare const getInitialDestinationMeasurePairKey: (params: {
4
4
  destinationPairKey?: ScreenPairKey;
5
5
  ancestorDestinationPairKey?: ScreenPairKey;
6
6
  linkId: string;
7
+ group?: string;
7
8
  linkState?: LinkPairsState;
8
9
  }) => ScreenPairKey | null;
9
10
  //# sourceMappingURL=destination-signals.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"destination-signals.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/boundary/utils/destination-signals.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,cAAc,EACd,aAAa,EACb,MAAM,8BAA8B,CAAC;AAEtC,eAAO,MAAM,mCAAmC,GAAI,QAAQ;IAC3D,OAAO,EAAE,OAAO,CAAC;IACjB,kBAAkB,CAAC,EAAE,aAAa,CAAC;IACnC,0BAA0B,CAAC,EAAE,aAAa,CAAC;IAC3C,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,cAAc,CAAC;CAC3B,KAAG,aAAa,GAAG,IAmBnB,CAAC"}
1
+ {"version":3,"file":"destination-signals.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/boundary/utils/destination-signals.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EACX,cAAc,EACd,aAAa,EACb,MAAM,8BAA8B,CAAC;AAsBtC,eAAO,MAAM,mCAAmC,GAAI,QAAQ;IAC3D,OAAO,EAAE,OAAO,CAAC;IACjB,kBAAkB,CAAC,EAAE,aAAa,CAAC;IACnC,0BAA0B,CAAC,EAAE,aAAa,CAAC;IAC3C,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,cAAc,CAAC;CAC3B,KAAG,aAAa,GAAG,IA2CnB,CAAC"}
@@ -5,16 +5,15 @@ interface CreateTransitionAwareComponentOptions {
5
5
  isScrollable?: boolean;
6
6
  alreadyAnimated?: boolean;
7
7
  }
8
- export declare function createTransitionAwareComponent<P extends object>(Wrapped: ComponentType<P>, options?: CreateTransitionAwareComponentOptions): React.MemoExoticComponent<React.ForwardRefExoticComponent<{ [K in keyof Omit<P, "style" | { [Key in keyof P]-?: Key extends `${string}Style` | "style" ? Key : never; }[keyof P]>]: P[K] | import("react-native-reanimated").SharedValue<P[K]>; } & { [Key_1 in keyof ({ [Key in keyof P]-?: Key extends `${string}Style` | "style" ? Key : never; }[keyof P] extends infer T extends keyof P ? { [P_1 in T]: P[P_1]; } : never)]: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<P[Key_1]>>; } & {
8
+ export declare function createTransitionAwareComponent<P extends object>(Wrapped: ComponentType<P>, options?: CreateTransitionAwareComponentOptions): React.MemoExoticComponent<React.ForwardRefExoticComponent<{ [K in keyof (Exclude<keyof P, "style" | { [Key in keyof P]-?: Key extends `${string}Style` | "style" ? Key : never; }[keyof P]> extends infer T extends keyof P ? { [P_1 in T]: P[P_1]; } : never)]: P[K] | import("react-native-reanimated").SharedValue<P[K]>; } & { [Key_1 in keyof ({ [Key in keyof P]-?: Key extends `${string}Style` | "style" ? Key : never; }[keyof P] extends infer T_1 extends keyof P ? { [P_2 in T_1]: P[P_2]; } : never)]: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<P[Key_1]>>; } & {
9
9
  layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
10
10
  entering?: import("react-native-reanimated").EntryOrExitLayoutType;
11
11
  exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
12
12
  } & {
13
- animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{ [K in keyof Omit<P, "style" | { [Key in keyof P]-?: Key extends `${string}Style` | "style" ? Key : never; }[keyof P]>]: P[K] | import("react-native-reanimated").SharedValue<P[K]>; } & { [Key_1 in keyof ({ [Key in keyof P]-?: Key extends `${string}Style` | "style" ? Key : never; }[keyof P] extends infer T_1 extends keyof P ? { [P_1 in T_1]: P[P_1]; } : never)]: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<P[Key_1]>>; } & {
14
- layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
15
- entering?: import("react-native-reanimated").EntryOrExitLayoutType;
16
- exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
17
- }> | import("react-native-reanimated").CSSStyle<P>> | undefined;
13
+ animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<Exclude<keyof P, "style" | { [Key_2 in keyof Partial<P>]-?: Key_2 extends `${string}Style` | "style" ? Key_2 : never; }[keyof P]> extends infer T_2 extends keyof Partial<P> ? { [P_3 in T_2]: Partial<P>[P_3]; } : never>> | undefined;
14
+ } & {
15
+ sharedTransitionTag?: string;
16
+ sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
18
17
  } & {
19
18
  styleId?: string;
20
19
  sharedBoundTag?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"create-transition-aware-component.d.ts","sourceRoot":"","sources":["../../../../src/shared/components/create-transition-aware-component.tsx"],"names":[],"mappings":"AAAA,wHAAwH;AACxH,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,KAAK,aAAa,EAAoB,MAAM,OAAO,CAAC;AAmB7D,UAAU,qCAAqC;IAC9C,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,eAAe,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,wBAAgB,8BAA8B,CAAC,CAAC,SAAS,MAAM,EAC9D,OAAO,EAAE,aAAa,CAAC,CAAC,CAAC,EACzB,OAAO,GAAE,qCAA0C;;;;;;;;;;;;;;sEAqKnD"}
1
+ {"version":3,"file":"create-transition-aware-component.d.ts","sourceRoot":"","sources":["../../../../src/shared/components/create-transition-aware-component.tsx"],"names":[],"mappings":"AAAA,wHAAwH;AACxH,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,KAAK,aAAa,EAAoB,MAAM,OAAO,CAAC;AAgB7D,UAAU,qCAAqC;IAC9C,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,eAAe,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,wBAAgB,8BAA8B,CAAC,CAAC,SAAS,MAAM,EAC9D,OAAO,EAAE,aAAa,CAAC,CAAC,CAAC,EACzB,OAAO,GAAE,qCAA0C;;;;;;;;;;;;;sEAkJnD"}
@@ -2,5 +2,5 @@ import { type StyleProp, type ViewStyle } from "react-native";
2
2
  export default function MaskedView({ children, style: userStyles, }: {
3
3
  children: React.ReactNode;
4
4
  style?: StyleProp<ViewStyle>;
5
- }): string | number | bigint | boolean | Iterable<import("react").ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined;
5
+ }): string | number | bigint | boolean | Iterable<import("react").ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | null | undefined> | import("react").JSX.Element | null | undefined;
6
6
  //# sourceMappingURL=masked-view.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"masked-view.d.ts","sourceRoot":"","sources":["../../../../src/shared/components/masked-view.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAoB,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAchF,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAClC,QAAQ,EACR,KAAK,EAAE,UAAe,GACtB,EAAE;IACF,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC7B,2WAqBA"}
1
+ {"version":3,"file":"masked-view.d.ts","sourceRoot":"","sources":["../../../../src/shared/components/masked-view.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAoB,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAchF,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAClC,QAAQ,EACR,KAAK,EAAE,UAAe,GACtB,EAAE;IACF,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC7B,+VAqBA"}
@@ -2,5 +2,5 @@
2
2
  * Float overlay component that renders above all screens.
3
3
  * Gets routes and descriptors from stack context.
4
4
  */
5
- export declare function FloatOverlay(): import("react/jsx-runtime").JSX.Element | null;
5
+ export declare function FloatOverlay(): import("react").JSX.Element | null;
6
6
  //# sourceMappingURL=float-overlay.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"float-overlay.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/overlay/variations/float-overlay.tsx"],"names":[],"mappings":"AAaA;;;GAGG;AACH,wBAAgB,YAAY,mDA8D3B"}
1
+ {"version":3,"file":"float-overlay.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/overlay/variations/float-overlay.tsx"],"names":[],"mappings":"AAaA;;;GAGG;AACH,wBAAgB,YAAY,uCA8D3B"}
@@ -5,6 +5,6 @@ type OverlayHostProps = {
5
5
  scene: StackScene;
6
6
  overlayScreenState: OverlayScreenState<BaseDescriptor["navigation"]>;
7
7
  };
8
- export declare const OverlayHost: import("react").MemoExoticComponent<({ scene, overlayScreenState, }: OverlayHostProps) => import("react/jsx-runtime").JSX.Element | null>;
8
+ export declare const OverlayHost: import("react").MemoExoticComponent<({ scene, overlayScreenState, }: OverlayHostProps) => import("react").JSX.Element | null>;
9
9
  export {};
10
10
  //# sourceMappingURL=overlay-host.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"overlay-host.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/overlay/variations/overlay-host.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qCAAqC,CAAC;AAEtE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uCAAuC,CAAC;AAC5E,OAAO,KAAK,EAEX,kBAAkB,EAClB,MAAM,8BAA8B,CAAC;AAEtC,KAAK,gBAAgB,GAAG;IACvB,KAAK,EAAE,UAAU,CAAC;IAClB,kBAAkB,EAAE,kBAAkB,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC,CAAC;CACrE,CAAC;AAEF,eAAO,MAAM,WAAW,uEAGrB,gBAAgB,oDAsCjB,CAAC"}
1
+ {"version":3,"file":"overlay-host.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/overlay/variations/overlay-host.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qCAAqC,CAAC;AAEtE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uCAAuC,CAAC;AAC5E,OAAO,KAAK,EAEX,kBAAkB,EAClB,MAAM,8BAA8B,CAAC;AAEtC,KAAK,gBAAgB,GAAG;IACvB,KAAK,EAAE,UAAU,CAAC;IAClB,kBAAkB,EAAE,kBAAkB,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC,CAAC;CACrE,CAAC;AAEF,eAAO,MAAM,WAAW,uEAGrB,gBAAgB,wCAsCjB,CAAC"}
@@ -8,6 +8,6 @@ type SceneViewProps = {
8
8
  * Wraps screen render output with navigation context providers
9
9
  * and optional screen overlay.
10
10
  */
11
- export declare const SceneView: React.MemoExoticComponent<({ descriptor, }: SceneViewProps) => import("react/jsx-runtime").JSX.Element>;
11
+ export declare const SceneView: React.MemoExoticComponent<({ descriptor, }: SceneViewProps) => React.JSX.Element>;
12
12
  export {};
13
13
  //# sourceMappingURL=scene-view.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"scene-view.d.ts","sourceRoot":"","sources":["../../../../src/shared/components/scene-view.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAEhE,KAAK,cAAc,GAAG;IACrB,UAAU,EAAE,mBAAmB,CAAC;CAChC,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,SAAS,8CAEnB,cAAc,6CAUf,CAAC"}
1
+ {"version":3,"file":"scene-view.d.ts","sourceRoot":"","sources":["../../../../src/shared/components/scene-view.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAEhE,KAAK,cAAc,GAAG;IACrB,UAAU,EAAE,mBAAmB,CAAC;CAChC,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,SAAS,8CAEnB,cAAc,uBAUf,CAAC"}