motion-v 0.11.0 → 0.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +315 -192
- package/dist/es/animation/hooks/animation-controls.mjs +1 -1
- package/dist/es/animation/hooks/use-animate.mjs +1 -1
- package/dist/es/components/RowValue.d.ts +3 -1
- package/dist/es/components/animate-presence/AnimatePresence.d.ts +1 -1
- package/dist/es/components/animate-presence/AnimatePresence.vue.mjs +2 -2
- package/dist/es/components/animate-presence/use-pop-layout.mjs +1 -1
- package/dist/es/components/motion/Motion.d.ts +4 -2
- package/dist/es/components/motion/Motion.vue.mjs +3 -2
- package/dist/es/components/motion/Primitive.mjs +1 -1
- package/dist/es/components/motion-config/MotionConfig.d.ts +2 -2
- package/dist/es/components/reorder/Item.d.ts +6 -6
- package/dist/es/components/reorder/utils.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animate/index.mjs +3 -3
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animate/resolve-subjects.mjs +2 -2
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animate/subject.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animators/AcceleratedAnimation.mjs +14 -11
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animators/BaseAnimation.mjs +2 -2
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animators/MainThreadAnimation.mjs +7 -7
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animators/utils/can-animate.mjs +2 -2
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animators/waapi/NativeAnimation.mjs +8 -8
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animators/waapi/animate-elements.mjs +4 -4
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animators/waapi/animate-style.mjs +2 -2
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animators/waapi/index.mjs +4 -3
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animators/waapi/utils/style.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animators/waapi/utils/supports-partial-keyframes.mjs +2 -2
- package/dist/es/external/.pnpm/framer-motion@12.4.10/external/framer-motion/dist/es/animation/animators/waapi/utils/supports-waapi.mjs +6 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/generators/spring/find.mjs +2 -2
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/generators/spring/index.mjs +4 -4
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/interfaces/motion-value.mjs +4 -4
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/interfaces/visual-element-target.mjs +2 -2
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/sequence/create.mjs +5 -5
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/easing/cubic-bezier.mjs +2 -2
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/easing/utils/map.mjs +3 -3
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/frameloop/batcher.mjs +6 -18
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/frameloop/frame.mjs +2 -2
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/frameloop/index-legacy.mjs +1 -1
- package/dist/es/external/.pnpm/framer-motion@12.4.10/external/framer-motion/dist/es/frameloop/order.mjs +17 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/frameloop/render-step.mjs +8 -1
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/animation/mix-values.mjs +3 -3
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/node/create-projection-node.mjs +22 -35
- package/dist/es/external/.pnpm/framer-motion@12.4.10/external/framer-motion/dist/es/projection/styles/scale-correction.mjs +14 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/VisualElement.mjs +6 -2
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/resize/handle-element.mjs +2 -2
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/scroll/index.mjs +3 -3
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/scroll/info.mjs +2 -2
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/utils/css-variables-conversion.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/viewport/index.mjs +3 -3
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/svg/SVGVisualElement.mjs +12 -0
- package/dist/es/external/.pnpm/framer-motion@12.4.10/external/framer-motion/dist/es/render/svg/utils/measure.mjs +15 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/utils/motion-values.mjs +1 -1
- package/dist/es/external/.pnpm/framer-motion@12.4.10/external/framer-motion/dist/es/stats/buffer.mjs +7 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/delay.mjs +2 -2
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/interpolate.mjs +3 -3
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/mix/color.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/mix/complex.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/offsets/fill.mjs +2 -2
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/index.mjs +1 -1
- package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/animation/generators/utils/create-generator-easing.mjs +2 -2
- package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/animation/waapi/NativeAnimationControls.mjs +3 -3
- package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/animation/waapi/utils/linear.mjs +2 -2
- package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/gestures/hover.mjs +11 -11
- package/dist/es/external/.pnpm/motion-dom@12.4.10/external/motion-dom/dist/es/gestures/press/index.mjs +74 -0
- package/dist/es/external/.pnpm/motion-dom@12.4.10/external/motion-dom/dist/es/gestures/utils/capture-pointer.mjs +12 -0
- package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/utils/resolve-elements.mjs +1 -1
- package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/utils/supports/memo.mjs +2 -2
- package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/utils/supports/scroll-timeline.mjs +2 -2
- package/dist/es/external/.pnpm/{motion-utils@11.16.0 → motion-utils@12.4.10}/external/motion-utils/dist/es/memo.mjs +1 -0
- package/dist/es/external/.pnpm/motion-utils@12.4.10/external/motion-utils/dist/es/noop.mjs +4 -0
- package/dist/es/external/.pnpm/{motion-utils@11.16.0 → motion-utils@12.4.10}/external/motion-utils/dist/es/progress.mjs +1 -1
- package/dist/es/external/.pnpm/motion-utils@12.4.10/external/motion-utils/dist/es/time-conversion.mjs +6 -0
- package/dist/es/features/gestures/drag/VisualElementDragControls.mjs +2 -2
- package/dist/es/features/gestures/drag/index.mjs +2 -2
- package/dist/es/features/gestures/focus/index.mjs +1 -1
- package/dist/es/features/gestures/hover/index.mjs +5 -5
- package/dist/es/features/gestures/in-view/index.mjs +4 -4
- package/dist/es/features/gestures/pan/PanSession.mjs +3 -3
- package/dist/es/features/gestures/pan/index.mjs +3 -3
- package/dist/es/features/gestures/press/index.mjs +4 -4
- package/dist/es/features/layout/config.mjs +2 -2
- package/dist/es/features/layout/layout.mjs +2 -2
- package/dist/es/features/layout/projection.mjs +2 -2
- package/dist/es/features/svg.mjs +1 -1
- package/dist/es/index.mjs +38 -34
- package/dist/es/state/animate-updates.d.ts +2 -1
- package/dist/es/state/animate-updates.mjs +44 -30
- package/dist/es/state/create-visual-element.mjs +2 -2
- package/dist/es/state/motion-state.d.ts +10 -0
- package/dist/es/state/motion-state.mjs +30 -7
- package/dist/es/state/utils.mjs +5 -1
- package/dist/es/utils/use-animation-frame.mjs +1 -1
- package/dist/es/utils/use-in-view.mjs +1 -1
- package/dist/es/value/use-combine-values.mjs +2 -2
- package/dist/es/value/use-computed.mjs +1 -1
- package/dist/es/value/use-scroll.mjs +2 -2
- package/dist/es/value/use-spring.d.ts +2 -1
- package/dist/es/value/use-spring.mjs +12 -6
- package/dist/es/value/use-time.mjs +1 -1
- package/dist/es/value/use-transform.mjs +12 -4
- package/dist/es/value/use-velocity.mjs +2 -2
- package/package.json +5 -16
- package/dist/es/external/.pnpm/framer-motion@11.16.6/external/framer-motion/dist/es/animation/animators/waapi/utils/supports-waapi.mjs +0 -6
- package/dist/es/external/.pnpm/framer-motion@11.16.6/external/framer-motion/dist/es/projection/styles/scale-correction.mjs +0 -8
- package/dist/es/external/.pnpm/motion-dom@11.16.4/external/motion-dom/dist/es/gestures/press/index.mjs +0 -51
- package/dist/es/external/.pnpm/motion-utils@11.16.0/external/motion-utils/dist/es/noop.mjs +0 -4
- package/dist/es/external/.pnpm/motion-utils@11.16.0/external/motion-utils/dist/es/time-conversion.mjs +0 -6
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animate/sequence.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animate/single-value.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animators/drivers/driver-frameloop.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animators/utils/accelerated-values.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/animators/waapi/utils/get-final-keyframe.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/generators/inertia.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/generators/keyframes.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/generators/spring/defaults.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/generators/utils/velocity.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/optimized-appear/data-id.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/optimized-appear/get-appear-id.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/sequence/utils/calc-repeat-duration.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/sequence/utils/calc-time.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/sequence/utils/edit.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/sequence/utils/normalize-times.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/sequence/utils/sort.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/utils/create-visual-element.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/utils/default-transitions.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/utils/is-animatable.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/utils/is-animation-controls.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/utils/is-dom-keyframes.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/utils/is-keyframes-target.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/utils/is-none.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/utils/is-transition-defined.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/animation/utils/stagger.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/easing/anticipate.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/easing/back.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/easing/circ.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/easing/ease.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/easing/modifiers/mirror.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/easing/modifiers/reverse.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/easing/steps.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/easing/utils/get-easing-for-segment.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/easing/utils/is-easing-array.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/events/add-dom-event.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/frameloop/microtask.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/frameloop/sync-time.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/motion/features/definitions.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/motion/utils/is-forced-motion-value.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/geometry/conversion.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/geometry/copy.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/geometry/delta-apply.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/geometry/delta-calc.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/geometry/delta-remove.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/geometry/models.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/geometry/utils.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/node/DocumentProjectionNode.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/node/HTMLProjectionNode.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/node/state.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/shared/stack.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/styles/scale-border-radius.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/styles/scale-box-shadow.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/styles/transform.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/utils/each-axis.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/utils/has-transform.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/projection/utils/measure.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/DOMKeyframesResolver.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/DOMVisualElement.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/resize/handle-window.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/resize/index.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/scroll/observe.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/scroll/offsets/edge.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/scroll/offsets/index.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/scroll/offsets/inset.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/scroll/offsets/offset.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/scroll/offsets/presets.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/scroll/on-scroll-handler.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/scroll/track.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/utils/camel-to-dash.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/utils/is-css-variable.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/utils/is-svg-element.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/utils/unit-conversion.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/value-types/animatable-none.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/value-types/defaults.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/value-types/dimensions.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/value-types/find.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/value-types/get-as-type.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/value-types/number-browser.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/value-types/number.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/value-types/test.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/value-types/transform.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/value-types/type-auto.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/dom/value-types/type-int.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/html/HTMLVisualElement.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/html/utils/build-styles.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/html/utils/build-transform.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/html/utils/keys-position.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/html/utils/keys-transform.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/html/utils/make-none-animatable.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/html/utils/render.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/html/utils/scrape-motion-values.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/object/ObjectVisualElement.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/store.mjs +0 -0
- package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/svg/utils/build-attrs.mjs +1 -1
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/svg/utils/camel-case-attrs.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/svg/utils/is-svg-tag.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/svg/utils/path.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/svg/utils/render.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/svg/utils/scrape-motion-values.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/svg/utils/transform-origin.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/utils/KeyframesResolver.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/utils/compare-by-depth.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/utils/flat-tree.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/utils/is-controlling-variants.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/utils/is-variant-label.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/utils/resolve-dynamic-variants.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/utils/resolve-variants.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/utils/setters.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/render/utils/variant-props.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/GlobalConfig.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/array.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/clamp.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/distance.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/hsla-to-rgba.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/is-browser.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/is-numerical-string.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/is-zero-value-string.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/mix/immediate.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/mix/index.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/mix/number.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/mix/visibility.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/offsets/default.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/offsets/time.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/pipe.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/reduced-motion/index.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/reduced-motion/state.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/resolve-value.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/subscription-manager.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/transform.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/velocity-per-second.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/warn-once.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/utils/wrap.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/types/color/hex.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/types/color/hsla.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/types/color/index.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/types/color/rgba.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/types/color/utils.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/types/complex/filter.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/types/complex/index.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/types/numbers/index.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/types/numbers/units.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/types/utils/color-regex.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/types/utils/float-regex.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/types/utils/is-nullish.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/types/utils/sanitize.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/types/utils/single-color-regex.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/use-will-change/add-will-change.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/use-will-change/is.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/utils/is-motion-value.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@11.16.6 → framer-motion@12.4.10}/external/framer-motion/dist/es/value/utils/resolve-motion-value.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/animation/controls/BaseGroup.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/animation/controls/Group.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/animation/generators/utils/calc-duration.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/animation/generators/utils/is-generator.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/animation/utils/get-value-transition.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/animation/waapi/utils/attach-timeline.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/animation/waapi/utils/easing.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/gestures/drag/state/is-active.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/gestures/press/utils/keyboard.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/gestures/press/utils/state.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/gestures/utils/is-node-or-child.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/gestures/utils/is-primary-pointer.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/gestures/utils/setup.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/utils/is-bezier-definition.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/utils/supports/flags.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@11.16.4 → motion-dom@12.4.10}/external/motion-dom/dist/es/utils/supports/linear-easing.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@11.16.0 → motion-utils@12.4.10}/external/motion-utils/dist/es/errors.mjs +0 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { statsBuffer } from "../stats/buffer.mjs";
|
|
2
|
+
function createRenderStep(runNextFrame, stepName) {
|
|
2
3
|
let thisFrame = /* @__PURE__ */ new Set();
|
|
3
4
|
let nextFrame = /* @__PURE__ */ new Set();
|
|
4
5
|
let isProcessing = false;
|
|
@@ -9,11 +10,13 @@ function createRenderStep(runNextFrame) {
|
|
|
9
10
|
timestamp: 0,
|
|
10
11
|
isProcessing: false
|
|
11
12
|
};
|
|
13
|
+
let numCalls = 0;
|
|
12
14
|
function triggerCallback(callback) {
|
|
13
15
|
if (toKeepAlive.has(callback)) {
|
|
14
16
|
step.schedule(callback);
|
|
15
17
|
runNextFrame();
|
|
16
18
|
}
|
|
19
|
+
numCalls++;
|
|
17
20
|
callback(latestFrameData);
|
|
18
21
|
}
|
|
19
22
|
const step = {
|
|
@@ -48,6 +51,10 @@ function createRenderStep(runNextFrame) {
|
|
|
48
51
|
isProcessing = true;
|
|
49
52
|
[thisFrame, nextFrame] = [nextFrame, thisFrame];
|
|
50
53
|
thisFrame.forEach(triggerCallback);
|
|
54
|
+
if (stepName && statsBuffer.value) {
|
|
55
|
+
statsBuffer.value.frameloop[stepName].push(numCalls);
|
|
56
|
+
}
|
|
57
|
+
numCalls = 0;
|
|
51
58
|
thisFrame.clear();
|
|
52
59
|
isProcessing = false;
|
|
53
60
|
if (flushNextFrame) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import "../../../../../../../motion-utils@
|
|
2
|
-
import { noop } from "../../../../../../../motion-utils@
|
|
3
|
-
import { progress } from "../../../../../../../motion-utils@
|
|
1
|
+
import "../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
2
|
+
import { noop } from "../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/noop.mjs";
|
|
3
|
+
import { progress } from "../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/progress.mjs";
|
|
4
4
|
import { circOut } from "../../easing/circ.mjs";
|
|
5
5
|
import { mixNumber } from "../../utils/mix/number.mjs";
|
|
6
6
|
import { percent, px } from "../../value/types/numbers/units.mjs";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import "../../../../../../../motion-utils@
|
|
2
|
-
import { noop } from "../../../../../../../motion-utils@
|
|
3
|
-
import { getValueTransition } from "../../../../../../../motion-dom@
|
|
1
|
+
import "../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
2
|
+
import { noop } from "../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/noop.mjs";
|
|
3
|
+
import { getValueTransition } from "../../../../../../../motion-dom@12.4.10/external/motion-dom/dist/es/animation/utils/get-value-transition.mjs";
|
|
4
4
|
import { animateSingleValue } from "../../animation/animate/single-value.mjs";
|
|
5
5
|
import { getOptimisedAppearId } from "../../animation/optimized-appear/get-appear-id.mjs";
|
|
6
6
|
import { cancelFrame, frameData, frameSteps, frame } from "../../frameloop/frame.mjs";
|
|
@@ -16,7 +16,7 @@ import { resolveMotionValue } from "../../value/utils/resolve-motion-value.mjs";
|
|
|
16
16
|
import { mixValues } from "../animation/mix-values.mjs";
|
|
17
17
|
import { copyBoxInto, copyAxisDeltaInto } from "../geometry/copy.mjs";
|
|
18
18
|
import { translateAxis, transformBox, applyBoxDelta, applyTreeDeltas } from "../geometry/delta-apply.mjs";
|
|
19
|
-
import { calcRelativePosition, calcRelativeBox, calcBoxDelta,
|
|
19
|
+
import { calcLength, calcRelativePosition, calcRelativeBox, calcBoxDelta, isNear } from "../geometry/delta-calc.mjs";
|
|
20
20
|
import { removeBoxTransforms } from "../geometry/delta-remove.mjs";
|
|
21
21
|
import { createBox, createDelta } from "../geometry/models.mjs";
|
|
22
22
|
import { boxEqualsRounded, isDeltaZero, axisDeltaEquals, aspectRatio, boxEquals } from "../geometry/utils.mjs";
|
|
@@ -26,13 +26,6 @@ import { buildProjectionTransform } from "../styles/transform.mjs";
|
|
|
26
26
|
import { eachAxis } from "../utils/each-axis.mjs";
|
|
27
27
|
import { hasTransform, hasScale, has2DTranslate } from "../utils/has-transform.mjs";
|
|
28
28
|
import { globalProjectionState } from "./state.mjs";
|
|
29
|
-
const metrics = {
|
|
30
|
-
type: "projectionFrame",
|
|
31
|
-
totalNodes: 0,
|
|
32
|
-
resolvedTargetDeltas: 0,
|
|
33
|
-
recalculatedProjection: 0
|
|
34
|
-
};
|
|
35
|
-
const isDebug = typeof window !== "undefined" && window.MotionDebug !== void 0;
|
|
36
29
|
const transformAxes = ["", "X", "Y", "Z"];
|
|
37
30
|
const hiddenVisibility = { visibility: "hidden" };
|
|
38
31
|
const animationTarget = 1e3;
|
|
@@ -98,16 +91,10 @@ function createProjectionNode({ attachResizeListener, defaultParent, measureScro
|
|
|
98
91
|
};
|
|
99
92
|
this.updateProjection = () => {
|
|
100
93
|
this.projectionUpdateScheduled = false;
|
|
101
|
-
if (isDebug) {
|
|
102
|
-
metrics.totalNodes = metrics.resolvedTargetDeltas = metrics.recalculatedProjection = 0;
|
|
103
|
-
}
|
|
104
94
|
this.nodes.forEach(propagateDirtyNodes);
|
|
105
95
|
this.nodes.forEach(resolveTargetDelta);
|
|
106
96
|
this.nodes.forEach(calcProjection);
|
|
107
97
|
this.nodes.forEach(cleanDirtyNodes);
|
|
108
|
-
if (isDebug) {
|
|
109
|
-
window.MotionDebug.record(metrics);
|
|
110
|
-
}
|
|
111
98
|
};
|
|
112
99
|
this.resolvedRelativeTargetAt = 0;
|
|
113
100
|
this.hasProjected = false;
|
|
@@ -172,7 +159,7 @@ function createProjectionNode({ attachResizeListener, defaultParent, measureScro
|
|
|
172
159
|
this.root.registerSharedNode(layoutId, this);
|
|
173
160
|
}
|
|
174
161
|
if (this.options.animate !== false && visualElement && (layoutId || layout)) {
|
|
175
|
-
this.addEventListener("didUpdate", ({ delta, hasLayoutChanged,
|
|
162
|
+
this.addEventListener("didUpdate", ({ delta, hasLayoutChanged, hasRelativeLayoutChanged, layout: newLayout }) => {
|
|
176
163
|
if (this.isTreeAnimationBlocked()) {
|
|
177
164
|
this.target = void 0;
|
|
178
165
|
this.relativeTarget = void 0;
|
|
@@ -180,9 +167,9 @@ function createProjectionNode({ attachResizeListener, defaultParent, measureScro
|
|
|
180
167
|
}
|
|
181
168
|
const layoutTransition = this.options.transition || visualElement.getDefaultTransition() || defaultLayoutTransition;
|
|
182
169
|
const { onLayoutAnimationStart, onLayoutAnimationComplete } = visualElement.getProps();
|
|
183
|
-
const
|
|
184
|
-
const hasOnlyRelativeTargetChanged = !hasLayoutChanged &&
|
|
185
|
-
if (this.options.layoutRoot || this.resumeFrom
|
|
170
|
+
const hasTargetChanged = !this.targetLayout || !boxEqualsRounded(this.targetLayout, newLayout);
|
|
171
|
+
const hasOnlyRelativeTargetChanged = !hasLayoutChanged && hasRelativeLayoutChanged;
|
|
172
|
+
if (this.options.layoutRoot || this.resumeFrom || hasOnlyRelativeTargetChanged || hasLayoutChanged && (hasTargetChanged || !this.currentAnimation)) {
|
|
186
173
|
if (this.resumeFrom) {
|
|
187
174
|
this.resumingFrom = this.resumeFrom;
|
|
188
175
|
this.resumingFrom.resumingFrom = void 0;
|
|
@@ -331,6 +318,9 @@ function createProjectionNode({ attachResizeListener, defaultParent, measureScro
|
|
|
331
318
|
if (this.snapshot || !this.instance)
|
|
332
319
|
return;
|
|
333
320
|
this.snapshot = this.measure();
|
|
321
|
+
if (this.snapshot && !calcLength(this.snapshot.measuredBox.x) && !calcLength(this.snapshot.measuredBox.y)) {
|
|
322
|
+
this.snapshot = void 0;
|
|
323
|
+
}
|
|
334
324
|
}
|
|
335
325
|
updateLayout() {
|
|
336
326
|
if (!this.instance)
|
|
@@ -563,9 +553,6 @@ function createProjectionNode({ attachResizeListener, defaultParent, measureScro
|
|
|
563
553
|
this.relativeParent = this.relativeTarget = void 0;
|
|
564
554
|
}
|
|
565
555
|
}
|
|
566
|
-
if (isDebug) {
|
|
567
|
-
metrics.resolvedTargetDeltas++;
|
|
568
|
-
}
|
|
569
556
|
}
|
|
570
557
|
getClosestProjectingParent() {
|
|
571
558
|
if (!this.parent || hasScale(this.parent.latestValues) || has2DTranslate(this.parent.latestValues)) {
|
|
@@ -631,9 +618,6 @@ function createProjectionNode({ attachResizeListener, defaultParent, measureScro
|
|
|
631
618
|
this.scheduleRender();
|
|
632
619
|
this.notifyListeners("projectionUpdate", target);
|
|
633
620
|
}
|
|
634
|
-
if (isDebug) {
|
|
635
|
-
metrics.recalculatedProjection++;
|
|
636
|
-
}
|
|
637
621
|
}
|
|
638
622
|
hide() {
|
|
639
623
|
this.isVisible = false;
|
|
@@ -718,6 +702,8 @@ function createProjectionNode({ attachResizeListener, defaultParent, measureScro
|
|
|
718
702
|
this.mixTargetDelta(latest);
|
|
719
703
|
options.onUpdate && options.onUpdate(latest);
|
|
720
704
|
},
|
|
705
|
+
onStop: () => {
|
|
706
|
+
},
|
|
721
707
|
onComplete: () => {
|
|
722
708
|
options.onComplete && options.onComplete();
|
|
723
709
|
this.completeAnimation();
|
|
@@ -889,7 +875,7 @@ function createProjectionNode({ attachResizeListener, defaultParent, measureScro
|
|
|
889
875
|
for (const key in scaleCorrectors) {
|
|
890
876
|
if (valuesToRender[key] === void 0)
|
|
891
877
|
continue;
|
|
892
|
-
const { correct, applyTo } = scaleCorrectors[key];
|
|
878
|
+
const { correct, applyTo, isCSSVariable } = scaleCorrectors[key];
|
|
893
879
|
const corrected = styles.transform === "none" ? valuesToRender[key] : correct(valuesToRender[key], lead);
|
|
894
880
|
if (applyTo) {
|
|
895
881
|
const num = applyTo.length;
|
|
@@ -897,7 +883,11 @@ function createProjectionNode({ attachResizeListener, defaultParent, measureScro
|
|
|
897
883
|
styles[applyTo[i]] = corrected;
|
|
898
884
|
}
|
|
899
885
|
} else {
|
|
900
|
-
|
|
886
|
+
if (isCSSVariable) {
|
|
887
|
+
this.options.visualElement.renderState.vars[key] = corrected;
|
|
888
|
+
} else {
|
|
889
|
+
styles[key] = corrected;
|
|
890
|
+
}
|
|
901
891
|
}
|
|
902
892
|
}
|
|
903
893
|
if (this.options.layoutId) {
|
|
@@ -956,7 +946,7 @@ function notifyLayoutUpdate(node) {
|
|
|
956
946
|
calcBoxDelta(visualDelta, layout, snapshot.layoutBox);
|
|
957
947
|
}
|
|
958
948
|
const hasLayoutChanged = !isDeltaZero(layoutDelta);
|
|
959
|
-
let
|
|
949
|
+
let hasRelativeLayoutChanged = false;
|
|
960
950
|
if (!node.resumeFrom) {
|
|
961
951
|
const relativeParent = node.getClosestProjectingParent();
|
|
962
952
|
if (relativeParent && !relativeParent.resumeFrom) {
|
|
@@ -967,7 +957,7 @@ function notifyLayoutUpdate(node) {
|
|
|
967
957
|
const relativeLayout = createBox();
|
|
968
958
|
calcRelativePosition(relativeLayout, layout, parentLayout.layoutBox);
|
|
969
959
|
if (!boxEqualsRounded(relativeSnapshot, relativeLayout)) {
|
|
970
|
-
|
|
960
|
+
hasRelativeLayoutChanged = true;
|
|
971
961
|
}
|
|
972
962
|
if (relativeParent.options.layoutRoot) {
|
|
973
963
|
node.relativeTarget = relativeLayout;
|
|
@@ -983,7 +973,7 @@ function notifyLayoutUpdate(node) {
|
|
|
983
973
|
delta: visualDelta,
|
|
984
974
|
layoutDelta,
|
|
985
975
|
hasLayoutChanged,
|
|
986
|
-
|
|
976
|
+
hasRelativeLayoutChanged
|
|
987
977
|
});
|
|
988
978
|
} else if (node.isLead()) {
|
|
989
979
|
const { onExitComplete } = node.options;
|
|
@@ -992,9 +982,6 @@ function notifyLayoutUpdate(node) {
|
|
|
992
982
|
node.options.transition = void 0;
|
|
993
983
|
}
|
|
994
984
|
function propagateDirtyNodes(node) {
|
|
995
|
-
if (isDebug) {
|
|
996
|
-
metrics.totalNodes++;
|
|
997
|
-
}
|
|
998
985
|
if (!node.parent)
|
|
999
986
|
return;
|
|
1000
987
|
if (!node.isProjecting()) {
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { isCSSVariableName } from "../../render/dom/utils/is-css-variable.mjs";
|
|
2
|
+
const scaleCorrectors = {};
|
|
3
|
+
function addScaleCorrector(correctors) {
|
|
4
|
+
for (const key in correctors) {
|
|
5
|
+
scaleCorrectors[key] = correctors[key];
|
|
6
|
+
if (isCSSVariableName(key)) {
|
|
7
|
+
scaleCorrectors[key].isCSSVariable = true;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
export {
|
|
12
|
+
addScaleCorrector,
|
|
13
|
+
scaleCorrectors
|
|
14
|
+
};
|
|
@@ -67,7 +67,8 @@ class VisualElement {
|
|
|
67
67
|
frame.render(this.render, false, true);
|
|
68
68
|
}
|
|
69
69
|
};
|
|
70
|
-
const { latestValues, renderState } = visualState;
|
|
70
|
+
const { latestValues, renderState, onUpdate } = visualState;
|
|
71
|
+
this.onUpdate = onUpdate;
|
|
71
72
|
this.latestValues = latestValues;
|
|
72
73
|
this.baseTarget = { ...latestValues };
|
|
73
74
|
this.initialValues = props.initial ? { ...latestValues } : {};
|
|
@@ -115,7 +116,6 @@ class VisualElement {
|
|
|
115
116
|
this.update(this.props, this.presenceContext);
|
|
116
117
|
}
|
|
117
118
|
unmount() {
|
|
118
|
-
visualElementStore.delete(this.current);
|
|
119
119
|
this.projection && this.projection.unmount();
|
|
120
120
|
cancelFrame(this.notifyUpdate);
|
|
121
121
|
cancelFrame(this.render);
|
|
@@ -140,6 +140,9 @@ class VisualElement {
|
|
|
140
140
|
this.valueSubscriptions.get(key)();
|
|
141
141
|
}
|
|
142
142
|
const valueIsTransform = transformProps.has(key);
|
|
143
|
+
if (valueIsTransform && this.onBindTransform) {
|
|
144
|
+
this.onBindTransform();
|
|
145
|
+
}
|
|
143
146
|
const removeOnChange = value.on("change", (latestValue) => {
|
|
144
147
|
this.latestValues[key] = latestValue;
|
|
145
148
|
this.props.onUpdate && frame.preRender(this.notifyUpdate);
|
|
@@ -233,6 +236,7 @@ class VisualElement {
|
|
|
233
236
|
if (this.handleChildMotionValue) {
|
|
234
237
|
this.handleChildMotionValue();
|
|
235
238
|
}
|
|
239
|
+
this.onUpdate && this.onUpdate(this);
|
|
236
240
|
}
|
|
237
241
|
getProps() {
|
|
238
242
|
return this.props;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import "../../../../../../../../motion-utils@
|
|
2
|
-
import { resolveElements } from "../../../../../../../../motion-dom@
|
|
1
|
+
import "../../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
2
|
+
import { resolveElements } from "../../../../../../../../motion-dom@12.4.10/external/motion-dom/dist/es/utils/resolve-elements.mjs";
|
|
3
3
|
const resizeHandlers = /* @__PURE__ */ new WeakMap();
|
|
4
4
|
let observer;
|
|
5
5
|
function getElementSize(target, borderBoxSize) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { supportsScrollTimeline } from "../../../../../../../../motion-dom@
|
|
2
|
-
import "../../../../../../../../motion-utils@
|
|
3
|
-
import { noop } from "../../../../../../../../motion-utils@
|
|
1
|
+
import { supportsScrollTimeline } from "../../../../../../../../motion-dom@12.4.10/external/motion-dom/dist/es/utils/supports/scroll-timeline.mjs";
|
|
2
|
+
import "../../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
3
|
+
import { noop } from "../../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/noop.mjs";
|
|
4
4
|
import { observeTimeline } from "./observe.mjs";
|
|
5
5
|
import { scrollInfo } from "./track.mjs";
|
|
6
6
|
function scrollTimelineFallback({ source, container, axis = "y" }) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import "../../../../../../../../motion-utils@
|
|
2
|
-
import { progress } from "../../../../../../../../motion-utils@
|
|
1
|
+
import "../../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
2
|
+
import { progress } from "../../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/progress.mjs";
|
|
3
3
|
import { velocityPerSecond } from "../../../utils/velocity-per-second.mjs";
|
|
4
4
|
const maxElapsed = 50;
|
|
5
5
|
const createAxisInfo = () => ({
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { invariant } from "../../../../../../../../motion-utils@
|
|
1
|
+
import { invariant } from "../../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
2
2
|
import { isNumericalString } from "../../../utils/is-numerical-string.mjs";
|
|
3
3
|
import { isCSSVariableToken } from "./is-css-variable.mjs";
|
|
4
4
|
const splitCSSVariableRegex = (
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import "../../../../../../../../motion-utils@
|
|
2
|
-
import { resolveElements } from "../../../../../../../../motion-dom@
|
|
1
|
+
import "../../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
2
|
+
import { resolveElements } from "../../../../../../../../motion-dom@12.4.10/external/motion-dom/dist/es/utils/resolve-elements.mjs";
|
|
3
3
|
const thresholds = {
|
|
4
4
|
some: 0,
|
|
5
5
|
all: 1
|
|
@@ -13,7 +13,7 @@ function inView(elementOrSelector, onStart, { root, margin: rootMargin, amount =
|
|
|
13
13
|
if (entry.isIntersecting === Boolean(onEnd))
|
|
14
14
|
return;
|
|
15
15
|
if (entry.isIntersecting) {
|
|
16
|
-
const newOnEnd = onStart(entry);
|
|
16
|
+
const newOnEnd = onStart(entry.target, entry);
|
|
17
17
|
if (typeof newOnEnd === "function") {
|
|
18
18
|
activeIntersections.set(entry.target, newOnEnd);
|
|
19
19
|
} else {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { frame } from "../../frameloop/frame.mjs";
|
|
1
2
|
import { createBox } from "../../projection/geometry/models.mjs";
|
|
2
3
|
import { DOMVisualElement } from "../dom/DOMVisualElement.mjs";
|
|
3
4
|
import { camelToDash } from "../dom/utils/camel-to-dash.mjs";
|
|
@@ -6,6 +7,7 @@ import { transformProps } from "../html/utils/keys-transform.mjs";
|
|
|
6
7
|
import { buildSVGAttrs } from "./utils/build-attrs.mjs";
|
|
7
8
|
import { camelCaseAttributes } from "./utils/camel-case-attrs.mjs";
|
|
8
9
|
import { isSVGTag } from "./utils/is-svg-tag.mjs";
|
|
10
|
+
import { updateSVGDimensions } from "./utils/measure.mjs";
|
|
9
11
|
import { renderSVG } from "./utils/render.mjs";
|
|
10
12
|
import { scrapeMotionValuesFromProps } from "./utils/scrape-motion-values.mjs";
|
|
11
13
|
class SVGVisualElement extends DOMVisualElement {
|
|
@@ -14,6 +16,11 @@ class SVGVisualElement extends DOMVisualElement {
|
|
|
14
16
|
this.type = "svg";
|
|
15
17
|
this.isSVGTag = false;
|
|
16
18
|
this.measureInstanceViewportBox = createBox;
|
|
19
|
+
this.updateDimensions = () => {
|
|
20
|
+
if (this.current && !this.renderState.dimensions) {
|
|
21
|
+
updateSVGDimensions(this.current, this.renderState);
|
|
22
|
+
}
|
|
23
|
+
};
|
|
17
24
|
}
|
|
18
25
|
getBaseTargetFromProps(props, key) {
|
|
19
26
|
return props[key];
|
|
@@ -29,6 +36,11 @@ class SVGVisualElement extends DOMVisualElement {
|
|
|
29
36
|
scrapeMotionValuesFromProps(props, prevProps, visualElement) {
|
|
30
37
|
return scrapeMotionValuesFromProps(props, prevProps, visualElement);
|
|
31
38
|
}
|
|
39
|
+
onBindTransform() {
|
|
40
|
+
if (this.current && !this.renderState.dimensions) {
|
|
41
|
+
frame.postRender(this.updateDimensions);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
32
44
|
build(renderState, latestValues, props) {
|
|
33
45
|
buildSVGAttrs(renderState, latestValues, this.isSVGTag, props.transformTemplate);
|
|
34
46
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
function updateSVGDimensions(instance, renderState) {
|
|
2
|
+
try {
|
|
3
|
+
renderState.dimensions = typeof instance.getBBox === "function" ? instance.getBBox() : instance.getBoundingClientRect();
|
|
4
|
+
} catch (e) {
|
|
5
|
+
renderState.dimensions = {
|
|
6
|
+
x: 0,
|
|
7
|
+
y: 0,
|
|
8
|
+
width: 0,
|
|
9
|
+
height: 0
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
export {
|
|
14
|
+
updateSVGDimensions
|
|
15
|
+
};
|
|
@@ -8,7 +8,7 @@ function updateMotionValuesFromProps(element, next, prev) {
|
|
|
8
8
|
if (isMotionValue(nextValue)) {
|
|
9
9
|
element.addValue(key, nextValue);
|
|
10
10
|
if (process.env.NODE_ENV === "development") {
|
|
11
|
-
warnOnce(nextValue.version === "
|
|
11
|
+
warnOnce(nextValue.version === "12.4.10", `Attempting to mix Motion versions ${nextValue.version} with 12.4.10 may not work as expected.`);
|
|
12
12
|
}
|
|
13
13
|
} else if (isMotionValue(prevValue)) {
|
|
14
14
|
element.addValue(key, motionValue(nextValue, { owner: element }));
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import "../../../../../../motion-utils@
|
|
2
|
-
import { secondsToMilliseconds } from "../../../../../../motion-utils@
|
|
1
|
+
import "../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
2
|
+
import { secondsToMilliseconds } from "../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/time-conversion.mjs";
|
|
3
3
|
import { time } from "../frameloop/sync-time.mjs";
|
|
4
4
|
import { frame, cancelFrame } from "../frameloop/frame.mjs";
|
|
5
5
|
function delay(callback, timeout) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { invariant } from "../../../../../../motion-utils@
|
|
2
|
-
import { noop } from "../../../../../../motion-utils@
|
|
3
|
-
import { progress } from "../../../../../../motion-utils@
|
|
1
|
+
import { invariant } from "../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
2
|
+
import { noop } from "../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/noop.mjs";
|
|
3
|
+
import { progress } from "../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/progress.mjs";
|
|
4
4
|
import { clamp } from "./clamp.mjs";
|
|
5
5
|
import { mix } from "./mix/index.mjs";
|
|
6
6
|
import { pipe } from "./pipe.mjs";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { mixNumber } from "./number.mjs";
|
|
2
|
-
import { warning } from "../../../../../../../motion-utils@
|
|
2
|
+
import { warning } from "../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
3
3
|
import { hslaToRgba } from "../hsla-to-rgba.mjs";
|
|
4
4
|
import { hex } from "../../value/types/color/hex.mjs";
|
|
5
5
|
import { rgba } from "../../value/types/color/rgba.mjs";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { mixNumber as mixNumber$1 } from "./number.mjs";
|
|
2
2
|
import { mixColor } from "./color.mjs";
|
|
3
3
|
import { pipe } from "../pipe.mjs";
|
|
4
|
-
import { warning } from "../../../../../../../motion-utils@
|
|
4
|
+
import { warning } from "../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
5
5
|
import { color } from "../../value/types/color/index.mjs";
|
|
6
6
|
import { complex, analyseComplexValue } from "../../value/types/complex/index.mjs";
|
|
7
7
|
import { isCSSVariableToken } from "../../render/dom/utils/is-css-variable.mjs";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import "../../../../../../../motion-utils@
|
|
2
|
-
import { progress } from "../../../../../../../motion-utils@
|
|
1
|
+
import "../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
2
|
+
import { progress } from "../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/progress.mjs";
|
|
3
3
|
import { mixNumber } from "../mix/number.mjs";
|
|
4
4
|
function fillOffset(offset, remaining) {
|
|
5
5
|
const min = offset[offset.length - 1];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import "../../../../../../../../motion-utils@
|
|
2
|
-
import { millisecondsToSeconds } from "../../../../../../../../motion-utils@
|
|
1
|
+
import "../../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
2
|
+
import { millisecondsToSeconds } from "../../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/time-conversion.mjs";
|
|
3
3
|
import { calcGeneratorDuration, maxGeneratorDuration } from "./calc-duration.mjs";
|
|
4
4
|
function createGeneratorEasing(options, scale = 100, createGenerator) {
|
|
5
5
|
const generator = createGenerator({ ...options, keyframes: [0, scale] });
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import "../../../../../../../motion-utils@
|
|
2
|
-
import { noop } from "../../../../../../../motion-utils@
|
|
3
|
-
import { millisecondsToSeconds, secondsToMilliseconds } from "../../../../../../../motion-utils@
|
|
1
|
+
import "../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
2
|
+
import { noop } from "../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/noop.mjs";
|
|
3
|
+
import { millisecondsToSeconds, secondsToMilliseconds } from "../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/time-conversion.mjs";
|
|
4
4
|
import { attachTimeline } from "./utils/attach-timeline.mjs";
|
|
5
5
|
class NativeAnimationControls {
|
|
6
6
|
constructor(animation) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import "../../../../../../../../motion-utils@
|
|
2
|
-
import { progress } from "../../../../../../../../motion-utils@
|
|
1
|
+
import "../../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
2
|
+
import { progress } from "../../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/progress.mjs";
|
|
3
3
|
const generateLinearEasing = (easing, duration, resolution = 10) => {
|
|
4
4
|
let points = "";
|
|
5
5
|
const numPoints = Math.max(Math.round(duration / resolution), 2);
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
import { isDragActive } from "./drag/state/is-active.mjs";
|
|
2
2
|
import { setupGesture } from "./utils/setup.mjs";
|
|
3
|
-
function
|
|
4
|
-
return (event
|
|
5
|
-
if (event.pointerType === "touch" || isDragActive())
|
|
6
|
-
return;
|
|
7
|
-
callback(event);
|
|
8
|
-
};
|
|
3
|
+
function isValidHover(event) {
|
|
4
|
+
return !(event.pointerType === "touch" || isDragActive());
|
|
9
5
|
}
|
|
10
6
|
function hover(elementOrSelector, onHoverStart, options = {}) {
|
|
11
7
|
const [elements, eventOptions, cancel] = setupGesture(elementOrSelector, options);
|
|
12
|
-
const onPointerEnter =
|
|
8
|
+
const onPointerEnter = (enterEvent) => {
|
|
9
|
+
if (!isValidHover(enterEvent))
|
|
10
|
+
return;
|
|
13
11
|
const { target } = enterEvent;
|
|
14
|
-
const onHoverEnd = onHoverStart(enterEvent);
|
|
12
|
+
const onHoverEnd = onHoverStart(target, enterEvent);
|
|
15
13
|
if (typeof onHoverEnd !== "function" || !target)
|
|
16
14
|
return;
|
|
17
|
-
const onPointerLeave =
|
|
15
|
+
const onPointerLeave = (leaveEvent) => {
|
|
16
|
+
if (!isValidHover(leaveEvent))
|
|
17
|
+
return;
|
|
18
18
|
onHoverEnd(leaveEvent);
|
|
19
19
|
target.removeEventListener("pointerleave", onPointerLeave);
|
|
20
|
-
}
|
|
20
|
+
};
|
|
21
21
|
target.addEventListener("pointerleave", onPointerLeave, eventOptions);
|
|
22
|
-
}
|
|
22
|
+
};
|
|
23
23
|
elements.forEach((element) => {
|
|
24
24
|
element.addEventListener("pointerenter", onPointerEnter, eventOptions);
|
|
25
25
|
});
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { isDragActive } from "../drag/state/is-active.mjs";
|
|
2
|
+
import { capturePointer } from "../utils/capture-pointer.mjs";
|
|
3
|
+
import { isNodeOrChild } from "../utils/is-node-or-child.mjs";
|
|
4
|
+
import { isPrimaryPointer } from "../utils/is-primary-pointer.mjs";
|
|
5
|
+
import { setupGesture } from "../utils/setup.mjs";
|
|
6
|
+
import { isElementKeyboardAccessible } from "./utils/is-keyboard-accessible.mjs";
|
|
7
|
+
import { enableKeyboardPress } from "./utils/keyboard.mjs";
|
|
8
|
+
import { isPressing } from "./utils/state.mjs";
|
|
9
|
+
function isValidPressEvent(event) {
|
|
10
|
+
return isPrimaryPointer(event) && !isDragActive();
|
|
11
|
+
}
|
|
12
|
+
function press(targetOrSelector, onPressStart, options = {}) {
|
|
13
|
+
const [targets, eventOptions, cancelEvents] = setupGesture(targetOrSelector, options);
|
|
14
|
+
const startPress = (startEvent) => {
|
|
15
|
+
const target = startEvent.currentTarget;
|
|
16
|
+
if (!target || !isValidPressEvent(startEvent) || isPressing.has(target))
|
|
17
|
+
return;
|
|
18
|
+
isPressing.add(target);
|
|
19
|
+
capturePointer(startEvent, "set");
|
|
20
|
+
const onPressEnd = onPressStart(target, startEvent);
|
|
21
|
+
const onPointerEnd = (endEvent, success) => {
|
|
22
|
+
target.removeEventListener("pointerup", onPointerUp);
|
|
23
|
+
target.removeEventListener("pointercancel", onPointerCancel);
|
|
24
|
+
capturePointer(endEvent, "release");
|
|
25
|
+
if (!isValidPressEvent(endEvent) || !isPressing.has(target)) {
|
|
26
|
+
return;
|
|
27
|
+
}
|
|
28
|
+
isPressing.delete(target);
|
|
29
|
+
if (typeof onPressEnd === "function") {
|
|
30
|
+
onPressEnd(endEvent, { success });
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
const onPointerUp = (upEvent) => {
|
|
34
|
+
const isOutside = !upEvent.isTrusted ? false : checkOutside(upEvent, target instanceof Element ? target.getBoundingClientRect() : {
|
|
35
|
+
left: 0,
|
|
36
|
+
top: 0,
|
|
37
|
+
right: window.innerWidth,
|
|
38
|
+
bottom: window.innerHeight
|
|
39
|
+
});
|
|
40
|
+
if (isOutside) {
|
|
41
|
+
onPointerEnd(upEvent, false);
|
|
42
|
+
} else {
|
|
43
|
+
onPointerEnd(upEvent, !(target instanceof Element) || isNodeOrChild(target, upEvent.target));
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
const onPointerCancel = (cancelEvent) => {
|
|
47
|
+
onPointerEnd(cancelEvent, false);
|
|
48
|
+
};
|
|
49
|
+
target.addEventListener("pointerup", onPointerUp, eventOptions);
|
|
50
|
+
target.addEventListener("pointercancel", onPointerCancel, eventOptions);
|
|
51
|
+
target.addEventListener("lostpointercapture", onPointerCancel, eventOptions);
|
|
52
|
+
};
|
|
53
|
+
targets.forEach((target) => {
|
|
54
|
+
target = options.useGlobalTarget ? window : target;
|
|
55
|
+
let canAddKeyboardAccessibility = false;
|
|
56
|
+
if (target instanceof HTMLElement) {
|
|
57
|
+
canAddKeyboardAccessibility = true;
|
|
58
|
+
if (!isElementKeyboardAccessible(target) && target.getAttribute("tabindex") === null) {
|
|
59
|
+
target.tabIndex = 0;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
target.addEventListener("pointerdown", startPress, eventOptions);
|
|
63
|
+
if (canAddKeyboardAccessibility) {
|
|
64
|
+
target.addEventListener("focus", (event) => enableKeyboardPress(event, eventOptions), eventOptions);
|
|
65
|
+
}
|
|
66
|
+
});
|
|
67
|
+
return cancelEvents;
|
|
68
|
+
}
|
|
69
|
+
function checkOutside(event, rect) {
|
|
70
|
+
return event.clientX < rect.left || event.clientX > rect.right || event.clientY < rect.top || event.clientY > rect.bottom;
|
|
71
|
+
}
|
|
72
|
+
export {
|
|
73
|
+
press
|
|
74
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
function capturePointer(event, action) {
|
|
2
|
+
const actionName = `${action}PointerCapture`;
|
|
3
|
+
if (event.target instanceof Element && actionName in event.target && event.pointerId !== void 0) {
|
|
4
|
+
try {
|
|
5
|
+
event.target[actionName](event.pointerId);
|
|
6
|
+
} catch (e) {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
export {
|
|
11
|
+
capturePointer
|
|
12
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
function resolveElements(elementOrSelector, scope, selectorCache) {
|
|
2
2
|
var _a;
|
|
3
|
-
if (elementOrSelector instanceof
|
|
3
|
+
if (elementOrSelector instanceof EventTarget) {
|
|
4
4
|
return [elementOrSelector];
|
|
5
5
|
} else if (typeof elementOrSelector === "string") {
|
|
6
6
|
let root = document;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import "../../../../../../../motion-utils@
|
|
2
|
-
import { memo } from "../../../../../../../motion-utils@
|
|
1
|
+
import "../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/errors.mjs";
|
|
2
|
+
import { memo } from "../../../../../../../motion-utils@12.4.10/external/motion-utils/dist/es/memo.mjs";
|
|
3
3
|
import { supportsFlags } from "./flags.mjs";
|
|
4
4
|
function memoSupports(callback, supportsFlag) {
|
|
5
5
|
const memoized = memo(callback);
|