react-native-screen-transitions 4.1.0-beta.0 → 4.1.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonjs/adapters/with-screen-transitions/lifecycle/index.js +2 -2
- package/lib/commonjs/adapters/with-screen-transitions/lifecycle/use-native-close-transition-intent.js +4 -4
- package/lib/commonjs/adapters/with-screen-transitions/lifecycle/use-native-close-transition-intent.js.map +1 -1
- package/lib/commonjs/adapters/with-screen-transitions/stack-layout.js +35 -8
- package/lib/commonjs/adapters/with-screen-transitions/stack-layout.js.map +1 -1
- package/lib/commonjs/components/boundary/components/boundary-lifecycle.js +41 -9
- package/lib/commonjs/components/boundary/components/boundary-lifecycle.js.map +1 -1
- package/lib/commonjs/components/boundary/components/boundary-target.js +10 -17
- package/lib/commonjs/components/boundary/components/boundary-target.js.map +1 -1
- package/lib/commonjs/components/boundary/create-boundary-component.js +13 -16
- package/lib/commonjs/components/boundary/create-boundary-component.js.map +1 -1
- package/lib/commonjs/components/boundary/helpers/presentation.js +56 -0
- package/lib/commonjs/components/boundary/helpers/presentation.js.map +1 -0
- package/lib/commonjs/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js +3 -3
- package/lib/commonjs/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js.map +1 -1
- package/lib/commonjs/components/boundary/hooks/lifecycles/use-initial-source-measurement.js +1 -1
- package/lib/commonjs/components/boundary/hooks/lifecycles/use-refresh-boundary.js +2 -2
- package/lib/commonjs/components/boundary/hooks/use-boundary-presentation.js +65 -0
- package/lib/commonjs/components/boundary/hooks/use-boundary-presentation.js.map +1 -0
- package/lib/commonjs/components/boundary/hooks/use-composed-boundary-style.js +43 -0
- package/lib/commonjs/components/boundary/hooks/use-composed-boundary-style.js.map +1 -0
- package/lib/commonjs/components/boundary/hooks/use-measurer.js +1 -1
- package/lib/commonjs/components/boundary/index.js +2 -3
- package/lib/commonjs/components/boundary/index.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/portal-host.js +39 -0
- package/lib/commonjs/components/boundary/portal/components/portal-host.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/components/portal-overlay.js +169 -0
- package/lib/commonjs/components/boundary/portal/components/portal-overlay.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/components/portal.js +88 -0
- package/lib/commonjs/components/boundary/portal/components/portal.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/helpers/offset-style.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/hooks/use-active-portal-boundary-host.js +35 -0
- package/lib/commonjs/components/boundary/portal/hooks/use-active-portal-boundary-host.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/hooks/use-host-measurement.js +68 -0
- package/lib/commonjs/components/boundary/portal/hooks/use-host-measurement.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/hooks/use-placeholder-styles.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/hooks/use-portal-destination.js +58 -0
- package/lib/commonjs/components/boundary/portal/hooks/use-portal-destination.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/index.js +0 -7
- package/lib/commonjs/components/boundary/portal/index.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/stores/host-registry.store.js +87 -0
- package/lib/commonjs/components/boundary/portal/stores/host-registry.store.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/stores/portal-boundary-host.store.js +60 -0
- package/lib/commonjs/components/boundary/portal/stores/portal-boundary-host.store.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/utils/naming.js +8 -1
- package/lib/commonjs/components/boundary/portal/utils/naming.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/utils/resolve-portal.js +7 -27
- package/lib/commonjs/components/boundary/portal/utils/resolve-portal.js.map +1 -1
- package/lib/commonjs/components/boundary/providers/boundary-root.provider.js +15 -9
- package/lib/commonjs/components/boundary/providers/boundary-root.provider.js.map +1 -1
- package/lib/commonjs/components/create-transition-aware-component.js +3 -3
- package/lib/commonjs/components/create-transition-aware-component.js.map +1 -1
- package/lib/commonjs/components/overlay/helpers/create-overlay-interpolator-frame.js +1 -1
- package/lib/commonjs/components/overlay/helpers/run-overlay-slot-interpolator.js +3 -3
- package/lib/commonjs/components/overlay/index.js +26 -5
- package/lib/commonjs/components/overlay/index.js.map +1 -1
- package/lib/commonjs/components/overlay/variations/overlay-host.js +5 -5
- package/lib/commonjs/components/overlay/variations/overlay-host.js.map +1 -1
- package/lib/commonjs/components/screen-layers/helpers/find-collapse-target.js +64 -0
- package/lib/commonjs/components/screen-layers/helpers/find-collapse-target.js.map +1 -0
- package/lib/commonjs/components/screen-layers/helpers/layer-component.js +39 -0
- package/lib/commonjs/components/screen-layers/helpers/layer-component.js.map +1 -0
- package/lib/commonjs/components/screen-layers/helpers/uses-layer-render-props.js +10 -0
- package/lib/commonjs/components/screen-layers/helpers/uses-layer-render-props.js.map +1 -0
- package/lib/commonjs/components/screen-layers/hooks/use-backdrop-pointer-events.js +39 -0
- package/lib/commonjs/components/screen-layers/hooks/use-backdrop-pointer-events.js.map +1 -0
- package/lib/commonjs/components/screen-layers/hooks/use-content-layout.js +66 -0
- package/lib/commonjs/components/screen-layers/hooks/use-content-layout.js.map +1 -0
- package/lib/commonjs/components/screen-layers/index.js +41 -0
- package/lib/commonjs/components/screen-layers/index.js.map +1 -0
- package/lib/commonjs/components/screen-layers/layers/backdrop.js +100 -0
- package/lib/commonjs/components/screen-layers/layers/backdrop.js.map +1 -0
- package/lib/commonjs/components/screen-layers/layers/clip.js +117 -0
- package/lib/commonjs/components/screen-layers/layers/clip.js.map +1 -0
- package/lib/commonjs/components/screen-layers/layers/content.js +61 -0
- package/lib/commonjs/components/screen-layers/layers/content.js.map +1 -0
- package/lib/commonjs/components/screen-layers/layers/surface.js +38 -0
- package/lib/commonjs/components/screen-layers/layers/surface.js.map +1 -0
- package/lib/commonjs/constants.js +3 -1
- package/lib/commonjs/constants.js.map +1 -1
- package/lib/commonjs/controls/helpers/resolve-snap-target.js +48 -0
- package/lib/commonjs/controls/helpers/resolve-snap-target.js.map +1 -0
- package/lib/commonjs/controls/snap-to.js +79 -0
- package/lib/commonjs/controls/snap-to.js.map +1 -0
- package/lib/commonjs/controls/transition-blocking.js +71 -0
- package/lib/commonjs/controls/transition-blocking.js.map +1 -0
- package/lib/commonjs/hooks/navigation/use-screen-state.js +3 -3
- package/lib/commonjs/hooks/navigation/use-screen-state.js.map +1 -1
- package/lib/commonjs/index.js +27 -7
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/navigators/blank-stack/components/activity/activity-container.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/components/activity/activity-screen.js +79 -0
- package/lib/commonjs/navigators/blank-stack/components/activity/activity-screen.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/components/activity/index.js +20 -0
- package/lib/commonjs/navigators/blank-stack/components/activity/index.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/blank-stack.js +25 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/blank-stack.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/hooks/helpers/reset-stores-for-screen.js +14 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/hooks/helpers/reset-stores-for-screen.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/hooks/history/navigator-route-registry.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/hooks/history/use-screen-history.js +75 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/hooks/history/use-screen-history.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/hooks/use-close-completion.js +28 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/hooks/use-close-completion.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/hooks/use-close-transition-intent.js +32 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/hooks/use-close-transition-intent.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/hooks/use-open-transition-intent.js +110 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/hooks/use-open-transition-intent.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/hooks/use-transition-start-controller.js +55 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/hooks/use-transition-start-controller.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/use-screen-lifecycle.js +34 -0
- package/lib/commonjs/navigators/blank-stack/components/lifecycle/use-screen-lifecycle.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/components/stack-view.js +90 -0
- package/lib/commonjs/navigators/blank-stack/components/stack-view.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/create-blank-stack-navigator.js +24 -0
- package/lib/commonjs/navigators/blank-stack/create-blank-stack-navigator.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/hooks/use-navigation-helpers.js +68 -0
- package/lib/commonjs/navigators/blank-stack/hooks/use-navigation-helpers.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/state/blank-stack-controller.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/state/blank-stack.provider.js +71 -0
- package/lib/commonjs/navigators/blank-stack/state/blank-stack.provider.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/state/helpers/build-blank-stack-state.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/state/helpers/derive-blank-stack-state.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/state/helpers/navigation/compose-descriptors.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/state/helpers/navigation/resolve-scene-neighbors.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/state/helpers/navigation/sync-routes-with-removed.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/state/helpers/reconcile-blank-stack-routes.js +129 -0
- package/lib/commonjs/navigators/blank-stack/state/helpers/reconcile-blank-stack-routes.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/state/helpers/resolve-presented-index.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/state/helpers/state-equality.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/state/helpers/types.js.map +1 -0
- package/lib/commonjs/navigators/blank-stack/state/use-blank-stack-state.js +25 -0
- package/lib/commonjs/navigators/blank-stack/state/use-blank-stack-state.js.map +1 -0
- package/lib/commonjs/navigators/expo-router/index.js +1 -1
- package/lib/commonjs/navigators/react-navigation/index.js +1 -1
- package/lib/commonjs/providers/builder/builder.provider.js +61 -0
- package/lib/commonjs/providers/builder/builder.provider.js.map +1 -0
- package/lib/commonjs/providers/builder/helpers/derive-descriptor-derivations.js +34 -0
- package/lib/commonjs/providers/builder/helpers/derive-descriptor-derivations.js.map +1 -0
- package/lib/commonjs/providers/builder/hooks/use-screen-topology.js +41 -0
- package/lib/commonjs/providers/builder/hooks/use-screen-topology.js.map +1 -0
- package/lib/commonjs/providers/builder/index.js.map +1 -0
- package/lib/commonjs/providers/builder/topology/helpers/create-screen-topology.js.map +1 -0
- package/lib/commonjs/providers/builder/topology/hooks/use-resolved-transition-key.js.map +1 -0
- package/lib/commonjs/providers/builder/topology/hooks/use-screen-relationships.js.map +1 -0
- package/lib/commonjs/providers/builder/topology/index.js.map +1 -0
- package/lib/commonjs/providers/builder/topology/types.js.map +1 -0
- package/lib/commonjs/providers/motion/animation/emit-motion-start.js +25 -0
- package/lib/commonjs/providers/motion/animation/emit-motion-start.js.map +1 -0
- package/lib/commonjs/providers/motion/animation/helpers/build-screen-transition-options.js +23 -0
- package/lib/commonjs/providers/motion/animation/helpers/build-screen-transition-options.js.map +1 -0
- package/lib/commonjs/providers/motion/animation/helpers/hydrate-transition-state/gesture-progress.js +89 -0
- package/lib/commonjs/providers/motion/animation/helpers/hydrate-transition-state/gesture-progress.js.map +1 -0
- package/lib/commonjs/providers/motion/animation/helpers/hydrate-transition-state/index.js +131 -0
- package/lib/commonjs/providers/motion/animation/helpers/hydrate-transition-state/index.js.map +1 -0
- package/lib/commonjs/providers/motion/animation/helpers/hydrate-transition-state/snap-points.js +96 -0
- package/lib/commonjs/providers/motion/animation/helpers/hydrate-transition-state/snap-points.js.map +1 -0
- package/lib/commonjs/providers/motion/animation/helpers/hydrate-transition-state/types.js.map +1 -0
- package/lib/commonjs/providers/motion/animation/helpers/worklet.js.map +1 -0
- package/lib/commonjs/providers/motion/animation/index.js.map +1 -0
- package/lib/commonjs/providers/motion/animation/pipeline.js +61 -0
- package/lib/commonjs/providers/motion/animation/pipeline.js.map +1 -0
- package/lib/commonjs/providers/motion/animation/types.js.map +1 -0
- package/lib/commonjs/providers/motion/animation/use-screen-animation.js +33 -0
- package/lib/commonjs/providers/motion/animation/use-screen-animation.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/index.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/ownership/compute-claimed-directions.js +75 -0
- package/lib/commonjs/providers/motion/gestures/ownership/compute-claimed-directions.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/ownership/gesture-ownership-coordinator.js +149 -0
- package/lib/commonjs/providers/motion/gestures/ownership/gesture-ownership-coordinator.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/ownership/hooks/use-gesture-sensitivity.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/ownership/hooks/use-screen-gesture-config.js +45 -0
- package/lib/commonjs/providers/motion/gestures/ownership/hooks/use-screen-gesture-config.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/ownership/hooks/use-screen-gesture.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/ownership/hooks/use-stable-runtime-config.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/ownership/shadowing-claims.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/ownership/use-gesture-scroll-coordination.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/pan/activation/pan-activation-decision.js +210 -0
- package/lib/commonjs/providers/motion/gestures/pan/activation/pan-activation-decision.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/pan/activation/pan-activation-rules.js +316 -0
- package/lib/commonjs/providers/motion/gestures/pan/activation/pan-activation-rules.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/pan/activation/use-pan-activation.js +100 -0
- package/lib/commonjs/providers/motion/gestures/pan/activation/use-pan-activation.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/pan/behavior/pan-lifecycle.js +136 -0
- package/lib/commonjs/providers/motion/gestures/pan/behavior/pan-lifecycle.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/pan/behavior/pan-release.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/pan/behavior/pan-reset.js +74 -0
- package/lib/commonjs/providers/motion/gestures/pan/behavior/pan-reset.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/pan/behavior/use-pan-behavior.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/pan/use-build-pan-gesture.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/pinch/activation/use-pinch-activation.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/pinch/behavior/pinch-lifecycle.js +101 -0
- package/lib/commonjs/providers/motion/gestures/pinch/behavior/pinch-lifecycle.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/pinch/behavior/pinch-release.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/pinch/behavior/pinch-reset.js +59 -0
- package/lib/commonjs/providers/motion/gestures/pinch/behavior/pinch-reset.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/pinch/behavior/use-pinch-behavior.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/pinch/use-build-pinch-gesture.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/scroll-coordination/index.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/scroll-coordination/scroll-metadata-owner.js +37 -0
- package/lib/commonjs/providers/motion/gestures/scroll-coordination/scroll-metadata-owner.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/scroll-coordination/update-scroll-gesture-state.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/scroll-coordination/use-scroll-gesture-coordination.js +210 -0
- package/lib/commonjs/providers/motion/gestures/scroll-coordination/use-scroll-gesture-coordination.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/shared/directions.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/shared/physics.js +228 -0
- package/lib/commonjs/providers/motion/gestures/shared/physics.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/shared/policy.js +277 -0
- package/lib/commonjs/providers/motion/gestures/shared/policy.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/shared/release.js +36 -0
- package/lib/commonjs/providers/motion/gestures/shared/release.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/shared/reset.js +63 -0
- package/lib/commonjs/providers/motion/gestures/shared/reset.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/shared/runtime.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/shared/snap-points.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/shared/snapshot.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/shared/targets.js +122 -0
- package/lib/commonjs/providers/motion/gestures/shared/targets.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/shared/values.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/types.js.map +1 -0
- package/lib/commonjs/providers/motion/gestures/use-screen-gestures.js +52 -0
- package/lib/commonjs/providers/motion/gestures/use-screen-gestures.js.map +1 -0
- package/lib/commonjs/providers/motion/helpers/transition-visual-state.js.map +1 -0
- package/lib/commonjs/providers/motion/helpers/visibility-gate.js.map +1 -0
- package/lib/commonjs/providers/motion/hooks/use-maybe-block-visibility.js +94 -0
- package/lib/commonjs/providers/motion/hooks/use-maybe-block-visibility.js.map +1 -0
- package/lib/commonjs/providers/motion/hooks/use-motion-values.js.map +1 -0
- package/lib/commonjs/providers/motion/hooks/use-transition-values.js.map +1 -0
- package/lib/commonjs/providers/motion/index.js.map +1 -0
- package/lib/commonjs/providers/motion/motion.provider.js +69 -0
- package/lib/commonjs/providers/motion/motion.provider.js.map +1 -0
- package/lib/commonjs/providers/motion/options/helpers.js +174 -0
- package/lib/commonjs/providers/motion/options/helpers.js.map +1 -0
- package/lib/commonjs/providers/motion/options/index.js.map +1 -0
- package/lib/commonjs/providers/motion/options/types.js.map +1 -0
- package/lib/commonjs/providers/motion/options/use-screen-options.js +51 -0
- package/lib/commonjs/providers/motion/options/use-screen-options.js.map +1 -0
- package/lib/commonjs/providers/motion/types.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/helpers/derivations.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/helpers/pipeline.js +204 -0
- package/lib/commonjs/providers/orchestrator/helpers/pipeline.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/helpers/selected-interpolator-options.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/helpers/stack-progress.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/helpers/use-interpolator-state.js +63 -0
- package/lib/commonjs/providers/orchestrator/helpers/use-interpolator-state.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/helpers/use-pair-presentation.js +79 -0
- package/lib/commonjs/providers/orchestrator/helpers/use-pair-presentation.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/helpers/use-stack-progress-inputs.js +114 -0
- package/lib/commonjs/providers/orchestrator/helpers/use-stack-progress-inputs.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/hooks/use-register-gesture-ownership.js +52 -0
- package/lib/commonjs/providers/orchestrator/hooks/use-register-gesture-ownership.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/index.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/orchestrator.provider.js +61 -0
- package/lib/commonjs/providers/orchestrator/orchestrator.provider.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/constants.js +99 -0
- package/lib/commonjs/providers/orchestrator/styles/constants.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/helpers/compose-slot-style.js +95 -0
- package/lib/commonjs/providers/orchestrator/styles/helpers/compose-slot-style.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/helpers/create-interpolator-scope.js +28 -0
- package/lib/commonjs/providers/orchestrator/styles/helpers/create-interpolator-scope.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/helpers/normalize-slots.js +85 -0
- package/lib/commonjs/providers/orchestrator/styles/helpers/normalize-slots.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/helpers/resolve-interpolator-style-handoff.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/helpers/resolve-slot-styles/are-resettable-states-equal.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/helpers/resolve-slot-styles/index.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/helpers/resolve-slot-styles/materialize-slot.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/helpers/resolve-slot-styles/reset-values.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/helpers/resolve-slot-styles/slot-state.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/helpers/resolve-slot-styles/types.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/helpers/select-interpolator-frame.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/helpers/strip-interpolator-options.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/hooks/slot-resolvers.js +86 -0
- package/lib/commonjs/providers/orchestrator/styles/hooks/slot-resolvers.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/hooks/use-interpolated-style-maps.js +210 -0
- package/lib/commonjs/providers/orchestrator/styles/hooks/use-interpolated-style-maps.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/hooks/use-resolved-slot-style-map.js +47 -0
- package/lib/commonjs/providers/orchestrator/styles/hooks/use-resolved-slot-style-map.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/index.js.map +1 -0
- package/lib/commonjs/providers/orchestrator/styles/types.js.map +1 -0
- package/lib/commonjs/utils/animation/animate-to-progress.js +1 -1
- package/lib/commonjs/utils/bounds/navigation/reveal/build.js +28 -61
- package/lib/commonjs/utils/bounds/navigation/reveal/build.js.map +1 -1
- package/lib/commonjs/utils/bounds/navigation/reveal/config.js +3 -4
- package/lib/commonjs/utils/bounds/navigation/reveal/config.js.map +1 -1
- package/lib/commonjs/utils/bounds/navigation/reveal/math.js +8 -8
- package/lib/commonjs/utils/bounds/navigation/reveal/math.js.map +1 -1
- package/lib/commonjs/utils/bounds/navigation/reveal/types.js +3 -1
- package/lib/commonjs/utils/bounds/navigation/reveal/types.js.map +1 -1
- package/lib/commonjs/utils/bounds/navigation/zoom/build.js +4 -6
- package/lib/commonjs/utils/bounds/navigation/zoom/build.js.map +1 -1
- package/lib/commonjs/utils/bounds/navigation/zoom/clip.js +64 -0
- package/lib/commonjs/utils/bounds/navigation/zoom/clip.js.map +1 -0
- package/lib/commonjs/utils/bounds/navigation/zoom/drag.js +1 -1
- package/lib/commonjs/utils/bounds/navigation/zoom/drag.js.map +1 -1
- package/lib/commonjs/utils/bounds/navigation/zoom/types.js +3 -1
- package/lib/commonjs/utils/bounds/navigation/zoom/types.js.map +1 -1
- package/lib/commonjs/utils/create-provider.js +104 -10
- package/lib/commonjs/utils/create-provider.js.map +1 -1
- package/lib/module/adapters/with-screen-transitions/lifecycle/index.js +2 -2
- package/lib/module/adapters/with-screen-transitions/lifecycle/index.js.map +1 -1
- package/lib/module/adapters/with-screen-transitions/lifecycle/use-native-close-transition-intent.js +4 -4
- package/lib/module/adapters/with-screen-transitions/lifecycle/use-native-close-transition-intent.js.map +1 -1
- package/lib/module/adapters/with-screen-transitions/stack-layout.js +36 -9
- package/lib/module/adapters/with-screen-transitions/stack-layout.js.map +1 -1
- package/lib/module/components/boundary/components/boundary-lifecycle.js +42 -10
- package/lib/module/components/boundary/components/boundary-lifecycle.js.map +1 -1
- package/lib/module/components/boundary/components/boundary-target.js +10 -17
- package/lib/module/components/boundary/components/boundary-target.js.map +1 -1
- package/lib/module/components/boundary/create-boundary-component.js +13 -16
- package/lib/module/components/boundary/create-boundary-component.js.map +1 -1
- package/lib/module/components/boundary/helpers/presentation.js +50 -0
- package/lib/module/components/boundary/helpers/presentation.js.map +1 -0
- package/lib/module/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js +3 -3
- package/lib/module/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js.map +1 -1
- package/lib/module/components/boundary/hooks/lifecycles/use-initial-source-measurement.js +1 -1
- package/lib/module/components/boundary/hooks/lifecycles/use-initial-source-measurement.js.map +1 -1
- package/lib/module/components/boundary/hooks/lifecycles/use-refresh-boundary.js +2 -2
- package/lib/module/components/boundary/hooks/lifecycles/use-refresh-boundary.js.map +1 -1
- package/lib/module/components/boundary/hooks/use-boundary-presentation.js +62 -0
- package/lib/module/components/boundary/hooks/use-boundary-presentation.js.map +1 -0
- package/lib/module/components/boundary/hooks/use-composed-boundary-style.js +39 -0
- package/lib/module/components/boundary/hooks/use-composed-boundary-style.js.map +1 -0
- package/lib/module/components/boundary/hooks/use-measurer.js +1 -1
- package/lib/module/components/boundary/hooks/use-measurer.js.map +1 -1
- package/lib/module/components/boundary/index.js +2 -3
- package/lib/module/components/boundary/index.js.map +1 -1
- package/lib/module/components/boundary/portal/components/portal-host.js +34 -0
- package/lib/module/components/boundary/portal/components/portal-host.js.map +1 -0
- package/lib/module/components/boundary/portal/components/portal-overlay.js +164 -0
- package/lib/module/components/boundary/portal/components/portal-overlay.js.map +1 -0
- package/lib/module/components/boundary/portal/components/portal.js +83 -0
- package/lib/module/components/boundary/portal/components/portal.js.map +1 -0
- package/lib/module/components/boundary/portal/helpers/offset-style.js.map +1 -0
- package/lib/module/components/boundary/portal/hooks/use-active-portal-boundary-host.js +31 -0
- package/lib/module/components/boundary/portal/hooks/use-active-portal-boundary-host.js.map +1 -0
- package/lib/module/components/boundary/portal/hooks/use-host-measurement.js +63 -0
- package/lib/module/components/boundary/portal/hooks/use-host-measurement.js.map +1 -0
- package/lib/module/components/boundary/portal/hooks/use-placeholder-styles.js.map +1 -0
- package/lib/module/components/boundary/portal/hooks/use-portal-destination.js +54 -0
- package/lib/module/components/boundary/portal/hooks/use-portal-destination.js.map +1 -0
- package/lib/module/components/boundary/portal/index.js +0 -1
- package/lib/module/components/boundary/portal/index.js.map +1 -1
- package/lib/module/components/boundary/portal/stores/host-registry.store.js +78 -0
- package/lib/module/components/boundary/portal/stores/host-registry.store.js.map +1 -0
- package/lib/module/components/boundary/portal/stores/portal-boundary-host.store.js +53 -0
- package/lib/module/components/boundary/portal/stores/portal-boundary-host.store.js.map +1 -0
- package/lib/module/components/boundary/portal/utils/naming.js +6 -0
- package/lib/module/components/boundary/portal/utils/naming.js.map +1 -1
- package/lib/module/components/boundary/portal/utils/resolve-portal.js +7 -27
- package/lib/module/components/boundary/portal/utils/resolve-portal.js.map +1 -1
- package/lib/module/components/boundary/providers/boundary-root.provider.js +15 -9
- package/lib/module/components/boundary/providers/boundary-root.provider.js.map +1 -1
- package/lib/module/components/create-transition-aware-component.js +3 -3
- package/lib/module/components/create-transition-aware-component.js.map +1 -1
- package/lib/module/components/overlay/helpers/create-overlay-interpolator-frame.js +1 -1
- package/lib/module/components/overlay/helpers/create-overlay-interpolator-frame.js.map +1 -1
- package/lib/module/components/overlay/helpers/run-overlay-slot-interpolator.js +3 -3
- package/lib/module/components/overlay/helpers/run-overlay-slot-interpolator.js.map +1 -1
- package/lib/module/components/overlay/index.js +26 -4
- package/lib/module/components/overlay/index.js.map +1 -1
- package/lib/module/components/overlay/variations/overlay-host.js +5 -5
- package/lib/module/components/overlay/variations/overlay-host.js.map +1 -1
- package/lib/module/components/screen-layers/helpers/find-collapse-target.js +60 -0
- package/lib/module/components/screen-layers/helpers/find-collapse-target.js.map +1 -0
- package/lib/module/components/screen-layers/helpers/layer-component.js +35 -0
- package/lib/module/components/screen-layers/helpers/layer-component.js.map +1 -0
- package/lib/module/components/screen-layers/helpers/uses-layer-render-props.js +6 -0
- package/lib/module/components/screen-layers/helpers/uses-layer-render-props.js.map +1 -0
- package/lib/module/components/screen-layers/hooks/use-backdrop-pointer-events.js +35 -0
- package/lib/module/components/screen-layers/hooks/use-backdrop-pointer-events.js.map +1 -0
- package/lib/module/components/screen-layers/hooks/use-content-layout.js +63 -0
- package/lib/module/components/screen-layers/hooks/use-content-layout.js.map +1 -0
- package/lib/module/components/screen-layers/index.js +37 -0
- package/lib/module/components/screen-layers/index.js.map +1 -0
- package/lib/module/components/screen-layers/layers/backdrop.js +96 -0
- package/lib/module/components/screen-layers/layers/backdrop.js.map +1 -0
- package/lib/module/components/screen-layers/layers/clip.js +112 -0
- package/lib/module/components/screen-layers/layers/clip.js.map +1 -0
- package/lib/module/components/screen-layers/layers/content.js +57 -0
- package/lib/module/components/screen-layers/layers/content.js.map +1 -0
- package/lib/module/components/screen-layers/layers/surface.js +34 -0
- package/lib/module/components/screen-layers/layers/surface.js.map +1 -0
- package/lib/module/constants.js +3 -1
- package/lib/module/constants.js.map +1 -1
- package/lib/module/controls/helpers/resolve-snap-target.js +44 -0
- package/lib/module/controls/helpers/resolve-snap-target.js.map +1 -0
- package/lib/module/controls/snap-to.js +74 -0
- package/lib/module/controls/snap-to.js.map +1 -0
- package/lib/module/controls/transition-blocking.js +66 -0
- package/lib/module/controls/transition-blocking.js.map +1 -0
- package/lib/module/hooks/navigation/use-screen-state.js +3 -3
- package/lib/module/hooks/navigation/use-screen-state.js.map +1 -1
- package/lib/module/index.js +9 -7
- package/lib/module/index.js.map +1 -1
- package/lib/module/navigators/blank-stack/components/activity/activity-container.js.map +1 -0
- package/lib/module/navigators/blank-stack/components/activity/activity-screen.js +75 -0
- package/lib/module/navigators/blank-stack/components/activity/activity-screen.js.map +1 -0
- package/lib/module/navigators/blank-stack/components/activity/index.js +5 -0
- package/lib/module/navigators/blank-stack/components/activity/index.js.map +1 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/blank-stack.js +21 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/blank-stack.js.map +1 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/hooks/helpers/reset-stores-for-screen.js +10 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/hooks/helpers/reset-stores-for-screen.js.map +1 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/hooks/history/navigator-route-registry.js.map +1 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/hooks/history/use-screen-history.js +70 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/hooks/history/use-screen-history.js.map +1 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/hooks/use-close-completion.js +23 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/hooks/use-close-completion.js.map +1 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/hooks/use-close-transition-intent.js +27 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/hooks/use-close-transition-intent.js.map +1 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/hooks/use-open-transition-intent.js +105 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/hooks/use-open-transition-intent.js.map +1 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/hooks/use-transition-start-controller.js +50 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/hooks/use-transition-start-controller.js.map +1 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/use-screen-lifecycle.js +30 -0
- package/lib/module/navigators/blank-stack/components/lifecycle/use-screen-lifecycle.js.map +1 -0
- package/lib/module/navigators/blank-stack/components/stack-view.js +86 -0
- package/lib/module/navigators/blank-stack/components/stack-view.js.map +1 -0
- package/lib/module/navigators/blank-stack/create-blank-stack-navigator.js +20 -0
- package/lib/module/navigators/blank-stack/create-blank-stack-navigator.js.map +1 -0
- package/lib/module/navigators/blank-stack/hooks/use-navigation-helpers.js +64 -0
- package/lib/module/navigators/blank-stack/hooks/use-navigation-helpers.js.map +1 -0
- package/lib/module/navigators/blank-stack/state/blank-stack-controller.js.map +1 -0
- package/lib/module/navigators/blank-stack/state/blank-stack.provider.js +63 -0
- package/lib/module/navigators/blank-stack/state/blank-stack.provider.js.map +1 -0
- package/lib/module/navigators/blank-stack/state/helpers/build-blank-stack-state.js.map +1 -0
- package/lib/module/navigators/blank-stack/state/helpers/derive-blank-stack-state.js.map +1 -0
- package/lib/module/navigators/blank-stack/state/helpers/navigation/compose-descriptors.js.map +1 -0
- package/lib/module/navigators/blank-stack/state/helpers/navigation/resolve-scene-neighbors.js.map +1 -0
- package/lib/module/navigators/blank-stack/state/helpers/navigation/sync-routes-with-removed.js.map +1 -0
- package/lib/module/navigators/blank-stack/state/helpers/reconcile-blank-stack-routes.js +124 -0
- package/lib/module/navigators/blank-stack/state/helpers/reconcile-blank-stack-routes.js.map +1 -0
- package/lib/module/navigators/blank-stack/state/helpers/resolve-presented-index.js.map +1 -0
- package/lib/module/navigators/blank-stack/state/helpers/state-equality.js.map +1 -0
- package/lib/module/navigators/blank-stack/state/helpers/types.js.map +1 -0
- package/lib/module/navigators/blank-stack/state/use-blank-stack-state.js +20 -0
- package/lib/module/navigators/blank-stack/state/use-blank-stack-state.js.map +1 -0
- package/lib/module/navigators/expo-router/index.js +1 -1
- package/lib/module/navigators/expo-router/index.js.map +1 -1
- package/lib/module/navigators/react-navigation/index.js +1 -1
- package/lib/module/navigators/react-navigation/index.js.map +1 -1
- package/lib/module/providers/builder/builder.provider.js +52 -0
- package/lib/module/providers/builder/builder.provider.js.map +1 -0
- package/lib/module/providers/builder/helpers/derive-descriptor-derivations.js +30 -0
- package/lib/module/providers/builder/helpers/derive-descriptor-derivations.js.map +1 -0
- package/lib/module/providers/builder/hooks/use-screen-topology.js +37 -0
- package/lib/module/providers/builder/hooks/use-screen-topology.js.map +1 -0
- package/lib/module/providers/builder/index.js.map +1 -0
- package/lib/module/providers/builder/topology/helpers/create-screen-topology.js.map +1 -0
- package/lib/module/providers/builder/topology/hooks/use-resolved-transition-key.js.map +1 -0
- package/lib/module/providers/builder/topology/hooks/use-screen-relationships.js.map +1 -0
- package/lib/module/providers/builder/topology/index.js.map +1 -0
- package/lib/module/providers/builder/topology/types.js.map +1 -0
- package/lib/module/providers/motion/animation/emit-motion-start.js +20 -0
- package/lib/module/providers/motion/animation/emit-motion-start.js.map +1 -0
- package/lib/module/providers/motion/animation/helpers/build-screen-transition-options.js +18 -0
- package/lib/module/providers/motion/animation/helpers/build-screen-transition-options.js.map +1 -0
- package/lib/module/providers/motion/animation/helpers/hydrate-transition-state/gesture-progress.js +84 -0
- package/lib/module/providers/motion/animation/helpers/hydrate-transition-state/gesture-progress.js.map +1 -0
- package/lib/module/providers/motion/animation/helpers/hydrate-transition-state/index.js +126 -0
- package/lib/module/providers/motion/animation/helpers/hydrate-transition-state/index.js.map +1 -0
- package/lib/module/providers/motion/animation/helpers/hydrate-transition-state/snap-points.js +89 -0
- package/lib/module/providers/motion/animation/helpers/hydrate-transition-state/snap-points.js.map +1 -0
- package/lib/module/providers/motion/animation/helpers/hydrate-transition-state/types.js.map +1 -0
- package/lib/module/providers/motion/animation/helpers/worklet.js.map +1 -0
- package/lib/module/providers/motion/animation/index.js.map +1 -0
- package/lib/module/providers/motion/animation/pipeline.js +57 -0
- package/lib/module/providers/motion/animation/pipeline.js.map +1 -0
- package/lib/module/providers/motion/animation/types.js.map +1 -0
- package/lib/module/providers/motion/animation/use-screen-animation.js +29 -0
- package/lib/module/providers/motion/animation/use-screen-animation.js.map +1 -0
- package/lib/module/providers/motion/gestures/index.js.map +1 -0
- package/lib/module/providers/motion/gestures/ownership/compute-claimed-directions.js +71 -0
- package/lib/module/providers/motion/gestures/ownership/compute-claimed-directions.js.map +1 -0
- package/lib/module/providers/motion/gestures/ownership/gesture-ownership-coordinator.js +144 -0
- package/lib/module/providers/motion/gestures/ownership/gesture-ownership-coordinator.js.map +1 -0
- package/lib/module/providers/motion/gestures/ownership/hooks/use-gesture-sensitivity.js.map +1 -0
- package/lib/module/providers/motion/gestures/ownership/hooks/use-screen-gesture-config.js +41 -0
- package/lib/module/providers/motion/gestures/ownership/hooks/use-screen-gesture-config.js.map +1 -0
- package/lib/module/providers/motion/gestures/ownership/hooks/use-screen-gesture.js.map +1 -0
- package/lib/module/providers/motion/gestures/ownership/hooks/use-stable-runtime-config.js.map +1 -0
- package/lib/module/providers/motion/gestures/ownership/shadowing-claims.js.map +1 -0
- package/lib/module/providers/motion/gestures/ownership/use-gesture-scroll-coordination.js.map +1 -0
- package/lib/module/providers/motion/gestures/pan/activation/pan-activation-decision.js +205 -0
- package/lib/module/providers/motion/gestures/pan/activation/pan-activation-decision.js.map +1 -0
- package/lib/module/providers/motion/gestures/pan/activation/pan-activation-rules.js +306 -0
- package/lib/module/providers/motion/gestures/pan/activation/pan-activation-rules.js.map +1 -0
- package/lib/module/providers/motion/gestures/pan/activation/use-pan-activation.js +95 -0
- package/lib/module/providers/motion/gestures/pan/activation/use-pan-activation.js.map +1 -0
- package/lib/module/providers/motion/gestures/pan/behavior/pan-lifecycle.js +129 -0
- package/lib/module/providers/motion/gestures/pan/behavior/pan-lifecycle.js.map +1 -0
- package/lib/module/providers/motion/gestures/pan/behavior/pan-release.js.map +1 -0
- package/lib/module/providers/motion/gestures/pan/behavior/pan-reset.js +69 -0
- package/lib/module/providers/motion/gestures/pan/behavior/pan-reset.js.map +1 -0
- package/lib/module/providers/motion/gestures/pan/behavior/use-pan-behavior.js.map +1 -0
- package/lib/module/providers/motion/gestures/pan/use-build-pan-gesture.js.map +1 -0
- package/lib/module/providers/motion/gestures/pinch/activation/use-pinch-activation.js.map +1 -0
- package/lib/module/providers/motion/gestures/pinch/behavior/pinch-lifecycle.js +94 -0
- package/lib/module/providers/motion/gestures/pinch/behavior/pinch-lifecycle.js.map +1 -0
- package/lib/module/providers/motion/gestures/pinch/behavior/pinch-release.js.map +1 -0
- package/lib/module/providers/motion/gestures/pinch/behavior/pinch-reset.js +54 -0
- package/lib/module/providers/motion/gestures/pinch/behavior/pinch-reset.js.map +1 -0
- package/lib/module/providers/motion/gestures/pinch/behavior/use-pinch-behavior.js.map +1 -0
- package/lib/module/providers/motion/gestures/pinch/use-build-pinch-gesture.js.map +1 -0
- package/lib/module/providers/motion/gestures/scroll-coordination/index.js.map +1 -0
- package/lib/module/providers/motion/gestures/scroll-coordination/scroll-metadata-owner.js +29 -0
- package/lib/module/providers/motion/gestures/scroll-coordination/scroll-metadata-owner.js.map +1 -0
- package/lib/module/providers/motion/gestures/scroll-coordination/update-scroll-gesture-state.js.map +1 -0
- package/lib/module/providers/motion/gestures/scroll-coordination/use-scroll-gesture-coordination.js +204 -0
- package/lib/module/providers/motion/gestures/scroll-coordination/use-scroll-gesture-coordination.js.map +1 -0
- package/lib/module/providers/motion/gestures/shared/directions.js.map +1 -0
- package/lib/module/providers/motion/gestures/shared/physics.js +213 -0
- package/lib/module/providers/motion/gestures/shared/physics.js.map +1 -0
- package/lib/module/providers/motion/gestures/shared/policy.js +268 -0
- package/lib/module/providers/motion/gestures/shared/policy.js.map +1 -0
- package/lib/module/providers/motion/gestures/shared/release.js +30 -0
- package/lib/module/providers/motion/gestures/shared/release.js.map +1 -0
- package/lib/module/providers/motion/gestures/shared/reset.js +58 -0
- package/lib/module/providers/motion/gestures/shared/reset.js.map +1 -0
- package/lib/module/providers/motion/gestures/shared/runtime.js.map +1 -0
- package/lib/module/providers/motion/gestures/shared/snap-points.js.map +1 -0
- package/lib/module/providers/motion/gestures/shared/snapshot.js.map +1 -0
- package/lib/module/providers/motion/gestures/shared/targets.js +116 -0
- package/lib/module/providers/motion/gestures/shared/targets.js.map +1 -0
- package/lib/module/providers/motion/gestures/shared/values.js.map +1 -0
- package/lib/module/providers/motion/gestures/types.js.map +1 -0
- package/lib/module/providers/motion/gestures/use-screen-gestures.js +48 -0
- package/lib/module/providers/motion/gestures/use-screen-gestures.js.map +1 -0
- package/lib/module/providers/motion/helpers/transition-visual-state.js.map +1 -0
- package/lib/module/providers/motion/helpers/visibility-gate.js.map +1 -0
- package/lib/module/providers/motion/hooks/use-maybe-block-visibility.js +89 -0
- package/lib/module/providers/motion/hooks/use-maybe-block-visibility.js.map +1 -0
- package/lib/module/providers/motion/hooks/use-motion-values.js.map +1 -0
- package/lib/module/providers/motion/hooks/use-transition-values.js.map +1 -0
- package/lib/module/providers/motion/index.js.map +1 -0
- package/lib/module/providers/motion/motion.provider.js +60 -0
- package/lib/module/providers/motion/motion.provider.js.map +1 -0
- package/lib/module/providers/motion/options/helpers.js +167 -0
- package/lib/module/providers/motion/options/helpers.js.map +1 -0
- package/lib/module/providers/motion/options/index.js.map +1 -0
- package/lib/module/providers/motion/options/types.js.map +1 -0
- package/lib/module/providers/motion/options/use-screen-options.js +47 -0
- package/lib/module/providers/motion/options/use-screen-options.js.map +1 -0
- package/lib/module/providers/motion/types.js.map +1 -0
- package/lib/module/providers/orchestrator/helpers/derivations.js.map +1 -0
- package/lib/module/providers/orchestrator/helpers/pipeline.js +200 -0
- package/lib/module/providers/orchestrator/helpers/pipeline.js.map +1 -0
- package/lib/module/providers/orchestrator/helpers/selected-interpolator-options.js.map +1 -0
- package/lib/module/providers/orchestrator/helpers/stack-progress.js.map +1 -0
- package/lib/module/providers/orchestrator/helpers/use-interpolator-state.js +59 -0
- package/lib/module/providers/orchestrator/helpers/use-interpolator-state.js.map +1 -0
- package/lib/module/providers/orchestrator/helpers/use-pair-presentation.js +73 -0
- package/lib/module/providers/orchestrator/helpers/use-pair-presentation.js.map +1 -0
- package/lib/module/providers/orchestrator/helpers/use-stack-progress-inputs.js +107 -0
- package/lib/module/providers/orchestrator/helpers/use-stack-progress-inputs.js.map +1 -0
- package/lib/module/providers/orchestrator/hooks/use-register-gesture-ownership.js +47 -0
- package/lib/module/providers/orchestrator/hooks/use-register-gesture-ownership.js.map +1 -0
- package/lib/module/providers/orchestrator/index.js.map +1 -0
- package/lib/module/providers/orchestrator/orchestrator.provider.js +53 -0
- package/lib/module/providers/orchestrator/orchestrator.provider.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/constants.js +93 -0
- package/lib/module/providers/orchestrator/styles/constants.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/helpers/compose-slot-style.js +89 -0
- package/lib/module/providers/orchestrator/styles/helpers/compose-slot-style.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/helpers/create-interpolator-scope.js +23 -0
- package/lib/module/providers/orchestrator/styles/helpers/create-interpolator-scope.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/helpers/normalize-slots.js +81 -0
- package/lib/module/providers/orchestrator/styles/helpers/normalize-slots.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/helpers/resolve-interpolator-style-handoff.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/helpers/resolve-slot-styles/are-resettable-states-equal.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/helpers/resolve-slot-styles/index.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/helpers/resolve-slot-styles/materialize-slot.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/helpers/resolve-slot-styles/reset-values.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/helpers/resolve-slot-styles/slot-state.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/helpers/resolve-slot-styles/types.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/helpers/select-interpolator-frame.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/helpers/strip-interpolator-options.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/hooks/slot-resolvers.js +77 -0
- package/lib/module/providers/orchestrator/styles/hooks/slot-resolvers.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/hooks/use-interpolated-style-maps.js +205 -0
- package/lib/module/providers/orchestrator/styles/hooks/use-interpolated-style-maps.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/hooks/use-resolved-slot-style-map.js +42 -0
- package/lib/module/providers/orchestrator/styles/hooks/use-resolved-slot-style-map.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/index.js.map +1 -0
- package/lib/module/providers/orchestrator/styles/types.js.map +1 -0
- package/lib/module/types/animation.types.js +3 -1
- package/lib/module/types/animation.types.js.map +1 -1
- package/lib/module/utils/animation/animate-to-progress.js +1 -1
- package/lib/module/utils/animation/animate-to-progress.js.map +1 -1
- package/lib/module/utils/bounds/navigation/reveal/build.js +30 -63
- package/lib/module/utils/bounds/navigation/reveal/build.js.map +1 -1
- package/lib/module/utils/bounds/navigation/reveal/config.js +2 -3
- package/lib/module/utils/bounds/navigation/reveal/config.js.map +1 -1
- package/lib/module/utils/bounds/navigation/reveal/math.js +7 -7
- package/lib/module/utils/bounds/navigation/reveal/math.js.map +1 -1
- package/lib/module/utils/bounds/navigation/reveal/types.js +1 -1
- package/lib/module/utils/bounds/navigation/reveal/types.js.map +1 -1
- package/lib/module/utils/bounds/navigation/zoom/build.js +5 -7
- package/lib/module/utils/bounds/navigation/zoom/build.js.map +1 -1
- package/lib/module/utils/bounds/navigation/zoom/clip.js +59 -0
- package/lib/module/utils/bounds/navigation/zoom/clip.js.map +1 -0
- package/lib/module/utils/bounds/navigation/zoom/drag.js +1 -1
- package/lib/module/utils/bounds/navigation/zoom/drag.js.map +1 -1
- package/lib/module/utils/bounds/navigation/zoom/types.js +1 -1
- package/lib/module/utils/bounds/navigation/zoom/types.js.map +1 -1
- package/lib/module/utils/create-provider.js +105 -11
- package/lib/module/utils/create-provider.js.map +1 -1
- package/lib/typescript/adapters/with-screen-transitions/lifecycle/use-native-close-transition-intent.d.ts +1 -1
- package/lib/typescript/adapters/with-screen-transitions/lifecycle/use-native-close-transition-intent.d.ts.map +1 -1
- package/lib/typescript/adapters/with-screen-transitions/stack-layout.d.ts.map +1 -1
- package/lib/typescript/components/boundary/components/boundary-lifecycle.d.ts.map +1 -1
- package/lib/typescript/components/boundary/components/boundary-target.d.ts.map +1 -1
- package/lib/typescript/components/boundary/create-boundary-component.d.ts.map +1 -1
- package/lib/typescript/components/boundary/helpers/presentation.d.ts +14 -0
- package/lib/typescript/components/boundary/helpers/presentation.d.ts.map +1 -0
- package/lib/typescript/components/boundary/hooks/use-boundary-presentation.d.ts +9 -0
- package/lib/typescript/components/boundary/hooks/use-boundary-presentation.d.ts.map +1 -0
- package/lib/typescript/components/boundary/hooks/use-composed-boundary-style.d.ts +4 -0
- package/lib/typescript/components/boundary/hooks/use-composed-boundary-style.d.ts.map +1 -0
- package/lib/typescript/components/boundary/index.d.ts +3 -2
- package/lib/typescript/components/boundary/index.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/components/portal-host.d.ts +15 -0
- package/lib/typescript/components/boundary/portal/components/portal-host.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/components/portal-overlay.d.ts +20 -0
- package/lib/typescript/components/boundary/portal/components/portal-overlay.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/components/portal.d.ts +23 -0
- package/lib/typescript/components/boundary/portal/components/portal.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/helpers/offset-style.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/hooks/use-active-portal-boundary-host.d.ts +11 -0
- package/lib/typescript/components/boundary/portal/hooks/use-active-portal-boundary-host.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/hooks/use-host-measurement.d.ts +13 -0
- package/lib/typescript/components/boundary/portal/hooks/use-host-measurement.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/hooks/use-placeholder-styles.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/hooks/use-portal-destination.d.ts +8 -0
- package/lib/typescript/components/boundary/portal/hooks/use-portal-destination.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/index.d.ts +0 -1
- package/lib/typescript/components/boundary/portal/index.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/stores/host-registry.store.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/stores/portal-boundary-host.store.d.ts +15 -0
- package/lib/typescript/components/boundary/portal/stores/portal-boundary-host.store.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/utils/naming.d.ts +1 -0
- package/lib/typescript/components/boundary/portal/utils/naming.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/utils/resolve-portal.d.ts +2 -7
- package/lib/typescript/components/boundary/portal/utils/resolve-portal.d.ts.map +1 -1
- package/lib/typescript/components/boundary/providers/boundary-root.provider.d.ts +5 -2
- package/lib/typescript/components/boundary/providers/boundary-root.provider.d.ts.map +1 -1
- package/lib/typescript/components/create-transition-aware-component.d.ts.map +1 -1
- package/lib/typescript/components/overlay/helpers/create-overlay-interpolator-frame.d.ts +1 -1
- package/lib/typescript/components/overlay/helpers/create-overlay-interpolator-frame.d.ts.map +1 -1
- package/lib/typescript/components/overlay/helpers/retain-ready-overlay-resources.d.ts +1 -1
- package/lib/typescript/components/overlay/helpers/retain-ready-overlay-resources.d.ts.map +1 -1
- package/lib/typescript/components/overlay/helpers/run-overlay-slot-interpolator.d.ts +1 -1
- package/lib/typescript/components/overlay/helpers/run-overlay-slot-interpolator.d.ts.map +1 -1
- package/lib/typescript/components/overlay/hooks/use-overlay-slot.d.ts +1 -1
- package/lib/typescript/components/overlay/hooks/use-overlay-slot.d.ts.map +1 -1
- package/lib/typescript/components/overlay/index.d.ts +5 -4
- package/lib/typescript/components/overlay/index.d.ts.map +1 -1
- package/lib/typescript/components/screen-layers/helpers/find-collapse-target.d.ts.map +1 -0
- package/lib/typescript/components/screen-layers/helpers/layer-component.d.ts +10 -0
- package/lib/typescript/components/screen-layers/helpers/layer-component.d.ts.map +1 -0
- package/lib/typescript/components/screen-layers/helpers/uses-layer-render-props.d.ts +3 -0
- package/lib/typescript/components/screen-layers/helpers/uses-layer-render-props.d.ts.map +1 -0
- package/lib/typescript/components/screen-layers/hooks/use-backdrop-pointer-events.d.ts +16 -0
- package/lib/typescript/components/screen-layers/hooks/use-backdrop-pointer-events.d.ts.map +1 -0
- package/lib/typescript/components/screen-layers/hooks/use-content-layout.d.ts.map +1 -0
- package/lib/typescript/components/screen-layers/index.d.ts +6 -0
- package/lib/typescript/components/screen-layers/index.d.ts.map +1 -0
- package/lib/typescript/components/screen-layers/layers/backdrop.d.ts +7 -0
- package/lib/typescript/components/screen-layers/layers/backdrop.d.ts.map +1 -0
- package/lib/typescript/components/screen-layers/layers/clip.d.ts +7 -0
- package/lib/typescript/components/screen-layers/layers/clip.d.ts.map +1 -0
- package/lib/typescript/components/screen-layers/layers/content.d.ts.map +1 -0
- package/lib/typescript/components/screen-layers/layers/surface.d.ts.map +1 -0
- package/lib/typescript/constants.d.ts +3 -1
- package/lib/typescript/constants.d.ts.map +1 -1
- package/lib/typescript/controls/helpers/resolve-snap-target.d.ts +3 -0
- package/lib/typescript/controls/helpers/resolve-snap-target.d.ts.map +1 -0
- package/lib/typescript/controls/snap-to.d.ts.map +1 -0
- package/lib/typescript/controls/transition-blocking.d.ts.map +1 -0
- package/lib/typescript/index.d.ts +11 -8
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/navigators/blank-stack/components/activity/activity-container.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/components/activity/activity-screen.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/components/activity/index.d.ts +3 -0
- package/lib/typescript/navigators/blank-stack/components/activity/index.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/components/lifecycle/blank-stack.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/components/lifecycle/hooks/helpers/reset-stores-for-screen.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/components/lifecycle/hooks/history/navigator-route-registry.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/components/lifecycle/hooks/history/use-screen-history.d.ts +7 -0
- package/lib/typescript/navigators/blank-stack/components/lifecycle/hooks/history/use-screen-history.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/components/lifecycle/hooks/use-close-completion.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/components/lifecycle/hooks/use-close-transition-intent.d.ts +5 -0
- package/lib/typescript/navigators/blank-stack/components/lifecycle/hooks/use-close-transition-intent.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/components/lifecycle/hooks/use-open-transition-intent.d.ts +8 -0
- package/lib/typescript/navigators/blank-stack/components/lifecycle/hooks/use-open-transition-intent.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/components/lifecycle/hooks/use-transition-start-controller.d.ts +9 -0
- package/lib/typescript/navigators/blank-stack/components/lifecycle/hooks/use-transition-start-controller.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/components/lifecycle/use-screen-lifecycle.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/components/stack-view.d.ts +4 -0
- package/lib/typescript/navigators/blank-stack/components/stack-view.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/create-blank-stack-navigator.d.ts +9 -0
- package/lib/typescript/navigators/blank-stack/create-blank-stack-navigator.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/hooks/use-navigation-helpers.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/state/blank-stack-controller.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/state/blank-stack.provider.d.ts +23 -0
- package/lib/typescript/navigators/blank-stack/state/blank-stack.provider.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/state/helpers/build-blank-stack-state.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/state/helpers/derive-blank-stack-state.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/state/helpers/navigation/compose-descriptors.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/state/helpers/navigation/resolve-scene-neighbors.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/state/helpers/navigation/sync-routes-with-removed.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/state/helpers/reconcile-blank-stack-routes.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/state/helpers/resolve-presented-index.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/state/helpers/state-equality.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/state/helpers/types.d.ts.map +1 -0
- package/lib/typescript/navigators/blank-stack/state/use-blank-stack-state.d.ts +14 -0
- package/lib/typescript/navigators/blank-stack/state/use-blank-stack-state.d.ts.map +1 -0
- package/lib/typescript/navigators/expo-router/index.d.ts +1 -1
- package/lib/typescript/navigators/expo-router/index.d.ts.map +1 -1
- package/lib/typescript/navigators/react-navigation/index.d.ts +2 -1
- package/lib/typescript/navigators/react-navigation/index.d.ts.map +1 -1
- package/lib/typescript/providers/builder/builder.provider.d.ts +50 -0
- package/lib/typescript/providers/builder/builder.provider.d.ts.map +1 -0
- package/lib/typescript/providers/builder/helpers/derive-descriptor-derivations.d.ts +20 -0
- package/lib/typescript/providers/builder/helpers/derive-descriptor-derivations.d.ts.map +1 -0
- package/lib/typescript/providers/builder/hooks/use-screen-topology.d.ts.map +1 -0
- package/lib/typescript/providers/builder/index.d.ts.map +1 -0
- package/lib/typescript/providers/builder/topology/helpers/create-screen-topology.d.ts.map +1 -0
- package/lib/typescript/providers/builder/topology/hooks/use-resolved-transition-key.d.ts +3 -0
- package/lib/typescript/providers/builder/topology/hooks/use-resolved-transition-key.d.ts.map +1 -0
- package/lib/typescript/providers/builder/topology/hooks/use-screen-relationships.d.ts.map +1 -0
- package/lib/typescript/providers/builder/topology/index.d.ts.map +1 -0
- package/lib/typescript/providers/builder/topology/types.d.ts.map +1 -0
- package/lib/typescript/providers/motion/animation/emit-motion-start.d.ts.map +1 -0
- package/lib/typescript/providers/motion/animation/helpers/build-screen-transition-options.d.ts +3 -0
- package/lib/typescript/providers/motion/animation/helpers/build-screen-transition-options.d.ts.map +1 -0
- package/lib/typescript/providers/motion/animation/helpers/hydrate-transition-state/gesture-progress.d.ts +10 -0
- package/lib/typescript/providers/motion/animation/helpers/hydrate-transition-state/gesture-progress.d.ts.map +1 -0
- package/lib/typescript/providers/motion/animation/helpers/hydrate-transition-state/index.d.ts +5 -0
- package/lib/typescript/providers/motion/animation/helpers/hydrate-transition-state/index.d.ts.map +1 -0
- package/lib/typescript/providers/motion/animation/helpers/hydrate-transition-state/snap-points.d.ts.map +1 -0
- package/lib/typescript/providers/motion/animation/helpers/hydrate-transition-state/types.d.ts +30 -0
- package/lib/typescript/providers/motion/animation/helpers/hydrate-transition-state/types.d.ts.map +1 -0
- package/lib/typescript/providers/motion/animation/helpers/worklet.d.ts +14 -0
- package/lib/typescript/providers/motion/animation/helpers/worklet.d.ts.map +1 -0
- package/lib/typescript/providers/motion/animation/index.d.ts.map +1 -0
- package/lib/typescript/providers/motion/animation/pipeline.d.ts.map +1 -0
- package/lib/typescript/providers/motion/animation/types.d.ts +3 -0
- package/lib/typescript/providers/motion/animation/types.d.ts.map +1 -0
- package/lib/typescript/providers/motion/animation/use-screen-animation.d.ts +9 -0
- package/lib/typescript/providers/motion/animation/use-screen-animation.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/index.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/ownership/compute-claimed-directions.d.ts +19 -0
- package/lib/typescript/providers/motion/gestures/ownership/compute-claimed-directions.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/ownership/gesture-ownership-coordinator.d.ts +26 -0
- package/lib/typescript/providers/motion/gestures/ownership/gesture-ownership-coordinator.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/ownership/hooks/use-gesture-sensitivity.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/ownership/hooks/use-screen-gesture-config.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/ownership/hooks/use-screen-gesture.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/ownership/hooks/use-stable-runtime-config.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/ownership/shadowing-claims.d.ts +7 -0
- package/lib/typescript/providers/motion/gestures/ownership/shadowing-claims.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/ownership/use-gesture-scroll-coordination.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/pan/activation/pan-activation-decision.d.ts +29 -0
- package/lib/typescript/providers/motion/gestures/pan/activation/pan-activation-decision.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/pan/activation/pan-activation-rules.d.ts +105 -0
- package/lib/typescript/providers/motion/gestures/pan/activation/pan-activation-rules.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/pan/activation/use-pan-activation.d.ts +20 -0
- package/lib/typescript/providers/motion/gestures/pan/activation/use-pan-activation.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/pan/behavior/pan-lifecycle.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/pan/behavior/pan-release.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/pan/behavior/pan-reset.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/pan/behavior/use-pan-behavior.d.ts +6 -0
- package/lib/typescript/providers/motion/gestures/pan/behavior/use-pan-behavior.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/pan/use-build-pan-gesture.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/pinch/activation/use-pinch-activation.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/pinch/behavior/pinch-lifecycle.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/pinch/behavior/pinch-release.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/pinch/behavior/pinch-reset.d.ts +12 -0
- package/lib/typescript/providers/motion/gestures/pinch/behavior/pinch-reset.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/pinch/behavior/use-pinch-behavior.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/pinch/use-build-pinch-gesture.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/scroll-coordination/index.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/scroll-coordination/scroll-metadata-owner.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/scroll-coordination/update-scroll-gesture-state.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/scroll-coordination/use-scroll-gesture-coordination.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/shared/directions.d.ts +20 -0
- package/lib/typescript/providers/motion/gestures/shared/directions.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/shared/physics.d.ts +71 -0
- package/lib/typescript/providers/motion/gestures/shared/physics.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/shared/policy.d.ts +34 -0
- package/lib/typescript/providers/motion/gestures/shared/policy.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/shared/release.d.ts +13 -0
- package/lib/typescript/providers/motion/gestures/shared/release.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/shared/reset.d.ts +10 -0
- package/lib/typescript/providers/motion/gestures/shared/reset.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/shared/runtime.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/shared/snap-points.d.ts +48 -0
- package/lib/typescript/providers/motion/gestures/shared/snap-points.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/shared/snapshot.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/shared/targets.d.ts +48 -0
- package/lib/typescript/providers/motion/gestures/shared/targets.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/shared/values.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/types.d.ts +140 -0
- package/lib/typescript/providers/motion/gestures/types.d.ts.map +1 -0
- package/lib/typescript/providers/motion/gestures/use-screen-gestures.d.ts +17 -0
- package/lib/typescript/providers/motion/gestures/use-screen-gestures.d.ts.map +1 -0
- package/lib/typescript/providers/motion/helpers/transition-visual-state.d.ts.map +1 -0
- package/lib/typescript/providers/motion/helpers/visibility-gate.d.ts.map +1 -0
- package/lib/typescript/providers/motion/hooks/use-maybe-block-visibility.d.ts.map +1 -0
- package/lib/typescript/providers/motion/hooks/use-motion-values.d.ts.map +1 -0
- package/lib/typescript/providers/motion/hooks/use-transition-values.d.ts +49 -0
- package/lib/typescript/providers/motion/hooks/use-transition-values.d.ts.map +1 -0
- package/lib/typescript/providers/motion/index.d.ts.map +1 -0
- package/lib/typescript/providers/motion/motion.provider.d.ts.map +1 -0
- package/lib/typescript/providers/motion/options/helpers.d.ts +6 -0
- package/lib/typescript/providers/motion/options/helpers.d.ts.map +1 -0
- package/lib/typescript/providers/motion/options/index.d.ts.map +1 -0
- package/lib/typescript/providers/motion/options/types.d.ts +24 -0
- package/lib/typescript/providers/motion/options/types.d.ts.map +1 -0
- package/lib/typescript/providers/motion/options/use-screen-options.d.ts.map +1 -0
- package/lib/typescript/providers/motion/types.d.ts +67 -0
- package/lib/typescript/providers/motion/types.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/helpers/derivations.d.ts +14 -0
- package/lib/typescript/providers/orchestrator/helpers/derivations.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/helpers/pipeline.d.ts +12 -0
- package/lib/typescript/providers/orchestrator/helpers/pipeline.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/helpers/selected-interpolator-options.d.ts +9 -0
- package/lib/typescript/providers/orchestrator/helpers/selected-interpolator-options.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/helpers/stack-progress.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/helpers/use-interpolator-state.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/helpers/use-pair-presentation.d.ts +21 -0
- package/lib/typescript/providers/orchestrator/helpers/use-pair-presentation.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/helpers/use-stack-progress-inputs.d.ts +18 -0
- package/lib/typescript/providers/orchestrator/helpers/use-stack-progress-inputs.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/hooks/use-register-gesture-ownership.d.ts +9 -0
- package/lib/typescript/providers/orchestrator/hooks/use-register-gesture-ownership.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/index.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/orchestrator.provider.d.ts +37 -0
- package/lib/typescript/providers/orchestrator/orchestrator.provider.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/constants.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/compose-slot-style.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/create-interpolator-scope.d.ts +8 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/create-interpolator-scope.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/normalize-slots.d.ts +10 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/normalize-slots.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/resolve-interpolator-style-handoff.d.ts +10 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/resolve-interpolator-style-handoff.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/resolve-slot-styles/are-resettable-states-equal.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/resolve-slot-styles/index.d.ts +24 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/resolve-slot-styles/index.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/resolve-slot-styles/materialize-slot.d.ts +15 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/resolve-slot-styles/materialize-slot.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/resolve-slot-styles/reset-values.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/resolve-slot-styles/slot-state.d.ts +13 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/resolve-slot-styles/slot-state.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/resolve-slot-styles/types.d.ts +10 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/resolve-slot-styles/types.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/select-interpolator-frame.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/helpers/strip-interpolator-options.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/hooks/slot-resolvers.d.ts +11 -0
- package/lib/typescript/providers/orchestrator/styles/hooks/slot-resolvers.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/hooks/use-interpolated-style-maps.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/hooks/use-resolved-slot-style-map.d.ts +9 -0
- package/lib/typescript/providers/orchestrator/styles/hooks/use-resolved-slot-style-map.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/index.d.ts.map +1 -0
- package/lib/typescript/providers/orchestrator/styles/types.d.ts +3 -0
- package/lib/typescript/providers/orchestrator/styles/types.d.ts.map +1 -0
- package/lib/typescript/types/animation.types.d.ts +16 -4
- package/lib/typescript/types/animation.types.d.ts.map +1 -1
- package/lib/typescript/types/bounds.types.d.ts +7 -15
- package/lib/typescript/types/bounds.types.d.ts.map +1 -1
- package/lib/typescript/types/index.d.ts +1 -1
- package/lib/typescript/types/index.d.ts.map +1 -1
- package/lib/typescript/types/screen.types.d.ts +1 -8
- package/lib/typescript/types/screen.types.d.ts.map +1 -1
- package/lib/typescript/utils/animation/animate-to-progress.d.ts +1 -1
- package/lib/typescript/utils/animation/animate-to-progress.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/navigation/reveal/build.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/navigation/reveal/config.d.ts +2 -3
- package/lib/typescript/utils/bounds/navigation/reveal/config.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/navigation/reveal/math.d.ts +3 -3
- package/lib/typescript/utils/bounds/navigation/reveal/types.d.ts +1 -5
- package/lib/typescript/utils/bounds/navigation/reveal/types.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/navigation/zoom/build.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/navigation/zoom/clip.d.ts +27 -0
- package/lib/typescript/utils/bounds/navigation/zoom/clip.d.ts.map +1 -0
- package/lib/typescript/utils/bounds/navigation/zoom/drag.d.ts +1 -1
- package/lib/typescript/utils/bounds/navigation/zoom/types.d.ts +1 -5
- package/lib/typescript/utils/bounds/navigation/zoom/types.d.ts.map +1 -1
- package/lib/typescript/utils/create-provider.d.ts +6 -2
- package/lib/typescript/utils/create-provider.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/adapters/with-screen-transitions/lifecycle/index.tsx +2 -2
- package/src/adapters/with-screen-transitions/lifecycle/use-native-close-transition-intent.ts +5 -5
- package/src/adapters/with-screen-transitions/stack-layout.tsx +43 -10
- package/src/components/boundary/components/boundary-lifecycle.tsx +45 -9
- package/src/components/boundary/components/boundary-target.tsx +14 -36
- package/src/components/boundary/create-boundary-component.tsx +16 -17
- package/src/components/boundary/helpers/presentation.ts +88 -0
- package/src/components/boundary/hooks/lifecycles/use-initial-destination-measurement.ts +3 -3
- package/src/components/boundary/hooks/lifecycles/use-initial-source-measurement.ts +1 -1
- package/src/components/boundary/hooks/lifecycles/use-refresh-boundary.ts +2 -2
- package/src/components/boundary/hooks/use-boundary-presentation.ts +82 -0
- package/src/components/boundary/hooks/use-composed-boundary-style.ts +58 -0
- package/src/components/boundary/hooks/use-measurer.ts +1 -1
- package/src/components/boundary/index.tsx +10 -5
- package/src/components/boundary/portal/components/portal-host.tsx +36 -0
- package/src/components/boundary/portal/components/portal-overlay.tsx +219 -0
- package/src/components/boundary/portal/components/portal.tsx +124 -0
- package/src/components/boundary/portal/hooks/use-active-portal-boundary-host.ts +52 -0
- package/src/components/boundary/portal/hooks/use-host-measurement.ts +82 -0
- package/src/components/boundary/portal/hooks/use-portal-destination.ts +53 -0
- package/src/components/boundary/portal/index.ts +0 -1
- package/src/components/boundary/portal/stores/host-registry.store.ts +115 -0
- package/src/components/boundary/portal/stores/portal-boundary-host.store.ts +93 -0
- package/src/components/boundary/portal/utils/naming.ts +10 -0
- package/src/components/boundary/portal/utils/resolve-portal.ts +9 -48
- package/src/components/boundary/providers/boundary-root.provider.tsx +36 -24
- package/src/components/create-transition-aware-component.tsx +3 -6
- package/src/components/overlay/helpers/create-overlay-interpolator-frame.ts +2 -2
- package/src/components/overlay/helpers/retain-ready-overlay-resources.ts +1 -1
- package/src/components/overlay/helpers/run-overlay-slot-interpolator.ts +4 -4
- package/src/components/overlay/hooks/use-overlay-slot.ts +1 -1
- package/src/components/overlay/index.tsx +33 -0
- package/src/components/overlay/variations/overlay-host.tsx +5 -5
- package/src/components/screen-layers/helpers/find-collapse-target.ts +62 -0
- package/src/components/screen-layers/helpers/layer-component.tsx +38 -0
- package/src/components/screen-layers/hooks/use-backdrop-pointer-events.ts +51 -0
- package/src/components/screen-layers/hooks/use-content-layout.ts +84 -0
- package/src/components/screen-layers/index.tsx +39 -0
- package/src/components/screen-layers/layers/backdrop.tsx +140 -0
- package/src/components/screen-layers/layers/clip.tsx +124 -0
- package/src/components/screen-layers/layers/content.tsx +72 -0
- package/src/components/screen-layers/layers/surface.tsx +50 -0
- package/src/constants.ts +3 -1
- package/src/controls/helpers/resolve-snap-target.ts +53 -0
- package/src/controls/snap-to.ts +96 -0
- package/src/controls/transition-blocking.ts +79 -0
- package/src/hooks/navigation/use-screen-state.ts +3 -3
- package/src/index.ts +19 -11
- package/src/navigators/blank-stack/components/activity/activity-screen.tsx +107 -0
- package/src/navigators/blank-stack/components/activity/index.tsx +2 -0
- package/src/navigators/blank-stack/components/lifecycle/blank-stack.tsx +18 -0
- package/src/navigators/blank-stack/components/lifecycle/hooks/helpers/reset-stores-for-screen.ts +9 -0
- package/src/navigators/blank-stack/components/lifecycle/hooks/history/use-screen-history.ts +90 -0
- package/src/navigators/blank-stack/components/lifecycle/hooks/use-close-completion.ts +28 -0
- package/src/navigators/blank-stack/components/lifecycle/hooks/use-close-transition-intent.ts +29 -0
- package/src/navigators/blank-stack/components/lifecycle/hooks/use-open-transition-intent.ts +136 -0
- package/src/navigators/blank-stack/components/lifecycle/hooks/use-transition-start-controller.ts +67 -0
- package/src/navigators/blank-stack/components/lifecycle/use-screen-lifecycle.ts +36 -0
- package/src/navigators/blank-stack/components/stack-view.tsx +96 -0
- package/src/navigators/blank-stack/create-blank-stack-navigator.tsx +35 -0
- package/src/navigators/blank-stack/hooks/use-navigation-helpers.ts +65 -0
- package/src/navigators/blank-stack/state/blank-stack.provider.tsx +90 -0
- package/src/navigators/blank-stack/state/helpers/reconcile-blank-stack-routes.ts +199 -0
- package/src/navigators/expo-router/index.tsx +1 -1
- package/src/navigators/react-navigation/index.tsx +3 -1
- package/src/providers/builder/builder.provider.tsx +86 -0
- package/src/providers/builder/helpers/derive-descriptor-derivations.ts +56 -0
- package/src/providers/builder/hooks/use-screen-topology.ts +52 -0
- package/src/providers/builder/topology/hooks/use-resolved-transition-key.ts +29 -0
- package/src/providers/motion/animation/emit-motion-start.ts +20 -0
- package/src/providers/motion/animation/helpers/build-screen-transition-options.ts +22 -0
- package/src/providers/motion/animation/helpers/hydrate-transition-state/gesture-progress.ts +192 -0
- package/src/providers/motion/animation/helpers/hydrate-transition-state/index.ts +230 -0
- package/src/providers/motion/animation/helpers/hydrate-transition-state/snap-points.ts +189 -0
- package/src/providers/motion/animation/helpers/hydrate-transition-state/types.ts +55 -0
- package/src/providers/motion/animation/helpers/worklet.ts +47 -0
- package/src/providers/motion/animation/pipeline.ts +82 -0
- package/src/providers/motion/animation/types.ts +3 -0
- package/src/providers/motion/animation/use-screen-animation.tsx +73 -0
- package/src/providers/motion/gestures/ownership/compute-claimed-directions.ts +98 -0
- package/src/providers/motion/gestures/ownership/gesture-ownership-coordinator.ts +252 -0
- package/src/providers/motion/gestures/ownership/hooks/use-screen-gesture-config.ts +61 -0
- package/src/providers/motion/gestures/ownership/shadowing-claims.ts +17 -0
- package/src/providers/motion/gestures/pan/activation/pan-activation-decision.ts +452 -0
- package/src/providers/motion/gestures/pan/activation/pan-activation-rules.ts +453 -0
- package/src/providers/motion/gestures/pan/activation/use-pan-activation.ts +161 -0
- package/src/providers/motion/gestures/pan/behavior/pan-lifecycle.ts +167 -0
- package/src/providers/motion/gestures/pan/behavior/pan-reset.ts +88 -0
- package/src/providers/motion/gestures/pan/behavior/use-pan-behavior.ts +138 -0
- package/src/providers/motion/gestures/pinch/behavior/pinch-lifecycle.ts +112 -0
- package/src/providers/motion/gestures/pinch/behavior/pinch-reset.ts +73 -0
- package/src/providers/motion/gestures/scroll-coordination/scroll-metadata-owner.tsx +40 -0
- package/src/providers/motion/gestures/scroll-coordination/use-scroll-gesture-coordination.ts +306 -0
- package/src/providers/motion/gestures/shared/directions.ts +219 -0
- package/src/providers/motion/gestures/shared/physics.ts +331 -0
- package/src/providers/motion/gestures/shared/policy.ts +416 -0
- package/src/providers/motion/gestures/shared/release.ts +43 -0
- package/src/providers/motion/gestures/shared/reset.ts +88 -0
- package/src/providers/motion/gestures/shared/snap-points.ts +338 -0
- package/src/providers/motion/gestures/shared/targets.ts +202 -0
- package/src/providers/motion/gestures/types.ts +202 -0
- package/src/providers/motion/gestures/use-screen-gestures.ts +66 -0
- package/src/providers/motion/hooks/use-maybe-block-visibility.tsx +121 -0
- package/src/providers/motion/hooks/use-motion-values.ts +109 -0
- package/src/providers/motion/hooks/use-transition-values.ts +136 -0
- package/src/providers/motion/motion.provider.tsx +69 -0
- package/src/providers/motion/options/helpers.ts +344 -0
- package/src/providers/motion/options/types.ts +29 -0
- package/src/providers/motion/options/use-screen-options.ts +72 -0
- package/src/providers/motion/types.ts +73 -0
- package/src/providers/orchestrator/helpers/derivations.ts +23 -0
- package/src/providers/orchestrator/helpers/pipeline.ts +329 -0
- package/src/providers/orchestrator/helpers/selected-interpolator-options.ts +90 -0
- package/src/providers/orchestrator/helpers/use-interpolator-state.ts +73 -0
- package/src/providers/orchestrator/helpers/use-pair-presentation.ts +103 -0
- package/src/providers/orchestrator/helpers/use-stack-progress-inputs.ts +143 -0
- package/src/providers/orchestrator/hooks/use-register-gesture-ownership.ts +76 -0
- package/src/providers/orchestrator/orchestrator.provider.tsx +73 -0
- package/src/providers/orchestrator/styles/constants.ts +87 -0
- package/src/providers/orchestrator/styles/helpers/compose-slot-style.ts +129 -0
- package/src/providers/orchestrator/styles/helpers/create-interpolator-scope.ts +26 -0
- package/src/providers/orchestrator/styles/helpers/normalize-slots.ts +111 -0
- package/src/providers/orchestrator/styles/helpers/resolve-interpolator-style-handoff.ts +138 -0
- package/src/providers/orchestrator/styles/helpers/resolve-slot-styles/index.ts +572 -0
- package/src/providers/orchestrator/styles/helpers/resolve-slot-styles/materialize-slot.ts +161 -0
- package/src/providers/orchestrator/styles/helpers/resolve-slot-styles/slot-state.ts +122 -0
- package/src/providers/orchestrator/styles/helpers/resolve-slot-styles/types.ts +12 -0
- package/src/providers/orchestrator/styles/hooks/slot-resolvers.tsx +112 -0
- package/src/providers/orchestrator/styles/hooks/use-interpolated-style-maps.tsx +297 -0
- package/src/providers/orchestrator/styles/hooks/use-resolved-slot-style-map.tsx +65 -0
- package/src/providers/orchestrator/styles/types.ts +13 -0
- package/src/types/animation.types.ts +35 -4
- package/src/types/bounds.types.ts +7 -15
- package/src/types/index.ts +1 -0
- package/src/types/screen.types.ts +1 -8
- package/src/utils/animation/animate-to-progress.ts +2 -2
- package/src/utils/bounds/navigation/reveal/build.ts +46 -80
- package/src/utils/bounds/navigation/reveal/config.ts +2 -4
- package/src/utils/bounds/navigation/reveal/math.ts +9 -9
- package/src/utils/bounds/navigation/reveal/types.ts +1 -8
- package/src/utils/bounds/navigation/zoom/build.ts +16 -26
- package/src/utils/bounds/navigation/zoom/clip.ts +127 -0
- package/src/utils/bounds/navigation/zoom/drag.ts +2 -2
- package/src/utils/bounds/navigation/zoom/types.ts +1 -8
- package/src/utils/create-provider.tsx +146 -9
- package/lib/commonjs/animation/resolve-snap-target.js +0 -48
- package/lib/commonjs/animation/resolve-snap-target.js.map +0 -1
- package/lib/commonjs/animation/snap-to.js +0 -79
- package/lib/commonjs/animation/snap-to.js.map +0 -1
- package/lib/commonjs/animation/transition-blocking.js +0 -71
- package/lib/commonjs/animation/transition-blocking.js.map +0 -1
- package/lib/commonjs/components/activity/helpers.js +0 -9
- package/lib/commonjs/components/activity/helpers.js.map +0 -1
- package/lib/commonjs/components/activity/index.js +0 -20
- package/lib/commonjs/components/activity/index.js.map +0 -1
- package/lib/commonjs/components/activity/variants/activity-container.js.map +0 -1
- package/lib/commonjs/components/activity/variants/activity-screen.js +0 -90
- package/lib/commonjs/components/activity/variants/activity-screen.js.map +0 -1
- package/lib/commonjs/components/boundary/hooks/use-boundary-measurement.js +0 -83
- package/lib/commonjs/components/boundary/hooks/use-boundary-measurement.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/components/host.js +0 -45
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/components/host.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js +0 -119
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/helpers/handoff-visibility.js +0 -20
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/helpers/handoff-visibility.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/helpers/host-name.js +0 -14
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/helpers/host-name.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js +0 -136
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/index.js +0 -53
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/index.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/components/host.js +0 -99
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/components/host.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.js +0 -104
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/helpers/local-measurement.js +0 -13
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/helpers/local-measurement.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/helpers/offset-style.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js +0 -82
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js +0 -58
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.js +0 -67
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-placeholder-styles.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/index.js +0 -68
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/index.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/stores/host-registry.store.js +0 -98
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/stores/host-registry.store.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.js +0 -60
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.js.map +0 -1
- package/lib/commonjs/components/overlay/variations/float-overlay.js +0 -32
- package/lib/commonjs/components/overlay/variations/float-overlay.js.map +0 -1
- package/lib/commonjs/components/screen/container/helpers/find-collapse-target.js +0 -64
- package/lib/commonjs/components/screen/container/helpers/find-collapse-target.js.map +0 -1
- package/lib/commonjs/components/screen/container/hooks/use-backdrop-pointer-events.js +0 -39
- package/lib/commonjs/components/screen/container/hooks/use-backdrop-pointer-events.js.map +0 -1
- package/lib/commonjs/components/screen/container/hooks/use-content-layout.js +0 -66
- package/lib/commonjs/components/screen/container/hooks/use-content-layout.js.map +0 -1
- package/lib/commonjs/components/screen/container/index.js +0 -41
- package/lib/commonjs/components/screen/container/index.js.map +0 -1
- package/lib/commonjs/components/screen/container/layers/backdrop.js +0 -109
- package/lib/commonjs/components/screen/container/layers/backdrop.js.map +0 -1
- package/lib/commonjs/components/screen/container/layers/content.js +0 -77
- package/lib/commonjs/components/screen/container/layers/content.js.map +0 -1
- package/lib/commonjs/components/screen/container/layers/maybe-masked-navigation-container.js +0 -83
- package/lib/commonjs/components/screen/container/layers/maybe-masked-navigation-container.js.map +0 -1
- package/lib/commonjs/components/screen/container/layers/render-component.js +0 -10
- package/lib/commonjs/components/screen/container/layers/render-component.js.map +0 -1
- package/lib/commonjs/components/screen/container/layers/surface.js +0 -50
- package/lib/commonjs/components/screen/container/layers/surface.js.map +0 -1
- package/lib/commonjs/components/screen/lifecycle/blank-stack.js +0 -25
- package/lib/commonjs/components/screen/lifecycle/blank-stack.js.map +0 -1
- package/lib/commonjs/components/screen/lifecycle/hooks/helpers/reset-stores-for-screen.js +0 -14
- package/lib/commonjs/components/screen/lifecycle/hooks/helpers/reset-stores-for-screen.js.map +0 -1
- package/lib/commonjs/components/screen/lifecycle/hooks/history/navigator-route-registry.js.map +0 -1
- package/lib/commonjs/components/screen/lifecycle/hooks/history/use-screen-history.js +0 -75
- package/lib/commonjs/components/screen/lifecycle/hooks/history/use-screen-history.js.map +0 -1
- package/lib/commonjs/components/screen/lifecycle/hooks/use-close-completion.js +0 -28
- package/lib/commonjs/components/screen/lifecycle/hooks/use-close-completion.js.map +0 -1
- package/lib/commonjs/components/screen/lifecycle/hooks/use-close-transition-intent.js +0 -32
- package/lib/commonjs/components/screen/lifecycle/hooks/use-close-transition-intent.js.map +0 -1
- package/lib/commonjs/components/screen/lifecycle/hooks/use-open-transition-intent.js +0 -95
- package/lib/commonjs/components/screen/lifecycle/hooks/use-open-transition-intent.js.map +0 -1
- package/lib/commonjs/components/screen/lifecycle/hooks/use-transition-start-controller.js +0 -55
- package/lib/commonjs/components/screen/lifecycle/hooks/use-transition-start-controller.js.map +0 -1
- package/lib/commonjs/components/screen/lifecycle/use-screen-lifecycle.js +0 -34
- package/lib/commonjs/components/screen/lifecycle/use-screen-lifecycle.js.map +0 -1
- package/lib/commonjs/components/screen/screen.js +0 -52
- package/lib/commonjs/components/screen/screen.js.map +0 -1
- package/lib/commonjs/components/screen/view.js +0 -71
- package/lib/commonjs/components/screen/view.js.map +0 -1
- package/lib/commonjs/hooks/navigation/use-navigation-helpers.js +0 -56
- package/lib/commonjs/hooks/navigation/use-navigation-helpers.js.map +0 -1
- package/lib/commonjs/navigators/create-blank-stack-navigator.js +0 -24
- package/lib/commonjs/navigators/create-blank-stack-navigator.js.map +0 -1
- package/lib/commonjs/providers/screen/builder/builder.provider.js +0 -61
- package/lib/commonjs/providers/screen/builder/builder.provider.js.map +0 -1
- package/lib/commonjs/providers/screen/builder/helpers/derive-descriptor-derivations.js +0 -34
- package/lib/commonjs/providers/screen/builder/helpers/derive-descriptor-derivations.js.map +0 -1
- package/lib/commonjs/providers/screen/builder/hooks/use-screen-topology.js +0 -41
- package/lib/commonjs/providers/screen/builder/hooks/use-screen-topology.js.map +0 -1
- package/lib/commonjs/providers/screen/builder/index.js.map +0 -1
- package/lib/commonjs/providers/screen/builder/topology/helpers/create-screen-topology.js.map +0 -1
- package/lib/commonjs/providers/screen/builder/topology/hooks/use-resolved-transition-key.js.map +0 -1
- package/lib/commonjs/providers/screen/builder/topology/hooks/use-screen-relationships.js.map +0 -1
- package/lib/commonjs/providers/screen/builder/topology/index.js.map +0 -1
- package/lib/commonjs/providers/screen/builder/topology/types.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/animation/emit-motion-start.js +0 -25
- package/lib/commonjs/providers/screen/motion/animation/emit-motion-start.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/animation/helpers/build-screen-transition-options.js +0 -24
- package/lib/commonjs/providers/screen/motion/animation/helpers/build-screen-transition-options.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/animation/helpers/hydrate-transition-state/gesture-progress.js +0 -89
- package/lib/commonjs/providers/screen/motion/animation/helpers/hydrate-transition-state/gesture-progress.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/animation/helpers/hydrate-transition-state/index.js +0 -130
- package/lib/commonjs/providers/screen/motion/animation/helpers/hydrate-transition-state/index.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/animation/helpers/hydrate-transition-state/snap-points.js +0 -96
- package/lib/commonjs/providers/screen/motion/animation/helpers/hydrate-transition-state/snap-points.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/animation/helpers/hydrate-transition-state/types.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/animation/helpers/worklet.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/animation/index.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/animation/pipeline.js +0 -34
- package/lib/commonjs/providers/screen/motion/animation/pipeline.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/animation/types.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/animation/use-screen-animation.js +0 -30
- package/lib/commonjs/providers/screen/motion/animation/use-screen-animation.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/index.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/ownership/compute-claimed-directions.js +0 -75
- package/lib/commonjs/providers/screen/motion/gestures/ownership/compute-claimed-directions.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/ownership/gesture-ownership-coordinator.js +0 -149
- package/lib/commonjs/providers/screen/motion/gestures/ownership/gesture-ownership-coordinator.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/ownership/hooks/use-gesture-sensitivity.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/ownership/hooks/use-screen-gesture-config.js +0 -18
- package/lib/commonjs/providers/screen/motion/gestures/ownership/hooks/use-screen-gesture-config.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/ownership/hooks/use-screen-gesture.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/ownership/hooks/use-stable-runtime-config.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/ownership/shadowing-claims.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/ownership/use-gesture-scroll-coordination.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/pan/activation/pan-activation-decision.js +0 -210
- package/lib/commonjs/providers/screen/motion/gestures/pan/activation/pan-activation-decision.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/pan/activation/pan-activation-rules.js +0 -316
- package/lib/commonjs/providers/screen/motion/gestures/pan/activation/pan-activation-rules.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/pan/activation/use-pan-activation.js +0 -100
- package/lib/commonjs/providers/screen/motion/gestures/pan/activation/use-pan-activation.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/pan/behavior/pan-lifecycle.js +0 -136
- package/lib/commonjs/providers/screen/motion/gestures/pan/behavior/pan-lifecycle.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/pan/behavior/pan-release.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/pan/behavior/pan-reset.js +0 -74
- package/lib/commonjs/providers/screen/motion/gestures/pan/behavior/pan-reset.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/pan/behavior/use-pan-behavior.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/pan/use-build-pan-gesture.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/pinch/activation/use-pinch-activation.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/pinch/behavior/pinch-lifecycle.js +0 -101
- package/lib/commonjs/providers/screen/motion/gestures/pinch/behavior/pinch-lifecycle.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/pinch/behavior/pinch-release.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/pinch/behavior/pinch-reset.js +0 -59
- package/lib/commonjs/providers/screen/motion/gestures/pinch/behavior/pinch-reset.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/pinch/behavior/use-pinch-behavior.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/pinch/use-build-pinch-gesture.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/scroll-coordination/index.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/scroll-coordination/scroll-metadata-owner.js +0 -37
- package/lib/commonjs/providers/screen/motion/gestures/scroll-coordination/scroll-metadata-owner.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/scroll-coordination/update-scroll-gesture-state.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/scroll-coordination/use-scroll-gesture-coordination.js +0 -210
- package/lib/commonjs/providers/screen/motion/gestures/scroll-coordination/use-scroll-gesture-coordination.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/shared/directions.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/shared/physics.js +0 -228
- package/lib/commonjs/providers/screen/motion/gestures/shared/physics.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/shared/policy.js +0 -277
- package/lib/commonjs/providers/screen/motion/gestures/shared/policy.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/shared/release.js +0 -36
- package/lib/commonjs/providers/screen/motion/gestures/shared/release.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/shared/reset.js +0 -63
- package/lib/commonjs/providers/screen/motion/gestures/shared/reset.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/shared/runtime.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/shared/snap-points.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/shared/snapshot.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/shared/targets.js +0 -122
- package/lib/commonjs/providers/screen/motion/gestures/shared/targets.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/shared/values.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/types.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/gestures/use-screen-gestures.js +0 -52
- package/lib/commonjs/providers/screen/motion/gestures/use-screen-gestures.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/helpers/transition-visual-state.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/helpers/visibility-gate.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/hooks/use-maybe-block-visibility.js +0 -92
- package/lib/commonjs/providers/screen/motion/hooks/use-maybe-block-visibility.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/hooks/use-motion-values.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/hooks/use-transition-values.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/index.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/motion.provider.js +0 -69
- package/lib/commonjs/providers/screen/motion/motion.provider.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/options/helpers.js +0 -176
- package/lib/commonjs/providers/screen/motion/options/helpers.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/options/index.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/options/types.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/options/use-screen-options.js +0 -24
- package/lib/commonjs/providers/screen/motion/options/use-screen-options.js.map +0 -1
- package/lib/commonjs/providers/screen/motion/types.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/helpers/derivations.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/helpers/pipeline.js +0 -209
- package/lib/commonjs/providers/screen/orchestrator/helpers/pipeline.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/helpers/selected-interpolator-options.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/helpers/stack-progress.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/helpers/use-interpolator-state.js +0 -23
- package/lib/commonjs/providers/screen/orchestrator/helpers/use-interpolator-state.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/hooks/use-register-gesture-ownership.js +0 -52
- package/lib/commonjs/providers/screen/orchestrator/hooks/use-register-gesture-ownership.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/index.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/orchestrator.provider.js +0 -58
- package/lib/commonjs/providers/screen/orchestrator/orchestrator.provider.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/constants.js +0 -98
- package/lib/commonjs/providers/screen/orchestrator/styles/constants.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/helpers/compose-slot-style.js +0 -95
- package/lib/commonjs/providers/screen/orchestrator/styles/helpers/compose-slot-style.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/helpers/create-interpolator-scope.js +0 -28
- package/lib/commonjs/providers/screen/orchestrator/styles/helpers/create-interpolator-scope.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/helpers/normalize-slots.js +0 -85
- package/lib/commonjs/providers/screen/orchestrator/styles/helpers/normalize-slots.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/helpers/resolve-interpolator-style-handoff.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/are-resettable-states-equal.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/index.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/materialize-slot.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/reset-values.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/slot-state.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/types.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/helpers/select-interpolator-frame.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/helpers/strip-interpolator-options.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/hooks/slot-resolvers.js +0 -89
- package/lib/commonjs/providers/screen/orchestrator/styles/hooks/slot-resolvers.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/hooks/use-interpolated-style-maps.js +0 -209
- package/lib/commonjs/providers/screen/orchestrator/styles/hooks/use-interpolated-style-maps.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/hooks/use-resolved-slot-style-map.js +0 -47
- package/lib/commonjs/providers/screen/orchestrator/styles/hooks/use-resolved-slot-style-map.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/index.js.map +0 -1
- package/lib/commonjs/providers/screen/orchestrator/styles/types.js.map +0 -1
- package/lib/commonjs/providers/screen/screen-composer.js +0 -30
- package/lib/commonjs/providers/screen/screen-composer.js.map +0 -1
- package/lib/commonjs/providers/stack/blank-stack-state/blank-stack-controller.js.map +0 -1
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/build-blank-stack-state.js.map +0 -1
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/derive-blank-stack-state.js.map +0 -1
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/navigation/compose-descriptors.js.map +0 -1
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/navigation/resolve-scene-neighbors.js.map +0 -1
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/navigation/sync-routes-with-removed.js.map +0 -1
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/reconcile-blank-stack-routes.js +0 -118
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/reconcile-blank-stack-routes.js.map +0 -1
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/resolve-presented-index.js.map +0 -1
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/state-equality.js.map +0 -1
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/types.js.map +0 -1
- package/lib/commonjs/providers/stack/blank-stack-state/index.js +0 -25
- package/lib/commonjs/providers/stack/blank-stack-state/index.js.map +0 -1
- package/lib/commonjs/providers/stack/blank-stack.provider.js +0 -69
- package/lib/commonjs/providers/stack/blank-stack.provider.js.map +0 -1
- package/lib/commonjs/utils/bounds/navigation/zoom/mask.js +0 -73
- package/lib/commonjs/utils/bounds/navigation/zoom/mask.js.map +0 -1
- package/lib/module/animation/resolve-snap-target.js +0 -44
- package/lib/module/animation/resolve-snap-target.js.map +0 -1
- package/lib/module/animation/snap-to.js +0 -74
- package/lib/module/animation/snap-to.js.map +0 -1
- package/lib/module/animation/transition-blocking.js +0 -66
- package/lib/module/animation/transition-blocking.js.map +0 -1
- package/lib/module/components/activity/helpers.js +0 -5
- package/lib/module/components/activity/helpers.js.map +0 -1
- package/lib/module/components/activity/index.js +0 -5
- package/lib/module/components/activity/index.js.map +0 -1
- package/lib/module/components/activity/variants/activity-container.js.map +0 -1
- package/lib/module/components/activity/variants/activity-screen.js +0 -87
- package/lib/module/components/activity/variants/activity-screen.js.map +0 -1
- package/lib/module/components/boundary/hooks/use-boundary-measurement.js +0 -78
- package/lib/module/components/boundary/hooks/use-boundary-measurement.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-content-portal/components/host.js +0 -40
- package/lib/module/components/boundary/portal/components/boundary-content-portal/components/host.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js +0 -110
- package/lib/module/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-content-portal/helpers/handoff-visibility.js +0 -16
- package/lib/module/components/boundary/portal/components/boundary-content-portal/helpers/handoff-visibility.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-content-portal/helpers/host-name.js +0 -9
- package/lib/module/components/boundary/portal/components/boundary-content-portal/helpers/host-name.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js +0 -131
- package/lib/module/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-content-portal/index.js +0 -42
- package/lib/module/components/boundary/portal/components/boundary-content-portal/index.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/components/host.js +0 -94
- package/lib/module/components/boundary/portal/components/boundary-portal/components/host.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.js +0 -99
- package/lib/module/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/helpers/local-measurement.js +0 -8
- package/lib/module/components/boundary/portal/components/boundary-portal/helpers/local-measurement.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/helpers/offset-style.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js +0 -76
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js +0 -53
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.js +0 -62
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-placeholder-styles.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/index.js +0 -63
- package/lib/module/components/boundary/portal/components/boundary-portal/index.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/stores/host-registry.store.js +0 -89
- package/lib/module/components/boundary/portal/components/boundary-portal/stores/host-registry.store.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.js +0 -53
- package/lib/module/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.js.map +0 -1
- package/lib/module/components/overlay/variations/float-overlay.js +0 -29
- package/lib/module/components/overlay/variations/float-overlay.js.map +0 -1
- package/lib/module/components/screen/container/helpers/find-collapse-target.js +0 -60
- package/lib/module/components/screen/container/helpers/find-collapse-target.js.map +0 -1
- package/lib/module/components/screen/container/hooks/use-backdrop-pointer-events.js +0 -35
- package/lib/module/components/screen/container/hooks/use-backdrop-pointer-events.js.map +0 -1
- package/lib/module/components/screen/container/hooks/use-content-layout.js +0 -63
- package/lib/module/components/screen/container/hooks/use-content-layout.js.map +0 -1
- package/lib/module/components/screen/container/index.js +0 -37
- package/lib/module/components/screen/container/index.js.map +0 -1
- package/lib/module/components/screen/container/layers/backdrop.js +0 -104
- package/lib/module/components/screen/container/layers/backdrop.js.map +0 -1
- package/lib/module/components/screen/container/layers/content.js +0 -72
- package/lib/module/components/screen/container/layers/content.js.map +0 -1
- package/lib/module/components/screen/container/layers/maybe-masked-navigation-container.js +0 -78
- package/lib/module/components/screen/container/layers/maybe-masked-navigation-container.js.map +0 -1
- package/lib/module/components/screen/container/layers/render-component.js +0 -6
- package/lib/module/components/screen/container/layers/render-component.js.map +0 -1
- package/lib/module/components/screen/container/layers/surface.js +0 -45
- package/lib/module/components/screen/container/layers/surface.js.map +0 -1
- package/lib/module/components/screen/lifecycle/blank-stack.js +0 -21
- package/lib/module/components/screen/lifecycle/blank-stack.js.map +0 -1
- package/lib/module/components/screen/lifecycle/hooks/helpers/reset-stores-for-screen.js +0 -10
- package/lib/module/components/screen/lifecycle/hooks/helpers/reset-stores-for-screen.js.map +0 -1
- package/lib/module/components/screen/lifecycle/hooks/history/navigator-route-registry.js.map +0 -1
- package/lib/module/components/screen/lifecycle/hooks/history/use-screen-history.js +0 -70
- package/lib/module/components/screen/lifecycle/hooks/history/use-screen-history.js.map +0 -1
- package/lib/module/components/screen/lifecycle/hooks/use-close-completion.js +0 -23
- package/lib/module/components/screen/lifecycle/hooks/use-close-completion.js.map +0 -1
- package/lib/module/components/screen/lifecycle/hooks/use-close-transition-intent.js +0 -27
- package/lib/module/components/screen/lifecycle/hooks/use-close-transition-intent.js.map +0 -1
- package/lib/module/components/screen/lifecycle/hooks/use-open-transition-intent.js +0 -90
- package/lib/module/components/screen/lifecycle/hooks/use-open-transition-intent.js.map +0 -1
- package/lib/module/components/screen/lifecycle/hooks/use-transition-start-controller.js +0 -50
- package/lib/module/components/screen/lifecycle/hooks/use-transition-start-controller.js.map +0 -1
- package/lib/module/components/screen/lifecycle/use-screen-lifecycle.js +0 -30
- package/lib/module/components/screen/lifecycle/use-screen-lifecycle.js.map +0 -1
- package/lib/module/components/screen/screen.js +0 -48
- package/lib/module/components/screen/screen.js.map +0 -1
- package/lib/module/components/screen/view.js +0 -67
- package/lib/module/components/screen/view.js.map +0 -1
- package/lib/module/hooks/navigation/use-navigation-helpers.js +0 -52
- package/lib/module/hooks/navigation/use-navigation-helpers.js.map +0 -1
- package/lib/module/navigators/create-blank-stack-navigator.js +0 -20
- package/lib/module/navigators/create-blank-stack-navigator.js.map +0 -1
- package/lib/module/providers/screen/builder/builder.provider.js +0 -52
- package/lib/module/providers/screen/builder/builder.provider.js.map +0 -1
- package/lib/module/providers/screen/builder/helpers/derive-descriptor-derivations.js +0 -30
- package/lib/module/providers/screen/builder/helpers/derive-descriptor-derivations.js.map +0 -1
- package/lib/module/providers/screen/builder/hooks/use-screen-topology.js +0 -37
- package/lib/module/providers/screen/builder/hooks/use-screen-topology.js.map +0 -1
- package/lib/module/providers/screen/builder/index.js.map +0 -1
- package/lib/module/providers/screen/builder/topology/helpers/create-screen-topology.js.map +0 -1
- package/lib/module/providers/screen/builder/topology/hooks/use-resolved-transition-key.js.map +0 -1
- package/lib/module/providers/screen/builder/topology/hooks/use-screen-relationships.js.map +0 -1
- package/lib/module/providers/screen/builder/topology/index.js.map +0 -1
- package/lib/module/providers/screen/builder/topology/types.js.map +0 -1
- package/lib/module/providers/screen/motion/animation/emit-motion-start.js +0 -20
- package/lib/module/providers/screen/motion/animation/emit-motion-start.js.map +0 -1
- package/lib/module/providers/screen/motion/animation/helpers/build-screen-transition-options.js +0 -19
- package/lib/module/providers/screen/motion/animation/helpers/build-screen-transition-options.js.map +0 -1
- package/lib/module/providers/screen/motion/animation/helpers/hydrate-transition-state/gesture-progress.js +0 -84
- package/lib/module/providers/screen/motion/animation/helpers/hydrate-transition-state/gesture-progress.js.map +0 -1
- package/lib/module/providers/screen/motion/animation/helpers/hydrate-transition-state/index.js +0 -125
- package/lib/module/providers/screen/motion/animation/helpers/hydrate-transition-state/index.js.map +0 -1
- package/lib/module/providers/screen/motion/animation/helpers/hydrate-transition-state/snap-points.js +0 -89
- package/lib/module/providers/screen/motion/animation/helpers/hydrate-transition-state/snap-points.js.map +0 -1
- package/lib/module/providers/screen/motion/animation/helpers/hydrate-transition-state/types.js.map +0 -1
- package/lib/module/providers/screen/motion/animation/helpers/worklet.js.map +0 -1
- package/lib/module/providers/screen/motion/animation/index.js.map +0 -1
- package/lib/module/providers/screen/motion/animation/pipeline.js +0 -30
- package/lib/module/providers/screen/motion/animation/pipeline.js.map +0 -1
- package/lib/module/providers/screen/motion/animation/types.js.map +0 -1
- package/lib/module/providers/screen/motion/animation/use-screen-animation.js +0 -26
- package/lib/module/providers/screen/motion/animation/use-screen-animation.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/index.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/ownership/compute-claimed-directions.js +0 -71
- package/lib/module/providers/screen/motion/gestures/ownership/compute-claimed-directions.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/ownership/gesture-ownership-coordinator.js +0 -144
- package/lib/module/providers/screen/motion/gestures/ownership/gesture-ownership-coordinator.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/ownership/hooks/use-gesture-sensitivity.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/ownership/hooks/use-screen-gesture-config.js +0 -14
- package/lib/module/providers/screen/motion/gestures/ownership/hooks/use-screen-gesture-config.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/ownership/hooks/use-screen-gesture.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/ownership/hooks/use-stable-runtime-config.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/ownership/shadowing-claims.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/ownership/use-gesture-scroll-coordination.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/pan/activation/pan-activation-decision.js +0 -205
- package/lib/module/providers/screen/motion/gestures/pan/activation/pan-activation-decision.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/pan/activation/pan-activation-rules.js +0 -306
- package/lib/module/providers/screen/motion/gestures/pan/activation/pan-activation-rules.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/pan/activation/use-pan-activation.js +0 -95
- package/lib/module/providers/screen/motion/gestures/pan/activation/use-pan-activation.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/pan/behavior/pan-lifecycle.js +0 -129
- package/lib/module/providers/screen/motion/gestures/pan/behavior/pan-lifecycle.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/pan/behavior/pan-release.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/pan/behavior/pan-reset.js +0 -69
- package/lib/module/providers/screen/motion/gestures/pan/behavior/pan-reset.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/pan/behavior/use-pan-behavior.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/pan/use-build-pan-gesture.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/pinch/activation/use-pinch-activation.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/pinch/behavior/pinch-lifecycle.js +0 -94
- package/lib/module/providers/screen/motion/gestures/pinch/behavior/pinch-lifecycle.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/pinch/behavior/pinch-release.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/pinch/behavior/pinch-reset.js +0 -54
- package/lib/module/providers/screen/motion/gestures/pinch/behavior/pinch-reset.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/pinch/behavior/use-pinch-behavior.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/pinch/use-build-pinch-gesture.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/scroll-coordination/index.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/scroll-coordination/scroll-metadata-owner.js +0 -29
- package/lib/module/providers/screen/motion/gestures/scroll-coordination/scroll-metadata-owner.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/scroll-coordination/update-scroll-gesture-state.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/scroll-coordination/use-scroll-gesture-coordination.js +0 -204
- package/lib/module/providers/screen/motion/gestures/scroll-coordination/use-scroll-gesture-coordination.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/shared/directions.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/shared/physics.js +0 -213
- package/lib/module/providers/screen/motion/gestures/shared/physics.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/shared/policy.js +0 -268
- package/lib/module/providers/screen/motion/gestures/shared/policy.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/shared/release.js +0 -30
- package/lib/module/providers/screen/motion/gestures/shared/release.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/shared/reset.js +0 -58
- package/lib/module/providers/screen/motion/gestures/shared/reset.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/shared/runtime.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/shared/snap-points.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/shared/snapshot.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/shared/targets.js +0 -116
- package/lib/module/providers/screen/motion/gestures/shared/targets.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/shared/values.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/types.js.map +0 -1
- package/lib/module/providers/screen/motion/gestures/use-screen-gestures.js +0 -48
- package/lib/module/providers/screen/motion/gestures/use-screen-gestures.js.map +0 -1
- package/lib/module/providers/screen/motion/helpers/transition-visual-state.js.map +0 -1
- package/lib/module/providers/screen/motion/helpers/visibility-gate.js.map +0 -1
- package/lib/module/providers/screen/motion/hooks/use-maybe-block-visibility.js +0 -87
- package/lib/module/providers/screen/motion/hooks/use-maybe-block-visibility.js.map +0 -1
- package/lib/module/providers/screen/motion/hooks/use-motion-values.js.map +0 -1
- package/lib/module/providers/screen/motion/hooks/use-transition-values.js.map +0 -1
- package/lib/module/providers/screen/motion/index.js.map +0 -1
- package/lib/module/providers/screen/motion/motion.provider.js +0 -60
- package/lib/module/providers/screen/motion/motion.provider.js.map +0 -1
- package/lib/module/providers/screen/motion/options/helpers.js +0 -169
- package/lib/module/providers/screen/motion/options/helpers.js.map +0 -1
- package/lib/module/providers/screen/motion/options/index.js.map +0 -1
- package/lib/module/providers/screen/motion/options/types.js.map +0 -1
- package/lib/module/providers/screen/motion/options/use-screen-options.js +0 -20
- package/lib/module/providers/screen/motion/options/use-screen-options.js.map +0 -1
- package/lib/module/providers/screen/motion/types.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/helpers/derivations.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/helpers/pipeline.js +0 -205
- package/lib/module/providers/screen/orchestrator/helpers/pipeline.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/helpers/selected-interpolator-options.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/helpers/stack-progress.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/helpers/use-interpolator-state.js +0 -19
- package/lib/module/providers/screen/orchestrator/helpers/use-interpolator-state.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/hooks/use-register-gesture-ownership.js +0 -47
- package/lib/module/providers/screen/orchestrator/hooks/use-register-gesture-ownership.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/index.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/orchestrator.provider.js +0 -50
- package/lib/module/providers/screen/orchestrator/orchestrator.provider.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/constants.js +0 -92
- package/lib/module/providers/screen/orchestrator/styles/constants.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/helpers/compose-slot-style.js +0 -89
- package/lib/module/providers/screen/orchestrator/styles/helpers/compose-slot-style.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/helpers/create-interpolator-scope.js +0 -23
- package/lib/module/providers/screen/orchestrator/styles/helpers/create-interpolator-scope.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/helpers/normalize-slots.js +0 -81
- package/lib/module/providers/screen/orchestrator/styles/helpers/normalize-slots.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/helpers/resolve-interpolator-style-handoff.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/are-resettable-states-equal.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/index.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/materialize-slot.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/reset-values.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/slot-state.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/types.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/helpers/select-interpolator-frame.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/helpers/strip-interpolator-options.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/hooks/slot-resolvers.js +0 -80
- package/lib/module/providers/screen/orchestrator/styles/hooks/slot-resolvers.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/hooks/use-interpolated-style-maps.js +0 -204
- package/lib/module/providers/screen/orchestrator/styles/hooks/use-interpolated-style-maps.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/hooks/use-resolved-slot-style-map.js +0 -42
- package/lib/module/providers/screen/orchestrator/styles/hooks/use-resolved-slot-style-map.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/index.js.map +0 -1
- package/lib/module/providers/screen/orchestrator/styles/types.js.map +0 -1
- package/lib/module/providers/screen/screen-composer.js +0 -26
- package/lib/module/providers/screen/screen-composer.js.map +0 -1
- package/lib/module/providers/stack/blank-stack-state/blank-stack-controller.js.map +0 -1
- package/lib/module/providers/stack/blank-stack-state/helpers/build-blank-stack-state.js.map +0 -1
- package/lib/module/providers/stack/blank-stack-state/helpers/derive-blank-stack-state.js.map +0 -1
- package/lib/module/providers/stack/blank-stack-state/helpers/navigation/compose-descriptors.js.map +0 -1
- package/lib/module/providers/stack/blank-stack-state/helpers/navigation/resolve-scene-neighbors.js.map +0 -1
- package/lib/module/providers/stack/blank-stack-state/helpers/navigation/sync-routes-with-removed.js.map +0 -1
- package/lib/module/providers/stack/blank-stack-state/helpers/reconcile-blank-stack-routes.js +0 -113
- package/lib/module/providers/stack/blank-stack-state/helpers/reconcile-blank-stack-routes.js.map +0 -1
- package/lib/module/providers/stack/blank-stack-state/helpers/resolve-presented-index.js.map +0 -1
- package/lib/module/providers/stack/blank-stack-state/helpers/state-equality.js.map +0 -1
- package/lib/module/providers/stack/blank-stack-state/helpers/types.js.map +0 -1
- package/lib/module/providers/stack/blank-stack-state/index.js +0 -20
- package/lib/module/providers/stack/blank-stack-state/index.js.map +0 -1
- package/lib/module/providers/stack/blank-stack.provider.js +0 -61
- package/lib/module/providers/stack/blank-stack.provider.js.map +0 -1
- package/lib/module/utils/bounds/navigation/zoom/mask.js +0 -68
- package/lib/module/utils/bounds/navigation/zoom/mask.js.map +0 -1
- package/lib/typescript/animation/resolve-snap-target.d.ts +0 -3
- package/lib/typescript/animation/resolve-snap-target.d.ts.map +0 -1
- package/lib/typescript/animation/snap-to.d.ts.map +0 -1
- package/lib/typescript/animation/transition-blocking.d.ts.map +0 -1
- package/lib/typescript/components/activity/helpers.d.ts +0 -4
- package/lib/typescript/components/activity/helpers.d.ts.map +0 -1
- package/lib/typescript/components/activity/index.d.ts +0 -3
- package/lib/typescript/components/activity/index.d.ts.map +0 -1
- package/lib/typescript/components/activity/variants/activity-container.d.ts.map +0 -1
- package/lib/typescript/components/activity/variants/activity-screen.d.ts.map +0 -1
- package/lib/typescript/components/boundary/hooks/use-boundary-measurement.d.ts +0 -28
- package/lib/typescript/components/boundary/hooks/use-boundary-measurement.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/components/host.d.ts +0 -10
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/components/host.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.d.ts +0 -45
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/helpers/handoff-visibility.d.ts +0 -8
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/helpers/handoff-visibility.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/helpers/host-name.d.ts +0 -2
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/helpers/host-name.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.d.ts +0 -10
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/index.d.ts +0 -9
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/index.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/components/host.d.ts +0 -7
- package/lib/typescript/components/boundary/portal/components/boundary-portal/components/host.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.d.ts +0 -13
- package/lib/typescript/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/helpers/local-measurement.d.ts +0 -4
- package/lib/typescript/components/boundary/portal/components/boundary-portal/helpers/local-measurement.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/helpers/offset-style.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.d.ts +0 -21
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.d.ts +0 -10
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.d.ts +0 -12
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-placeholder-styles.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/index.d.ts +0 -12
- package/lib/typescript/components/boundary/portal/components/boundary-portal/index.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/stores/host-registry.store.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.d.ts +0 -16
- package/lib/typescript/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.d.ts.map +0 -1
- package/lib/typescript/components/overlay/variations/float-overlay.d.ts +0 -6
- package/lib/typescript/components/overlay/variations/float-overlay.d.ts.map +0 -1
- package/lib/typescript/components/screen/container/helpers/find-collapse-target.d.ts.map +0 -1
- package/lib/typescript/components/screen/container/hooks/use-backdrop-pointer-events.d.ts +0 -16
- package/lib/typescript/components/screen/container/hooks/use-backdrop-pointer-events.d.ts.map +0 -1
- package/lib/typescript/components/screen/container/hooks/use-content-layout.d.ts.map +0 -1
- package/lib/typescript/components/screen/container/index.d.ts +0 -6
- package/lib/typescript/components/screen/container/index.d.ts.map +0 -1
- package/lib/typescript/components/screen/container/layers/backdrop.d.ts +0 -7
- package/lib/typescript/components/screen/container/layers/backdrop.d.ts.map +0 -1
- package/lib/typescript/components/screen/container/layers/content.d.ts.map +0 -1
- package/lib/typescript/components/screen/container/layers/maybe-masked-navigation-container.d.ts +0 -9
- package/lib/typescript/components/screen/container/layers/maybe-masked-navigation-container.d.ts.map +0 -1
- package/lib/typescript/components/screen/container/layers/render-component.d.ts +0 -3
- package/lib/typescript/components/screen/container/layers/render-component.d.ts.map +0 -1
- package/lib/typescript/components/screen/container/layers/surface.d.ts.map +0 -1
- package/lib/typescript/components/screen/lifecycle/blank-stack.d.ts.map +0 -1
- package/lib/typescript/components/screen/lifecycle/hooks/helpers/reset-stores-for-screen.d.ts.map +0 -1
- package/lib/typescript/components/screen/lifecycle/hooks/history/navigator-route-registry.d.ts.map +0 -1
- package/lib/typescript/components/screen/lifecycle/hooks/history/use-screen-history.d.ts +0 -7
- package/lib/typescript/components/screen/lifecycle/hooks/history/use-screen-history.d.ts.map +0 -1
- package/lib/typescript/components/screen/lifecycle/hooks/use-close-completion.d.ts.map +0 -1
- package/lib/typescript/components/screen/lifecycle/hooks/use-close-transition-intent.d.ts +0 -5
- package/lib/typescript/components/screen/lifecycle/hooks/use-close-transition-intent.d.ts.map +0 -1
- package/lib/typescript/components/screen/lifecycle/hooks/use-open-transition-intent.d.ts +0 -8
- package/lib/typescript/components/screen/lifecycle/hooks/use-open-transition-intent.d.ts.map +0 -1
- package/lib/typescript/components/screen/lifecycle/hooks/use-transition-start-controller.d.ts +0 -9
- package/lib/typescript/components/screen/lifecycle/hooks/use-transition-start-controller.d.ts.map +0 -1
- package/lib/typescript/components/screen/lifecycle/use-screen-lifecycle.d.ts.map +0 -1
- package/lib/typescript/components/screen/screen.d.ts +0 -7
- package/lib/typescript/components/screen/screen.d.ts.map +0 -1
- package/lib/typescript/components/screen/view.d.ts +0 -3
- package/lib/typescript/components/screen/view.d.ts.map +0 -1
- package/lib/typescript/hooks/navigation/use-navigation-helpers.d.ts.map +0 -1
- package/lib/typescript/navigators/create-blank-stack-navigator.d.ts +0 -9
- package/lib/typescript/navigators/create-blank-stack-navigator.d.ts.map +0 -1
- package/lib/typescript/providers/screen/builder/builder.provider.d.ts +0 -50
- package/lib/typescript/providers/screen/builder/builder.provider.d.ts.map +0 -1
- package/lib/typescript/providers/screen/builder/helpers/derive-descriptor-derivations.d.ts +0 -20
- package/lib/typescript/providers/screen/builder/helpers/derive-descriptor-derivations.d.ts.map +0 -1
- package/lib/typescript/providers/screen/builder/hooks/use-screen-topology.d.ts.map +0 -1
- package/lib/typescript/providers/screen/builder/index.d.ts.map +0 -1
- package/lib/typescript/providers/screen/builder/topology/helpers/create-screen-topology.d.ts.map +0 -1
- package/lib/typescript/providers/screen/builder/topology/hooks/use-resolved-transition-key.d.ts +0 -3
- package/lib/typescript/providers/screen/builder/topology/hooks/use-resolved-transition-key.d.ts.map +0 -1
- package/lib/typescript/providers/screen/builder/topology/hooks/use-screen-relationships.d.ts.map +0 -1
- package/lib/typescript/providers/screen/builder/topology/index.d.ts.map +0 -1
- package/lib/typescript/providers/screen/builder/topology/types.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/animation/emit-motion-start.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/animation/helpers/build-screen-transition-options.d.ts +0 -3
- package/lib/typescript/providers/screen/motion/animation/helpers/build-screen-transition-options.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/animation/helpers/hydrate-transition-state/gesture-progress.d.ts +0 -10
- package/lib/typescript/providers/screen/motion/animation/helpers/hydrate-transition-state/gesture-progress.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/animation/helpers/hydrate-transition-state/index.d.ts +0 -5
- package/lib/typescript/providers/screen/motion/animation/helpers/hydrate-transition-state/index.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/animation/helpers/hydrate-transition-state/snap-points.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/animation/helpers/hydrate-transition-state/types.d.ts +0 -28
- package/lib/typescript/providers/screen/motion/animation/helpers/hydrate-transition-state/types.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/animation/helpers/worklet.d.ts +0 -14
- package/lib/typescript/providers/screen/motion/animation/helpers/worklet.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/animation/index.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/animation/pipeline.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/animation/types.d.ts +0 -3
- package/lib/typescript/providers/screen/motion/animation/types.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/animation/use-screen-animation.d.ts +0 -9
- package/lib/typescript/providers/screen/motion/animation/use-screen-animation.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/index.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/ownership/compute-claimed-directions.d.ts +0 -19
- package/lib/typescript/providers/screen/motion/gestures/ownership/compute-claimed-directions.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/ownership/gesture-ownership-coordinator.d.ts +0 -26
- package/lib/typescript/providers/screen/motion/gestures/ownership/gesture-ownership-coordinator.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/ownership/hooks/use-gesture-sensitivity.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/ownership/hooks/use-screen-gesture-config.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/ownership/hooks/use-screen-gesture.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/ownership/hooks/use-stable-runtime-config.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/ownership/shadowing-claims.d.ts +0 -7
- package/lib/typescript/providers/screen/motion/gestures/ownership/shadowing-claims.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/ownership/use-gesture-scroll-coordination.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/pan/activation/pan-activation-decision.d.ts +0 -29
- package/lib/typescript/providers/screen/motion/gestures/pan/activation/pan-activation-decision.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/pan/activation/pan-activation-rules.d.ts +0 -105
- package/lib/typescript/providers/screen/motion/gestures/pan/activation/pan-activation-rules.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/pan/activation/use-pan-activation.d.ts +0 -20
- package/lib/typescript/providers/screen/motion/gestures/pan/activation/use-pan-activation.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/pan/behavior/pan-lifecycle.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/pan/behavior/pan-release.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/pan/behavior/pan-reset.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/pan/behavior/use-pan-behavior.d.ts +0 -6
- package/lib/typescript/providers/screen/motion/gestures/pan/behavior/use-pan-behavior.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/pan/use-build-pan-gesture.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/pinch/activation/use-pinch-activation.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/pinch/behavior/pinch-lifecycle.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/pinch/behavior/pinch-release.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/pinch/behavior/pinch-reset.d.ts +0 -12
- package/lib/typescript/providers/screen/motion/gestures/pinch/behavior/pinch-reset.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/pinch/behavior/use-pinch-behavior.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/pinch/use-build-pinch-gesture.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/scroll-coordination/index.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/scroll-coordination/scroll-metadata-owner.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/scroll-coordination/update-scroll-gesture-state.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/scroll-coordination/use-scroll-gesture-coordination.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/shared/directions.d.ts +0 -20
- package/lib/typescript/providers/screen/motion/gestures/shared/directions.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/shared/physics.d.ts +0 -71
- package/lib/typescript/providers/screen/motion/gestures/shared/physics.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/shared/policy.d.ts +0 -34
- package/lib/typescript/providers/screen/motion/gestures/shared/policy.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/shared/release.d.ts +0 -13
- package/lib/typescript/providers/screen/motion/gestures/shared/release.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/shared/reset.d.ts +0 -10
- package/lib/typescript/providers/screen/motion/gestures/shared/reset.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/shared/runtime.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/shared/snap-points.d.ts +0 -48
- package/lib/typescript/providers/screen/motion/gestures/shared/snap-points.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/shared/snapshot.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/shared/targets.d.ts +0 -48
- package/lib/typescript/providers/screen/motion/gestures/shared/targets.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/shared/values.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/types.d.ts +0 -140
- package/lib/typescript/providers/screen/motion/gestures/types.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/gestures/use-screen-gestures.d.ts +0 -17
- package/lib/typescript/providers/screen/motion/gestures/use-screen-gestures.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/helpers/transition-visual-state.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/helpers/visibility-gate.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/hooks/use-maybe-block-visibility.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/hooks/use-motion-values.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/hooks/use-transition-values.d.ts +0 -49
- package/lib/typescript/providers/screen/motion/hooks/use-transition-values.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/index.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/motion.provider.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/options/helpers.d.ts +0 -6
- package/lib/typescript/providers/screen/motion/options/helpers.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/options/index.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/options/types.d.ts +0 -25
- package/lib/typescript/providers/screen/motion/options/types.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/options/use-screen-options.d.ts.map +0 -1
- package/lib/typescript/providers/screen/motion/types.d.ts +0 -67
- package/lib/typescript/providers/screen/motion/types.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/helpers/derivations.d.ts +0 -14
- package/lib/typescript/providers/screen/orchestrator/helpers/derivations.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/helpers/pipeline.d.ts +0 -12
- package/lib/typescript/providers/screen/orchestrator/helpers/pipeline.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/helpers/selected-interpolator-options.d.ts +0 -9
- package/lib/typescript/providers/screen/orchestrator/helpers/selected-interpolator-options.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/helpers/stack-progress.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/helpers/use-interpolator-state.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/hooks/use-register-gesture-ownership.d.ts +0 -9
- package/lib/typescript/providers/screen/orchestrator/hooks/use-register-gesture-ownership.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/index.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/orchestrator.provider.d.ts +0 -35
- package/lib/typescript/providers/screen/orchestrator/orchestrator.provider.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/constants.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/compose-slot-style.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/create-interpolator-scope.d.ts +0 -8
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/create-interpolator-scope.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/normalize-slots.d.ts +0 -10
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/normalize-slots.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/resolve-interpolator-style-handoff.d.ts +0 -10
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/resolve-interpolator-style-handoff.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/are-resettable-states-equal.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/index.d.ts +0 -24
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/index.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/materialize-slot.d.ts +0 -15
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/materialize-slot.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/reset-values.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/slot-state.d.ts +0 -13
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/slot-state.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/types.d.ts +0 -10
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/types.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/select-interpolator-frame.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/helpers/strip-interpolator-options.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/hooks/slot-resolvers.d.ts +0 -11
- package/lib/typescript/providers/screen/orchestrator/styles/hooks/slot-resolvers.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/hooks/use-interpolated-style-maps.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/hooks/use-resolved-slot-style-map.d.ts +0 -9
- package/lib/typescript/providers/screen/orchestrator/styles/hooks/use-resolved-slot-style-map.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/index.d.ts.map +0 -1
- package/lib/typescript/providers/screen/orchestrator/styles/types.d.ts +0 -3
- package/lib/typescript/providers/screen/orchestrator/styles/types.d.ts.map +0 -1
- package/lib/typescript/providers/screen/screen-composer.d.ts +0 -6
- package/lib/typescript/providers/screen/screen-composer.d.ts.map +0 -1
- package/lib/typescript/providers/stack/blank-stack-state/blank-stack-controller.d.ts.map +0 -1
- package/lib/typescript/providers/stack/blank-stack-state/helpers/build-blank-stack-state.d.ts.map +0 -1
- package/lib/typescript/providers/stack/blank-stack-state/helpers/derive-blank-stack-state.d.ts.map +0 -1
- package/lib/typescript/providers/stack/blank-stack-state/helpers/navigation/compose-descriptors.d.ts.map +0 -1
- package/lib/typescript/providers/stack/blank-stack-state/helpers/navigation/resolve-scene-neighbors.d.ts.map +0 -1
- package/lib/typescript/providers/stack/blank-stack-state/helpers/navigation/sync-routes-with-removed.d.ts.map +0 -1
- package/lib/typescript/providers/stack/blank-stack-state/helpers/reconcile-blank-stack-routes.d.ts.map +0 -1
- package/lib/typescript/providers/stack/blank-stack-state/helpers/resolve-presented-index.d.ts.map +0 -1
- package/lib/typescript/providers/stack/blank-stack-state/helpers/state-equality.d.ts.map +0 -1
- package/lib/typescript/providers/stack/blank-stack-state/helpers/types.d.ts.map +0 -1
- package/lib/typescript/providers/stack/blank-stack-state/index.d.ts +0 -14
- package/lib/typescript/providers/stack/blank-stack-state/index.d.ts.map +0 -1
- package/lib/typescript/providers/stack/blank-stack.provider.d.ts +0 -23
- package/lib/typescript/providers/stack/blank-stack.provider.d.ts.map +0 -1
- package/lib/typescript/utils/bounds/navigation/zoom/mask.d.ts +0 -27
- package/lib/typescript/utils/bounds/navigation/zoom/mask.d.ts.map +0 -1
- package/src/animation/resolve-snap-target.ts +0 -53
- package/src/animation/snap-to.ts +0 -96
- package/src/animation/transition-blocking.ts +0 -79
- package/src/components/activity/helpers.ts +0 -8
- package/src/components/activity/index.tsx +0 -2
- package/src/components/activity/variants/activity-screen.tsx +0 -117
- package/src/components/boundary/hooks/use-boundary-measurement.ts +0 -98
- package/src/components/boundary/portal/components/boundary-content-portal/components/host.tsx +0 -56
- package/src/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.ts +0 -192
- package/src/components/boundary/portal/components/boundary-content-portal/helpers/handoff-visibility.ts +0 -23
- package/src/components/boundary/portal/components/boundary-content-portal/helpers/host-name.ts +0 -9
- package/src/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.ts +0 -252
- package/src/components/boundary/portal/components/boundary-content-portal/index.tsx +0 -81
- package/src/components/boundary/portal/components/boundary-portal/components/host.tsx +0 -119
- package/src/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.tsx +0 -139
- package/src/components/boundary/portal/components/boundary-portal/helpers/local-measurement.ts +0 -10
- package/src/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.ts +0 -118
- package/src/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.ts +0 -64
- package/src/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.ts +0 -90
- package/src/components/boundary/portal/components/boundary-portal/index.tsx +0 -97
- package/src/components/boundary/portal/components/boundary-portal/stores/host-registry.store.ts +0 -134
- package/src/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.ts +0 -100
- package/src/components/overlay/index.ts +0 -5
- package/src/components/overlay/variations/float-overlay.tsx +0 -33
- package/src/components/screen/container/helpers/find-collapse-target.ts +0 -62
- package/src/components/screen/container/hooks/use-backdrop-pointer-events.ts +0 -51
- package/src/components/screen/container/hooks/use-content-layout.ts +0 -84
- package/src/components/screen/container/index.tsx +0 -39
- package/src/components/screen/container/layers/backdrop.tsx +0 -163
- package/src/components/screen/container/layers/content.tsx +0 -113
- package/src/components/screen/container/layers/maybe-masked-navigation-container.tsx +0 -113
- package/src/components/screen/container/layers/surface.tsx +0 -68
- package/src/components/screen/lifecycle/blank-stack.tsx +0 -18
- package/src/components/screen/lifecycle/hooks/helpers/reset-stores-for-screen.ts +0 -9
- package/src/components/screen/lifecycle/hooks/history/use-screen-history.ts +0 -90
- package/src/components/screen/lifecycle/hooks/use-close-completion.ts +0 -28
- package/src/components/screen/lifecycle/hooks/use-close-transition-intent.ts +0 -29
- package/src/components/screen/lifecycle/hooks/use-open-transition-intent.ts +0 -112
- package/src/components/screen/lifecycle/hooks/use-transition-start-controller.ts +0 -67
- package/src/components/screen/lifecycle/use-screen-lifecycle.ts +0 -36
- package/src/components/screen/screen.tsx +0 -52
- package/src/components/screen/view.tsx +0 -74
- package/src/hooks/navigation/use-navigation-helpers.ts +0 -59
- package/src/navigators/create-blank-stack-navigator.tsx +0 -35
- package/src/providers/screen/builder/builder.provider.tsx +0 -86
- package/src/providers/screen/builder/helpers/derive-descriptor-derivations.ts +0 -56
- package/src/providers/screen/builder/hooks/use-screen-topology.ts +0 -52
- package/src/providers/screen/builder/topology/hooks/use-resolved-transition-key.ts +0 -29
- package/src/providers/screen/motion/animation/emit-motion-start.ts +0 -20
- package/src/providers/screen/motion/animation/helpers/build-screen-transition-options.ts +0 -23
- package/src/providers/screen/motion/animation/helpers/hydrate-transition-state/gesture-progress.ts +0 -195
- package/src/providers/screen/motion/animation/helpers/hydrate-transition-state/index.ts +0 -229
- package/src/providers/screen/motion/animation/helpers/hydrate-transition-state/snap-points.ts +0 -189
- package/src/providers/screen/motion/animation/helpers/hydrate-transition-state/types.ts +0 -37
- package/src/providers/screen/motion/animation/helpers/worklet.ts +0 -47
- package/src/providers/screen/motion/animation/pipeline.ts +0 -40
- package/src/providers/screen/motion/animation/types.ts +0 -3
- package/src/providers/screen/motion/animation/use-screen-animation.tsx +0 -70
- package/src/providers/screen/motion/gestures/ownership/compute-claimed-directions.ts +0 -98
- package/src/providers/screen/motion/gestures/ownership/gesture-ownership-coordinator.ts +0 -252
- package/src/providers/screen/motion/gestures/ownership/hooks/use-screen-gesture-config.ts +0 -17
- package/src/providers/screen/motion/gestures/ownership/shadowing-claims.ts +0 -17
- package/src/providers/screen/motion/gestures/pan/activation/pan-activation-decision.ts +0 -452
- package/src/providers/screen/motion/gestures/pan/activation/pan-activation-rules.ts +0 -453
- package/src/providers/screen/motion/gestures/pan/activation/use-pan-activation.ts +0 -161
- package/src/providers/screen/motion/gestures/pan/behavior/pan-lifecycle.ts +0 -167
- package/src/providers/screen/motion/gestures/pan/behavior/pan-reset.ts +0 -88
- package/src/providers/screen/motion/gestures/pan/behavior/use-pan-behavior.ts +0 -138
- package/src/providers/screen/motion/gestures/pinch/behavior/pinch-lifecycle.ts +0 -112
- package/src/providers/screen/motion/gestures/pinch/behavior/pinch-reset.ts +0 -73
- package/src/providers/screen/motion/gestures/scroll-coordination/scroll-metadata-owner.tsx +0 -40
- package/src/providers/screen/motion/gestures/scroll-coordination/use-scroll-gesture-coordination.ts +0 -306
- package/src/providers/screen/motion/gestures/shared/directions.ts +0 -219
- package/src/providers/screen/motion/gestures/shared/physics.ts +0 -331
- package/src/providers/screen/motion/gestures/shared/policy.ts +0 -416
- package/src/providers/screen/motion/gestures/shared/release.ts +0 -43
- package/src/providers/screen/motion/gestures/shared/reset.ts +0 -88
- package/src/providers/screen/motion/gestures/shared/snap-points.ts +0 -338
- package/src/providers/screen/motion/gestures/shared/targets.ts +0 -202
- package/src/providers/screen/motion/gestures/types.ts +0 -202
- package/src/providers/screen/motion/gestures/use-screen-gestures.ts +0 -66
- package/src/providers/screen/motion/hooks/use-maybe-block-visibility.tsx +0 -119
- package/src/providers/screen/motion/hooks/use-motion-values.ts +0 -109
- package/src/providers/screen/motion/hooks/use-transition-values.ts +0 -136
- package/src/providers/screen/motion/motion.provider.tsx +0 -69
- package/src/providers/screen/motion/options/helpers.ts +0 -350
- package/src/providers/screen/motion/options/types.ts +0 -30
- package/src/providers/screen/motion/options/use-screen-options.ts +0 -30
- package/src/providers/screen/motion/types.ts +0 -73
- package/src/providers/screen/orchestrator/helpers/derivations.ts +0 -23
- package/src/providers/screen/orchestrator/helpers/pipeline.ts +0 -341
- package/src/providers/screen/orchestrator/helpers/selected-interpolator-options.ts +0 -90
- package/src/providers/screen/orchestrator/helpers/use-interpolator-state.ts +0 -30
- package/src/providers/screen/orchestrator/hooks/use-register-gesture-ownership.ts +0 -76
- package/src/providers/screen/orchestrator/orchestrator.provider.tsx +0 -69
- package/src/providers/screen/orchestrator/styles/constants.ts +0 -86
- package/src/providers/screen/orchestrator/styles/helpers/compose-slot-style.ts +0 -129
- package/src/providers/screen/orchestrator/styles/helpers/create-interpolator-scope.ts +0 -26
- package/src/providers/screen/orchestrator/styles/helpers/normalize-slots.ts +0 -111
- package/src/providers/screen/orchestrator/styles/helpers/resolve-interpolator-style-handoff.ts +0 -138
- package/src/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/index.ts +0 -572
- package/src/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/materialize-slot.ts +0 -161
- package/src/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/slot-state.ts +0 -122
- package/src/providers/screen/orchestrator/styles/helpers/resolve-slot-styles/types.ts +0 -12
- package/src/providers/screen/orchestrator/styles/hooks/slot-resolvers.tsx +0 -115
- package/src/providers/screen/orchestrator/styles/hooks/use-interpolated-style-maps.tsx +0 -295
- package/src/providers/screen/orchestrator/styles/hooks/use-resolved-slot-style-map.tsx +0 -65
- package/src/providers/screen/orchestrator/styles/types.ts +0 -12
- package/src/providers/screen/screen-composer.tsx +0 -26
- package/src/providers/stack/blank-stack-state/helpers/reconcile-blank-stack-routes.ts +0 -180
- package/src/providers/stack/blank-stack.provider.tsx +0 -84
- package/src/utils/bounds/navigation/zoom/mask.ts +0 -133
- /package/lib/commonjs/components/boundary/portal/{components/boundary-portal/helpers → helpers}/offset-style.js +0 -0
- /package/lib/commonjs/components/boundary/portal/{components/boundary-portal/hooks → hooks}/use-placeholder-styles.js +0 -0
- /package/lib/commonjs/{components/activity/variants → navigators/blank-stack/components/activity}/activity-container.js +0 -0
- /package/lib/commonjs/{components/screen → navigators/blank-stack/components}/lifecycle/hooks/history/navigator-route-registry.js +0 -0
- /package/lib/commonjs/{providers/stack/blank-stack-state → navigators/blank-stack/state}/blank-stack-controller.js +0 -0
- /package/lib/commonjs/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/build-blank-stack-state.js +0 -0
- /package/lib/commonjs/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/derive-blank-stack-state.js +0 -0
- /package/lib/commonjs/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/navigation/compose-descriptors.js +0 -0
- /package/lib/commonjs/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/navigation/resolve-scene-neighbors.js +0 -0
- /package/lib/commonjs/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/navigation/sync-routes-with-removed.js +0 -0
- /package/lib/commonjs/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/resolve-presented-index.js +0 -0
- /package/lib/commonjs/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/state-equality.js +0 -0
- /package/lib/commonjs/{providers/screen/motion/animation/helpers/hydrate-transition-state → navigators/blank-stack/state/helpers}/types.js +0 -0
- /package/lib/commonjs/providers/{screen/builder → builder}/index.js +0 -0
- /package/lib/commonjs/providers/{screen/builder → builder}/topology/helpers/create-screen-topology.js +0 -0
- /package/lib/commonjs/providers/{screen/builder → builder}/topology/hooks/use-resolved-transition-key.js +0 -0
- /package/lib/commonjs/providers/{screen/builder → builder}/topology/hooks/use-screen-relationships.js +0 -0
- /package/lib/commonjs/providers/{screen/builder → builder}/topology/index.js +0 -0
- /package/lib/commonjs/providers/{screen/builder → builder}/topology/types.js +0 -0
- /package/lib/commonjs/providers/{screen/motion/animation → motion/animation/helpers/hydrate-transition-state}/types.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/animation/helpers/worklet.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/animation/index.js +0 -0
- /package/lib/commonjs/providers/{screen/motion/options → motion/animation}/types.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/index.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/ownership/hooks/use-gesture-sensitivity.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/ownership/hooks/use-screen-gesture.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/ownership/hooks/use-stable-runtime-config.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/ownership/shadowing-claims.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/ownership/use-gesture-scroll-coordination.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/pan/behavior/pan-release.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/pan/behavior/use-pan-behavior.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/pan/use-build-pan-gesture.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/pinch/activation/use-pinch-activation.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/pinch/behavior/pinch-release.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/pinch/behavior/use-pinch-behavior.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/pinch/use-build-pinch-gesture.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/scroll-coordination/index.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/scroll-coordination/update-scroll-gesture-state.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/shared/directions.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/shared/runtime.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/shared/snap-points.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/shared/snapshot.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/shared/values.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/gestures/types.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/helpers/transition-visual-state.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/helpers/visibility-gate.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/hooks/use-motion-values.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/hooks/use-transition-values.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/index.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion}/options/index.js +0 -0
- /package/lib/commonjs/providers/{screen/motion → motion/options}/types.js +0 -0
- /package/lib/commonjs/providers/{screen/orchestrator/styles/helpers/resolve-slot-styles → motion}/types.js +0 -0
- /package/lib/commonjs/providers/{screen/orchestrator → orchestrator}/helpers/derivations.js +0 -0
- /package/lib/commonjs/providers/{screen/orchestrator → orchestrator}/helpers/selected-interpolator-options.js +0 -0
- /package/lib/commonjs/providers/{screen/orchestrator → orchestrator}/helpers/stack-progress.js +0 -0
- /package/lib/commonjs/providers/{screen/orchestrator → orchestrator}/index.js +0 -0
- /package/lib/commonjs/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-interpolator-style-handoff.js +0 -0
- /package/lib/commonjs/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-slot-styles/are-resettable-states-equal.js +0 -0
- /package/lib/commonjs/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-slot-styles/index.js +0 -0
- /package/lib/commonjs/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-slot-styles/materialize-slot.js +0 -0
- /package/lib/commonjs/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-slot-styles/reset-values.js +0 -0
- /package/lib/commonjs/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-slot-styles/slot-state.js +0 -0
- /package/lib/commonjs/providers/{screen/orchestrator/styles → orchestrator/styles/helpers/resolve-slot-styles}/types.js +0 -0
- /package/lib/commonjs/providers/{screen/orchestrator → orchestrator}/styles/helpers/select-interpolator-frame.js +0 -0
- /package/lib/commonjs/providers/{screen/orchestrator → orchestrator}/styles/helpers/strip-interpolator-options.js +0 -0
- /package/lib/commonjs/providers/{screen/orchestrator → orchestrator}/styles/index.js +0 -0
- /package/lib/commonjs/providers/{stack/blank-stack-state/helpers → orchestrator/styles}/types.js +0 -0
- /package/lib/module/components/boundary/portal/{components/boundary-portal/helpers → helpers}/offset-style.js +0 -0
- /package/lib/module/components/boundary/portal/{components/boundary-portal/hooks → hooks}/use-placeholder-styles.js +0 -0
- /package/lib/module/{components/activity/variants → navigators/blank-stack/components/activity}/activity-container.js +0 -0
- /package/lib/module/{components/screen → navigators/blank-stack/components}/lifecycle/hooks/history/navigator-route-registry.js +0 -0
- /package/lib/module/{providers/stack/blank-stack-state → navigators/blank-stack/state}/blank-stack-controller.js +0 -0
- /package/lib/module/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/build-blank-stack-state.js +0 -0
- /package/lib/module/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/derive-blank-stack-state.js +0 -0
- /package/lib/module/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/navigation/compose-descriptors.js +0 -0
- /package/lib/module/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/navigation/resolve-scene-neighbors.js +0 -0
- /package/lib/module/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/navigation/sync-routes-with-removed.js +0 -0
- /package/lib/module/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/resolve-presented-index.js +0 -0
- /package/lib/module/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/state-equality.js +0 -0
- /package/lib/module/{providers/screen/motion/animation/helpers/hydrate-transition-state → navigators/blank-stack/state/helpers}/types.js +0 -0
- /package/lib/module/providers/{screen/builder → builder}/index.js +0 -0
- /package/lib/module/providers/{screen/builder → builder}/topology/helpers/create-screen-topology.js +0 -0
- /package/lib/module/providers/{screen/builder → builder}/topology/hooks/use-resolved-transition-key.js +0 -0
- /package/lib/module/providers/{screen/builder → builder}/topology/hooks/use-screen-relationships.js +0 -0
- /package/lib/module/providers/{screen/builder → builder}/topology/index.js +0 -0
- /package/lib/module/providers/{screen/builder → builder}/topology/types.js +0 -0
- /package/lib/module/providers/{screen/motion/animation → motion/animation/helpers/hydrate-transition-state}/types.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/animation/helpers/worklet.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/animation/index.js +0 -0
- /package/lib/module/providers/{screen/motion/options → motion/animation}/types.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/index.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/ownership/hooks/use-gesture-sensitivity.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/ownership/hooks/use-screen-gesture.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/ownership/hooks/use-stable-runtime-config.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/ownership/shadowing-claims.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/ownership/use-gesture-scroll-coordination.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/pan/behavior/pan-release.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/pan/behavior/use-pan-behavior.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/pan/use-build-pan-gesture.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/pinch/activation/use-pinch-activation.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/pinch/behavior/pinch-release.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/pinch/behavior/use-pinch-behavior.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/pinch/use-build-pinch-gesture.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/scroll-coordination/index.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/scroll-coordination/update-scroll-gesture-state.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/shared/directions.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/shared/runtime.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/shared/snap-points.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/shared/snapshot.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/shared/values.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/gestures/types.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/helpers/transition-visual-state.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/helpers/visibility-gate.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/hooks/use-motion-values.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/hooks/use-transition-values.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/index.js +0 -0
- /package/lib/module/providers/{screen/motion → motion}/options/index.js +0 -0
- /package/lib/module/providers/{screen/motion → motion/options}/types.js +0 -0
- /package/lib/module/providers/{screen/orchestrator/styles/helpers/resolve-slot-styles → motion}/types.js +0 -0
- /package/lib/module/providers/{screen/orchestrator → orchestrator}/helpers/derivations.js +0 -0
- /package/lib/module/providers/{screen/orchestrator → orchestrator}/helpers/selected-interpolator-options.js +0 -0
- /package/lib/module/providers/{screen/orchestrator → orchestrator}/helpers/stack-progress.js +0 -0
- /package/lib/module/providers/{screen/orchestrator → orchestrator}/index.js +0 -0
- /package/lib/module/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-interpolator-style-handoff.js +0 -0
- /package/lib/module/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-slot-styles/are-resettable-states-equal.js +0 -0
- /package/lib/module/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-slot-styles/index.js +0 -0
- /package/lib/module/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-slot-styles/materialize-slot.js +0 -0
- /package/lib/module/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-slot-styles/reset-values.js +0 -0
- /package/lib/module/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-slot-styles/slot-state.js +0 -0
- /package/lib/module/providers/{screen/orchestrator/styles → orchestrator/styles/helpers/resolve-slot-styles}/types.js +0 -0
- /package/lib/module/providers/{screen/orchestrator → orchestrator}/styles/helpers/select-interpolator-frame.js +0 -0
- /package/lib/module/providers/{screen/orchestrator → orchestrator}/styles/helpers/strip-interpolator-options.js +0 -0
- /package/lib/module/providers/{screen/orchestrator → orchestrator}/styles/index.js +0 -0
- /package/lib/module/providers/{stack/blank-stack-state/helpers → orchestrator/styles}/types.js +0 -0
- /package/lib/typescript/components/boundary/portal/{components/boundary-portal/helpers → helpers}/offset-style.d.ts +0 -0
- /package/lib/typescript/components/boundary/portal/{components/boundary-portal/hooks → hooks}/use-placeholder-styles.d.ts +0 -0
- /package/lib/typescript/components/boundary/portal/{components/boundary-portal/stores → stores}/host-registry.store.d.ts +0 -0
- /package/lib/typescript/components/{screen/container → screen-layers}/helpers/find-collapse-target.d.ts +0 -0
- /package/lib/typescript/components/{screen/container → screen-layers}/hooks/use-content-layout.d.ts +0 -0
- /package/lib/typescript/components/{screen/container → screen-layers}/layers/content.d.ts +0 -0
- /package/lib/typescript/components/{screen/container → screen-layers}/layers/surface.d.ts +0 -0
- /package/lib/typescript/{animation → controls}/snap-to.d.ts +0 -0
- /package/lib/typescript/{animation → controls}/transition-blocking.d.ts +0 -0
- /package/lib/typescript/{components/activity/variants → navigators/blank-stack/components/activity}/activity-container.d.ts +0 -0
- /package/lib/typescript/{components/activity/variants → navigators/blank-stack/components/activity}/activity-screen.d.ts +0 -0
- /package/lib/typescript/{components/screen → navigators/blank-stack/components}/lifecycle/blank-stack.d.ts +0 -0
- /package/lib/typescript/{components/screen → navigators/blank-stack/components}/lifecycle/hooks/helpers/reset-stores-for-screen.d.ts +0 -0
- /package/lib/typescript/{components/screen → navigators/blank-stack/components}/lifecycle/hooks/history/navigator-route-registry.d.ts +0 -0
- /package/lib/typescript/{components/screen → navigators/blank-stack/components}/lifecycle/hooks/use-close-completion.d.ts +0 -0
- /package/lib/typescript/{components/screen → navigators/blank-stack/components}/lifecycle/use-screen-lifecycle.d.ts +0 -0
- /package/lib/typescript/{hooks/navigation → navigators/blank-stack/hooks}/use-navigation-helpers.d.ts +0 -0
- /package/lib/typescript/{providers/stack/blank-stack-state → navigators/blank-stack/state}/blank-stack-controller.d.ts +0 -0
- /package/lib/typescript/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/build-blank-stack-state.d.ts +0 -0
- /package/lib/typescript/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/derive-blank-stack-state.d.ts +0 -0
- /package/lib/typescript/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/navigation/compose-descriptors.d.ts +0 -0
- /package/lib/typescript/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/navigation/resolve-scene-neighbors.d.ts +0 -0
- /package/lib/typescript/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/navigation/sync-routes-with-removed.d.ts +0 -0
- /package/lib/typescript/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/reconcile-blank-stack-routes.d.ts +0 -0
- /package/lib/typescript/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/resolve-presented-index.d.ts +0 -0
- /package/lib/typescript/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/state-equality.d.ts +0 -0
- /package/lib/typescript/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/types.d.ts +0 -0
- /package/lib/typescript/providers/{screen/builder → builder}/hooks/use-screen-topology.d.ts +0 -0
- /package/lib/typescript/providers/{screen/builder → builder}/index.d.ts +0 -0
- /package/lib/typescript/providers/{screen/builder → builder}/topology/helpers/create-screen-topology.d.ts +0 -0
- /package/lib/typescript/providers/{screen/builder → builder}/topology/hooks/use-screen-relationships.d.ts +0 -0
- /package/lib/typescript/providers/{screen/builder → builder}/topology/index.d.ts +0 -0
- /package/lib/typescript/providers/{screen/builder → builder}/topology/types.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/animation/emit-motion-start.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/animation/helpers/hydrate-transition-state/snap-points.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/animation/index.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/animation/pipeline.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/index.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/ownership/hooks/use-gesture-sensitivity.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/ownership/hooks/use-screen-gesture-config.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/ownership/hooks/use-screen-gesture.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/ownership/hooks/use-stable-runtime-config.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/ownership/use-gesture-scroll-coordination.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/pan/behavior/pan-lifecycle.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/pan/behavior/pan-release.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/pan/behavior/pan-reset.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/pan/use-build-pan-gesture.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/pinch/activation/use-pinch-activation.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/pinch/behavior/pinch-lifecycle.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/pinch/behavior/pinch-release.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/pinch/behavior/use-pinch-behavior.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/pinch/use-build-pinch-gesture.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/scroll-coordination/index.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/scroll-coordination/scroll-metadata-owner.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/scroll-coordination/update-scroll-gesture-state.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/scroll-coordination/use-scroll-gesture-coordination.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/shared/runtime.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/shared/snapshot.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/gestures/shared/values.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/helpers/transition-visual-state.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/helpers/visibility-gate.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/hooks/use-maybe-block-visibility.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/hooks/use-motion-values.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/index.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/motion.provider.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/options/index.d.ts +0 -0
- /package/lib/typescript/providers/{screen/motion → motion}/options/use-screen-options.d.ts +0 -0
- /package/lib/typescript/providers/{screen/orchestrator → orchestrator}/helpers/stack-progress.d.ts +0 -0
- /package/lib/typescript/providers/{screen/orchestrator → orchestrator}/helpers/use-interpolator-state.d.ts +0 -0
- /package/lib/typescript/providers/{screen/orchestrator → orchestrator}/index.d.ts +0 -0
- /package/lib/typescript/providers/{screen/orchestrator → orchestrator}/styles/constants.d.ts +0 -0
- /package/lib/typescript/providers/{screen/orchestrator → orchestrator}/styles/helpers/compose-slot-style.d.ts +0 -0
- /package/lib/typescript/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-slot-styles/are-resettable-states-equal.d.ts +0 -0
- /package/lib/typescript/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-slot-styles/reset-values.d.ts +0 -0
- /package/lib/typescript/providers/{screen/orchestrator → orchestrator}/styles/helpers/select-interpolator-frame.d.ts +0 -0
- /package/lib/typescript/providers/{screen/orchestrator → orchestrator}/styles/helpers/strip-interpolator-options.d.ts +0 -0
- /package/lib/typescript/providers/{screen/orchestrator → orchestrator}/styles/hooks/use-interpolated-style-maps.d.ts +0 -0
- /package/lib/typescript/providers/{screen/orchestrator → orchestrator}/styles/index.d.ts +0 -0
- /package/src/components/boundary/portal/{components/boundary-portal/helpers → helpers}/offset-style.ts +0 -0
- /package/src/components/boundary/portal/{components/boundary-portal/hooks → hooks}/use-placeholder-styles.ts +0 -0
- /package/src/components/{screen/container/layers/render-component.ts → screen-layers/helpers/uses-layer-render-props.ts} +0 -0
- /package/src/{components/activity/variants → navigators/blank-stack/components/activity}/activity-container.tsx +0 -0
- /package/src/{components/screen → navigators/blank-stack/components}/lifecycle/hooks/history/navigator-route-registry.ts +0 -0
- /package/src/{providers/stack/blank-stack-state → navigators/blank-stack/state}/blank-stack-controller.ts +0 -0
- /package/src/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/build-blank-stack-state.ts +0 -0
- /package/src/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/derive-blank-stack-state.ts +0 -0
- /package/src/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/navigation/compose-descriptors.ts +0 -0
- /package/src/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/navigation/resolve-scene-neighbors.ts +0 -0
- /package/src/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/navigation/sync-routes-with-removed.ts +0 -0
- /package/src/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/resolve-presented-index.ts +0 -0
- /package/src/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/state-equality.ts +0 -0
- /package/src/{providers/stack/blank-stack-state → navigators/blank-stack/state}/helpers/types.ts +0 -0
- /package/src/{providers/stack/blank-stack-state/index.ts → navigators/blank-stack/state/use-blank-stack-state.ts} +0 -0
- /package/src/providers/{screen/builder → builder}/index.tsx +0 -0
- /package/src/providers/{screen/builder → builder}/topology/helpers/create-screen-topology.ts +0 -0
- /package/src/providers/{screen/builder → builder}/topology/hooks/use-screen-relationships.ts +0 -0
- /package/src/providers/{screen/builder → builder}/topology/index.ts +0 -0
- /package/src/providers/{screen/builder → builder}/topology/types.ts +0 -0
- /package/src/providers/{screen/motion → motion}/animation/index.tsx +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/index.tsx +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/ownership/hooks/use-gesture-sensitivity.ts +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/ownership/hooks/use-screen-gesture.ts +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/ownership/hooks/use-stable-runtime-config.ts +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/ownership/use-gesture-scroll-coordination.ts +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/pan/behavior/pan-release.ts +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/pan/use-build-pan-gesture.ts +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/pinch/activation/use-pinch-activation.ts +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/pinch/behavior/pinch-release.ts +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/pinch/behavior/use-pinch-behavior.ts +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/pinch/use-build-pinch-gesture.ts +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/scroll-coordination/index.ts +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/scroll-coordination/update-scroll-gesture-state.ts +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/shared/runtime.ts +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/shared/snapshot.ts +0 -0
- /package/src/providers/{screen/motion → motion}/gestures/shared/values.ts +0 -0
- /package/src/providers/{screen/motion → motion}/helpers/transition-visual-state.ts +0 -0
- /package/src/providers/{screen/motion → motion}/helpers/visibility-gate.ts +0 -0
- /package/src/providers/{screen/motion → motion}/index.ts +0 -0
- /package/src/providers/{screen/motion → motion}/options/index.ts +0 -0
- /package/src/providers/{screen/orchestrator → orchestrator}/helpers/stack-progress.ts +0 -0
- /package/src/providers/{screen/orchestrator → orchestrator}/index.ts +0 -0
- /package/src/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-slot-styles/are-resettable-states-equal.ts +0 -0
- /package/src/providers/{screen/orchestrator → orchestrator}/styles/helpers/resolve-slot-styles/reset-values.ts +0 -0
- /package/src/providers/{screen/orchestrator → orchestrator}/styles/helpers/select-interpolator-frame.ts +0 -0
- /package/src/providers/{screen/orchestrator → orchestrator}/styles/helpers/strip-interpolator-options.ts +0 -0
- /package/src/providers/{screen/orchestrator → orchestrator}/styles/index.tsx +0 -0
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import type { NavigationState, Route } from "@react-navigation/native";
|
|
2
|
-
import { useMemo } from "react";
|
|
2
|
+
import { memo, type ReactNode, useMemo } from "react";
|
|
3
3
|
import { StyleSheet } from "react-native";
|
|
4
4
|
import { GestureHandlerRootView } from "react-native-gesture-handler";
|
|
5
5
|
import { Overlay } from "../../components/overlay";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
6
|
+
import { ScreenLayers } from "../../components/screen-layers";
|
|
7
|
+
import { useNavigationHelpers } from "../../navigators/blank-stack/hooks/use-navigation-helpers";
|
|
8
|
+
import { BlankStackStoreProvider } from "../../navigators/blank-stack/state/blank-stack.provider";
|
|
9
|
+
import { BuilderProvider } from "../../providers/builder";
|
|
10
|
+
import { MotionProvider } from "../../providers/motion";
|
|
11
|
+
import { OrchestratorProvider } from "../../providers/orchestrator";
|
|
8
12
|
import type { BaseStackDescriptor, BaseStackRoute } from "../../types";
|
|
9
13
|
import {
|
|
10
14
|
ScreenTransitionsAdapterProvider,
|
|
@@ -171,7 +175,7 @@ function ScreenTransitionsStackContent({
|
|
|
171
175
|
return (
|
|
172
176
|
<ScreenTransitionsAdapterProvider value={adapterContextValue}>
|
|
173
177
|
<BlankStackStoreProvider value={blankStackValue}>
|
|
174
|
-
<Overlay
|
|
178
|
+
<Overlay />
|
|
175
179
|
{children}
|
|
176
180
|
</BlankStackStoreProvider>
|
|
177
181
|
</ScreenTransitionsAdapterProvider>
|
|
@@ -188,6 +192,24 @@ export function ScreenTransitionsStackLayout(
|
|
|
188
192
|
);
|
|
189
193
|
}
|
|
190
194
|
|
|
195
|
+
const NativeSceneMotion = memo(function NativeSceneMotion({
|
|
196
|
+
children,
|
|
197
|
+
}: {
|
|
198
|
+
children: ReactNode;
|
|
199
|
+
}) {
|
|
200
|
+
const { requestDismiss } = useNavigationHelpers();
|
|
201
|
+
return (
|
|
202
|
+
<MotionProvider onDismissRequest={requestDismiss}>
|
|
203
|
+
<OrchestratorProvider>
|
|
204
|
+
<ScreenLayers onDismissRequest={requestDismiss}>
|
|
205
|
+
{children}
|
|
206
|
+
</ScreenLayers>
|
|
207
|
+
</OrchestratorProvider>
|
|
208
|
+
<NativeStackLifecycle />
|
|
209
|
+
</MotionProvider>
|
|
210
|
+
);
|
|
211
|
+
});
|
|
212
|
+
|
|
191
213
|
export function ScreenTransitionsScreenLayout({
|
|
192
214
|
screenLayout,
|
|
193
215
|
screenLayoutArgs,
|
|
@@ -201,16 +223,27 @@ export function ScreenTransitionsScreenLayout({
|
|
|
201
223
|
? screenLayout(screenLayoutArgs)
|
|
202
224
|
: screenLayoutArgs.children;
|
|
203
225
|
|
|
204
|
-
|
|
226
|
+
const scene = sceneIndex === undefined ? undefined : scenes[sceneIndex];
|
|
227
|
+
const descriptors = useMemo(
|
|
228
|
+
() =>
|
|
229
|
+
scene
|
|
230
|
+
? {
|
|
231
|
+
current: scene.descriptor,
|
|
232
|
+
previous: scene.previousDescriptor,
|
|
233
|
+
next: scene.nextDescriptor,
|
|
234
|
+
}
|
|
235
|
+
: undefined,
|
|
236
|
+
[scene],
|
|
237
|
+
);
|
|
238
|
+
|
|
239
|
+
if (!scene || !descriptors) {
|
|
205
240
|
return <>{children}</>;
|
|
206
241
|
}
|
|
207
242
|
|
|
208
|
-
const scene = scenes[sceneIndex];
|
|
209
|
-
|
|
210
243
|
return (
|
|
211
|
-
<
|
|
212
|
-
{children}
|
|
213
|
-
</
|
|
244
|
+
<BuilderProvider routeKey={scene.route.key} descriptors={descriptors}>
|
|
245
|
+
<NativeSceneMotion>{children}</NativeSceneMotion>
|
|
246
|
+
</BuilderProvider>
|
|
214
247
|
);
|
|
215
248
|
}
|
|
216
249
|
|
|
@@ -1,9 +1,14 @@
|
|
|
1
|
-
import { memo } from "react";
|
|
1
|
+
import { memo, useMemo } from "react";
|
|
2
2
|
import type { View } from "react-native";
|
|
3
3
|
import type { AnimatedRef } from "react-native-reanimated";
|
|
4
|
-
import { useBuilderStore } from "../../../providers/
|
|
4
|
+
import { useBuilderStore } from "../../../providers/builder";
|
|
5
5
|
import type { BoundTag } from "../../../stores/bounds/types";
|
|
6
|
-
import {
|
|
6
|
+
import { prepareStyleForBounds } from "../../../utils/bounds/helpers/styles/styles";
|
|
7
|
+
import { useBoundaryPresence } from "../hooks/lifecycles/use-boundary-presence";
|
|
8
|
+
import { useInitialDestinationMeasurement } from "../hooks/lifecycles/use-initial-destination-measurement";
|
|
9
|
+
import { useInitialSourceMeasurement } from "../hooks/lifecycles/use-initial-source-measurement";
|
|
10
|
+
import { useRefreshBoundary } from "../hooks/lifecycles/use-refresh-boundary";
|
|
11
|
+
import { useMeasurer } from "../hooks/use-measurer";
|
|
7
12
|
import type {
|
|
8
13
|
BoundaryConfigProps,
|
|
9
14
|
BoundaryLocalMeasurementValue,
|
|
@@ -36,17 +41,48 @@ export const BoundaryLifecycle = memo(function BoundaryLifecycle({
|
|
|
36
41
|
(s) => s.derivations.hasConfiguredInterpolator,
|
|
37
42
|
);
|
|
38
43
|
|
|
39
|
-
|
|
40
|
-
|
|
44
|
+
const runtimeEnabled = enabled && hasConfiguredInterpolator;
|
|
45
|
+
const preparedStyles = useMemo(() => prepareStyleForBounds(style), [style]);
|
|
46
|
+
|
|
47
|
+
const measureBoundary = useMeasurer({
|
|
41
48
|
enabled,
|
|
42
|
-
|
|
49
|
+
boundTag,
|
|
43
50
|
currentScreenKey,
|
|
44
|
-
|
|
45
|
-
|
|
51
|
+
preparedStyles,
|
|
52
|
+
measuredAnimatedRef: measuredRef,
|
|
46
53
|
handoff,
|
|
47
54
|
escapeClipping,
|
|
48
55
|
localMeasurement,
|
|
49
|
-
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
// Presence and source capture must not depend on this screen owning an
|
|
59
|
+
// interpolator: a nested source can participate in a transition owned by a
|
|
60
|
+
// different navigator.
|
|
61
|
+
useBoundaryPresence({
|
|
62
|
+
enabled,
|
|
63
|
+
boundTag,
|
|
64
|
+
currentScreenKey,
|
|
65
|
+
boundaryConfig: config,
|
|
66
|
+
handoff,
|
|
67
|
+
escapeClipping,
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
useInitialSourceMeasurement({
|
|
71
|
+
enabled,
|
|
72
|
+
measureBoundary,
|
|
73
|
+
boundTag,
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
useInitialDestinationMeasurement({
|
|
77
|
+
boundTag,
|
|
78
|
+
enabled: runtimeEnabled,
|
|
79
|
+
measureBoundary,
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
useRefreshBoundary({
|
|
83
|
+
enabled: runtimeEnabled,
|
|
84
|
+
boundTag,
|
|
85
|
+
measureBoundary,
|
|
50
86
|
});
|
|
51
87
|
|
|
52
88
|
return null;
|
|
@@ -1,16 +1,9 @@
|
|
|
1
1
|
import type React from "react";
|
|
2
2
|
import { memo, useLayoutEffect } from "react";
|
|
3
3
|
import Animated from "react-native-reanimated";
|
|
4
|
-
import {
|
|
5
|
-
useComposedSlotStyles,
|
|
6
|
-
useSlotLayoutStyles,
|
|
7
|
-
} from "../../../providers/screen/orchestrator/styles";
|
|
8
4
|
import { logger } from "../../../utils/logger";
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
BoundaryContentPortalHost,
|
|
12
|
-
} from "../portal/components/boundary-content-portal";
|
|
13
|
-
import { BoundaryPortal } from "../portal/components/boundary-portal";
|
|
5
|
+
import { useComposedBoundaryStyle } from "../hooks/use-composed-boundary-style";
|
|
6
|
+
import { Portal } from "../portal/components/portal";
|
|
14
7
|
import {
|
|
15
8
|
TARGET_OUTSIDE_ROOT_WARNING,
|
|
16
9
|
useOptionalBoundaryRootStore,
|
|
@@ -44,16 +37,13 @@ const BoundaryTargetInner = (props: InternalBoundaryTargetProps) => {
|
|
|
44
37
|
const shouldEscapeTargetToScreenHost =
|
|
45
38
|
isActiveTarget && portalRuntime?.escapeClipping === true;
|
|
46
39
|
|
|
47
|
-
const
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
isActiveTarget && portalRuntime?.escapeClipping === true;
|
|
51
|
-
|
|
52
|
-
const associatedTargetStyles = useComposedSlotStyles(
|
|
53
|
-
rootContext?.boundTag.tag,
|
|
40
|
+
const associatedTargetStyles = useComposedBoundaryStyle(
|
|
41
|
+
rootContext?.slotsMap,
|
|
42
|
+
boundaryId,
|
|
54
43
|
style,
|
|
44
|
+
shouldEscapeTargetToScreenHost ? "layout" : "full",
|
|
55
45
|
);
|
|
56
|
-
|
|
46
|
+
|
|
57
47
|
const measurementRef = isActiveTarget
|
|
58
48
|
? rootContext.measurementRef
|
|
59
49
|
: undefined;
|
|
@@ -65,7 +55,8 @@ const BoundaryTargetInner = (props: InternalBoundaryTargetProps) => {
|
|
|
65
55
|
}, [rootContext]);
|
|
66
56
|
|
|
67
57
|
return (
|
|
68
|
-
<
|
|
58
|
+
<Portal
|
|
59
|
+
mode="escapeClipping"
|
|
69
60
|
boundaryId={boundaryId ?? ""}
|
|
70
61
|
enabled={shouldEscapeTargetToScreenHost}
|
|
71
62
|
placeholderRef={measurementRef}
|
|
@@ -74,27 +65,14 @@ const BoundaryTargetInner = (props: InternalBoundaryTargetProps) => {
|
|
|
74
65
|
{...rest}
|
|
75
66
|
pointerEvents={pointerEvents}
|
|
76
67
|
ref={shouldEscapeTargetToScreenHost ? undefined : measurementRef}
|
|
77
|
-
style={[
|
|
78
|
-
style,
|
|
79
|
-
shouldApplyAssociatedStyleInline ? associatedTargetStyles : undefined,
|
|
80
|
-
shouldApplyPortalLayoutStyle ? portalLayoutStyle : undefined,
|
|
81
|
-
]}
|
|
68
|
+
style={[style, isActiveTarget ? associatedTargetStyles : undefined]}
|
|
82
69
|
collapsable={false}
|
|
83
70
|
>
|
|
84
|
-
<
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
screenKey={rootContext?.currentScreenKey ?? ""}
|
|
88
|
-
>
|
|
89
|
-
<BoundaryContentPortal
|
|
90
|
-
boundaryId={boundaryId}
|
|
91
|
-
enabled={handoffEnabled}
|
|
92
|
-
>
|
|
93
|
-
{children}
|
|
94
|
-
</BoundaryContentPortal>
|
|
95
|
-
</BoundaryContentPortalHost>
|
|
71
|
+
<Portal mode="handoff" boundaryId={boundaryId} enabled={handoffEnabled}>
|
|
72
|
+
{children}
|
|
73
|
+
</Portal>
|
|
96
74
|
</Animated.View>
|
|
97
|
-
</
|
|
75
|
+
</Portal>
|
|
98
76
|
);
|
|
99
77
|
};
|
|
100
78
|
|
|
@@ -10,11 +10,7 @@ import {
|
|
|
10
10
|
BOUNDARY_TARGET_ACTIVE_PROP,
|
|
11
11
|
BoundaryTarget,
|
|
12
12
|
} from "./components/boundary-target";
|
|
13
|
-
import {
|
|
14
|
-
BoundaryContentPortal,
|
|
15
|
-
BoundaryContentPortalHost,
|
|
16
|
-
} from "./portal/components/boundary-content-portal";
|
|
17
|
-
import { BoundaryPortal } from "./portal/components/boundary-portal";
|
|
13
|
+
import { Portal } from "./portal/components/portal";
|
|
18
14
|
import { BoundaryRootProvider } from "./providers/boundary-root.provider";
|
|
19
15
|
import type { BoundaryComponentProps } from "./types";
|
|
20
16
|
import { resolveBoundaryTarget } from "./utils/resolve-boundary-target";
|
|
@@ -50,6 +46,12 @@ export function createBoundaryComponent<P extends object>(
|
|
|
50
46
|
children,
|
|
51
47
|
...rest
|
|
52
48
|
} = props as any;
|
|
49
|
+
|
|
50
|
+
const config = useMemo(
|
|
51
|
+
() => ({ anchor, scaleMode, target, method }),
|
|
52
|
+
[anchor, scaleMode, target, method],
|
|
53
|
+
);
|
|
54
|
+
|
|
53
55
|
const targetResolution = useMemo(() => {
|
|
54
56
|
return resolveBoundaryTarget(children, {
|
|
55
57
|
isTarget: (element) => element.type === BoundaryTarget,
|
|
@@ -59,13 +61,14 @@ export function createBoundaryComponent<P extends object>(
|
|
|
59
61
|
} as any),
|
|
60
62
|
});
|
|
61
63
|
}, [children]);
|
|
64
|
+
|
|
62
65
|
const targetStyle = (
|
|
63
66
|
targetResolution.target?.props as { style?: unknown } | undefined
|
|
64
67
|
)?.style;
|
|
65
68
|
|
|
66
69
|
return (
|
|
67
70
|
<BoundaryRootProvider
|
|
68
|
-
config={
|
|
71
|
+
config={config}
|
|
69
72
|
enabled={enabled}
|
|
70
73
|
escapeClipping={escapeClipping}
|
|
71
74
|
forwardedRef={forwardedRef}
|
|
@@ -78,7 +81,8 @@ export function createBoundaryComponent<P extends object>(
|
|
|
78
81
|
targetStyle={targetStyle}
|
|
79
82
|
>
|
|
80
83
|
{(root) => (
|
|
81
|
-
<
|
|
84
|
+
<Portal
|
|
85
|
+
mode="escapeClipping"
|
|
82
86
|
boundaryId={root.boundTag.tag}
|
|
83
87
|
enabled={root.shouldRenderBoundaryRootThroughPortal}
|
|
84
88
|
placeholderRef={root.measurementRef}
|
|
@@ -89,20 +93,15 @@ export function createBoundaryComponent<P extends object>(
|
|
|
89
93
|
style={[style, root.attachedStyle]}
|
|
90
94
|
collapsable={false}
|
|
91
95
|
>
|
|
92
|
-
<
|
|
96
|
+
<Portal
|
|
97
|
+
mode="handoff"
|
|
93
98
|
boundaryId={root.boundTag.tag}
|
|
94
99
|
enabled={root.shouldRenderHandoffHost}
|
|
95
|
-
screenKey={root.currentScreenKey}
|
|
96
100
|
>
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
enabled={root.shouldRenderHandoffHost}
|
|
100
|
-
>
|
|
101
|
-
{targetResolution.children}
|
|
102
|
-
</BoundaryContentPortal>
|
|
103
|
-
</BoundaryContentPortalHost>
|
|
101
|
+
{targetResolution.children}
|
|
102
|
+
</Portal>
|
|
104
103
|
</AnimatedComponent>
|
|
105
|
-
</
|
|
104
|
+
</Portal>
|
|
106
105
|
)}
|
|
107
106
|
</BoundaryRootProvider>
|
|
108
107
|
);
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import type { DerivedValue } from "react-native-reanimated";
|
|
2
|
+
import { getLinkKeyFromTag } from "../../../stores/bounds/helpers/link-pairs.helpers";
|
|
3
|
+
import type {
|
|
4
|
+
boundaryRegistry,
|
|
5
|
+
pairs,
|
|
6
|
+
} from "../../../stores/bounds/internals/state";
|
|
7
|
+
import type { BoundaryHandoffTarget } from "../../../types/animation.types";
|
|
8
|
+
|
|
9
|
+
export type { BoundaryPairPresentation } from "../../../providers/orchestrator/helpers/use-pair-presentation";
|
|
10
|
+
|
|
11
|
+
import type { BoundaryPairPresentation } from "../../../providers/orchestrator/helpers/use-pair-presentation";
|
|
12
|
+
|
|
13
|
+
export type BoundaryPresentationState = {
|
|
14
|
+
presentations: readonly (
|
|
15
|
+
| DerivedValue<BoundaryPairPresentation | undefined>
|
|
16
|
+
| null
|
|
17
|
+
| undefined
|
|
18
|
+
)[];
|
|
19
|
+
pairs: ReturnType<typeof pairs.get>;
|
|
20
|
+
entries: ReturnType<typeof boundaryRegistry.get>;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export function resolveBoundaryPresentation(
|
|
24
|
+
screenKey: string,
|
|
25
|
+
boundaryId: string,
|
|
26
|
+
state: BoundaryPresentationState,
|
|
27
|
+
) {
|
|
28
|
+
"worklet";
|
|
29
|
+
const linkKey = getLinkKeyFromTag(boundaryId);
|
|
30
|
+
let result: BoundaryPairPresentation | undefined;
|
|
31
|
+
for (const value of state.presentations) {
|
|
32
|
+
const presentation = value?.get();
|
|
33
|
+
if (!presentation) continue;
|
|
34
|
+
const pair = state.pairs[presentation.pairKey];
|
|
35
|
+
const link = pair?.links[linkKey];
|
|
36
|
+
if (!link || (link.group && pair.groups[link.group]?.activeId !== linkKey))
|
|
37
|
+
continue;
|
|
38
|
+
const sourceKey = link.source?.screenKey ?? presentation.sourceKey;
|
|
39
|
+
const destinationKey =
|
|
40
|
+
link.destination?.screenKey ?? presentation.destinationKey;
|
|
41
|
+
if (sourceKey !== screenKey && destinationKey !== screenKey) continue;
|
|
42
|
+
// A preparing or completed pair cannot displace a live presentation.
|
|
43
|
+
if (result && !presentation.ready) continue;
|
|
44
|
+
result = { ...presentation, sourceKey, destinationKey };
|
|
45
|
+
}
|
|
46
|
+
return result;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function resolveBoundaryReceiver(
|
|
50
|
+
presentation: BoundaryPairPresentation | undefined,
|
|
51
|
+
target: BoundaryHandoffTarget | undefined,
|
|
52
|
+
screenKey: string,
|
|
53
|
+
) {
|
|
54
|
+
"worklet";
|
|
55
|
+
if (!presentation) return screenKey;
|
|
56
|
+
return presentation.ready && target !== "source"
|
|
57
|
+
? presentation.destinationKey
|
|
58
|
+
: presentation.sourceKey;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export function resolveBoundaryHandoff(
|
|
62
|
+
screenKey: string,
|
|
63
|
+
boundaryId: string,
|
|
64
|
+
state: BoundaryPresentationState,
|
|
65
|
+
) {
|
|
66
|
+
"worklet";
|
|
67
|
+
let receiver = screenKey;
|
|
68
|
+
const visited: Record<string, true> = {};
|
|
69
|
+
while (!visited[receiver]) {
|
|
70
|
+
visited[receiver] = true;
|
|
71
|
+
const p = resolveBoundaryPresentation(receiver, boundaryId, state);
|
|
72
|
+
if (!p) break;
|
|
73
|
+
const slot = (p.sourceKey === receiver ? p.source : p.destination)[
|
|
74
|
+
boundaryId
|
|
75
|
+
];
|
|
76
|
+
const next = resolveBoundaryReceiver(
|
|
77
|
+
p,
|
|
78
|
+
slot?.props?.handoffTarget ??
|
|
79
|
+
p.destination[boundaryId]?.props?.handoffTarget ??
|
|
80
|
+
p.source[boundaryId]?.props?.handoffTarget,
|
|
81
|
+
receiver,
|
|
82
|
+
);
|
|
83
|
+
if (next === receiver || !state.entries[boundaryId]?.screens[next]?.handoff)
|
|
84
|
+
break;
|
|
85
|
+
receiver = next;
|
|
86
|
+
}
|
|
87
|
+
return receiver;
|
|
88
|
+
}
|
|
@@ -7,9 +7,9 @@ import {
|
|
|
7
7
|
withTiming,
|
|
8
8
|
} from "react-native-reanimated";
|
|
9
9
|
import { scheduleOnUI } from "react-native-worklets";
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
10
|
+
import { useBlankStackStore } from "../../../../navigators/blank-stack/state/blank-stack.provider";
|
|
11
|
+
import { useBuilderStore } from "../../../../providers/builder";
|
|
12
|
+
import { useMotionStore } from "../../../../providers/motion";
|
|
13
13
|
import {
|
|
14
14
|
createScreenPairKey,
|
|
15
15
|
getSourceScreenKeyFromPairKey,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { useAnimatedReaction, useSharedValue } from "react-native-reanimated";
|
|
2
|
-
import { useBuilderStore } from "../../../../providers/
|
|
2
|
+
import { useBuilderStore } from "../../../../providers/builder";
|
|
3
3
|
import { getPairKeyForSource } from "../../../../stores/bounds/internals/links";
|
|
4
4
|
import { pairs } from "../../../../stores/bounds/internals/state";
|
|
5
5
|
import type { BoundTag } from "../../../../stores/bounds/types";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { useAnimatedReaction } from "react-native-reanimated";
|
|
2
|
-
import { useBuilderStore } from "../../../../providers/
|
|
3
|
-
import { useOptionalMotionStore } from "../../../../providers/
|
|
2
|
+
import { useBuilderStore } from "../../../../providers/builder";
|
|
3
|
+
import { useOptionalMotionStore } from "../../../../providers/motion";
|
|
4
4
|
import {
|
|
5
5
|
getPairKeyForDestination,
|
|
6
6
|
getPairKeyForSource,
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { useMemo } from "react";
|
|
2
|
+
import { useDerivedValue, useSharedValue } from "react-native-reanimated";
|
|
3
|
+
import { NO_PROPS, NO_STYLES } from "../../../constants";
|
|
4
|
+
import { useOptionalBlankStackStore } from "../../../navigators/blank-stack/state/blank-stack.provider";
|
|
5
|
+
import { useBuilderStore } from "../../../providers/builder";
|
|
6
|
+
import { useScreenRelationships } from "../../../providers/builder/topology";
|
|
7
|
+
import {
|
|
8
|
+
useOptionalOrchestratorStore,
|
|
9
|
+
useOrchestratorStore,
|
|
10
|
+
} from "../../../providers/orchestrator";
|
|
11
|
+
import {
|
|
12
|
+
areResettableStatesBySlotEqual,
|
|
13
|
+
type ResettableStyleStatesBySlot,
|
|
14
|
+
resolveSlotStyles,
|
|
15
|
+
} from "../../../providers/orchestrator/styles/helpers/resolve-slot-styles";
|
|
16
|
+
import {
|
|
17
|
+
boundaryRegistry,
|
|
18
|
+
pairs,
|
|
19
|
+
} from "../../../stores/bounds/internals/state";
|
|
20
|
+
import {
|
|
21
|
+
type BoundaryPresentationState,
|
|
22
|
+
resolveBoundaryHandoff,
|
|
23
|
+
resolveBoundaryPresentation,
|
|
24
|
+
} from "../helpers/presentation";
|
|
25
|
+
|
|
26
|
+
// Screens are discovered through existing providers. React only wires subscriptions;
|
|
27
|
+
// their live UI values decide ownership, including retained closing screens.
|
|
28
|
+
export function useBoundaryPresentation(boundaryId: string, enabled = true) {
|
|
29
|
+
const screenKey = useBuilderStore((s) => s.derivations.currentScreenKey);
|
|
30
|
+
const scenes = useOptionalBlankStackStore((s) => s?.scenes);
|
|
31
|
+
const keys = useMemo(
|
|
32
|
+
() => (enabled ? (scenes?.map((s) => s.route.key) ?? [screenKey]) : []),
|
|
33
|
+
[scenes, screenKey, enabled],
|
|
34
|
+
);
|
|
35
|
+
const pairPresentations = useOptionalOrchestratorStore(
|
|
36
|
+
keys,
|
|
37
|
+
(s) => s.pairPresentation,
|
|
38
|
+
);
|
|
39
|
+
const localSlots = useOrchestratorStore((s) => s.slotsMap);
|
|
40
|
+
const { parentScreenKey } = useScreenRelationships();
|
|
41
|
+
const ancestorSlots = useOptionalOrchestratorStore(
|
|
42
|
+
parentScreenKey,
|
|
43
|
+
(s) => s.slotsMap,
|
|
44
|
+
);
|
|
45
|
+
const previous = useSharedValue<ResettableStyleStatesBySlot>(NO_PROPS);
|
|
46
|
+
|
|
47
|
+
const presentation = useDerivedValue(() => {
|
|
48
|
+
const state: BoundaryPresentationState = {
|
|
49
|
+
presentations: pairPresentations,
|
|
50
|
+
pairs: pairs.get(),
|
|
51
|
+
entries: boundaryRegistry.get(),
|
|
52
|
+
};
|
|
53
|
+
const owner = resolveBoundaryPresentation(screenKey, boundaryId, state);
|
|
54
|
+
const receiver = resolveBoundaryHandoff(screenKey, boundaryId, state);
|
|
55
|
+
const ownedSlot = owner?.ready
|
|
56
|
+
? (owner.sourceKey === screenKey ? owner.source : owner.destination)[
|
|
57
|
+
boundaryId
|
|
58
|
+
]
|
|
59
|
+
: undefined;
|
|
60
|
+
|
|
61
|
+
const fallback = localSlots.get()[boundaryId];
|
|
62
|
+
const { resolvedStylesMap, nextPreviousStyleStatesBySlot } =
|
|
63
|
+
resolveSlotStyles({
|
|
64
|
+
localStylesMaps: [{ [boundaryId]: ownedSlot ?? fallback ?? {} }],
|
|
65
|
+
ancestorStylesMap: ownedSlot
|
|
66
|
+
? (ancestorSlots?.get() ?? NO_STYLES)
|
|
67
|
+
: NO_STYLES,
|
|
68
|
+
previousStyleStatesBySlot: previous.get(),
|
|
69
|
+
});
|
|
70
|
+
if (
|
|
71
|
+
!areResettableStatesBySlotEqual(
|
|
72
|
+
previous.get(),
|
|
73
|
+
nextPreviousStyleStatesBySlot,
|
|
74
|
+
)
|
|
75
|
+
) {
|
|
76
|
+
previous.set(nextPreviousStyleStatesBySlot);
|
|
77
|
+
}
|
|
78
|
+
return { owner, receiver, slots: resolvedStylesMap };
|
|
79
|
+
});
|
|
80
|
+
const slotsMap = useDerivedValue(() => presentation.get().slots);
|
|
81
|
+
return { presentation, slotsMap };
|
|
82
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { useMemo } from "react";
|
|
2
|
+
import {
|
|
3
|
+
type SharedValue,
|
|
4
|
+
type StyleProps,
|
|
5
|
+
useAnimatedStyle,
|
|
6
|
+
} from "react-native-reanimated";
|
|
7
|
+
import { NO_STYLES } from "../../../constants";
|
|
8
|
+
import {
|
|
9
|
+
composeSlotStyleWithLocalTransform,
|
|
10
|
+
getLocalTransformForSlotComposition,
|
|
11
|
+
} from "../../../providers/orchestrator/styles/helpers/compose-slot-style";
|
|
12
|
+
import type { NormalizedTransitionInterpolatedStyle } from "../../../types/animation.types";
|
|
13
|
+
|
|
14
|
+
export function useComposedBoundaryStyle(
|
|
15
|
+
slots: SharedValue<NormalizedTransitionInterpolatedStyle> | undefined,
|
|
16
|
+
id: string | undefined,
|
|
17
|
+
style?: unknown,
|
|
18
|
+
kind: "full" | "stacking" | "layout" = "full",
|
|
19
|
+
) {
|
|
20
|
+
const local = useMemo(
|
|
21
|
+
() => getLocalTransformForSlotComposition(style),
|
|
22
|
+
[style],
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
return useAnimatedStyle(() => {
|
|
26
|
+
const slot = id ? slots?.get()[id] : undefined;
|
|
27
|
+
const value: StyleProps = slot?.style ?? NO_STYLES;
|
|
28
|
+
if (kind === "stacking")
|
|
29
|
+
return { zIndex: value.zIndex ?? 0, elevation: value.elevation ?? 0 };
|
|
30
|
+
|
|
31
|
+
if (kind === "layout") {
|
|
32
|
+
const {
|
|
33
|
+
width,
|
|
34
|
+
height,
|
|
35
|
+
minWidth,
|
|
36
|
+
minHeight,
|
|
37
|
+
maxWidth,
|
|
38
|
+
maxHeight,
|
|
39
|
+
aspectRatio,
|
|
40
|
+
} = value;
|
|
41
|
+
|
|
42
|
+
return {
|
|
43
|
+
width,
|
|
44
|
+
height,
|
|
45
|
+
minWidth,
|
|
46
|
+
minHeight,
|
|
47
|
+
maxWidth,
|
|
48
|
+
maxHeight,
|
|
49
|
+
aspectRatio,
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
return composeSlotStyleWithLocalTransform(
|
|
53
|
+
value,
|
|
54
|
+
local,
|
|
55
|
+
slot?.boundsLocalTransform,
|
|
56
|
+
);
|
|
57
|
+
});
|
|
58
|
+
}
|
|
@@ -2,7 +2,7 @@ import { useCallback } from "react";
|
|
|
2
2
|
import type { View } from "react-native";
|
|
3
3
|
import { useWindowDimensions } from "react-native";
|
|
4
4
|
import type { AnimatedRef, StyleProps } from "react-native-reanimated";
|
|
5
|
-
import { useMotionStore } from "../../../providers/
|
|
5
|
+
import { useMotionStore } from "../../../providers/motion";
|
|
6
6
|
import { setEntry } from "../../../stores/bounds/internals/entries";
|
|
7
7
|
import {
|
|
8
8
|
setDestination,
|
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
type ComponentProps,
|
|
3
|
+
forwardRef,
|
|
4
|
+
type NamedExoticComponent,
|
|
5
|
+
} from "react";
|
|
2
6
|
import { View, type ViewProps } from "react-native";
|
|
3
7
|
import { Pressable, type PressableProps } from "react-native-gesture-handler";
|
|
4
8
|
import { BoundaryTarget } from "./components/boundary-target";
|
|
5
9
|
import { createBoundaryComponent } from "./create-boundary-component";
|
|
6
|
-
import {
|
|
10
|
+
import { PortalOverlay } from "./portal/components/portal-overlay";
|
|
7
11
|
import type { BoundaryComponentProps } from "./types";
|
|
8
12
|
|
|
9
13
|
export { createBoundaryComponent };
|
|
@@ -26,7 +30,6 @@ BoundaryPrimitive.displayName = "Transition.Boundary.Primitive";
|
|
|
26
30
|
const BoundaryRoot = createBoundaryComponent(BoundaryPrimitive);
|
|
27
31
|
BoundaryRoot.displayName = "Transition.Boundary";
|
|
28
32
|
BoundaryTarget.displayName = "Transition.Boundary.Target";
|
|
29
|
-
Host.displayName = "Transition.Boundary.Host";
|
|
30
33
|
|
|
31
34
|
type BoundaryRootComponent = typeof BoundaryRoot;
|
|
32
35
|
|
|
@@ -55,12 +58,14 @@ export interface BoundaryComponent extends BoundaryRootComponent {
|
|
|
55
58
|
/**
|
|
56
59
|
* Explicit host for clipping-escape placement.
|
|
57
60
|
*/
|
|
58
|
-
Host:
|
|
61
|
+
Host: NamedExoticComponent<
|
|
62
|
+
Omit<ComponentProps<typeof PortalOverlay>, "fallback">
|
|
63
|
+
>;
|
|
59
64
|
}
|
|
60
65
|
|
|
61
66
|
export type BoundaryProps = BoundaryComponentProps<BoundaryPrimitiveProps>;
|
|
62
67
|
|
|
63
68
|
export const Boundary = Object.assign(BoundaryRoot, {
|
|
64
69
|
Target: BoundaryTarget,
|
|
65
|
-
Host,
|
|
70
|
+
Host: PortalOverlay,
|
|
66
71
|
}) as BoundaryComponent;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { type ComponentProps, memo } from "react";
|
|
2
|
+
import { StyleSheet } from "react-native";
|
|
3
|
+
import Animated from "react-native-reanimated";
|
|
4
|
+
import { NativePortalHost, PORTAL_POINTER_EVENTS } from "../teleport";
|
|
5
|
+
|
|
6
|
+
const AnimatedHost = NativePortalHost
|
|
7
|
+
? Animated.createAnimatedComponent(NativePortalHost)
|
|
8
|
+
: null;
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* The native receiving point for a Portal whose destination matches `name`.
|
|
12
|
+
*
|
|
13
|
+
* Handoff places this inside a boundary, filling its local frame. Escape-clipping
|
|
14
|
+
* places it inside a PortalOverlay, which supplies
|
|
15
|
+
* the boundary's size, offset, and animated styles. This component only renders
|
|
16
|
+
* the receiver; destination selection and measurement belong to its callers.
|
|
17
|
+
*/
|
|
18
|
+
export const PortalHost = memo(function PortalHost({
|
|
19
|
+
name,
|
|
20
|
+
style = styles.inline,
|
|
21
|
+
}: {
|
|
22
|
+
name: string;
|
|
23
|
+
style?: ComponentProps<typeof Animated.View>["style"];
|
|
24
|
+
}) {
|
|
25
|
+
return AnimatedHost ? (
|
|
26
|
+
<AnimatedHost
|
|
27
|
+
name={name}
|
|
28
|
+
pointerEvents={PORTAL_POINTER_EVENTS}
|
|
29
|
+
style={style}
|
|
30
|
+
/>
|
|
31
|
+
) : null;
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
const styles = StyleSheet.create({
|
|
35
|
+
inline: { ...StyleSheet.absoluteFill, overflow: "visible" },
|
|
36
|
+
});
|