react-native-screen-transitions 4.0.0-alpha.0 → 4.0.0-alpha.10
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/README.md +1 -1
- package/lib/commonjs/adapters/with-screen-transitions/context.js.map +1 -1
- package/lib/commonjs/adapters/with-screen-transitions/options.js +1 -12
- package/lib/commonjs/adapters/with-screen-transitions/options.js.map +1 -1
- package/lib/commonjs/adapters/with-screen-transitions/stack-layout.js +30 -23
- package/lib/commonjs/adapters/with-screen-transitions/stack-layout.js.map +1 -1
- package/lib/commonjs/animation/snap-to.js +3 -0
- package/lib/commonjs/animation/snap-to.js.map +1 -1
- package/lib/commonjs/components/activity/activity-view.js +77 -0
- package/lib/commonjs/components/activity/activity-view.js.map +1 -0
- package/lib/commonjs/components/activity/activity-view.web.js +84 -0
- package/lib/commonjs/components/activity/activity-view.web.js.map +1 -0
- package/lib/commonjs/components/activity/variants/activity-container.js +2 -12
- package/lib/commonjs/components/activity/variants/activity-container.js.map +1 -1
- package/lib/commonjs/components/activity/variants/activity-screen.js +28 -63
- package/lib/commonjs/components/activity/variants/activity-screen.js.map +1 -1
- package/lib/commonjs/components/boundary/components/boundary-lifecycle.js +36 -0
- package/lib/commonjs/components/boundary/components/boundary-lifecycle.js.map +1 -0
- package/lib/commonjs/components/boundary/components/boundary-target.js +20 -21
- package/lib/commonjs/components/boundary/components/boundary-target.js.map +1 -1
- package/lib/commonjs/components/boundary/create-boundary-component.js +20 -2
- package/lib/commonjs/components/boundary/create-boundary-component.js.map +1 -1
- package/lib/commonjs/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js +41 -30
- 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 +3 -1
- package/lib/commonjs/components/boundary/hooks/lifecycles/use-initial-source-measurement.js.map +1 -1
- package/lib/commonjs/components/boundary/hooks/lifecycles/use-refresh-boundary.js +15 -12
- package/lib/commonjs/components/boundary/hooks/lifecycles/use-refresh-boundary.js.map +1 -1
- package/lib/commonjs/components/boundary/hooks/use-boundary-measurement.js +9 -9
- package/lib/commonjs/components/boundary/hooks/use-boundary-measurement.js.map +1 -1
- package/lib/commonjs/components/boundary/hooks/use-measurer.js +15 -17
- package/lib/commonjs/components/boundary/hooks/use-measurer.js.map +1 -1
- package/lib/commonjs/components/boundary/index.js +4 -9
- package/lib/commonjs/components/boundary/index.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/components/host.js +5 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/components/host.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js +67 -0
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js +56 -189
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/index.js +21 -13
- package/lib/commonjs/components/boundary/portal/components/boundary-content-portal/index.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/components/host.js +8 -26
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/components/host.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.js +38 -60
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/helpers/local-measurement.js +13 -0
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/helpers/local-measurement.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/helpers/offset-style.js +8 -32
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/helpers/offset-style.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js +82 -0
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js.map +1 -0
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js +24 -151
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.js +20 -58
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/index.js +46 -9
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/index.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/stores/host-registry.store.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.js +2 -29
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/teleport.js +1 -13
- package/lib/commonjs/components/boundary/portal/teleport.js.map +1 -1
- 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 +19 -15
- package/lib/commonjs/components/boundary/portal/utils/resolve-portal.js.map +1 -1
- package/lib/commonjs/components/boundary/portal/utils/teleport-control.js +1 -10
- package/lib/commonjs/components/boundary/portal/utils/teleport-control.js.map +1 -1
- package/lib/commonjs/components/boundary/providers/boundary-root.provider.js +42 -59
- package/lib/commonjs/components/boundary/providers/boundary-root.provider.js.map +1 -1
- package/lib/commonjs/components/boundary/utils/destination-signals.js +8 -4
- package/lib/commonjs/components/boundary/utils/destination-signals.js.map +1 -1
- package/lib/commonjs/components/boundary/utils/measured-bounds.js +19 -31
- package/lib/commonjs/components/boundary/utils/measured-bounds.js.map +1 -1
- package/lib/commonjs/components/boundary/utils/refresh-signals.js +34 -21
- package/lib/commonjs/components/boundary/utils/refresh-signals.js.map +1 -1
- package/lib/commonjs/components/boundary/utils/resolve-boundary-target.js +29 -0
- package/lib/commonjs/components/boundary/utils/resolve-boundary-target.js.map +1 -0
- package/lib/commonjs/components/create-transition-aware-component.js +9 -30
- package/lib/commonjs/components/create-transition-aware-component.js.map +1 -1
- package/lib/commonjs/components/overlay/helpers/create-overlay-interpolator-frame.js +36 -0
- package/lib/commonjs/components/overlay/helpers/create-overlay-interpolator-frame.js.map +1 -0
- package/lib/commonjs/components/overlay/helpers/get-active-overlay.js +52 -22
- package/lib/commonjs/components/overlay/helpers/get-active-overlay.js.map +1 -1
- package/lib/commonjs/components/overlay/helpers/retain-ready-overlay-resources.js +21 -0
- package/lib/commonjs/components/overlay/helpers/retain-ready-overlay-resources.js.map +1 -0
- package/lib/commonjs/components/overlay/helpers/run-overlay-slot-interpolator.js +41 -0
- package/lib/commonjs/components/overlay/helpers/run-overlay-slot-interpolator.js.map +1 -0
- package/lib/commonjs/components/overlay/hooks/use-overlay-slot.js +90 -0
- package/lib/commonjs/components/overlay/hooks/use-overlay-slot.js.map +1 -0
- package/lib/commonjs/components/overlay/variations/float-overlay.js +17 -69
- package/lib/commonjs/components/overlay/variations/float-overlay.js.map +1 -1
- package/lib/commonjs/components/overlay/variations/overlay-host.js +90 -16
- package/lib/commonjs/components/overlay/variations/overlay-host.js.map +1 -1
- package/lib/commonjs/components/screen-container/hooks/use-backdrop-pointer-events.js +4 -13
- package/lib/commonjs/components/screen-container/hooks/use-backdrop-pointer-events.js.map +1 -1
- package/lib/commonjs/components/screen-container/hooks/use-content-layout.js +3 -8
- package/lib/commonjs/components/screen-container/hooks/use-content-layout.js.map +1 -1
- package/lib/commonjs/components/screen-container/layers/backdrop.js +16 -14
- package/lib/commonjs/components/screen-container/layers/backdrop.js.map +1 -1
- package/lib/commonjs/components/screen-container/layers/content.js +14 -21
- package/lib/commonjs/components/screen-container/layers/content.js.map +1 -1
- package/lib/commonjs/components/screen-container/layers/maybe-masked-navigation-container.js +9 -1
- package/lib/commonjs/components/screen-container/layers/maybe-masked-navigation-container.js.map +1 -1
- package/lib/commonjs/components/screen-container/layers/surface.js +50 -0
- package/lib/commonjs/components/screen-container/layers/surface.js.map +1 -0
- package/lib/commonjs/components/screen-lifecycle/hooks/helpers/close-interception-rules.js +31 -0
- package/lib/commonjs/components/screen-lifecycle/hooks/helpers/close-interception-rules.js.map +1 -0
- package/lib/commonjs/components/screen-lifecycle/hooks/use-close-completion.js +27 -0
- package/lib/commonjs/components/screen-lifecycle/hooks/use-close-completion.js.map +1 -0
- package/lib/commonjs/components/screen-lifecycle/hooks/use-close-transition-intent.js +62 -92
- package/lib/commonjs/components/screen-lifecycle/hooks/use-close-transition-intent.js.map +1 -1
- package/lib/commonjs/components/screen-lifecycle/hooks/use-open-transition-intent.js +2 -3
- package/lib/commonjs/components/screen-lifecycle/hooks/use-open-transition-intent.js.map +1 -1
- package/lib/commonjs/components/screen-lifecycle/hooks/use-transition-start-controller.js +7 -5
- package/lib/commonjs/components/screen-lifecycle/hooks/use-transition-start-controller.js.map +1 -1
- package/lib/commonjs/components/screen-lifecycle/index.js +11 -10
- package/lib/commonjs/components/screen-lifecycle/index.js.map +1 -1
- package/lib/commonjs/components/stack-view.js +59 -34
- package/lib/commonjs/components/stack-view.js.map +1 -1
- package/lib/commonjs/configs/presets.js +14 -18
- package/lib/commonjs/configs/presets.js.map +1 -1
- package/lib/commonjs/constants.js +4 -19
- package/lib/commonjs/constants.js.map +1 -1
- package/lib/commonjs/factories/screen-topology/create-screen-topology.js +147 -0
- package/lib/commonjs/factories/screen-topology/create-screen-topology.js.map +1 -0
- package/lib/commonjs/factories/screen-topology/index.js +45 -0
- package/lib/commonjs/factories/screen-topology/index.js.map +1 -0
- package/lib/commonjs/factories/screen-topology/types.js +2 -0
- package/lib/commonjs/factories/screen-topology/types.js.map +1 -0
- package/lib/commonjs/factories/screen-topology/use-screen-relationships.js +15 -0
- package/lib/commonjs/factories/screen-topology/use-screen-relationships.js.map +1 -0
- package/lib/commonjs/factories/screen-topology/worklet.js +55 -0
- package/lib/commonjs/factories/screen-topology/worklet.js.map +1 -0
- package/lib/commonjs/hooks/navigation/use-navigation-helpers.js +34 -20
- package/lib/commonjs/hooks/navigation/use-navigation-helpers.js.map +1 -1
- package/lib/commonjs/hooks/navigation/use-screen-state.js +3 -5
- package/lib/commonjs/hooks/navigation/use-screen-state.js.map +1 -1
- package/lib/commonjs/hooks/reanimated/use-shared-value-ref.js +2 -3
- package/lib/commonjs/hooks/reanimated/use-shared-value-ref.js.map +1 -1
- package/lib/commonjs/index.js +0 -7
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/navigators/create-blank-stack-navigator.js +1 -5
- package/lib/commonjs/navigators/create-blank-stack-navigator.js.map +1 -1
- package/lib/commonjs/navigators/react-navigation/index.js +7 -8
- package/lib/commonjs/navigators/react-navigation/index.js.map +1 -1
- package/lib/commonjs/providers/helpers/measured-bounds-writes.js +3 -1
- package/lib/commonjs/providers/helpers/measured-bounds-writes.js.map +1 -1
- package/lib/commonjs/providers/navigation/navigation-host.provider.js +17 -4
- package/lib/commonjs/providers/navigation/navigation-host.provider.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/animation.provider.js +34 -97
- package/lib/commonjs/providers/screen/animation/animation.provider.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/helpers/accessors/use-build-transition-accessor.js +8 -56
- package/lib/commonjs/providers/screen/animation/helpers/accessors/use-build-transition-accessor.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/helpers/build-screen-transition-options.js +2 -6
- package/lib/commonjs/providers/screen/animation/helpers/build-screen-transition-options.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/helpers/hydrate-transition-state/gesture-progress.js +22 -7
- package/lib/commonjs/providers/screen/animation/helpers/hydrate-transition-state/gesture-progress.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/helpers/hydrate-transition-state/index.js +20 -23
- package/lib/commonjs/providers/screen/animation/helpers/hydrate-transition-state/index.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/helpers/pipeline.js +25 -25
- package/lib/commonjs/providers/screen/animation/helpers/pipeline.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/helpers/read-screen-animation-revisions.js +4 -13
- package/lib/commonjs/providers/screen/animation/helpers/read-screen-animation-revisions.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/helpers/selected-interpolator-options.js +1 -10
- package/lib/commonjs/providers/screen/animation/helpers/selected-interpolator-options.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/helpers/stack-progress.js +10 -26
- package/lib/commonjs/providers/screen/animation/helpers/stack-progress.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/helpers/use-build-transition-state.js +0 -1
- package/lib/commonjs/providers/screen/animation/helpers/use-build-transition-state.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/index.js +8 -2
- package/lib/commonjs/providers/screen/animation/index.js.map +1 -1
- package/lib/commonjs/providers/screen/animation/use-screen-animation.js +13 -42
- package/lib/commonjs/providers/screen/animation/use-screen-animation.js.map +1 -1
- package/lib/commonjs/providers/screen/descriptors/descriptors.provider.js +61 -52
- package/lib/commonjs/providers/screen/descriptors/descriptors.provider.js.map +1 -1
- package/lib/commonjs/providers/screen/descriptors/helpers/derive-descriptor-derivations.js +1 -6
- package/lib/commonjs/providers/screen/descriptors/helpers/derive-descriptor-derivations.js.map +1 -1
- package/lib/commonjs/providers/screen/descriptors/index.js +0 -12
- package/lib/commonjs/providers/screen/descriptors/index.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/gestures.provider.js +33 -30
- package/lib/commonjs/providers/screen/gestures/gestures.provider.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/hooks/use-screen-gesture-config.js +5 -13
- package/lib/commonjs/providers/screen/gestures/hooks/use-screen-gesture-config.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/hooks/use-screen-gesture.js +2 -3
- package/lib/commonjs/providers/screen/gestures/hooks/use-screen-gesture.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/hooks/use-stable-runtime-config.js +1 -3
- package/lib/commonjs/providers/screen/gestures/hooks/use-stable-runtime-config.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/index.js +8 -2
- package/lib/commonjs/providers/screen/gestures/index.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/ownership/{use-walk-up-and-register-shadowing-claims.js → gesture-ownership-bridge.js} +38 -64
- package/lib/commonjs/providers/screen/gestures/ownership/gesture-ownership-bridge.js.map +1 -0
- package/lib/commonjs/providers/screen/gestures/ownership/resolve-ownership.js +5 -7
- package/lib/commonjs/providers/screen/gestures/ownership/resolve-ownership.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/ownership/shadowing-claims.js +2 -2
- package/lib/commonjs/providers/screen/gestures/ownership/shadowing-claims.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pan/activation/pan-activation-decision.js +1 -2
- package/lib/commonjs/providers/screen/gestures/pan/activation/pan-activation-decision.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pan/activation/pan-activation-rules.js +5 -6
- package/lib/commonjs/providers/screen/gestures/pan/activation/pan-activation-rules.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pan/activation/use-pan-activation.js +3 -2
- package/lib/commonjs/providers/screen/gestures/pan/activation/use-pan-activation.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pan/behavior/pan-lifecycle.js +10 -13
- package/lib/commonjs/providers/screen/gestures/pan/behavior/pan-lifecycle.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pan/behavior/pan-release.js +30 -8
- package/lib/commonjs/providers/screen/gestures/pan/behavior/pan-release.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pan/behavior/pan-reset.js +11 -2
- package/lib/commonjs/providers/screen/gestures/pan/behavior/pan-reset.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pan/behavior/use-pan-behavior.js +3 -5
- package/lib/commonjs/providers/screen/gestures/pan/behavior/use-pan-behavior.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pan/use-build-pan-gesture.js +1 -1
- package/lib/commonjs/providers/screen/gestures/pan/use-build-pan-gesture.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pinch/activation/use-pinch-activation.js +37 -3
- package/lib/commonjs/providers/screen/gestures/pinch/activation/use-pinch-activation.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pinch/behavior/pinch-lifecycle.js +15 -14
- package/lib/commonjs/providers/screen/gestures/pinch/behavior/pinch-lifecycle.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pinch/behavior/pinch-release.js +29 -8
- package/lib/commonjs/providers/screen/gestures/pinch/behavior/pinch-release.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pinch/behavior/pinch-reset.js +8 -2
- package/lib/commonjs/providers/screen/gestures/pinch/behavior/pinch-reset.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pinch/behavior/use-pinch-behavior.js +2 -3
- package/lib/commonjs/providers/screen/gestures/pinch/behavior/use-pinch-behavior.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/pinch/use-build-pinch-gesture.js +1 -1
- package/lib/commonjs/providers/screen/gestures/pinch/use-build-pinch-gesture.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/scroll-coordination/scroll-metadata-owner.js +5 -8
- package/lib/commonjs/providers/screen/gestures/scroll-coordination/scroll-metadata-owner.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/scroll-coordination/use-scroll-gesture-coordination.js +5 -4
- package/lib/commonjs/providers/screen/gestures/scroll-coordination/use-scroll-gesture-coordination.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/scroll-coordination/walk-up-scroll-gesture-coordination.js +1 -3
- package/lib/commonjs/providers/screen/gestures/scroll-coordination/walk-up-scroll-gesture-coordination.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/shared/policy.js +10 -18
- package/lib/commonjs/providers/screen/gestures/shared/policy.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/shared/snap-points.js +71 -1
- package/lib/commonjs/providers/screen/gestures/shared/snap-points.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/shared/snapshot.js +1 -2
- package/lib/commonjs/providers/screen/gestures/shared/snapshot.js.map +1 -1
- package/lib/commonjs/providers/screen/gestures/types.js.map +1 -1
- package/lib/commonjs/providers/screen/options/helpers.js +7 -31
- package/lib/commonjs/providers/screen/options/helpers.js.map +1 -1
- package/lib/commonjs/providers/screen/options/index.js +2 -2
- package/lib/commonjs/providers/screen/options/options.provider.js +4 -8
- package/lib/commonjs/providers/screen/options/options.provider.js.map +1 -1
- package/lib/commonjs/providers/screen/screen-composer.js +2 -0
- package/lib/commonjs/providers/screen/screen-composer.js.map +1 -1
- package/lib/commonjs/providers/screen/styles/constants.js +15 -5
- package/lib/commonjs/providers/screen/styles/constants.js.map +1 -1
- package/lib/commonjs/providers/screen/styles/helpers/create-interpolator-scope.js +40 -0
- package/lib/commonjs/providers/screen/styles/helpers/create-interpolator-scope.js.map +1 -0
- package/lib/commonjs/providers/screen/styles/helpers/resolve-interpolator-style-handoff.js +94 -0
- package/lib/commonjs/providers/screen/styles/helpers/resolve-interpolator-style-handoff.js.map +1 -0
- package/lib/commonjs/providers/screen/styles/helpers/resolve-slot-styles/index.js +48 -5
- package/lib/commonjs/providers/screen/styles/helpers/resolve-slot-styles/index.js.map +1 -1
- package/lib/commonjs/providers/screen/styles/helpers/select-interpolator-frame.js +30 -0
- package/lib/commonjs/providers/screen/styles/helpers/select-interpolator-frame.js.map +1 -0
- package/lib/commonjs/providers/screen/styles/helpers/transition-visual-state.js +61 -0
- package/lib/commonjs/providers/screen/styles/helpers/transition-visual-state.js.map +1 -0
- package/lib/commonjs/providers/screen/styles/helpers/visibility-block-ownership.js +19 -0
- package/lib/commonjs/providers/screen/styles/helpers/visibility-block-ownership.js.map +1 -0
- package/lib/commonjs/providers/screen/styles/helpers/visibility-gate.js +25 -6
- package/lib/commonjs/providers/screen/styles/helpers/visibility-gate.js.map +1 -1
- package/lib/commonjs/providers/screen/styles/hooks/slot-resolvers.js +16 -15
- package/lib/commonjs/providers/screen/styles/hooks/slot-resolvers.js.map +1 -1
- package/lib/commonjs/providers/screen/styles/hooks/use-interpolated-style-maps.js +123 -71
- package/lib/commonjs/providers/screen/styles/hooks/use-interpolated-style-maps.js.map +1 -1
- package/lib/commonjs/providers/screen/styles/hooks/use-maybe-block-visibility.js +45 -25
- package/lib/commonjs/providers/screen/styles/hooks/use-maybe-block-visibility.js.map +1 -1
- package/lib/commonjs/providers/screen/styles/index.js +8 -8
- package/lib/commonjs/providers/screen/styles/slot.provider.js +41 -41
- package/lib/commonjs/providers/screen/styles/slot.provider.js.map +1 -1
- package/lib/commonjs/providers/screen/use-current-screen-relationships.js +14 -0
- package/lib/commonjs/providers/screen/use-current-screen-relationships.js.map +1 -0
- package/lib/commonjs/providers/stack/blank-stack-state/blank-stack-controller.js +9 -9
- package/lib/commonjs/providers/stack/blank-stack-state/blank-stack-controller.js.map +1 -1
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/build-blank-stack-state.js +3 -11
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/build-blank-stack-state.js.map +1 -1
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/derive-blank-stack-state.js.map +1 -1
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/reconcile-blank-stack-routes.js.map +1 -1
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/resolve-presented-index.js +18 -0
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/resolve-presented-index.js.map +1 -0
- package/lib/commonjs/providers/stack/blank-stack-state/helpers/state-equality.js.map +1 -1
- package/lib/commonjs/providers/stack/blank-stack-state/index.js.map +1 -1
- package/lib/commonjs/providers/stack/blank-stack.provider.js +51 -62
- package/lib/commonjs/providers/stack/blank-stack.provider.js.map +1 -1
- package/lib/commonjs/providers/stack/core.provider.js +25 -58
- package/lib/commonjs/providers/stack/core.provider.js.map +1 -1
- package/lib/commonjs/stores/animation.store.js +19 -3
- package/lib/commonjs/stores/animation.store.js.map +1 -1
- package/lib/commonjs/stores/bounds/internals/entries.js +27 -0
- package/lib/commonjs/stores/bounds/internals/entries.js.map +1 -1
- package/lib/commonjs/stores/bounds/internals/links.js +36 -5
- package/lib/commonjs/stores/bounds/internals/links.js.map +1 -1
- package/lib/commonjs/stores/bounds/internals/resolver.js +2 -12
- package/lib/commonjs/stores/bounds/internals/resolver.js.map +1 -1
- package/lib/commonjs/stores/gesture.store.js +4 -13
- package/lib/commonjs/stores/gesture.store.js.map +1 -1
- package/lib/commonjs/stores/scroll.store.js +20 -2
- package/lib/commonjs/stores/scroll.store.js.map +1 -1
- package/lib/commonjs/stores/system.store.js +3 -2
- package/lib/commonjs/stores/system.store.js.map +1 -1
- package/lib/commonjs/types/gesture.types.js.map +1 -1
- package/lib/commonjs/types/stack.types.js +0 -35
- package/lib/commonjs/types/stack.types.js.map +1 -1
- package/lib/commonjs/utils/animation/animate-to-progress.js +35 -34
- package/lib/commonjs/utils/animation/animate-to-progress.js.map +1 -1
- package/lib/commonjs/utils/animation/animate.js +14 -2
- package/lib/commonjs/utils/animation/animate.js.map +1 -1
- package/lib/commonjs/utils/animation/spring/spring.js +22 -2
- package/lib/commonjs/utils/animation/spring/spring.js.map +1 -1
- package/lib/commonjs/utils/animation/spring/springUtils.js +96 -0
- package/lib/commonjs/utils/animation/spring/springUtils.js.map +1 -1
- package/lib/commonjs/utils/animation/state.js +4 -0
- package/lib/commonjs/utils/bounds/constants.js.map +1 -1
- package/lib/commonjs/utils/bounds/helpers/create-bounds-accessor-core.js +6 -5
- package/lib/commonjs/utils/bounds/helpers/create-bounds-accessor-core.js.map +1 -1
- package/lib/commonjs/utils/bounds/helpers/create-link-accessor.js +2 -2
- package/lib/commonjs/utils/bounds/helpers/create-link-accessor.js.map +1 -1
- package/lib/commonjs/utils/bounds/helpers/prepare-bound-styles.js.map +1 -1
- package/lib/commonjs/utils/bounds/helpers/styles/composers.js +2 -2
- package/lib/commonjs/utils/bounds/helpers/styles/composers.js.map +1 -1
- package/lib/commonjs/utils/bounds/helpers/styles/compute.js.map +1 -1
- package/lib/commonjs/utils/bounds/navigation/reveal/build.js +1 -1
- package/lib/commonjs/utils/bounds/navigation/reveal/build.js.map +1 -1
- package/lib/commonjs/utils/bounds/navigation/reveal/math.js +17 -5
- package/lib/commonjs/utils/bounds/navigation/reveal/math.js.map +1 -1
- package/lib/commonjs/utils/bounds/navigation/zoom/build.js +44 -20
- package/lib/commonjs/utils/bounds/navigation/zoom/build.js.map +1 -1
- package/lib/commonjs/utils/bounds/navigation/zoom/drag.js +2 -31
- package/lib/commonjs/utils/bounds/navigation/zoom/drag.js.map +1 -1
- package/lib/commonjs/utils/bounds/navigation/zoom/helpers.js +3 -17
- package/lib/commonjs/utils/bounds/navigation/zoom/helpers.js.map +1 -1
- package/lib/commonjs/utils/create-provider.js +153 -84
- package/lib/commonjs/utils/create-provider.js.map +1 -1
- package/lib/commonjs/utils/navigation/close-action-replay.js +22 -0
- package/lib/commonjs/utils/navigation/close-action-replay.js.map +1 -0
- package/lib/commonjs/utils/normalize-interpolated-style.js +2 -40
- package/lib/commonjs/utils/normalize-interpolated-style.js.map +1 -1
- package/lib/commonjs/utils/resolve-screen-transition-options.js +1 -7
- package/lib/commonjs/utils/resolve-screen-transition-options.js.map +1 -1
- package/lib/module/adapters/with-screen-transitions/context.js.map +1 -1
- package/lib/module/adapters/with-screen-transitions/options.js +1 -12
- package/lib/module/adapters/with-screen-transitions/options.js.map +1 -1
- package/lib/module/adapters/with-screen-transitions/stack-layout.js +30 -23
- package/lib/module/adapters/with-screen-transitions/stack-layout.js.map +1 -1
- package/lib/module/animation/snap-to.js +3 -0
- package/lib/module/animation/snap-to.js.map +1 -1
- package/lib/module/components/activity/activity-view.js +73 -0
- package/lib/module/components/activity/activity-view.js.map +1 -0
- package/lib/module/components/activity/activity-view.web.js +80 -0
- package/lib/module/components/activity/activity-view.web.js.map +1 -0
- package/lib/module/components/activity/variants/activity-container.js +2 -12
- package/lib/module/components/activity/variants/activity-container.js.map +1 -1
- package/lib/module/components/activity/variants/activity-screen.js +28 -63
- package/lib/module/components/activity/variants/activity-screen.js.map +1 -1
- package/lib/module/components/boundary/components/boundary-lifecycle.js +32 -0
- package/lib/module/components/boundary/components/boundary-lifecycle.js.map +1 -0
- package/lib/module/components/boundary/components/boundary-target.js +20 -21
- package/lib/module/components/boundary/components/boundary-target.js.map +1 -1
- package/lib/module/components/boundary/create-boundary-component.js +22 -4
- package/lib/module/components/boundary/create-boundary-component.js.map +1 -1
- package/lib/module/components/boundary/hooks/lifecycles/use-initial-destination-measurement.js +45 -33
- 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 +3 -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 +15 -12
- package/lib/module/components/boundary/hooks/lifecycles/use-refresh-boundary.js.map +1 -1
- package/lib/module/components/boundary/hooks/use-boundary-measurement.js +9 -9
- package/lib/module/components/boundary/hooks/use-boundary-measurement.js.map +1 -1
- package/lib/module/components/boundary/hooks/use-measurer.js +17 -19
- package/lib/module/components/boundary/hooks/use-measurer.js.map +1 -1
- package/lib/module/components/boundary/index.js +4 -9
- package/lib/module/components/boundary/index.js.map +1 -1
- package/lib/module/components/boundary/portal/components/boundary-content-portal/components/host.js +5 -1
- package/lib/module/components/boundary/portal/components/boundary-content-portal/components/host.js.map +1 -1
- package/lib/module/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js +60 -0
- package/lib/module/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.js.map +1 -0
- package/lib/module/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js +60 -193
- package/lib/module/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.js.map +1 -1
- package/lib/module/components/boundary/portal/components/boundary-content-portal/index.js +21 -13
- package/lib/module/components/boundary/portal/components/boundary-content-portal/index.js.map +1 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/components/host.js +9 -27
- package/lib/module/components/boundary/portal/components/boundary-portal/components/host.js.map +1 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.js +40 -62
- package/lib/module/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.js.map +1 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/helpers/local-measurement.js +8 -0
- package/lib/module/components/boundary/portal/components/boundary-portal/helpers/local-measurement.js.map +1 -0
- package/lib/module/components/boundary/portal/components/boundary-portal/helpers/offset-style.js +8 -33
- package/lib/module/components/boundary/portal/components/boundary-portal/helpers/offset-style.js.map +1 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js +76 -0
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.js.map +1 -0
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js +27 -154
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.js.map +1 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.js +20 -58
- package/lib/module/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.js.map +1 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/index.js +45 -9
- package/lib/module/components/boundary/portal/components/boundary-portal/index.js.map +1 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/stores/host-registry.store.js.map +1 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.js +1 -27
- package/lib/module/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.js.map +1 -1
- package/lib/module/components/boundary/portal/teleport.js +1 -14
- package/lib/module/components/boundary/portal/teleport.js.map +1 -1
- 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 +19 -15
- package/lib/module/components/boundary/portal/utils/resolve-portal.js.map +1 -1
- package/lib/module/components/boundary/portal/utils/teleport-control.js +0 -8
- package/lib/module/components/boundary/portal/utils/teleport-control.js.map +1 -1
- package/lib/module/components/boundary/providers/boundary-root.provider.js +42 -59
- package/lib/module/components/boundary/providers/boundary-root.provider.js.map +1 -1
- package/lib/module/components/boundary/utils/destination-signals.js +8 -4
- package/lib/module/components/boundary/utils/destination-signals.js.map +1 -1
- package/lib/module/components/boundary/utils/measured-bounds.js +17 -28
- package/lib/module/components/boundary/utils/measured-bounds.js.map +1 -1
- package/lib/module/components/boundary/utils/refresh-signals.js +34 -21
- package/lib/module/components/boundary/utils/refresh-signals.js.map +1 -1
- package/lib/module/components/boundary/utils/resolve-boundary-target.js +24 -0
- package/lib/module/components/boundary/utils/resolve-boundary-target.js.map +1 -0
- package/lib/module/components/create-transition-aware-component.js +10 -31
- package/lib/module/components/create-transition-aware-component.js.map +1 -1
- package/lib/module/components/overlay/helpers/create-overlay-interpolator-frame.js +30 -0
- package/lib/module/components/overlay/helpers/create-overlay-interpolator-frame.js.map +1 -0
- package/lib/module/components/overlay/helpers/get-active-overlay.js +49 -21
- package/lib/module/components/overlay/helpers/get-active-overlay.js.map +1 -1
- package/lib/module/components/overlay/helpers/retain-ready-overlay-resources.js +17 -0
- package/lib/module/components/overlay/helpers/retain-ready-overlay-resources.js.map +1 -0
- package/lib/module/components/overlay/helpers/run-overlay-slot-interpolator.js +36 -0
- package/lib/module/components/overlay/helpers/run-overlay-slot-interpolator.js.map +1 -0
- package/lib/module/components/overlay/hooks/use-overlay-slot.js +85 -0
- package/lib/module/components/overlay/hooks/use-overlay-slot.js.map +1 -0
- package/lib/module/components/overlay/variations/float-overlay.js +18 -70
- package/lib/module/components/overlay/variations/float-overlay.js.map +1 -1
- package/lib/module/components/overlay/variations/overlay-host.js +91 -18
- package/lib/module/components/overlay/variations/overlay-host.js.map +1 -1
- package/lib/module/components/screen-container/hooks/use-backdrop-pointer-events.js +6 -15
- package/lib/module/components/screen-container/hooks/use-backdrop-pointer-events.js.map +1 -1
- package/lib/module/components/screen-container/hooks/use-content-layout.js +4 -9
- package/lib/module/components/screen-container/hooks/use-content-layout.js.map +1 -1
- package/lib/module/components/screen-container/layers/backdrop.js +18 -16
- package/lib/module/components/screen-container/layers/backdrop.js.map +1 -1
- package/lib/module/components/screen-container/layers/content.js +16 -22
- package/lib/module/components/screen-container/layers/content.js.map +1 -1
- package/lib/module/components/screen-container/layers/maybe-masked-navigation-container.js +10 -2
- package/lib/module/components/screen-container/layers/maybe-masked-navigation-container.js.map +1 -1
- package/lib/module/components/screen-container/layers/surface.js +45 -0
- package/lib/module/components/screen-container/layers/surface.js.map +1 -0
- package/lib/module/components/screen-lifecycle/hooks/helpers/close-interception-rules.js +25 -0
- package/lib/module/components/screen-lifecycle/hooks/helpers/close-interception-rules.js.map +1 -0
- package/lib/module/components/screen-lifecycle/hooks/use-close-completion.js +22 -0
- package/lib/module/components/screen-lifecycle/hooks/use-close-completion.js.map +1 -0
- package/lib/module/components/screen-lifecycle/hooks/use-close-transition-intent.js +64 -93
- package/lib/module/components/screen-lifecycle/hooks/use-close-transition-intent.js.map +1 -1
- package/lib/module/components/screen-lifecycle/hooks/use-open-transition-intent.js +3 -4
- package/lib/module/components/screen-lifecycle/hooks/use-open-transition-intent.js.map +1 -1
- package/lib/module/components/screen-lifecycle/hooks/use-transition-start-controller.js +7 -5
- package/lib/module/components/screen-lifecycle/hooks/use-transition-start-controller.js.map +1 -1
- package/lib/module/components/screen-lifecycle/index.js +12 -11
- package/lib/module/components/screen-lifecycle/index.js.map +1 -1
- package/lib/module/components/stack-view.js +61 -36
- package/lib/module/components/stack-view.js.map +1 -1
- package/lib/module/configs/presets.js +14 -18
- package/lib/module/configs/presets.js.map +1 -1
- package/lib/module/constants.js +3 -18
- package/lib/module/constants.js.map +1 -1
- package/lib/module/factories/screen-topology/create-screen-topology.js +142 -0
- package/lib/module/factories/screen-topology/create-screen-topology.js.map +1 -0
- package/lib/module/factories/screen-topology/index.js +6 -0
- package/lib/module/factories/screen-topology/index.js.map +1 -0
- package/lib/module/factories/screen-topology/types.js +2 -0
- package/lib/module/factories/screen-topology/types.js.map +1 -0
- package/lib/module/factories/screen-topology/use-screen-relationships.js +10 -0
- package/lib/module/factories/screen-topology/use-screen-relationships.js.map +1 -0
- package/lib/module/factories/screen-topology/worklet.js +48 -0
- package/lib/module/factories/screen-topology/worklet.js.map +1 -0
- package/lib/module/hooks/navigation/use-navigation-helpers.js +34 -20
- package/lib/module/hooks/navigation/use-navigation-helpers.js.map +1 -1
- package/lib/module/hooks/navigation/use-screen-state.js +4 -6
- package/lib/module/hooks/navigation/use-screen-state.js.map +1 -1
- package/lib/module/hooks/reanimated/use-shared-value-ref.js +3 -4
- package/lib/module/hooks/reanimated/use-shared-value-ref.js.map +1 -1
- package/lib/module/index.js +0 -6
- package/lib/module/index.js.map +1 -1
- package/lib/module/navigators/create-blank-stack-navigator.js +1 -5
- package/lib/module/navigators/create-blank-stack-navigator.js.map +1 -1
- package/lib/module/navigators/react-navigation/index.js +4 -6
- package/lib/module/navigators/react-navigation/index.js.map +1 -1
- package/lib/module/providers/helpers/measured-bounds-writes.js +3 -1
- package/lib/module/providers/helpers/measured-bounds-writes.js.map +1 -1
- package/lib/module/providers/navigation/navigation-host.provider.js +16 -4
- package/lib/module/providers/navigation/navigation-host.provider.js.map +1 -1
- package/lib/module/providers/screen/animation/animation.provider.js +32 -95
- package/lib/module/providers/screen/animation/animation.provider.js.map +1 -1
- package/lib/module/providers/screen/animation/helpers/accessors/use-build-transition-accessor.js +8 -56
- package/lib/module/providers/screen/animation/helpers/accessors/use-build-transition-accessor.js.map +1 -1
- package/lib/module/providers/screen/animation/helpers/build-screen-transition-options.js +2 -6
- package/lib/module/providers/screen/animation/helpers/build-screen-transition-options.js.map +1 -1
- package/lib/module/providers/screen/animation/helpers/hydrate-transition-state/gesture-progress.js +22 -7
- package/lib/module/providers/screen/animation/helpers/hydrate-transition-state/gesture-progress.js.map +1 -1
- package/lib/module/providers/screen/animation/helpers/hydrate-transition-state/index.js +20 -23
- package/lib/module/providers/screen/animation/helpers/hydrate-transition-state/index.js.map +1 -1
- package/lib/module/providers/screen/animation/helpers/pipeline.js +27 -27
- package/lib/module/providers/screen/animation/helpers/pipeline.js.map +1 -1
- package/lib/module/providers/screen/animation/helpers/read-screen-animation-revisions.js +4 -13
- package/lib/module/providers/screen/animation/helpers/read-screen-animation-revisions.js.map +1 -1
- package/lib/module/providers/screen/animation/helpers/selected-interpolator-options.js +1 -10
- package/lib/module/providers/screen/animation/helpers/selected-interpolator-options.js.map +1 -1
- package/lib/module/providers/screen/animation/helpers/stack-progress.js +9 -24
- package/lib/module/providers/screen/animation/helpers/stack-progress.js.map +1 -1
- package/lib/module/providers/screen/animation/helpers/use-build-transition-state.js +0 -1
- package/lib/module/providers/screen/animation/helpers/use-build-transition-state.js.map +1 -1
- package/lib/module/providers/screen/animation/index.js +1 -1
- package/lib/module/providers/screen/animation/index.js.map +1 -1
- package/lib/module/providers/screen/animation/use-screen-animation.js +14 -44
- package/lib/module/providers/screen/animation/use-screen-animation.js.map +1 -1
- package/lib/module/providers/screen/descriptors/descriptors.provider.js +62 -50
- package/lib/module/providers/screen/descriptors/descriptors.provider.js.map +1 -1
- package/lib/module/providers/screen/descriptors/helpers/derive-descriptor-derivations.js +1 -6
- package/lib/module/providers/screen/descriptors/helpers/derive-descriptor-derivations.js.map +1 -1
- package/lib/module/providers/screen/descriptors/index.js +1 -1
- package/lib/module/providers/screen/descriptors/index.js.map +1 -1
- package/lib/module/providers/screen/gestures/gestures.provider.js +32 -30
- package/lib/module/providers/screen/gestures/gestures.provider.js.map +1 -1
- package/lib/module/providers/screen/gestures/hooks/use-screen-gesture-config.js +6 -14
- package/lib/module/providers/screen/gestures/hooks/use-screen-gesture-config.js.map +1 -1
- package/lib/module/providers/screen/gestures/hooks/use-screen-gesture.js +3 -4
- package/lib/module/providers/screen/gestures/hooks/use-screen-gesture.js.map +1 -1
- package/lib/module/providers/screen/gestures/hooks/use-stable-runtime-config.js +2 -4
- package/lib/module/providers/screen/gestures/hooks/use-stable-runtime-config.js.map +1 -1
- package/lib/module/providers/screen/gestures/index.js +1 -1
- package/lib/module/providers/screen/gestures/index.js.map +1 -1
- package/lib/module/providers/screen/gestures/ownership/gesture-ownership-bridge.js +124 -0
- package/lib/module/providers/screen/gestures/ownership/gesture-ownership-bridge.js.map +1 -0
- package/lib/module/providers/screen/gestures/ownership/resolve-ownership.js +5 -7
- package/lib/module/providers/screen/gestures/ownership/resolve-ownership.js.map +1 -1
- package/lib/module/providers/screen/gestures/ownership/shadowing-claims.js +2 -2
- package/lib/module/providers/screen/gestures/ownership/shadowing-claims.js.map +1 -1
- package/lib/module/providers/screen/gestures/pan/activation/pan-activation-decision.js +1 -2
- package/lib/module/providers/screen/gestures/pan/activation/pan-activation-decision.js.map +1 -1
- package/lib/module/providers/screen/gestures/pan/activation/pan-activation-rules.js +5 -6
- package/lib/module/providers/screen/gestures/pan/activation/pan-activation-rules.js.map +1 -1
- package/lib/module/providers/screen/gestures/pan/activation/use-pan-activation.js +4 -3
- package/lib/module/providers/screen/gestures/pan/activation/use-pan-activation.js.map +1 -1
- package/lib/module/providers/screen/gestures/pan/behavior/pan-lifecycle.js +11 -14
- package/lib/module/providers/screen/gestures/pan/behavior/pan-lifecycle.js.map +1 -1
- package/lib/module/providers/screen/gestures/pan/behavior/pan-release.js +31 -9
- package/lib/module/providers/screen/gestures/pan/behavior/pan-release.js.map +1 -1
- package/lib/module/providers/screen/gestures/pan/behavior/pan-reset.js +11 -2
- package/lib/module/providers/screen/gestures/pan/behavior/pan-reset.js.map +1 -1
- package/lib/module/providers/screen/gestures/pan/behavior/use-pan-behavior.js +3 -5
- package/lib/module/providers/screen/gestures/pan/behavior/use-pan-behavior.js.map +1 -1
- package/lib/module/providers/screen/gestures/pan/use-build-pan-gesture.js +2 -2
- package/lib/module/providers/screen/gestures/pan/use-build-pan-gesture.js.map +1 -1
- package/lib/module/providers/screen/gestures/pinch/activation/use-pinch-activation.js +35 -2
- package/lib/module/providers/screen/gestures/pinch/activation/use-pinch-activation.js.map +1 -1
- package/lib/module/providers/screen/gestures/pinch/behavior/pinch-lifecycle.js +16 -15
- package/lib/module/providers/screen/gestures/pinch/behavior/pinch-lifecycle.js.map +1 -1
- package/lib/module/providers/screen/gestures/pinch/behavior/pinch-release.js +30 -9
- package/lib/module/providers/screen/gestures/pinch/behavior/pinch-release.js.map +1 -1
- package/lib/module/providers/screen/gestures/pinch/behavior/pinch-reset.js +8 -2
- package/lib/module/providers/screen/gestures/pinch/behavior/pinch-reset.js.map +1 -1
- package/lib/module/providers/screen/gestures/pinch/behavior/use-pinch-behavior.js +2 -3
- package/lib/module/providers/screen/gestures/pinch/behavior/use-pinch-behavior.js.map +1 -1
- package/lib/module/providers/screen/gestures/pinch/use-build-pinch-gesture.js +2 -2
- package/lib/module/providers/screen/gestures/pinch/use-build-pinch-gesture.js.map +1 -1
- package/lib/module/providers/screen/gestures/scroll-coordination/scroll-metadata-owner.js +4 -8
- package/lib/module/providers/screen/gestures/scroll-coordination/scroll-metadata-owner.js.map +1 -1
- package/lib/module/providers/screen/gestures/scroll-coordination/use-scroll-gesture-coordination.js +7 -6
- package/lib/module/providers/screen/gestures/scroll-coordination/use-scroll-gesture-coordination.js.map +1 -1
- package/lib/module/providers/screen/gestures/scroll-coordination/walk-up-scroll-gesture-coordination.js +1 -3
- package/lib/module/providers/screen/gestures/scroll-coordination/walk-up-scroll-gesture-coordination.js.map +1 -1
- package/lib/module/providers/screen/gestures/shared/policy.js +11 -19
- package/lib/module/providers/screen/gestures/shared/policy.js.map +1 -1
- package/lib/module/providers/screen/gestures/shared/snap-points.js +66 -0
- package/lib/module/providers/screen/gestures/shared/snap-points.js.map +1 -1
- package/lib/module/providers/screen/gestures/shared/snapshot.js +1 -2
- package/lib/module/providers/screen/gestures/shared/snapshot.js.map +1 -1
- package/lib/module/providers/screen/gestures/types.js.map +1 -1
- package/lib/module/providers/screen/options/helpers.js +8 -32
- package/lib/module/providers/screen/options/helpers.js.map +1 -1
- package/lib/module/providers/screen/options/index.js +1 -1
- package/lib/module/providers/screen/options/index.js.map +1 -1
- package/lib/module/providers/screen/options/options.provider.js +3 -7
- package/lib/module/providers/screen/options/options.provider.js.map +1 -1
- package/lib/module/providers/screen/screen-composer.js +2 -0
- package/lib/module/providers/screen/screen-composer.js.map +1 -1
- package/lib/module/providers/screen/styles/constants.js +13 -4
- package/lib/module/providers/screen/styles/constants.js.map +1 -1
- package/lib/module/providers/screen/styles/helpers/create-interpolator-scope.js +35 -0
- package/lib/module/providers/screen/styles/helpers/create-interpolator-scope.js.map +1 -0
- package/lib/module/providers/screen/styles/helpers/resolve-interpolator-style-handoff.js +89 -0
- package/lib/module/providers/screen/styles/helpers/resolve-interpolator-style-handoff.js.map +1 -0
- package/lib/module/providers/screen/styles/helpers/resolve-slot-styles/index.js +49 -6
- package/lib/module/providers/screen/styles/helpers/resolve-slot-styles/index.js.map +1 -1
- package/lib/module/providers/screen/styles/helpers/select-interpolator-frame.js +25 -0
- package/lib/module/providers/screen/styles/helpers/select-interpolator-frame.js.map +1 -0
- package/lib/module/providers/screen/styles/helpers/transition-visual-state.js +53 -0
- package/lib/module/providers/screen/styles/helpers/transition-visual-state.js.map +1 -0
- package/lib/module/providers/screen/styles/helpers/visibility-block-ownership.js +14 -0
- package/lib/module/providers/screen/styles/helpers/visibility-block-ownership.js.map +1 -0
- package/lib/module/providers/screen/styles/helpers/visibility-gate.js +23 -5
- package/lib/module/providers/screen/styles/helpers/visibility-gate.js.map +1 -1
- package/lib/module/providers/screen/styles/hooks/slot-resolvers.js +17 -16
- package/lib/module/providers/screen/styles/hooks/slot-resolvers.js.map +1 -1
- package/lib/module/providers/screen/styles/hooks/use-interpolated-style-maps.js +126 -74
- package/lib/module/providers/screen/styles/hooks/use-interpolated-style-maps.js.map +1 -1
- package/lib/module/providers/screen/styles/hooks/use-maybe-block-visibility.js +46 -26
- package/lib/module/providers/screen/styles/hooks/use-maybe-block-visibility.js.map +1 -1
- package/lib/module/providers/screen/styles/index.js +1 -1
- package/lib/module/providers/screen/styles/index.js.map +1 -1
- package/lib/module/providers/screen/styles/slot.provider.js +39 -39
- package/lib/module/providers/screen/styles/slot.provider.js.map +1 -1
- package/lib/module/providers/screen/use-current-screen-relationships.js +9 -0
- package/lib/module/providers/screen/use-current-screen-relationships.js.map +1 -0
- package/lib/module/providers/stack/blank-stack-state/blank-stack-controller.js +9 -9
- package/lib/module/providers/stack/blank-stack-state/blank-stack-controller.js.map +1 -1
- package/lib/module/providers/stack/blank-stack-state/helpers/build-blank-stack-state.js +3 -11
- package/lib/module/providers/stack/blank-stack-state/helpers/build-blank-stack-state.js.map +1 -1
- package/lib/module/providers/stack/blank-stack-state/helpers/derive-blank-stack-state.js.map +1 -1
- package/lib/module/providers/stack/blank-stack-state/helpers/reconcile-blank-stack-routes.js.map +1 -1
- package/lib/module/providers/stack/blank-stack-state/helpers/resolve-presented-index.js +14 -0
- package/lib/module/providers/stack/blank-stack-state/helpers/resolve-presented-index.js.map +1 -0
- package/lib/module/providers/stack/blank-stack-state/helpers/state-equality.js.map +1 -1
- package/lib/module/providers/stack/blank-stack-state/index.js.map +1 -1
- package/lib/module/providers/stack/blank-stack.provider.js +46 -59
- package/lib/module/providers/stack/blank-stack.provider.js.map +1 -1
- package/lib/module/providers/stack/core.provider.js +23 -56
- package/lib/module/providers/stack/core.provider.js.map +1 -1
- package/lib/module/stores/animation.store.js +17 -2
- package/lib/module/stores/animation.store.js.map +1 -1
- package/lib/module/stores/bounds/internals/entries.js +27 -1
- package/lib/module/stores/bounds/internals/entries.js.map +1 -1
- package/lib/module/stores/bounds/internals/links.js +36 -7
- package/lib/module/stores/bounds/internals/links.js.map +1 -1
- package/lib/module/stores/bounds/internals/resolver.js +3 -13
- package/lib/module/stores/bounds/internals/resolver.js.map +1 -1
- package/lib/module/stores/gesture.store.js +4 -13
- package/lib/module/stores/gesture.store.js.map +1 -1
- package/lib/module/stores/scroll.store.js +17 -0
- package/lib/module/stores/scroll.store.js.map +1 -1
- package/lib/module/stores/system.store.js +3 -2
- package/lib/module/stores/system.store.js.map +1 -1
- package/lib/module/types/animation.types.js.map +1 -1
- package/lib/module/types/bounds.types.js +0 -12
- package/lib/module/types/bounds.types.js.map +1 -1
- package/lib/module/types/gesture.types.js.map +1 -1
- package/lib/module/types/stack.types.js +1 -41
- package/lib/module/types/stack.types.js.map +1 -1
- package/lib/module/utils/animation/animate-to-progress.js +33 -33
- package/lib/module/utils/animation/animate-to-progress.js.map +1 -1
- package/lib/module/utils/animation/animate.js +14 -2
- package/lib/module/utils/animation/animate.js.map +1 -1
- package/lib/module/utils/animation/spring/spring.js +23 -3
- package/lib/module/utils/animation/spring/spring.js.map +1 -1
- package/lib/module/utils/animation/spring/springUtils.js +95 -0
- package/lib/module/utils/animation/spring/springUtils.js.map +1 -1
- package/lib/module/utils/animation/state.js +2 -0
- package/lib/module/utils/bounds/constants.js.map +1 -1
- package/lib/module/utils/bounds/helpers/create-bounds-accessor-core.js +6 -5
- package/lib/module/utils/bounds/helpers/create-bounds-accessor-core.js.map +1 -1
- package/lib/module/utils/bounds/helpers/create-link-accessor.js +3 -3
- package/lib/module/utils/bounds/helpers/create-link-accessor.js.map +1 -1
- package/lib/module/utils/bounds/helpers/prepare-bound-styles.js.map +1 -1
- package/lib/module/utils/bounds/helpers/styles/composers.js +2 -2
- package/lib/module/utils/bounds/helpers/styles/composers.js.map +1 -1
- package/lib/module/utils/bounds/helpers/styles/compute.js.map +1 -1
- package/lib/module/utils/bounds/navigation/reveal/build.js +1 -1
- package/lib/module/utils/bounds/navigation/reveal/build.js.map +1 -1
- package/lib/module/utils/bounds/navigation/reveal/math.js +16 -5
- package/lib/module/utils/bounds/navigation/reveal/math.js.map +1 -1
- package/lib/module/utils/bounds/navigation/zoom/build.js +46 -22
- package/lib/module/utils/bounds/navigation/zoom/build.js.map +1 -1
- package/lib/module/utils/bounds/navigation/zoom/drag.js +2 -30
- package/lib/module/utils/bounds/navigation/zoom/drag.js.map +1 -1
- package/lib/module/utils/bounds/navigation/zoom/helpers.js +4 -18
- package/lib/module/utils/bounds/navigation/zoom/helpers.js.map +1 -1
- package/lib/module/utils/create-provider.js +154 -85
- package/lib/module/utils/create-provider.js.map +1 -1
- package/lib/module/utils/navigation/close-action-replay.js +16 -0
- package/lib/module/utils/navigation/close-action-replay.js.map +1 -0
- package/lib/module/utils/normalize-interpolated-style.js +2 -40
- package/lib/module/utils/normalize-interpolated-style.js.map +1 -1
- package/lib/module/utils/resolve-screen-transition-options.js +1 -7
- package/lib/module/utils/resolve-screen-transition-options.js.map +1 -1
- package/lib/typescript/adapters/with-screen-transitions/context.d.ts +1 -4
- package/lib/typescript/adapters/with-screen-transitions/context.d.ts.map +1 -1
- package/lib/typescript/adapters/with-screen-transitions/options.d.ts.map +1 -1
- package/lib/typescript/adapters/with-screen-transitions/stack-layout.d.ts +1 -1
- package/lib/typescript/adapters/with-screen-transitions/stack-layout.d.ts.map +1 -1
- package/lib/typescript/animation/snap-to.d.ts.map +1 -1
- package/lib/typescript/components/activity/activity-view.d.ts +17 -0
- package/lib/typescript/components/activity/activity-view.d.ts.map +1 -0
- package/lib/typescript/components/activity/activity-view.web.d.ts +14 -0
- package/lib/typescript/components/activity/activity-view.web.d.ts.map +1 -0
- package/lib/typescript/components/activity/variants/activity-container.d.ts.map +1 -1
- package/lib/typescript/components/activity/variants/activity-screen.d.ts +2 -3
- package/lib/typescript/components/activity/variants/activity-screen.d.ts.map +1 -1
- package/lib/typescript/components/boundary/components/boundary-lifecycle.d.ts +18 -0
- package/lib/typescript/components/boundary/components/boundary-lifecycle.d.ts.map +1 -0
- package/lib/typescript/components/boundary/components/boundary-target.d.ts +2 -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/hooks/lifecycles/use-initial-destination-measurement.d.ts +1 -2
- package/lib/typescript/components/boundary/hooks/lifecycles/use-initial-destination-measurement.d.ts.map +1 -1
- package/lib/typescript/components/boundary/hooks/lifecycles/use-initial-source-measurement.d.ts.map +1 -1
- package/lib/typescript/components/boundary/hooks/lifecycles/use-refresh-boundary.d.ts.map +1 -1
- package/lib/typescript/components/boundary/hooks/use-boundary-measurement.d.ts +5 -5
- package/lib/typescript/components/boundary/hooks/use-boundary-measurement.d.ts.map +1 -1
- package/lib/typescript/components/boundary/hooks/use-measurer.d.ts +4 -3
- package/lib/typescript/components/boundary/hooks/use-measurer.d.ts.map +1 -1
- package/lib/typescript/components/boundary/index.d.ts +5 -18
- package/lib/typescript/components/boundary/index.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.d.ts +26 -0
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.d.ts +1 -3
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/components/boundary-content-portal/index.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/components/host.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.d.ts +5 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/helpers/local-measurement.d.ts +4 -0
- package/lib/typescript/components/boundary/portal/components/boundary-portal/helpers/local-measurement.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/components/boundary-portal/helpers/offset-style.d.ts +4 -26
- package/lib/typescript/components/boundary/portal/components/boundary-portal/helpers/offset-style.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.d.ts +21 -0
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.d.ts.map +1 -0
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.d.ts +1 -3
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.d.ts +5 -10
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/hooks/use-placeholder-styles.d.ts +2 -2
- package/lib/typescript/components/boundary/portal/components/boundary-portal/index.d.ts +2 -2
- package/lib/typescript/components/boundary/portal/components/boundary-portal/index.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/stores/host-registry.store.d.ts +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/stores/host-registry.store.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.d.ts +3 -13
- package/lib/typescript/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/teleport.d.ts +1 -1
- package/lib/typescript/components/boundary/portal/teleport.d.ts.map +1 -1
- 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 -3
- package/lib/typescript/components/boundary/portal/utils/resolve-portal.d.ts.map +1 -1
- package/lib/typescript/components/boundary/portal/utils/teleport-control.d.ts +0 -4
- package/lib/typescript/components/boundary/portal/utils/teleport-control.d.ts.map +1 -1
- package/lib/typescript/components/boundary/providers/boundary-root.provider.d.ts +13 -13
- package/lib/typescript/components/boundary/providers/boundary-root.provider.d.ts.map +1 -1
- package/lib/typescript/components/boundary/types.d.ts +6 -0
- package/lib/typescript/components/boundary/types.d.ts.map +1 -1
- package/lib/typescript/components/boundary/utils/destination-signals.d.ts +2 -3
- package/lib/typescript/components/boundary/utils/destination-signals.d.ts.map +1 -1
- package/lib/typescript/components/boundary/utils/measured-bounds.d.ts +1 -3
- package/lib/typescript/components/boundary/utils/measured-bounds.d.ts.map +1 -1
- package/lib/typescript/components/boundary/utils/refresh-signals.d.ts +1 -5
- package/lib/typescript/components/boundary/utils/refresh-signals.d.ts.map +1 -1
- package/lib/typescript/components/boundary/utils/resolve-boundary-target.d.ts +12 -0
- package/lib/typescript/components/boundary/utils/resolve-boundary-target.d.ts.map +1 -0
- package/lib/typescript/components/create-transition-aware-component.d.ts +5 -8
- 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 +8 -0
- package/lib/typescript/components/overlay/helpers/create-overlay-interpolator-frame.d.ts.map +1 -0
- package/lib/typescript/components/overlay/helpers/get-active-overlay.d.ts +20 -8
- package/lib/typescript/components/overlay/helpers/get-active-overlay.d.ts.map +1 -1
- package/lib/typescript/components/overlay/helpers/retain-ready-overlay-resources.d.ts +11 -0
- package/lib/typescript/components/overlay/helpers/retain-ready-overlay-resources.d.ts.map +1 -0
- package/lib/typescript/components/overlay/helpers/run-overlay-slot-interpolator.d.ts +8 -0
- package/lib/typescript/components/overlay/helpers/run-overlay-slot-interpolator.d.ts.map +1 -0
- package/lib/typescript/components/overlay/hooks/use-overlay-slot.d.ts +16 -0
- package/lib/typescript/components/overlay/hooks/use-overlay-slot.d.ts.map +1 -0
- package/lib/typescript/components/overlay/variations/float-overlay.d.ts +1 -1
- package/lib/typescript/components/overlay/variations/float-overlay.d.ts.map +1 -1
- package/lib/typescript/components/overlay/variations/overlay-host.d.ts +7 -6
- package/lib/typescript/components/overlay/variations/overlay-host.d.ts.map +1 -1
- package/lib/typescript/components/screen-container/hooks/use-backdrop-pointer-events.d.ts +1 -2
- package/lib/typescript/components/screen-container/hooks/use-backdrop-pointer-events.d.ts.map +1 -1
- package/lib/typescript/components/screen-container/hooks/use-content-layout.d.ts.map +1 -1
- package/lib/typescript/components/screen-container/layers/backdrop.d.ts.map +1 -1
- package/lib/typescript/components/screen-container/layers/content.d.ts.map +1 -1
- package/lib/typescript/components/screen-container/layers/maybe-masked-navigation-container.d.ts.map +1 -1
- package/lib/typescript/components/screen-container/layers/surface.d.ts +7 -0
- package/lib/typescript/components/screen-container/layers/surface.d.ts.map +1 -0
- package/lib/typescript/components/screen-lifecycle/hooks/helpers/close-interception-rules.d.ts +27 -0
- package/lib/typescript/components/screen-lifecycle/hooks/helpers/close-interception-rules.d.ts.map +1 -0
- package/lib/typescript/components/screen-lifecycle/hooks/use-close-completion.d.ts +7 -0
- package/lib/typescript/components/screen-lifecycle/hooks/use-close-completion.d.ts.map +1 -0
- package/lib/typescript/components/screen-lifecycle/hooks/use-close-transition-intent.d.ts +3 -8
- package/lib/typescript/components/screen-lifecycle/hooks/use-close-transition-intent.d.ts.map +1 -1
- package/lib/typescript/components/screen-lifecycle/hooks/use-open-transition-intent.d.ts.map +1 -1
- package/lib/typescript/components/screen-lifecycle/hooks/use-transition-start-controller.d.ts +1 -3
- package/lib/typescript/components/screen-lifecycle/hooks/use-transition-start-controller.d.ts.map +1 -1
- package/lib/typescript/components/screen-lifecycle/index.d.ts.map +1 -1
- package/lib/typescript/components/stack-view.d.ts +5 -2
- package/lib/typescript/components/stack-view.d.ts.map +1 -1
- package/lib/typescript/configs/index.d.ts +6 -6
- package/lib/typescript/configs/presets.d.ts +6 -6
- package/lib/typescript/configs/presets.d.ts.map +1 -1
- package/lib/typescript/constants.d.ts +2 -7
- package/lib/typescript/constants.d.ts.map +1 -1
- package/lib/typescript/factories/screen-topology/create-screen-topology.d.ts +4 -0
- package/lib/typescript/factories/screen-topology/create-screen-topology.d.ts.map +1 -0
- package/lib/typescript/factories/screen-topology/index.d.ts +5 -0
- package/lib/typescript/factories/screen-topology/index.d.ts.map +1 -0
- package/lib/typescript/factories/screen-topology/types.d.ts +20 -0
- package/lib/typescript/factories/screen-topology/types.d.ts.map +1 -0
- package/lib/typescript/factories/screen-topology/use-screen-relationships.d.ts +5 -0
- package/lib/typescript/factories/screen-topology/use-screen-relationships.d.ts.map +1 -0
- package/lib/typescript/factories/screen-topology/worklet.d.ts +5 -0
- package/lib/typescript/factories/screen-topology/worklet.d.ts.map +1 -0
- package/lib/typescript/hooks/navigation/use-navigation-helpers.d.ts.map +1 -1
- package/lib/typescript/hooks/navigation/use-screen-state.d.ts.map +1 -1
- package/lib/typescript/hooks/reanimated/use-shared-value-ref.d.ts.map +1 -1
- package/lib/typescript/index.d.ts +667 -733
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/navigators/create-blank-stack-navigator.d.ts.map +1 -1
- package/lib/typescript/navigators/react-navigation/index.d.ts +6 -17
- package/lib/typescript/navigators/react-navigation/index.d.ts.map +1 -1
- package/lib/typescript/providers/helpers/measured-bounds-writes.d.ts.map +1 -1
- package/lib/typescript/providers/navigation/navigation-host.provider.d.ts +1 -0
- package/lib/typescript/providers/navigation/navigation-host.provider.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/animation.provider.d.ts +17 -8
- package/lib/typescript/providers/screen/animation/animation.provider.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/helpers/accessors/use-build-transition-accessor.d.ts +6 -3
- package/lib/typescript/providers/screen/animation/helpers/accessors/use-build-transition-accessor.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/helpers/build-screen-transition-options.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/helpers/hydrate-transition-state/gesture-progress.d.ts +2 -1
- package/lib/typescript/providers/screen/animation/helpers/hydrate-transition-state/gesture-progress.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/helpers/hydrate-transition-state/index.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/helpers/hydrate-transition-state/types.d.ts +0 -1
- package/lib/typescript/providers/screen/animation/helpers/hydrate-transition-state/types.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/helpers/pipeline.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/helpers/read-screen-animation-revisions.d.ts +2 -2
- package/lib/typescript/providers/screen/animation/helpers/read-screen-animation-revisions.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/helpers/selected-interpolator-options.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/helpers/stack-progress.d.ts +5 -2
- package/lib/typescript/providers/screen/animation/helpers/stack-progress.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/helpers/use-build-transition-state.d.ts +0 -1
- package/lib/typescript/providers/screen/animation/helpers/use-build-transition-state.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/index.d.ts +1 -1
- package/lib/typescript/providers/screen/animation/index.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/types.d.ts +2 -17
- package/lib/typescript/providers/screen/animation/types.d.ts.map +1 -1
- package/lib/typescript/providers/screen/animation/use-screen-animation.d.ts +0 -5
- package/lib/typescript/providers/screen/animation/use-screen-animation.d.ts.map +1 -1
- package/lib/typescript/providers/screen/descriptors/descriptors.provider.d.ts +20 -18
- package/lib/typescript/providers/screen/descriptors/descriptors.provider.d.ts.map +1 -1
- package/lib/typescript/providers/screen/descriptors/helpers/derive-descriptor-derivations.d.ts +1 -6
- package/lib/typescript/providers/screen/descriptors/helpers/derive-descriptor-derivations.d.ts.map +1 -1
- package/lib/typescript/providers/screen/descriptors/index.d.ts +1 -1
- package/lib/typescript/providers/screen/descriptors/index.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/gestures.provider.d.ts +17 -2
- package/lib/typescript/providers/screen/gestures/gestures.provider.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/hooks/use-screen-gesture-config.d.ts +2 -2
- package/lib/typescript/providers/screen/gestures/hooks/use-screen-gesture-config.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/hooks/use-screen-gesture.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/hooks/use-stable-runtime-config.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/index.d.ts +1 -1
- package/lib/typescript/providers/screen/gestures/index.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/ownership/gesture-ownership-bridge.d.ts +3 -0
- package/lib/typescript/providers/screen/gestures/ownership/gesture-ownership-bridge.d.ts.map +1 -0
- package/lib/typescript/providers/screen/gestures/ownership/resolve-ownership.d.ts +2 -3
- package/lib/typescript/providers/screen/gestures/ownership/resolve-ownership.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/ownership/shadowing-claims.d.ts +2 -3
- package/lib/typescript/providers/screen/gestures/ownership/shadowing-claims.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pan/activation/pan-activation-decision.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pan/activation/pan-activation-rules.d.ts +2 -3
- package/lib/typescript/providers/screen/gestures/pan/activation/pan-activation-rules.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pan/activation/use-pan-activation.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pan/behavior/pan-lifecycle.d.ts +1 -1
- package/lib/typescript/providers/screen/gestures/pan/behavior/pan-lifecycle.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pan/behavior/pan-release.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pan/behavior/pan-reset.d.ts +4 -1
- package/lib/typescript/providers/screen/gestures/pan/behavior/pan-reset.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pan/behavior/use-pan-behavior.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pinch/activation/use-pinch-activation.d.ts +2 -1
- package/lib/typescript/providers/screen/gestures/pinch/activation/use-pinch-activation.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pinch/behavior/pinch-lifecycle.d.ts +1 -1
- package/lib/typescript/providers/screen/gestures/pinch/behavior/pinch-lifecycle.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pinch/behavior/pinch-release.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pinch/behavior/pinch-reset.d.ts +3 -1
- package/lib/typescript/providers/screen/gestures/pinch/behavior/pinch-reset.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/pinch/behavior/use-pinch-behavior.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/scroll-coordination/scroll-metadata-owner.d.ts +5 -3
- package/lib/typescript/providers/screen/gestures/scroll-coordination/scroll-metadata-owner.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/scroll-coordination/use-scroll-gesture-coordination.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/scroll-coordination/walk-up-scroll-gesture-coordination.d.ts +2 -2
- package/lib/typescript/providers/screen/gestures/scroll-coordination/walk-up-scroll-gesture-coordination.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/shared/policy.d.ts +6 -8
- package/lib/typescript/providers/screen/gestures/shared/policy.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/shared/snap-points.d.ts +11 -0
- package/lib/typescript/providers/screen/gestures/shared/snap-points.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/shared/snapshot.d.ts.map +1 -1
- package/lib/typescript/providers/screen/gestures/types.d.ts +7 -12
- package/lib/typescript/providers/screen/gestures/types.d.ts.map +1 -1
- package/lib/typescript/providers/screen/options/helpers.d.ts.map +1 -1
- package/lib/typescript/providers/screen/options/index.d.ts +1 -1
- package/lib/typescript/providers/screen/options/index.d.ts.map +1 -1
- package/lib/typescript/providers/screen/options/options.provider.d.ts +4 -1
- package/lib/typescript/providers/screen/options/options.provider.d.ts.map +1 -1
- package/lib/typescript/providers/screen/options/types.d.ts +1 -2
- package/lib/typescript/providers/screen/options/types.d.ts.map +1 -1
- package/lib/typescript/providers/screen/screen-composer.d.ts +6 -5
- package/lib/typescript/providers/screen/screen-composer.d.ts.map +1 -1
- package/lib/typescript/providers/screen/styles/constants.d.ts +1 -0
- package/lib/typescript/providers/screen/styles/constants.d.ts.map +1 -1
- package/lib/typescript/providers/screen/styles/helpers/create-interpolator-scope.d.ts +9 -0
- package/lib/typescript/providers/screen/styles/helpers/create-interpolator-scope.d.ts.map +1 -0
- package/lib/typescript/providers/screen/styles/helpers/resolve-interpolator-style-handoff.d.ts +10 -0
- package/lib/typescript/providers/screen/styles/helpers/resolve-interpolator-style-handoff.d.ts.map +1 -0
- package/lib/typescript/providers/screen/styles/helpers/resolve-slot-styles/index.d.ts +5 -3
- package/lib/typescript/providers/screen/styles/helpers/resolve-slot-styles/index.d.ts.map +1 -1
- package/lib/typescript/providers/screen/styles/helpers/select-interpolator-frame.d.ts +4 -0
- package/lib/typescript/providers/screen/styles/helpers/select-interpolator-frame.d.ts.map +1 -0
- package/lib/typescript/providers/screen/styles/helpers/transition-visual-state.d.ts +25 -0
- package/lib/typescript/providers/screen/styles/helpers/transition-visual-state.d.ts.map +1 -0
- package/lib/typescript/providers/screen/styles/helpers/visibility-block-ownership.d.ts +10 -0
- package/lib/typescript/providers/screen/styles/helpers/visibility-block-ownership.d.ts.map +1 -0
- package/lib/typescript/providers/screen/styles/helpers/visibility-gate.d.ts +12 -2
- package/lib/typescript/providers/screen/styles/helpers/visibility-gate.d.ts.map +1 -1
- package/lib/typescript/providers/screen/styles/hooks/slot-resolvers.d.ts +4 -4
- package/lib/typescript/providers/screen/styles/hooks/slot-resolvers.d.ts.map +1 -1
- package/lib/typescript/providers/screen/styles/hooks/use-interpolated-style-maps.d.ts +10 -5
- package/lib/typescript/providers/screen/styles/hooks/use-interpolated-style-maps.d.ts.map +1 -1
- package/lib/typescript/providers/screen/styles/hooks/use-maybe-block-visibility.d.ts +11 -5
- package/lib/typescript/providers/screen/styles/hooks/use-maybe-block-visibility.d.ts.map +1 -1
- package/lib/typescript/providers/screen/styles/index.d.ts +1 -1
- package/lib/typescript/providers/screen/styles/index.d.ts.map +1 -1
- package/lib/typescript/providers/screen/styles/slot.provider.d.ts +15 -6
- package/lib/typescript/providers/screen/styles/slot.provider.d.ts.map +1 -1
- package/lib/typescript/providers/screen/use-current-screen-relationships.d.ts +5 -0
- package/lib/typescript/providers/screen/use-current-screen-relationships.d.ts.map +1 -0
- package/lib/typescript/providers/stack/blank-stack-state/blank-stack-controller.d.ts +1 -2
- package/lib/typescript/providers/stack/blank-stack-state/blank-stack-controller.d.ts.map +1 -1
- package/lib/typescript/providers/stack/blank-stack-state/helpers/build-blank-stack-state.d.ts +7 -8
- package/lib/typescript/providers/stack/blank-stack-state/helpers/build-blank-stack-state.d.ts.map +1 -1
- package/lib/typescript/providers/stack/blank-stack-state/helpers/derive-blank-stack-state.d.ts +5 -6
- package/lib/typescript/providers/stack/blank-stack-state/helpers/derive-blank-stack-state.d.ts.map +1 -1
- package/lib/typescript/providers/stack/blank-stack-state/helpers/reconcile-blank-stack-routes.d.ts +7 -8
- package/lib/typescript/providers/stack/blank-stack-state/helpers/reconcile-blank-stack-routes.d.ts.map +1 -1
- package/lib/typescript/providers/stack/blank-stack-state/helpers/resolve-presented-index.d.ts +3 -0
- package/lib/typescript/providers/stack/blank-stack-state/helpers/resolve-presented-index.d.ts.map +1 -0
- package/lib/typescript/providers/stack/blank-stack-state/helpers/state-equality.d.ts +5 -4
- package/lib/typescript/providers/stack/blank-stack-state/helpers/state-equality.d.ts.map +1 -1
- package/lib/typescript/providers/stack/blank-stack-state/helpers/types.d.ts +17 -17
- package/lib/typescript/providers/stack/blank-stack-state/helpers/types.d.ts.map +1 -1
- package/lib/typescript/providers/stack/blank-stack-state/index.d.ts +2 -3
- package/lib/typescript/providers/stack/blank-stack-state/index.d.ts.map +1 -1
- package/lib/typescript/providers/stack/blank-stack.provider.d.ts +19 -7
- package/lib/typescript/providers/stack/blank-stack.provider.d.ts.map +1 -1
- package/lib/typescript/providers/stack/core.provider.d.ts +10 -15
- package/lib/typescript/providers/stack/core.provider.d.ts.map +1 -1
- package/lib/typescript/stores/animation.store.d.ts +1 -1
- package/lib/typescript/stores/animation.store.d.ts.map +1 -1
- package/lib/typescript/stores/bounds/internals/entries.d.ts +2 -1
- package/lib/typescript/stores/bounds/internals/entries.d.ts.map +1 -1
- package/lib/typescript/stores/bounds/internals/links.d.ts +4 -2
- package/lib/typescript/stores/bounds/internals/links.d.ts.map +1 -1
- package/lib/typescript/stores/bounds/internals/resolver.d.ts.map +1 -1
- package/lib/typescript/stores/gesture.store.d.ts +2 -21
- package/lib/typescript/stores/gesture.store.d.ts.map +1 -1
- package/lib/typescript/stores/scroll.store.d.ts +7 -0
- package/lib/typescript/stores/scroll.store.d.ts.map +1 -1
- package/lib/typescript/stores/system.store.d.ts +6 -2
- package/lib/typescript/stores/system.store.d.ts.map +1 -1
- package/lib/typescript/types/animation.types.d.ts +9 -19
- package/lib/typescript/types/animation.types.d.ts.map +1 -1
- package/lib/typescript/types/blank-stack.types.d.ts +2 -21
- package/lib/typescript/types/blank-stack.types.d.ts.map +1 -1
- package/lib/typescript/types/bounds.types.d.ts +0 -96
- package/lib/typescript/types/bounds.types.d.ts.map +1 -1
- package/lib/typescript/types/gesture.types.d.ts +7 -25
- package/lib/typescript/types/gesture.types.d.ts.map +1 -1
- package/lib/typescript/types/index.d.ts +4 -4
- package/lib/typescript/types/index.d.ts.map +1 -1
- package/lib/typescript/types/overlay.types.d.ts +26 -11
- package/lib/typescript/types/overlay.types.d.ts.map +1 -1
- package/lib/typescript/types/providers/blank-stack-provider.types.d.ts +20 -34
- package/lib/typescript/types/providers/blank-stack-provider.types.d.ts.map +1 -1
- package/lib/typescript/types/screen.types.d.ts +46 -116
- package/lib/typescript/types/screen.types.d.ts.map +1 -1
- package/lib/typescript/types/stack.types.d.ts +11 -27
- package/lib/typescript/types/stack.types.d.ts.map +1 -1
- package/lib/typescript/utils/animation/animate-to-progress.d.ts +8 -3
- package/lib/typescript/utils/animation/animate-to-progress.d.ts.map +1 -1
- package/lib/typescript/utils/animation/animate.d.ts +2 -2
- package/lib/typescript/utils/animation/animate.d.ts.map +1 -1
- package/lib/typescript/utils/animation/spring/spring.d.ts +2 -2
- package/lib/typescript/utils/animation/spring/spring.d.ts.map +1 -1
- package/lib/typescript/utils/animation/spring/springUtils.d.ts +3 -0
- package/lib/typescript/utils/animation/spring/springUtils.d.ts.map +1 -1
- package/lib/typescript/utils/animation/state.d.ts +6 -0
- package/lib/typescript/utils/animation/state.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/constants.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/helpers/create-bounds-accessor-core.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/helpers/create-link-accessor.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/helpers/prepare-bound-styles.d.ts +3 -3
- package/lib/typescript/utils/bounds/helpers/prepare-bound-styles.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/helpers/styles/composers.d.ts +3 -3
- package/lib/typescript/utils/bounds/helpers/styles/composers.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/helpers/styles/compute.d.ts +2 -2
- package/lib/typescript/utils/bounds/helpers/styles/compute.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/navigation/reveal/math.d.ts +9 -0
- package/lib/typescript/utils/bounds/navigation/reveal/math.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/drag.d.ts +2 -11
- package/lib/typescript/utils/bounds/navigation/zoom/drag.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/navigation/zoom/helpers.d.ts +7 -4
- package/lib/typescript/utils/bounds/navigation/zoom/helpers.d.ts.map +1 -1
- package/lib/typescript/utils/bounds/types/options.d.ts +4 -21
- package/lib/typescript/utils/bounds/types/options.d.ts.map +1 -1
- package/lib/typescript/utils/create-provider.d.ts +54 -20
- package/lib/typescript/utils/create-provider.d.ts.map +1 -1
- package/lib/typescript/utils/navigation/close-action-replay.d.ts +4 -0
- package/lib/typescript/utils/navigation/close-action-replay.d.ts.map +1 -0
- package/lib/typescript/utils/normalize-interpolated-style.d.ts +2 -15
- package/lib/typescript/utils/normalize-interpolated-style.d.ts.map +1 -1
- package/lib/typescript/utils/resolve-screen-transition-options.d.ts +1 -1
- package/lib/typescript/utils/resolve-screen-transition-options.d.ts.map +1 -1
- package/package.json +1 -2
- package/src/adapters/with-screen-transitions/context.tsx +1 -5
- package/src/adapters/with-screen-transitions/options.ts +1 -32
- package/src/adapters/with-screen-transitions/stack-layout.tsx +37 -37
- package/src/animation/snap-to.ts +6 -0
- package/src/components/activity/activity-view.tsx +93 -0
- package/src/components/activity/activity-view.web.tsx +79 -0
- package/src/components/activity/variants/activity-container.tsx +2 -14
- package/src/components/activity/variants/activity-screen.tsx +37 -71
- package/src/components/boundary/components/boundary-lifecycle.tsx +53 -0
- package/src/components/boundary/components/boundary-target.tsx +38 -24
- package/src/components/boundary/create-boundary-component.tsx +38 -4
- package/src/components/boundary/hooks/lifecycles/use-initial-destination-measurement.ts +88 -45
- package/src/components/boundary/hooks/lifecycles/use-initial-source-measurement.ts +6 -1
- package/src/components/boundary/hooks/lifecycles/use-refresh-boundary.ts +25 -21
- package/src/components/boundary/hooks/use-boundary-measurement.ts +15 -15
- package/src/components/boundary/hooks/use-measurer.ts +22 -19
- package/src/components/boundary/index.tsx +4 -22
- package/src/components/boundary/portal/components/boundary-content-portal/components/host.tsx +5 -1
- package/src/components/boundary/portal/components/boundary-content-portal/helpers/active-handoff-receiver.ts +103 -0
- package/src/components/boundary/portal/components/boundary-content-portal/hooks/use-boundary-content-portal-attachment.ts +108 -272
- package/src/components/boundary/portal/components/boundary-content-portal/index.tsx +31 -12
- package/src/components/boundary/portal/components/boundary-portal/components/host.tsx +27 -37
- package/src/components/boundary/portal/components/boundary-portal/components/portal-boundary-host.tsx +67 -92
- package/src/components/boundary/portal/components/boundary-portal/helpers/local-measurement.ts +10 -0
- package/src/components/boundary/portal/components/boundary-portal/helpers/offset-style.ts +11 -62
- package/src/components/boundary/portal/components/boundary-portal/hooks/use-active-portal-boundary-host.ts +118 -0
- package/src/components/boundary/portal/components/boundary-portal/hooks/use-boundary-portal-attachment.ts +32 -219
- package/src/components/boundary/portal/components/boundary-portal/hooks/use-host-measurement.ts +21 -83
- package/src/components/boundary/portal/components/boundary-portal/index.tsx +74 -12
- package/src/components/boundary/portal/components/boundary-portal/stores/host-registry.store.ts +0 -1
- package/src/components/boundary/portal/components/boundary-portal/stores/portal-boundary-host.store.ts +5 -44
- package/src/components/boundary/portal/teleport.ts +2 -23
- package/src/components/boundary/portal/utils/naming.ts +11 -0
- package/src/components/boundary/portal/utils/resolve-portal.ts +26 -18
- package/src/components/boundary/portal/utils/teleport-control.ts +0 -12
- package/src/components/boundary/providers/boundary-root.provider.tsx +59 -101
- package/src/components/boundary/types.ts +9 -0
- package/src/components/boundary/utils/destination-signals.ts +8 -8
- package/src/components/boundary/utils/measured-bounds.ts +29 -32
- package/src/components/boundary/utils/refresh-signals.ts +63 -33
- package/src/components/boundary/utils/resolve-boundary-target.tsx +39 -0
- package/src/components/create-transition-aware-component.tsx +11 -36
- package/src/components/overlay/helpers/create-overlay-interpolator-frame.ts +41 -0
- package/src/components/overlay/helpers/get-active-overlay.ts +91 -21
- package/src/components/overlay/helpers/retain-ready-overlay-resources.ts +38 -0
- package/src/components/overlay/helpers/run-overlay-slot-interpolator.ts +48 -0
- package/src/components/overlay/hooks/use-overlay-slot.ts +121 -0
- package/src/components/overlay/variations/float-overlay.tsx +24 -65
- package/src/components/overlay/variations/overlay-host.tsx +140 -28
- package/src/components/screen-container/hooks/use-backdrop-pointer-events.ts +8 -13
- package/src/components/screen-container/hooks/use-content-layout.ts +10 -10
- package/src/components/screen-container/layers/backdrop.tsx +33 -16
- package/src/components/screen-container/layers/content.tsx +26 -26
- package/src/components/screen-container/layers/maybe-masked-navigation-container.tsx +14 -4
- package/src/components/screen-container/layers/surface.tsx +65 -0
- package/src/components/screen-lifecycle/hooks/helpers/close-interception-rules.ts +64 -0
- package/src/components/screen-lifecycle/hooks/use-close-completion.ts +25 -0
- package/src/components/screen-lifecycle/hooks/use-close-transition-intent.ts +78 -111
- package/src/components/screen-lifecycle/hooks/use-open-transition-intent.ts +5 -2
- package/src/components/screen-lifecycle/hooks/use-transition-start-controller.ts +8 -12
- package/src/components/screen-lifecycle/index.tsx +11 -6
- package/src/components/stack-view.tsx +96 -59
- package/src/configs/presets.ts +17 -20
- package/src/constants.ts +3 -18
- package/src/factories/screen-topology/create-screen-topology.ts +199 -0
- package/src/factories/screen-topology/index.ts +16 -0
- package/src/factories/screen-topology/types.ts +22 -0
- package/src/factories/screen-topology/use-screen-relationships.ts +15 -0
- package/src/factories/screen-topology/worklet.ts +60 -0
- package/src/hooks/navigation/use-navigation-helpers.ts +42 -18
- package/src/hooks/navigation/use-screen-state.ts +4 -8
- package/src/hooks/reanimated/use-shared-value-ref.ts +3 -4
- package/src/index.ts +4 -8
- package/src/navigators/create-blank-stack-navigator.tsx +3 -11
- package/src/navigators/react-navigation/index.tsx +4 -48
- package/src/providers/helpers/measured-bounds-writes.ts +1 -0
- package/src/providers/navigation/navigation-host.provider.tsx +18 -3
- package/src/providers/screen/animation/animation.provider.tsx +66 -184
- package/src/providers/screen/animation/helpers/accessors/use-build-transition-accessor.ts +17 -82
- package/src/providers/screen/animation/helpers/build-screen-transition-options.ts +5 -11
- package/src/providers/screen/animation/helpers/hydrate-transition-state/gesture-progress.ts +30 -3
- package/src/providers/screen/animation/helpers/hydrate-transition-state/index.ts +25 -41
- package/src/providers/screen/animation/helpers/hydrate-transition-state/types.ts +0 -1
- package/src/providers/screen/animation/helpers/pipeline.ts +34 -39
- package/src/providers/screen/animation/helpers/read-screen-animation-revisions.ts +6 -30
- package/src/providers/screen/animation/helpers/selected-interpolator-options.ts +1 -31
- package/src/providers/screen/animation/helpers/stack-progress.ts +13 -32
- package/src/providers/screen/animation/helpers/use-build-transition-state.ts +0 -2
- package/src/providers/screen/animation/index.tsx +2 -1
- package/src/providers/screen/animation/types.ts +2 -32
- package/src/providers/screen/animation/use-screen-animation.tsx +19 -60
- package/src/providers/screen/descriptors/descriptors.provider.tsx +107 -83
- package/src/providers/screen/descriptors/helpers/derive-descriptor-derivations.ts +0 -10
- package/src/providers/screen/descriptors/index.tsx +0 -2
- package/src/providers/screen/gestures/gestures.provider.tsx +99 -76
- package/src/providers/screen/gestures/hooks/use-screen-gesture-config.ts +11 -13
- package/src/providers/screen/gestures/hooks/use-screen-gesture.ts +3 -4
- package/src/providers/screen/gestures/hooks/use-stable-runtime-config.ts +4 -2
- package/src/providers/screen/gestures/index.tsx +2 -1
- package/src/providers/screen/gestures/ownership/{use-walk-up-and-register-shadowing-claims.ts → gesture-ownership-bridge.tsx} +48 -65
- package/src/providers/screen/gestures/ownership/resolve-ownership.ts +5 -8
- package/src/providers/screen/gestures/ownership/shadowing-claims.ts +3 -4
- package/src/providers/screen/gestures/pan/activation/pan-activation-decision.ts +0 -1
- package/src/providers/screen/gestures/pan/activation/pan-activation-rules.ts +3 -6
- package/src/providers/screen/gestures/pan/activation/use-pan-activation.ts +6 -2
- package/src/providers/screen/gestures/pan/behavior/pan-lifecycle.ts +13 -22
- package/src/providers/screen/gestures/pan/behavior/pan-release.ts +48 -9
- package/src/providers/screen/gestures/pan/behavior/pan-reset.ts +15 -2
- package/src/providers/screen/gestures/pan/behavior/use-pan-behavior.ts +2 -5
- package/src/providers/screen/gestures/pan/use-build-pan-gesture.ts +2 -2
- package/src/providers/screen/gestures/pinch/activation/use-pinch-activation.ts +74 -3
- package/src/providers/screen/gestures/pinch/behavior/pinch-lifecycle.ts +18 -19
- package/src/providers/screen/gestures/pinch/behavior/pinch-release.ts +47 -8
- package/src/providers/screen/gestures/pinch/behavior/pinch-reset.ts +11 -2
- package/src/providers/screen/gestures/pinch/behavior/use-pinch-behavior.ts +2 -8
- package/src/providers/screen/gestures/pinch/use-build-pinch-gesture.ts +2 -2
- package/src/providers/screen/gestures/scroll-coordination/scroll-metadata-owner.tsx +6 -9
- package/src/providers/screen/gestures/scroll-coordination/use-scroll-gesture-coordination.ts +11 -7
- package/src/providers/screen/gestures/scroll-coordination/walk-up-scroll-gesture-coordination.ts +12 -12
- package/src/providers/screen/gestures/shared/policy.ts +14 -26
- package/src/providers/screen/gestures/shared/snap-points.ts +87 -0
- package/src/providers/screen/gestures/shared/snapshot.ts +1 -2
- package/src/providers/screen/gestures/types.ts +7 -17
- package/src/providers/screen/options/helpers.ts +18 -73
- package/src/providers/screen/options/index.ts +1 -1
- package/src/providers/screen/options/options.provider.tsx +24 -28
- package/src/providers/screen/options/types.ts +1 -2
- package/src/providers/screen/screen-composer.tsx +14 -7
- package/src/providers/screen/styles/constants.ts +11 -7
- package/src/providers/screen/styles/helpers/create-interpolator-scope.ts +45 -0
- package/src/providers/screen/styles/helpers/resolve-interpolator-style-handoff.ts +138 -0
- package/src/providers/screen/styles/helpers/resolve-slot-styles/index.ts +71 -4
- package/src/providers/screen/styles/helpers/select-interpolator-frame.ts +33 -0
- package/src/providers/screen/styles/helpers/transition-visual-state.ts +70 -0
- package/src/providers/screen/styles/helpers/visibility-block-ownership.ts +16 -0
- package/src/providers/screen/styles/helpers/visibility-gate.ts +42 -7
- package/src/providers/screen/styles/hooks/slot-resolvers.tsx +25 -6
- package/src/providers/screen/styles/hooks/use-interpolated-style-maps.tsx +176 -95
- package/src/providers/screen/styles/hooks/use-maybe-block-visibility.tsx +57 -29
- package/src/providers/screen/styles/index.tsx +2 -2
- package/src/providers/screen/styles/slot.provider.tsx +51 -60
- package/src/providers/screen/use-current-screen-relationships.ts +10 -0
- package/src/providers/stack/blank-stack-state/blank-stack-controller.ts +15 -26
- package/src/providers/stack/blank-stack-state/helpers/build-blank-stack-state.ts +34 -70
- package/src/providers/stack/blank-stack-state/helpers/derive-blank-stack-state.ts +7 -20
- package/src/providers/stack/blank-stack-state/helpers/reconcile-blank-stack-routes.ts +20 -32
- package/src/providers/stack/blank-stack-state/helpers/resolve-presented-index.ts +22 -0
- package/src/providers/stack/blank-stack-state/helpers/state-equality.ts +9 -16
- package/src/providers/stack/blank-stack-state/helpers/types.ts +16 -29
- package/src/providers/stack/blank-stack-state/index.ts +2 -13
- package/src/providers/stack/blank-stack.provider.tsx +59 -101
- package/src/providers/stack/core.provider.tsx +34 -86
- package/src/stores/animation.store.ts +19 -3
- package/src/stores/bounds/internals/entries.ts +38 -1
- package/src/stores/bounds/internals/links.ts +58 -3
- package/src/stores/bounds/internals/resolver.ts +7 -21
- package/src/stores/gesture.store.ts +5 -38
- package/src/stores/scroll.store.ts +23 -0
- package/src/stores/system.store.ts +9 -2
- package/src/types/animation.types.ts +9 -24
- package/src/types/blank-stack.types.ts +9 -24
- package/src/types/bounds.types.ts +0 -100
- package/src/types/gesture.types.ts +7 -26
- package/src/types/index.ts +5 -5
- package/src/types/overlay.types.ts +41 -14
- package/src/types/providers/blank-stack-provider.types.ts +19 -43
- package/src/types/screen.types.ts +50 -125
- package/src/types/stack.types.ts +11 -34
- package/src/utils/animation/animate-to-progress.ts +59 -51
- package/src/utils/animation/animate.ts +18 -2
- package/src/utils/animation/spring/spring.ts +36 -1
- package/src/utils/animation/spring/springUtils.ts +130 -0
- package/src/utils/animation/state.ts +8 -0
- package/src/utils/bounds/constants.ts +2 -2
- package/src/utils/bounds/helpers/create-bounds-accessor-core.ts +7 -6
- package/src/utils/bounds/helpers/create-link-accessor.ts +9 -3
- package/src/utils/bounds/helpers/prepare-bound-styles.ts +5 -5
- package/src/utils/bounds/helpers/styles/composers.ts +6 -6
- package/src/utils/bounds/helpers/styles/compute.ts +3 -3
- package/src/utils/bounds/navigation/reveal/build.ts +1 -1
- package/src/utils/bounds/navigation/reveal/math.ts +21 -5
- package/src/utils/bounds/navigation/zoom/build.ts +77 -23
- package/src/utils/bounds/navigation/zoom/drag.ts +3 -42
- package/src/utils/bounds/navigation/zoom/helpers.ts +9 -23
- package/src/utils/bounds/types/options.ts +15 -34
- package/src/utils/create-provider.tsx +301 -161
- package/src/utils/navigation/close-action-replay.ts +25 -0
- package/src/utils/normalize-interpolated-style.ts +5 -39
- package/src/utils/resolve-screen-transition-options.ts +4 -13
- package/lib/commonjs/components/boundary/hooks/use-register-target.js +0 -32
- package/lib/commonjs/components/boundary/hooks/use-register-target.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/components/portal-slot.js +0 -52
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/components/portal-slot.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/helpers/has-local-slot.js +0 -18
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/helpers/has-local-slot.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/helpers/host-name.js +0 -14
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/helpers/host-name.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/stores/host-bounds.store.js +0 -47
- package/lib/commonjs/components/boundary/portal/components/boundary-portal/stores/host-bounds.store.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/utils/ownership.js +0 -220
- package/lib/commonjs/components/boundary/portal/utils/ownership.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/utils/shallow-equal.js +0 -29
- package/lib/commonjs/components/boundary/portal/utils/shallow-equal.js.map +0 -1
- package/lib/commonjs/components/boundary/portal/utils/visible-host.js +0 -25
- package/lib/commonjs/components/boundary/portal/utils/visible-host.js.map +0 -1
- package/lib/commonjs/components/masked-view.js +0 -56
- package/lib/commonjs/components/masked-view.js.map +0 -1
- package/lib/commonjs/components/scene-view.js +0 -32
- package/lib/commonjs/components/scene-view.js.map +0 -1
- package/lib/commonjs/components/screen-container/layers/surface-container.js +0 -53
- package/lib/commonjs/components/screen-container/layers/surface-container.js.map +0 -1
- package/lib/commonjs/hooks/navigation/use-previous.js +0 -16
- package/lib/commonjs/hooks/navigation/use-previous.js.map +0 -1
- package/lib/commonjs/hooks/navigation/use-stack.js +0 -90
- package/lib/commonjs/hooks/navigation/use-stack.js.map +0 -1
- package/lib/commonjs/hooks/navigation/use-tab-press-reset.js +0 -31
- package/lib/commonjs/hooks/navigation/use-tab-press-reset.js.map +0 -1
- package/lib/commonjs/hooks/use-stable-callback-value.js +0 -69
- package/lib/commonjs/hooks/use-stable-callback-value.js.map +0 -1
- package/lib/commonjs/providers/register-bounds.provider.js +0 -312
- package/lib/commonjs/providers/register-bounds.provider.js.map +0 -1
- package/lib/commonjs/providers/screen/animation/helpers/accessors/use-build-bounds-accessor.js +0 -23
- package/lib/commonjs/providers/screen/animation/helpers/accessors/use-build-bounds-accessor.js.map +0 -1
- package/lib/commonjs/providers/screen/descriptors/helpers/get-ancestor-keys.js +0 -46
- package/lib/commonjs/providers/screen/descriptors/helpers/get-ancestor-keys.js.map +0 -1
- package/lib/commonjs/providers/screen/gestures/ownership/use-walk-up-and-register-shadowing-claims.js.map +0 -1
- package/lib/commonjs/providers/screen/gestures/rotation/activation/use-rotation-activation.js +0 -64
- package/lib/commonjs/providers/screen/gestures/rotation/activation/use-rotation-activation.js.map +0 -1
- package/lib/commonjs/providers/screen/gestures/rotation/behavior/rotation-lifecycle.js +0 -21
- package/lib/commonjs/providers/screen/gestures/rotation/behavior/rotation-lifecycle.js.map +0 -1
- package/lib/commonjs/providers/screen/gestures/rotation/behavior/use-rotation-behavior.js +0 -29
- package/lib/commonjs/providers/screen/gestures/rotation/behavior/use-rotation-behavior.js.map +0 -1
- package/lib/commonjs/providers/screen/gestures/rotation/use-build-rotation-gesture.js +0 -38
- package/lib/commonjs/providers/screen/gestures/rotation/use-build-rotation-gesture.js.map +0 -1
- package/lib/commonjs/providers/screen/gestures/shared/ancestors.js +0 -23
- package/lib/commonjs/providers/screen/gestures/shared/ancestors.js.map +0 -1
- package/lib/commonjs/providers/screen/origin.provider.js +0 -41
- package/lib/commonjs/providers/screen/origin.provider.js.map +0 -1
- package/lib/commonjs/providers/screen/styles/components/floating-overlay-layer.js +0 -28
- package/lib/commonjs/providers/screen/styles/components/floating-overlay-layer.js.map +0 -1
- package/lib/commonjs/providers/screen/styles/helpers/opening-phase.js +0 -32
- package/lib/commonjs/providers/screen/styles/helpers/opening-phase.js.map +0 -1
- package/lib/commonjs/providers/screen/styles/stores/slot-references.store.js +0 -53
- package/lib/commonjs/providers/screen/styles/stores/slot-references.store.js.map +0 -1
- package/lib/commonjs/providers/stack/direct.provider.js +0 -104
- package/lib/commonjs/providers/stack/direct.provider.js.map +0 -1
- package/lib/commonjs/types/providers/direct-stack.types.js +0 -6
- package/lib/commonjs/types/providers/direct-stack.types.js.map +0 -1
- package/lib/commonjs/utils/bounds/navigation/math.js +0 -134
- package/lib/commonjs/utils/bounds/navigation/math.js.map +0 -1
- package/lib/commonjs/utils/platform.js +0 -14
- package/lib/commonjs/utils/platform.js.map +0 -1
- package/lib/module/components/boundary/hooks/use-register-target.js +0 -27
- package/lib/module/components/boundary/hooks/use-register-target.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/components/portal-slot.js +0 -47
- package/lib/module/components/boundary/portal/components/boundary-portal/components/portal-slot.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/helpers/has-local-slot.js +0 -13
- package/lib/module/components/boundary/portal/components/boundary-portal/helpers/has-local-slot.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/helpers/host-name.js +0 -9
- package/lib/module/components/boundary/portal/components/boundary-portal/helpers/host-name.js.map +0 -1
- package/lib/module/components/boundary/portal/components/boundary-portal/stores/host-bounds.store.js +0 -40
- package/lib/module/components/boundary/portal/components/boundary-portal/stores/host-bounds.store.js.map +0 -1
- package/lib/module/components/boundary/portal/utils/ownership.js +0 -213
- package/lib/module/components/boundary/portal/utils/ownership.js.map +0 -1
- package/lib/module/components/boundary/portal/utils/shallow-equal.js +0 -24
- package/lib/module/components/boundary/portal/utils/shallow-equal.js.map +0 -1
- package/lib/module/components/boundary/portal/utils/visible-host.js +0 -20
- package/lib/module/components/boundary/portal/utils/visible-host.js.map +0 -1
- package/lib/module/components/masked-view.js +0 -52
- package/lib/module/components/masked-view.js.map +0 -1
- package/lib/module/components/scene-view.js +0 -27
- package/lib/module/components/scene-view.js.map +0 -1
- package/lib/module/components/screen-container/layers/surface-container.js +0 -48
- package/lib/module/components/screen-container/layers/surface-container.js.map +0 -1
- package/lib/module/hooks/navigation/use-previous.js +0 -11
- package/lib/module/hooks/navigation/use-previous.js.map +0 -1
- package/lib/module/hooks/navigation/use-stack.js +0 -85
- package/lib/module/hooks/navigation/use-stack.js.map +0 -1
- package/lib/module/hooks/navigation/use-tab-press-reset.js +0 -27
- package/lib/module/hooks/navigation/use-tab-press-reset.js.map +0 -1
- package/lib/module/hooks/use-stable-callback-value.js +0 -64
- package/lib/module/hooks/use-stable-callback-value.js.map +0 -1
- package/lib/module/providers/register-bounds.provider.js +0 -308
- package/lib/module/providers/register-bounds.provider.js.map +0 -1
- package/lib/module/providers/screen/animation/helpers/accessors/use-build-bounds-accessor.js +0 -18
- package/lib/module/providers/screen/animation/helpers/accessors/use-build-bounds-accessor.js.map +0 -1
- package/lib/module/providers/screen/descriptors/helpers/get-ancestor-keys.js +0 -41
- package/lib/module/providers/screen/descriptors/helpers/get-ancestor-keys.js.map +0 -1
- package/lib/module/providers/screen/gestures/ownership/use-walk-up-and-register-shadowing-claims.js +0 -150
- package/lib/module/providers/screen/gestures/ownership/use-walk-up-and-register-shadowing-claims.js.map +0 -1
- package/lib/module/providers/screen/gestures/rotation/activation/use-rotation-activation.js +0 -59
- package/lib/module/providers/screen/gestures/rotation/activation/use-rotation-activation.js.map +0 -1
- package/lib/module/providers/screen/gestures/rotation/behavior/rotation-lifecycle.js +0 -15
- package/lib/module/providers/screen/gestures/rotation/behavior/rotation-lifecycle.js.map +0 -1
- package/lib/module/providers/screen/gestures/rotation/behavior/use-rotation-behavior.js +0 -24
- package/lib/module/providers/screen/gestures/rotation/behavior/use-rotation-behavior.js.map +0 -1
- package/lib/module/providers/screen/gestures/rotation/use-build-rotation-gesture.js +0 -33
- package/lib/module/providers/screen/gestures/rotation/use-build-rotation-gesture.js.map +0 -1
- package/lib/module/providers/screen/gestures/shared/ancestors.js +0 -19
- package/lib/module/providers/screen/gestures/shared/ancestors.js.map +0 -1
- package/lib/module/providers/screen/origin.provider.js +0 -33
- package/lib/module/providers/screen/origin.provider.js.map +0 -1
- package/lib/module/providers/screen/styles/components/floating-overlay-layer.js +0 -24
- package/lib/module/providers/screen/styles/components/floating-overlay-layer.js.map +0 -1
- package/lib/module/providers/screen/styles/helpers/opening-phase.js +0 -26
- package/lib/module/providers/screen/styles/helpers/opening-phase.js.map +0 -1
- package/lib/module/providers/screen/styles/stores/slot-references.store.js +0 -47
- package/lib/module/providers/screen/styles/stores/slot-references.store.js.map +0 -1
- package/lib/module/providers/stack/direct.provider.js +0 -101
- package/lib/module/providers/stack/direct.provider.js.map +0 -1
- package/lib/module/types/providers/direct-stack.types.js +0 -4
- package/lib/module/types/providers/direct-stack.types.js.map +0 -1
- package/lib/module/utils/bounds/navigation/math.js +0 -125
- package/lib/module/utils/bounds/navigation/math.js.map +0 -1
- package/lib/module/utils/platform.js +0 -10
- package/lib/module/utils/platform.js.map +0 -1
- package/lib/typescript/components/boundary/hooks/use-register-target.d.ts +0 -10
- package/lib/typescript/components/boundary/hooks/use-register-target.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/components/portal-slot.d.ts +0 -13
- package/lib/typescript/components/boundary/portal/components/boundary-portal/components/portal-slot.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/helpers/has-local-slot.d.ts +0 -3
- package/lib/typescript/components/boundary/portal/components/boundary-portal/helpers/has-local-slot.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/helpers/host-name.d.ts +0 -2
- package/lib/typescript/components/boundary/portal/components/boundary-portal/helpers/host-name.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/components/boundary-portal/stores/host-bounds.store.d.ts +0 -9
- package/lib/typescript/components/boundary/portal/components/boundary-portal/stores/host-bounds.store.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/utils/ownership.d.ts +0 -34
- package/lib/typescript/components/boundary/portal/utils/ownership.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/utils/shallow-equal.d.ts +0 -8
- package/lib/typescript/components/boundary/portal/utils/shallow-equal.d.ts.map +0 -1
- package/lib/typescript/components/boundary/portal/utils/visible-host.d.ts +0 -8
- package/lib/typescript/components/boundary/portal/utils/visible-host.d.ts.map +0 -1
- package/lib/typescript/components/masked-view.d.ts +0 -10
- package/lib/typescript/components/masked-view.d.ts.map +0 -1
- package/lib/typescript/components/scene-view.d.ts +0 -13
- package/lib/typescript/components/scene-view.d.ts.map +0 -1
- package/lib/typescript/components/screen-container/layers/surface-container.d.ts +0 -8
- package/lib/typescript/components/screen-container/layers/surface-container.d.ts.map +0 -1
- package/lib/typescript/hooks/navigation/use-previous.d.ts +0 -2
- package/lib/typescript/hooks/navigation/use-previous.d.ts.map +0 -1
- package/lib/typescript/hooks/navigation/use-stack.d.ts +0 -34
- package/lib/typescript/hooks/navigation/use-stack.d.ts.map +0 -1
- package/lib/typescript/hooks/navigation/use-tab-press-reset.d.ts +0 -10
- package/lib/typescript/hooks/navigation/use-tab-press-reset.d.ts.map +0 -1
- package/lib/typescript/hooks/use-stable-callback-value.d.ts +0 -13
- package/lib/typescript/hooks/use-stable-callback-value.d.ts.map +0 -1
- package/lib/typescript/providers/register-bounds.provider.d.ts +0 -25
- package/lib/typescript/providers/register-bounds.provider.d.ts.map +0 -1
- package/lib/typescript/providers/screen/animation/helpers/accessors/use-build-bounds-accessor.d.ts +0 -2
- package/lib/typescript/providers/screen/animation/helpers/accessors/use-build-bounds-accessor.d.ts.map +0 -1
- package/lib/typescript/providers/screen/descriptors/helpers/get-ancestor-keys.d.ts +0 -14
- package/lib/typescript/providers/screen/descriptors/helpers/get-ancestor-keys.d.ts.map +0 -1
- package/lib/typescript/providers/screen/gestures/ownership/use-walk-up-and-register-shadowing-claims.d.ts +0 -14
- package/lib/typescript/providers/screen/gestures/ownership/use-walk-up-and-register-shadowing-claims.d.ts.map +0 -1
- package/lib/typescript/providers/screen/gestures/rotation/activation/use-rotation-activation.d.ts +0 -15
- package/lib/typescript/providers/screen/gestures/rotation/activation/use-rotation-activation.d.ts.map +0 -1
- package/lib/typescript/providers/screen/gestures/rotation/behavior/rotation-lifecycle.d.ts +0 -4
- package/lib/typescript/providers/screen/gestures/rotation/behavior/rotation-lifecycle.d.ts.map +0 -1
- package/lib/typescript/providers/screen/gestures/rotation/behavior/use-rotation-behavior.d.ts +0 -5
- package/lib/typescript/providers/screen/gestures/rotation/behavior/use-rotation-behavior.d.ts.map +0 -1
- package/lib/typescript/providers/screen/gestures/rotation/use-build-rotation-gesture.d.ts +0 -9
- package/lib/typescript/providers/screen/gestures/rotation/use-build-rotation-gesture.d.ts.map +0 -1
- package/lib/typescript/providers/screen/gestures/shared/ancestors.d.ts +0 -11
- package/lib/typescript/providers/screen/gestures/shared/ancestors.d.ts.map +0 -1
- package/lib/typescript/providers/screen/origin.provider.d.ts +0 -11
- package/lib/typescript/providers/screen/origin.provider.d.ts.map +0 -1
- package/lib/typescript/providers/screen/styles/components/floating-overlay-layer.d.ts +0 -7
- package/lib/typescript/providers/screen/styles/components/floating-overlay-layer.d.ts.map +0 -1
- package/lib/typescript/providers/screen/styles/helpers/opening-phase.d.ts +0 -16
- package/lib/typescript/providers/screen/styles/helpers/opening-phase.d.ts.map +0 -1
- package/lib/typescript/providers/screen/styles/stores/slot-references.store.d.ts +0 -6
- package/lib/typescript/providers/screen/styles/stores/slot-references.store.d.ts.map +0 -1
- package/lib/typescript/providers/stack/direct.provider.d.ts +0 -6
- package/lib/typescript/providers/stack/direct.provider.d.ts.map +0 -1
- package/lib/typescript/types/providers/direct-stack.types.d.ts +0 -31
- package/lib/typescript/types/providers/direct-stack.types.d.ts.map +0 -1
- package/lib/typescript/utils/bounds/navigation/math.d.ts +0 -31
- package/lib/typescript/utils/bounds/navigation/math.d.ts.map +0 -1
- package/lib/typescript/utils/platform.d.ts +0 -2
- package/lib/typescript/utils/platform.d.ts.map +0 -1
- package/src/components/boundary/hooks/use-register-target.ts +0 -43
- package/src/components/boundary/portal/components/boundary-portal/components/portal-slot.tsx +0 -80
- package/src/components/boundary/portal/components/boundary-portal/helpers/has-local-slot.ts +0 -16
- package/src/components/boundary/portal/components/boundary-portal/helpers/host-name.ts +0 -10
- package/src/components/boundary/portal/components/boundary-portal/stores/host-bounds.store.ts +0 -45
- package/src/components/boundary/portal/utils/ownership.ts +0 -319
- package/src/components/boundary/portal/utils/shallow-equal.ts +0 -25
- package/src/components/boundary/portal/utils/visible-host.ts +0 -24
- package/src/components/masked-view.tsx +0 -58
- package/src/components/scene-view.tsx +0 -29
- package/src/components/screen-container/layers/surface-container.tsx +0 -63
- package/src/hooks/navigation/use-previous.ts +0 -11
- package/src/hooks/navigation/use-stack.tsx +0 -185
- package/src/hooks/navigation/use-tab-press-reset.ts +0 -36
- package/src/hooks/use-stable-callback-value.ts +0 -72
- package/src/providers/register-bounds.provider.tsx +0 -401
- package/src/providers/screen/animation/helpers/accessors/use-build-bounds-accessor.tsx +0 -13
- package/src/providers/screen/descriptors/helpers/get-ancestor-keys.ts +0 -55
- package/src/providers/screen/gestures/rotation/activation/use-rotation-activation.ts +0 -88
- package/src/providers/screen/gestures/rotation/behavior/rotation-lifecycle.ts +0 -19
- package/src/providers/screen/gestures/rotation/behavior/use-rotation-behavior.ts +0 -47
- package/src/providers/screen/gestures/rotation/use-build-rotation-gesture.ts +0 -50
- package/src/providers/screen/gestures/shared/ancestors.ts +0 -27
- package/src/providers/screen/origin.provider.tsx +0 -38
- package/src/providers/screen/styles/components/floating-overlay-layer.tsx +0 -29
- package/src/providers/screen/styles/helpers/opening-phase.ts +0 -25
- package/src/providers/screen/styles/stores/slot-references.store.ts +0 -72
- package/src/providers/stack/direct.provider.tsx +0 -129
- package/src/types/providers/direct-stack.types.ts +0 -69
- package/src/utils/bounds/navigation/math.ts +0 -188
- package/src/utils/platform.ts +0 -8
|
@@ -1,17 +1,10 @@
|
|
|
1
1
|
import type { NavigationState, Route } from "@react-navigation/native";
|
|
2
2
|
import { useMemo } from "react";
|
|
3
3
|
import { Overlay } from "../../components/overlay";
|
|
4
|
-
import {
|
|
5
|
-
type StackContextValue,
|
|
6
|
-
StackProvider,
|
|
7
|
-
} from "../../hooks/navigation/use-stack";
|
|
8
4
|
import { ScreenComposer } from "../../providers/screen/screen-composer";
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
withStackCore,
|
|
12
|
-
} from "../../providers/stack/core.provider";
|
|
5
|
+
import { BlankStackStoreProvider } from "../../providers/stack/blank-stack.provider";
|
|
6
|
+
import { StackCoreProvider } from "../../providers/stack/core.provider";
|
|
13
7
|
import type { BaseStackDescriptor, BaseStackRoute } from "../../types";
|
|
14
|
-
import { StackType } from "../../types/stack.types";
|
|
15
8
|
import { isOverlayVisible } from "../../utils/overlay/visibility";
|
|
16
9
|
import {
|
|
17
10
|
ScreenTransitionsAdapterProvider,
|
|
@@ -73,7 +66,7 @@ function buildTransitionStackState({
|
|
|
73
66
|
const routes = state.routes as BaseStackRoute[];
|
|
74
67
|
const preloadedRoutes = getPreloadedRoutes(state) as BaseStackRoute[];
|
|
75
68
|
const allRoutes = routes.concat(preloadedRoutes);
|
|
76
|
-
const routeKeys
|
|
69
|
+
const routeKeys = routes.map((route) => route.key);
|
|
77
70
|
const scenes: ScreenTransitionsAdapterScene[] = [];
|
|
78
71
|
const routeIndexByKey = new Map<string, number>();
|
|
79
72
|
let shouldShowFloatOverlay = false;
|
|
@@ -102,11 +95,16 @@ function buildTransitionStackState({
|
|
|
102
95
|
}
|
|
103
96
|
|
|
104
97
|
scenes.push({
|
|
98
|
+
activity:
|
|
99
|
+
sceneIndex === state.index
|
|
100
|
+
? "active"
|
|
101
|
+
: sceneIndex === state.index - 1
|
|
102
|
+
? "inert"
|
|
103
|
+
: "inactive",
|
|
105
104
|
route,
|
|
106
105
|
descriptor: normalizedDescriptor,
|
|
107
106
|
previousDescriptor,
|
|
108
107
|
});
|
|
109
|
-
routeKeys.push(route.key);
|
|
110
108
|
routeIndexByKey.set(route.key, sceneIndex);
|
|
111
109
|
|
|
112
110
|
if (
|
|
@@ -137,7 +135,6 @@ function ScreenTransitionsStackContent({
|
|
|
137
135
|
layout,
|
|
138
136
|
layoutArgs,
|
|
139
137
|
}: ScreenTransitionsStackContentProps) {
|
|
140
|
-
const { flags } = useStackCoreContext();
|
|
141
138
|
const transitionState = useMemo(
|
|
142
139
|
() =>
|
|
143
140
|
buildTransitionStackState({
|
|
@@ -146,24 +143,6 @@ function ScreenTransitionsStackContent({
|
|
|
146
143
|
}),
|
|
147
144
|
[layoutArgs.state, layoutArgs.descriptors],
|
|
148
145
|
);
|
|
149
|
-
const stackContextValue = useMemo<StackContextValue>(
|
|
150
|
-
() => ({
|
|
151
|
-
flags,
|
|
152
|
-
navigatorKey: layoutArgs.state.key,
|
|
153
|
-
routeKeys: transitionState.routeKeys,
|
|
154
|
-
routes: transitionState.routes as Route<string>[],
|
|
155
|
-
scenes: transitionState.scenes,
|
|
156
|
-
focusedIndex: layoutArgs.state.index,
|
|
157
|
-
}),
|
|
158
|
-
[
|
|
159
|
-
flags,
|
|
160
|
-
layoutArgs.state.key,
|
|
161
|
-
layoutArgs.state.index,
|
|
162
|
-
transitionState.routeKeys,
|
|
163
|
-
transitionState.routes,
|
|
164
|
-
transitionState.scenes,
|
|
165
|
-
],
|
|
166
|
-
);
|
|
167
146
|
const adapterContextValue = useMemo(
|
|
168
147
|
() => ({
|
|
169
148
|
routeIndexByKey: transitionState.routeIndexByKey,
|
|
@@ -171,22 +150,43 @@ function ScreenTransitionsStackContent({
|
|
|
171
150
|
}),
|
|
172
151
|
[transitionState.routeIndexByKey, transitionState.scenes],
|
|
173
152
|
);
|
|
153
|
+
const blankStackValue = useMemo(() => {
|
|
154
|
+
const scenesByKey = Object.fromEntries(
|
|
155
|
+
transitionState.scenes.map((scene) => [scene.route.key, scene]),
|
|
156
|
+
);
|
|
157
|
+
|
|
158
|
+
return {
|
|
159
|
+
navigatorKey: layoutArgs.state.key,
|
|
160
|
+
routeKeys: transitionState.routeKeys,
|
|
161
|
+
routes: transitionState.routes,
|
|
162
|
+
scenes: transitionState.scenes,
|
|
163
|
+
scenesByKey,
|
|
164
|
+
paintDriverRouteKeyByRouteKey: new Map<string, string>(),
|
|
165
|
+
focusedIndex: layoutArgs.state.index,
|
|
166
|
+
shouldShowFloatOverlay: transitionState.shouldShowFloatOverlay,
|
|
167
|
+
};
|
|
168
|
+
}, [layoutArgs.state.key, layoutArgs.state.index, transitionState]);
|
|
174
169
|
const children = layout ? layout(layoutArgs) : layoutArgs.children;
|
|
175
170
|
|
|
176
171
|
return (
|
|
177
172
|
<ScreenTransitionsAdapterProvider value={adapterContextValue}>
|
|
178
|
-
<
|
|
179
|
-
|
|
173
|
+
<BlankStackStoreProvider value={blankStackValue}>
|
|
174
|
+
<Overlay.Float />
|
|
180
175
|
{children}
|
|
181
|
-
</
|
|
176
|
+
</BlankStackStoreProvider>
|
|
182
177
|
</ScreenTransitionsAdapterProvider>
|
|
183
178
|
);
|
|
184
179
|
}
|
|
185
180
|
|
|
186
|
-
export
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
181
|
+
export function ScreenTransitionsStackLayout(
|
|
182
|
+
props: ScreenTransitionsStackContentProps,
|
|
183
|
+
) {
|
|
184
|
+
return (
|
|
185
|
+
<StackCoreProvider config={{ TRANSITIONS_ALWAYS_ON: false }}>
|
|
186
|
+
<ScreenTransitionsStackContent {...props} />
|
|
187
|
+
</StackCoreProvider>
|
|
188
|
+
);
|
|
189
|
+
}
|
|
190
190
|
|
|
191
191
|
export function ScreenTransitionsScreenLayout({
|
|
192
192
|
screenLayout,
|
package/src/animation/snap-to.ts
CHANGED
|
@@ -49,6 +49,10 @@ export function snapDescriptorToIndex(
|
|
|
49
49
|
descriptor.route.key,
|
|
50
50
|
"targetProgress",
|
|
51
51
|
);
|
|
52
|
+
const animationProgressValue = SystemStore.getValue(
|
|
53
|
+
descriptor.route.key,
|
|
54
|
+
"animationProgress",
|
|
55
|
+
);
|
|
52
56
|
|
|
53
57
|
scheduleOnUI(() => {
|
|
54
58
|
"worklet";
|
|
@@ -56,8 +60,10 @@ export function snapDescriptorToIndex(
|
|
|
56
60
|
|
|
57
61
|
animateToProgress({
|
|
58
62
|
target: targetProgress,
|
|
63
|
+
markEntering: false,
|
|
59
64
|
animations,
|
|
60
65
|
targetProgress: targetProgressValue,
|
|
66
|
+
animationProgress: animationProgressValue,
|
|
61
67
|
spec: resolveSnapTransitionSpec(
|
|
62
68
|
descriptor.options.transitionSpec,
|
|
63
69
|
targetProgress < currentProgress ? "collapse" : "expand",
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { Activity, type ReactNode } from "react";
|
|
2
|
+
import {
|
|
3
|
+
type HostComponent,
|
|
4
|
+
NativeComponentRegistry,
|
|
5
|
+
type ViewProps,
|
|
6
|
+
} from "react-native";
|
|
7
|
+
|
|
8
|
+
export type ActivityViewMode = "normal" | "inert" | "paused";
|
|
9
|
+
|
|
10
|
+
interface ActivityViewProps {
|
|
11
|
+
children: ReactNode;
|
|
12
|
+
mode: ActivityViewMode;
|
|
13
|
+
visible: boolean;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Separates React lifecycle activity from native presentation.
|
|
18
|
+
*
|
|
19
|
+
* A paused Activity tears down effects and deprioritizes updates. Keeping an
|
|
20
|
+
* explicit display value on its host view lets `pause` preserve the last paint,
|
|
21
|
+
* while `hide` can pause the same subtree and remove its presentation.
|
|
22
|
+
*/
|
|
23
|
+
export function ActivityView({ children, mode, visible }: ActivityViewProps) {
|
|
24
|
+
const activityMode = mode === "paused" ? "hidden" : "visible";
|
|
25
|
+
const display = visible ? "contents" : "none";
|
|
26
|
+
const { ContentView, PaintView } = getNativeActivityViews();
|
|
27
|
+
|
|
28
|
+
return (
|
|
29
|
+
<Activity mode={activityMode}>
|
|
30
|
+
<ContentView style={{ display: "contents" }}>
|
|
31
|
+
<PaintView style={{ display }}>{children}</PaintView>
|
|
32
|
+
</ContentView>
|
|
33
|
+
</Activity>
|
|
34
|
+
);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
const ACTIVITY_CONTENT_STYLE: Record<
|
|
38
|
+
string,
|
|
39
|
+
true | { process?: (value: unknown) => unknown }
|
|
40
|
+
> = {
|
|
41
|
+
display: {
|
|
42
|
+
// Activity writes display:none to its nearest host child. Preserve the
|
|
43
|
+
// native paint while React pauses the subtree.
|
|
44
|
+
process: () => "contents",
|
|
45
|
+
},
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
const ACTIVITY_PAINT_STYLE: Record<
|
|
49
|
+
string,
|
|
50
|
+
true | { process?: (value: unknown) => unknown }
|
|
51
|
+
> = {
|
|
52
|
+
display: {
|
|
53
|
+
process: (value: unknown) => (value === "none" ? "none" : "contents"),
|
|
54
|
+
},
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
const ACTIVITY_CONTENT_VIEW_CONFIG = {
|
|
58
|
+
uiViewClassName: "RCTView",
|
|
59
|
+
validAttributes: { style: ACTIVITY_CONTENT_STYLE },
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const ACTIVITY_PAINT_VIEW_CONFIG = {
|
|
63
|
+
uiViewClassName: "RCTView",
|
|
64
|
+
validAttributes: { style: ACTIVITY_PAINT_STYLE },
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
type NativeActivityViewProps = Omit<ViewProps, "style"> & {
|
|
68
|
+
style?: { display?: "contents" | "none" };
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
let nativeActivityViews:
|
|
72
|
+
| {
|
|
73
|
+
ContentView: HostComponent<NativeActivityViewProps>;
|
|
74
|
+
PaintView: HostComponent<NativeActivityViewProps>;
|
|
75
|
+
}
|
|
76
|
+
| undefined;
|
|
77
|
+
|
|
78
|
+
function getNativeActivityViews() {
|
|
79
|
+
if (!nativeActivityViews) {
|
|
80
|
+
nativeActivityViews = {
|
|
81
|
+
ContentView: NativeComponentRegistry.get<NativeActivityViewProps>(
|
|
82
|
+
"ScreenTransitionsActivityContentView",
|
|
83
|
+
() => ACTIVITY_CONTENT_VIEW_CONFIG,
|
|
84
|
+
),
|
|
85
|
+
PaintView: NativeComponentRegistry.get<NativeActivityViewProps>(
|
|
86
|
+
"ScreenTransitionsActivityPaintView",
|
|
87
|
+
() => ACTIVITY_PAINT_VIEW_CONFIG,
|
|
88
|
+
),
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
return nativeActivityViews;
|
|
93
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/// <reference lib="dom" />
|
|
2
|
+
|
|
3
|
+
import { Activity, type ReactNode, useCallback } from "react";
|
|
4
|
+
import { StyleSheet, View } from "react-native";
|
|
5
|
+
|
|
6
|
+
export type ActivityViewMode = "normal" | "inert" | "paused";
|
|
7
|
+
|
|
8
|
+
interface ActivityViewProps {
|
|
9
|
+
children: ReactNode;
|
|
10
|
+
mode: ActivityViewMode;
|
|
11
|
+
visible: boolean;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Web Activity writes display:none directly to its host child. Observe that
|
|
16
|
+
* write so lifecycle pausing and retained paint remain independent there too.
|
|
17
|
+
*/
|
|
18
|
+
export function ActivityView({ children, mode, visible }: ActivityViewProps) {
|
|
19
|
+
const display = visible ? "flex" : "none";
|
|
20
|
+
const activityMode = mode === "paused" ? "hidden" : "visible";
|
|
21
|
+
const onRef = useCallback(
|
|
22
|
+
(node: React.ComponentRef<typeof View> | null) => {
|
|
23
|
+
if (!(node instanceof HTMLElement)) {
|
|
24
|
+
return;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
const childObservers: MutationObserver[] = [];
|
|
28
|
+
const observeChildren = () => {
|
|
29
|
+
for (const observer of childObservers) {
|
|
30
|
+
observer.disconnect();
|
|
31
|
+
}
|
|
32
|
+
childObservers.length = 0;
|
|
33
|
+
|
|
34
|
+
node.childNodes.forEach((child) => {
|
|
35
|
+
if (!(child instanceof HTMLElement)) {
|
|
36
|
+
return;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
child.style.display = display;
|
|
40
|
+
const observer = new MutationObserver(() => {
|
|
41
|
+
child.style.display = display;
|
|
42
|
+
});
|
|
43
|
+
observer.observe(child, {
|
|
44
|
+
attributes: true,
|
|
45
|
+
attributeFilter: ["style"],
|
|
46
|
+
});
|
|
47
|
+
childObservers.push(observer);
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
observeChildren();
|
|
52
|
+
const observer = new MutationObserver(observeChildren);
|
|
53
|
+
observer.observe(node, { childList: true });
|
|
54
|
+
|
|
55
|
+
return () => {
|
|
56
|
+
observer.disconnect();
|
|
57
|
+
for (const childObserver of childObservers) {
|
|
58
|
+
childObserver.disconnect();
|
|
59
|
+
}
|
|
60
|
+
};
|
|
61
|
+
},
|
|
62
|
+
[display],
|
|
63
|
+
);
|
|
64
|
+
|
|
65
|
+
return (
|
|
66
|
+
<View ref={onRef} collapsable={false} style={styles.contents}>
|
|
67
|
+
<Activity mode={activityMode}>
|
|
68
|
+
<View collapsable={false} style={[styles.content, { display }]}>
|
|
69
|
+
{children}
|
|
70
|
+
</View>
|
|
71
|
+
</Activity>
|
|
72
|
+
</View>
|
|
73
|
+
);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
const styles = StyleSheet.create({
|
|
77
|
+
contents: { display: "contents" },
|
|
78
|
+
content: { flex: 1 },
|
|
79
|
+
});
|
|
@@ -1,25 +1,13 @@
|
|
|
1
1
|
import { StyleSheet, View } from "react-native";
|
|
2
2
|
|
|
3
|
-
import { ScreenContainer } from "react-native-screens";
|
|
4
|
-
import { IS_WEB } from "../../../constants";
|
|
5
|
-
import { useStack } from "../../../hooks/navigation/use-stack";
|
|
6
|
-
|
|
7
3
|
interface Props {
|
|
8
4
|
children: React.ReactNode;
|
|
9
5
|
}
|
|
10
6
|
|
|
11
7
|
export const ActivityContainer = ({ children }: Props) => {
|
|
12
|
-
const nativeScreenDisabled = useStack((s) => s.flags.DISABLE_NATIVE_SCREENS);
|
|
13
|
-
const Component = IS_WEB || nativeScreenDisabled ? View : ScreenContainer;
|
|
14
8
|
return (
|
|
15
|
-
<
|
|
9
|
+
<View collapsable={false} style={StyleSheet.absoluteFill}>
|
|
16
10
|
{children}
|
|
17
|
-
</
|
|
11
|
+
</View>
|
|
18
12
|
);
|
|
19
13
|
};
|
|
20
|
-
|
|
21
|
-
const styles = StyleSheet.create({
|
|
22
|
-
container: {
|
|
23
|
-
flex: 1,
|
|
24
|
-
},
|
|
25
|
-
});
|
|
@@ -2,22 +2,13 @@ import type * as React from "react";
|
|
|
2
2
|
import { memo } from "react";
|
|
3
3
|
import { StyleSheet, View, type ViewProps } from "react-native";
|
|
4
4
|
import { useDerivedValue } from "react-native-reanimated";
|
|
5
|
-
import { Screen } from "react-native-screens";
|
|
6
|
-
import { IS_WEB } from "../../../constants";
|
|
7
|
-
import { useStack } from "../../../hooks/navigation/use-stack";
|
|
8
5
|
import { useSharedValueState } from "../../../hooks/reanimated/use-shared-value-state";
|
|
6
|
+
import { useBlankStackStore } from "../../../providers/stack/blank-stack.provider";
|
|
9
7
|
import { AnimationStore } from "../../../stores/animation.store";
|
|
10
8
|
import type { StackSceneActivity } from "../../../types/stack.types";
|
|
9
|
+
import { ActivityView, type ActivityViewMode } from "../activity-view";
|
|
11
10
|
import { DEFAULT_INACTIVE_BEHAVIOR, type InactiveBehavior } from "../helpers";
|
|
12
11
|
|
|
13
|
-
type ActivityState = 0 | 1 | 2;
|
|
14
|
-
const ActivityStateByActivity = {
|
|
15
|
-
active: 2,
|
|
16
|
-
inert: 1,
|
|
17
|
-
inactive: 0,
|
|
18
|
-
closing: 1,
|
|
19
|
-
} satisfies Record<StackSceneActivity, ActivityState>;
|
|
20
|
-
|
|
21
12
|
const PointerEventsByActivity = {
|
|
22
13
|
active: "auto",
|
|
23
14
|
inert: "auto",
|
|
@@ -26,23 +17,34 @@ const PointerEventsByActivity = {
|
|
|
26
17
|
} satisfies Record<StackSceneActivity, ViewProps["pointerEvents"]>;
|
|
27
18
|
|
|
28
19
|
interface ActivityScreenProps {
|
|
29
|
-
activity: StackSceneActivity;
|
|
30
20
|
children: React.ReactNode;
|
|
31
21
|
inactiveBehavior?: InactiveBehavior;
|
|
32
22
|
paintDriverRouteKey?: string;
|
|
33
23
|
hasNestedState?: boolean;
|
|
24
|
+
routeKey: string;
|
|
34
25
|
}
|
|
35
26
|
|
|
36
27
|
export const ActivityScreen = memo(function ActivityScreen({
|
|
37
|
-
activity,
|
|
38
28
|
children,
|
|
39
|
-
inactiveBehavior
|
|
29
|
+
inactiveBehavior,
|
|
40
30
|
paintDriverRouteKey,
|
|
41
31
|
hasNestedState,
|
|
32
|
+
routeKey,
|
|
42
33
|
}: ActivityScreenProps) {
|
|
43
|
-
const
|
|
44
|
-
const
|
|
45
|
-
|
|
34
|
+
const scene = useBlankStackStore((store) => store.scenesByKey[routeKey]);
|
|
35
|
+
const stackPaintDriverRouteKey = useBlankStackStore((store) =>
|
|
36
|
+
store.paintDriverRouteKeyByRouteKey.get(routeKey),
|
|
37
|
+
);
|
|
38
|
+
const stackInactiveBehavior = (
|
|
39
|
+
scene.descriptor.options as { inactiveBehavior?: InactiveBehavior }
|
|
40
|
+
).inactiveBehavior;
|
|
41
|
+
const resolvedInactiveBehavior =
|
|
42
|
+
inactiveBehavior ?? stackInactiveBehavior ?? DEFAULT_INACTIVE_BEHAVIOR;
|
|
43
|
+
const resolvedPaintDriverRouteKey =
|
|
44
|
+
paintDriverRouteKey ?? stackPaintDriverRouteKey;
|
|
45
|
+
const resolvedHasNestedState = hasNestedState ?? "state" in scene.route;
|
|
46
|
+
const paintDriverAnimations = resolvedPaintDriverRouteKey
|
|
47
|
+
? AnimationStore.getBag(resolvedPaintDriverRouteKey)
|
|
46
48
|
: undefined;
|
|
47
49
|
|
|
48
50
|
/**
|
|
@@ -64,77 +66,41 @@ export const ActivityScreen = memo(function ActivityScreen({
|
|
|
64
66
|
|
|
65
67
|
const isPaintDriverSettledOnJS = useSharedValueState(isPaintDriverSettled);
|
|
66
68
|
|
|
67
|
-
let
|
|
68
|
-
|
|
69
|
-
let visible = activity !== "inactive";
|
|
70
|
-
|
|
71
|
-
const shouldWaitForPaintDriver = !isPaintDriverSettledOnJS;
|
|
69
|
+
let activityViewMode: ActivityViewMode =
|
|
70
|
+
scene.activity === "active" ? "normal" : "inert";
|
|
71
|
+
let visible = scene.activity !== "inactive";
|
|
72
72
|
|
|
73
|
-
if (activity === "inactive") {
|
|
74
|
-
if (
|
|
75
|
-
activityState = 1;
|
|
73
|
+
if (scene.activity === "inactive") {
|
|
74
|
+
if (resolvedInactiveBehavior === "keep" || !isPaintDriverSettledOnJS) {
|
|
76
75
|
visible = true;
|
|
77
|
-
} else if (
|
|
78
|
-
|
|
79
|
-
// a blank frame during the transition.
|
|
80
|
-
activityState = 1;
|
|
81
|
-
visible = true;
|
|
82
|
-
} else if (inactiveBehavior === "pause") {
|
|
83
|
-
activityState = 1;
|
|
84
|
-
shouldFreeze = true;
|
|
76
|
+
} else if (resolvedInactiveBehavior === "pause") {
|
|
77
|
+
activityViewMode = "paused";
|
|
85
78
|
visible = true;
|
|
86
79
|
} else {
|
|
87
|
-
|
|
88
|
-
// `unmount` removes the React subtree through the JS guard below.
|
|
89
|
-
activityState = 0;
|
|
90
|
-
shouldFreeze = true;
|
|
80
|
+
activityViewMode = "paused";
|
|
91
81
|
visible = false;
|
|
92
82
|
}
|
|
93
83
|
}
|
|
94
84
|
|
|
95
85
|
const shouldUnmount =
|
|
96
|
-
|
|
97
|
-
activity === "inactive" &&
|
|
98
|
-
!
|
|
86
|
+
resolvedInactiveBehavior === "unmount" &&
|
|
87
|
+
scene.activity === "inactive" &&
|
|
88
|
+
!resolvedHasNestedState &&
|
|
99
89
|
isPaintDriverSettledOnJS;
|
|
100
90
|
|
|
101
|
-
const pointerEvents = PointerEventsByActivity[activity];
|
|
102
|
-
|
|
103
91
|
if (shouldUnmount) {
|
|
104
92
|
return null;
|
|
105
93
|
}
|
|
106
94
|
|
|
107
|
-
const style = [StyleSheet.absoluteFill, visible ? undefined : styles.hidden];
|
|
108
|
-
|
|
109
|
-
if (IS_WEB || nativeScreenDisabled) {
|
|
110
|
-
return (
|
|
111
|
-
<View style={style} pointerEvents={pointerEvents} collapsable={false}>
|
|
112
|
-
{children}
|
|
113
|
-
</View>
|
|
114
|
-
);
|
|
115
|
-
}
|
|
116
|
-
|
|
117
95
|
return (
|
|
118
|
-
<
|
|
119
|
-
style={
|
|
120
|
-
|
|
121
|
-
shouldFreeze={shouldFreeze}
|
|
122
|
-
pointerEvents={pointerEvents}
|
|
96
|
+
<View
|
|
97
|
+
style={StyleSheet.absoluteFill}
|
|
98
|
+
pointerEvents={PointerEventsByActivity[scene.activity]}
|
|
123
99
|
collapsable={false}
|
|
124
100
|
>
|
|
125
|
-
{
|
|
126
|
-
|
|
101
|
+
<ActivityView mode={activityViewMode} visible={visible}>
|
|
102
|
+
{children}
|
|
103
|
+
</ActivityView>
|
|
104
|
+
</View>
|
|
127
105
|
);
|
|
128
106
|
});
|
|
129
|
-
|
|
130
|
-
const HIDDEN_SCREEN_OFFSET = 10_000;
|
|
131
|
-
const styles = StyleSheet.create({
|
|
132
|
-
hidden: {
|
|
133
|
-
// NOTE:
|
|
134
|
-
// When setting a screen to display:"none", the gesture detector will not recognize anymore. Since I believe
|
|
135
|
-
// rngh is attaching itself to its nearest native view, this of course would kill the detector.
|
|
136
|
-
// To avoid this, we use a transform to move the screen off-screen instead of display: "none". This isn't my favorite approach,
|
|
137
|
-
// but i'm hoping react 19's activity could mitigate this better and avoid dependence on rns.
|
|
138
|
-
transform: [{ translateY: HIDDEN_SCREEN_OFFSET }],
|
|
139
|
-
},
|
|
140
|
-
});
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { memo } from "react";
|
|
2
|
+
import type { View } from "react-native";
|
|
3
|
+
import type { AnimatedRef } from "react-native-reanimated";
|
|
4
|
+
import { useDescriptorsStore } from "../../../providers/screen/descriptors";
|
|
5
|
+
import type { BoundTag } from "../../../stores/bounds/types";
|
|
6
|
+
import { useBoundaryMeasurement } from "../hooks/use-boundary-measurement";
|
|
7
|
+
import type {
|
|
8
|
+
BoundaryConfigProps,
|
|
9
|
+
BoundaryLocalMeasurementValue,
|
|
10
|
+
} from "../types";
|
|
11
|
+
|
|
12
|
+
interface BoundaryLifecycleProps {
|
|
13
|
+
boundTag: BoundTag;
|
|
14
|
+
config: BoundaryConfigProps;
|
|
15
|
+
currentScreenKey: string;
|
|
16
|
+
enabled: boolean;
|
|
17
|
+
escapeClipping: boolean;
|
|
18
|
+
handoff: boolean;
|
|
19
|
+
localMeasurement: BoundaryLocalMeasurementValue;
|
|
20
|
+
measuredRef: AnimatedRef<View>;
|
|
21
|
+
style?: unknown;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export const BoundaryLifecycle = memo(function BoundaryLifecycle({
|
|
25
|
+
boundTag,
|
|
26
|
+
config,
|
|
27
|
+
currentScreenKey,
|
|
28
|
+
enabled,
|
|
29
|
+
escapeClipping,
|
|
30
|
+
handoff,
|
|
31
|
+
localMeasurement,
|
|
32
|
+
measuredRef,
|
|
33
|
+
style,
|
|
34
|
+
}: BoundaryLifecycleProps) {
|
|
35
|
+
const hasConfiguredInterpolator = useDescriptorsStore(
|
|
36
|
+
(s) => s.derivations.hasConfiguredInterpolator,
|
|
37
|
+
);
|
|
38
|
+
|
|
39
|
+
useBoundaryMeasurement({
|
|
40
|
+
boundTag,
|
|
41
|
+
enabled,
|
|
42
|
+
runtimeEnabled: enabled && hasConfiguredInterpolator,
|
|
43
|
+
currentScreenKey,
|
|
44
|
+
measuredRef,
|
|
45
|
+
style,
|
|
46
|
+
handoff,
|
|
47
|
+
escapeClipping,
|
|
48
|
+
localMeasurement,
|
|
49
|
+
config,
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
return null;
|
|
53
|
+
});
|
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
import type React from "react";
|
|
2
|
-
import { memo,
|
|
3
|
-
import
|
|
4
|
-
import Animated, { useAnimatedRef } from "react-native-reanimated";
|
|
2
|
+
import { memo, useLayoutEffect } from "react";
|
|
3
|
+
import Animated from "react-native-reanimated";
|
|
5
4
|
import {
|
|
6
5
|
useComposedSlotStyles,
|
|
7
6
|
useSlotLayoutStyles,
|
|
8
7
|
} from "../../../providers/screen/styles";
|
|
9
|
-
import {
|
|
10
|
-
import { useRegisterTarget } from "../hooks/use-register-target";
|
|
8
|
+
import { logger } from "../../../utils/logger";
|
|
11
9
|
import {
|
|
12
10
|
BoundaryContentPortal,
|
|
13
11
|
BoundaryContentPortalHost,
|
|
14
12
|
} from "../portal/components/boundary-content-portal";
|
|
15
13
|
import { BoundaryPortal } from "../portal/components/boundary-portal";
|
|
16
|
-
import {
|
|
14
|
+
import {
|
|
15
|
+
TARGET_OUTSIDE_ROOT_WARNING,
|
|
16
|
+
useOptionalBoundaryRootStore,
|
|
17
|
+
} from "../providers/boundary-root.provider";
|
|
17
18
|
|
|
18
19
|
type BoundaryTargetProps = Omit<
|
|
19
20
|
React.ComponentProps<typeof Animated.View>,
|
|
@@ -22,19 +23,26 @@ type BoundaryTargetProps = Omit<
|
|
|
22
23
|
children?: React.ReactNode;
|
|
23
24
|
};
|
|
24
25
|
|
|
25
|
-
export const
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
const
|
|
26
|
+
export const BOUNDARY_TARGET_ACTIVE_PROP = "__boundaryTargetActive" as const;
|
|
27
|
+
type InternalBoundaryTargetProps = BoundaryTargetProps & {
|
|
28
|
+
[BOUNDARY_TARGET_ACTIVE_PROP]?: boolean;
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
const BoundaryTargetInner = (props: InternalBoundaryTargetProps) => {
|
|
32
|
+
const {
|
|
33
|
+
[BOUNDARY_TARGET_ACTIVE_PROP]: active,
|
|
34
|
+
children,
|
|
35
|
+
pointerEvents,
|
|
36
|
+
style,
|
|
37
|
+
...rest
|
|
38
|
+
} = props;
|
|
39
|
+
const rootContext = useOptionalBoundaryRootStore();
|
|
32
40
|
const boundaryId = rootContext?.boundTag.tag;
|
|
33
|
-
const isActiveTarget =
|
|
41
|
+
const isActiveTarget = active === true && rootContext !== null;
|
|
34
42
|
const portalRuntime = rootContext?.portalRuntime;
|
|
35
43
|
const handoffEnabled = isActiveTarget && rootContext?.handoffEnabled === true;
|
|
36
44
|
const shouldEscapeTargetToScreenHost =
|
|
37
|
-
portalRuntime?.escapeClipping === true
|
|
45
|
+
isActiveTarget && portalRuntime?.escapeClipping === true;
|
|
38
46
|
|
|
39
47
|
const shouldApplyAssociatedStyleInline =
|
|
40
48
|
isActiveTarget && portalRuntime?.escapeClipping !== true;
|
|
@@ -46,24 +54,26 @@ export const BoundaryTarget = memo(function BoundaryTarget(
|
|
|
46
54
|
style,
|
|
47
55
|
);
|
|
48
56
|
const portalLayoutStyle = useSlotLayoutStyles(rootContext?.boundTag.tag);
|
|
49
|
-
const
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
? targetEscapePlaceholderRef
|
|
53
|
-
: targetAnimatedRef;
|
|
57
|
+
const measurementRef = isActiveTarget
|
|
58
|
+
? rootContext.measurementRef
|
|
59
|
+
: undefined;
|
|
54
60
|
|
|
55
|
-
|
|
61
|
+
useLayoutEffect(() => {
|
|
62
|
+
if (__DEV__ && rootContext === null) {
|
|
63
|
+
logger.warn(TARGET_OUTSIDE_ROOT_WARNING);
|
|
64
|
+
}
|
|
65
|
+
}, [rootContext]);
|
|
56
66
|
|
|
57
67
|
return (
|
|
58
68
|
<BoundaryPortal
|
|
59
69
|
boundaryId={boundaryId ?? ""}
|
|
60
70
|
enabled={shouldEscapeTargetToScreenHost}
|
|
61
|
-
placeholderRef={
|
|
71
|
+
placeholderRef={measurementRef}
|
|
62
72
|
>
|
|
63
73
|
<Animated.View
|
|
64
74
|
{...rest}
|
|
65
75
|
pointerEvents={pointerEvents}
|
|
66
|
-
ref={
|
|
76
|
+
ref={shouldEscapeTargetToScreenHost ? undefined : measurementRef}
|
|
67
77
|
style={[
|
|
68
78
|
style,
|
|
69
79
|
shouldApplyAssociatedStyleInline ? associatedTargetStyles : undefined,
|
|
@@ -86,4 +96,8 @@ export const BoundaryTarget = memo(function BoundaryTarget(
|
|
|
86
96
|
</Animated.View>
|
|
87
97
|
</BoundaryPortal>
|
|
88
98
|
);
|
|
89
|
-
}
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
export const BoundaryTarget = memo(
|
|
102
|
+
BoundaryTargetInner,
|
|
103
|
+
) as React.NamedExoticComponent<BoundaryTargetProps>;
|