motion-v 1.0.0-beta.3 → 1.0.0-beta.4
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 +3089 -3584
- package/dist/es/animation/hooks/animation-controls.mjs +1 -1
- package/dist/es/animation/hooks/use-animate.mjs +1 -1
- package/dist/es/components/animate-presence/use-pop-layout.mjs +2 -1
- package/dist/es/components/motion/use-motion-state.d.ts +706 -706
- package/dist/es/components/reorder/index.d.ts +2808 -2808
- package/dist/es/components/reorder/utils.d.ts +1 -1
- package/dist/es/components/reorder/utils.mjs +2 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/animate/index.mjs +3 -2
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/animate/resolve-subjects.mjs +2 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/animate/sequence.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/animate/single-value.mjs +2 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/animate/subject.mjs +1 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/AcceleratedAnimation.mjs +247 -0
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/BaseAnimation.mjs +102 -0
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/MainThreadAnimation.mjs +281 -0
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/animation → framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators}/drivers/driver-frameloop.mjs +3 -2
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/animation → framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators}/utils/can-animate.mjs +3 -3
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/waapi/NativeAnimation.mjs +108 -0
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/waapi/animate-elements.mjs +32 -0
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/waapi/animate-style.mjs +14 -0
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/waapi/index.mjs +22 -0
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/waapi/utils/style.mjs +10 -0
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/supports/partial-keyframes.mjs → framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/waapi/utils/supports-partial-keyframes.mjs} +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/waapi/utils/supports-waapi.mjs +6 -0
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/animation/generators/keyframes.mjs +5 -5
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/animation/generators/spring/find.mjs +3 -3
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/animation/generators/spring/index.mjs +6 -15
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/animation/generators/utils/velocity.mjs +2 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/interfaces/motion-value.mjs +24 -16
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/interfaces/visual-element-target.mjs +6 -8
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/sequence/create.mjs +10 -10
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/sequence/utils/calc-time.mjs +2 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/sequence/utils/edit.mjs +4 -3
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/utils/default-transitions.mjs +1 -1
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/animation/keyframes → framer-motion@12.5.0/external/framer-motion/dist/es/animation}/utils/is-none.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/utils/stagger.mjs +1 -1
- package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils → framer-motion@12.5.0/external/framer-motion}/dist/es/easing/cubic-bezier.mjs +2 -1
- package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils → framer-motion@12.5.0/external/framer-motion}/dist/es/easing/steps.mjs +1 -1
- package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils → framer-motion@12.5.0/external/framer-motion}/dist/es/easing/utils/get-easing-for-segment.mjs +1 -1
- package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils → framer-motion@12.5.0/external/framer-motion}/dist/es/easing/utils/map.mjs +4 -7
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/motion/utils/is-forced-motion-value.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/animation/mix-values.mjs +14 -8
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/geometry/delta-apply.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/geometry/delta-calc.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/geometry/delta-remove.mjs +2 -2
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/node/create-projection-node.mjs +25 -48
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/shared/stack.mjs +2 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/styles/scale-border-radius.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/styles/scale-box-shadow.mjs +2 -2
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/styles/scale-correction.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/styles/transform.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/VisualElement.mjs +19 -15
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/animation/keyframes → framer-motion@12.5.0/external/framer-motion/dist/es/render/dom}/DOMKeyframesResolver.mjs +9 -9
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/dom/DOMVisualElement.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/dom/resize/handle-element.mjs +7 -6
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/scroll/index.mjs +70 -0
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/dom/scroll/info.mjs +3 -2
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es → framer-motion@12.5.0/external/framer-motion/dist/es/render/dom}/scroll/observe.mjs +3 -2
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/dom/scroll/offsets/index.mjs +3 -3
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/dom/scroll/on-scroll-handler.mjs +2 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/dom/scroll/track.mjs +4 -3
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/animation → framer-motion@12.5.0/external/framer-motion/dist/es/render/dom}/utils/css-variables-conversion.mjs +3 -3
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/animation/keyframes → framer-motion@12.5.0/external/framer-motion/dist/es/render/dom}/utils/unit-conversion.mjs +2 -2
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/value/types/utils → framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/value-types}/animatable-none.mjs +3 -3
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/value/types/maps → framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/value-types}/defaults.mjs +2 -2
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/value/types → framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/value-types}/dimensions.mjs +3 -3
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/value-types/find.mjs +9 -0
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/value/types/maps/number.mjs → framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/value-types/number-browser.mjs} +4 -13
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/value-types/number.mjs +18 -0
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/value/types/maps → framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/value-types}/transform.mjs +2 -2
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/value/types/int.mjs → framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/value-types/type-int.mjs} +1 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/dom/viewport/index.mjs +2 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/html/HTMLVisualElement.mjs +3 -3
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/html/utils/build-styles.mjs +4 -4
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/html/utils/build-transform.mjs +3 -3
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/render → framer-motion@12.5.0/external/framer-motion/dist/es/render/html}/utils/keys-transform.mjs +1 -1
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/animation/keyframes → framer-motion@12.5.0/external/framer-motion/dist/es/render/html}/utils/make-none-animatable.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/html/utils/scrape-motion-values.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/svg/SVGVisualElement.mjs +15 -2
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/svg/utils/build-attrs.mjs +8 -9
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/svg/utils/measure.mjs +15 -0
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/svg/utils/path.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/svg/utils/scrape-motion-values.mjs +1 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/svg/utils/transform-origin.mjs +12 -0
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/animation/keyframes → framer-motion@12.5.0/external/framer-motion/dist/es/render/utils}/KeyframesResolver.mjs +28 -26
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/utils/flat-tree.mjs +2 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/utils/motion-values.mjs +4 -3
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/utils/resolve-variants.mjs +1 -1
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/utils/setters.mjs +3 -5
- package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/utils/delay.mjs +5 -4
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/utils/interpolate.mjs +6 -7
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/utils/mix/color.mjs +4 -4
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/utils/mix/complex.mjs +8 -7
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/animation/keyframes → framer-motion@12.5.0/external/framer-motion/dist/es/utils}/offsets/fill.mjs +3 -2
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/utils/resolve-value.mjs +11 -0
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/utils/transform.mjs +8 -1
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/value/types/color/rgba.mjs +1 -1
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/value/types/complex/index.mjs +1 -1
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/value/types/numbers/index.mjs +1 -1
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/value/types/numbers/units.mjs +3 -3
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/value/use-will-change/add-will-change.mjs +10 -0
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/value/utils/resolve-motion-value.mjs +9 -0
- package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/animation/GroupAnimation.mjs → motion-dom@12.5.0/external/motion-dom/dist/es/animation/controls/BaseGroup.mjs} +15 -8
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/controls/Group.mjs +9 -0
- package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/animation/generators/utils/create-generator-easing.mjs +2 -1
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/generators/utils/is-generator.mjs +6 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/utils/get-value-transition.mjs +6 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/waapi/NativeAnimationControls.mjs +81 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/waapi/utils/attach-timeline.mjs +7 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/waapi/utils/easing.mjs +37 -0
- package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/animation/waapi/utils/linear.mjs +3 -1
- package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/frameloop/batcher.mjs +4 -6
- package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/frameloop/frame.mjs +2 -1
- package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/frameloop/order.mjs +0 -4
- package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/frameloop/sync-time.mjs +2 -1
- package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/gestures/drag/state/is-active.mjs +1 -1
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/gestures/press/index.mjs +74 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/gestures/utils/capture-pointer.mjs +12 -0
- package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/utils/resolve-elements.mjs +2 -1
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/utils/supports/flags.mjs +6 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/utils/supports/memo.mjs +13 -0
- package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/utils/supports/scroll-timeline.mjs +2 -1
- package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/value/index.mjs +10 -12
- package/dist/es/external/.pnpm/motion-utils@12.5.0/external/motion-utils/dist/es/array.mjs +13 -0
- package/dist/es/external/.pnpm/{motion-utils@12.8.3 → motion-utils@12.5.0}/external/motion-utils/dist/es/errors.mjs +3 -4
- package/dist/es/external/.pnpm/motion-utils@12.5.0/external/motion-utils/dist/es/global-config.mjs +7 -0
- package/dist/es/external/.pnpm/{motion-utils@12.8.3 → motion-utils@12.5.0}/external/motion-utils/dist/es/warn-once.mjs +0 -6
- package/dist/es/features/animation/animation.mjs +4 -3
- package/dist/es/features/gestures/drag/VisualElementDragControls.mjs +3 -2
- package/dist/es/features/gestures/drag/index.mjs +2 -1
- package/dist/es/features/gestures/focus/index.mjs +1 -1
- package/dist/es/features/gestures/hover/index.mjs +3 -2
- package/dist/es/features/gestures/in-view/index.mjs +3 -2
- package/dist/es/features/gestures/pan/PanSession.mjs +5 -4
- package/dist/es/features/gestures/pan/index.mjs +3 -2
- package/dist/es/features/gestures/press/index.mjs +3 -2
- 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/index.mjs +36 -243
- package/dist/es/state/animate-variants-children.d.ts +15 -0
- package/dist/es/state/create-visual-element.mjs +2 -2
- package/dist/es/state/motion-state.mjs +6 -2
- package/dist/es/state/utils.d.ts +2 -2
- package/dist/es/types/index.d.ts +1 -0
- package/dist/es/types/transform.d.ts +23 -0
- package/dist/es/utils/index.d.ts +1 -0
- package/dist/es/utils/time-conversion.mjs +8 -0
- package/dist/es/utils/use-animation-frame.mjs +2 -1
- package/dist/es/utils/use-in-view.mjs +1 -1
- package/dist/es/value/use-combine-values.mjs +3 -2
- package/dist/es/value/use-computed.mjs +2 -1
- package/dist/es/value/use-scroll.d.ts +4 -4
- package/dist/es/value/use-scroll.mjs +3 -2
- package/dist/es/value/use-spring.mjs +7 -6
- package/dist/es/value/use-time.d.ts +1 -1
- package/dist/es/value/use-time.mjs +2 -1
- package/dist/es/value/use-transform.d.ts +2 -1
- package/dist/es/value/use-transform.mjs +1 -1
- package/dist/es/value/use-velocity.mjs +3 -2
- package/package.json +4 -3
- package/dist/es/external/.pnpm/framer-motion@12.9.0/external/framer-motion/dist/es/animation/animators/waapi/animate-elements.mjs +0 -73
- package/dist/es/external/.pnpm/framer-motion@12.9.0/external/framer-motion/dist/es/animation/animators/waapi/animate-style.mjs +0 -13
- package/dist/es/external/.pnpm/framer-motion@12.9.0/external/framer-motion/dist/es/render/dom/scroll/attach-animation.mjs +0 -17
- package/dist/es/external/.pnpm/framer-motion@12.9.0/external/framer-motion/dist/es/render/dom/scroll/attach-function.mjs +0 -18
- package/dist/es/external/.pnpm/framer-motion@12.9.0/external/framer-motion/dist/es/render/dom/scroll/index.mjs +0 -9
- package/dist/es/external/.pnpm/framer-motion@12.9.0/external/framer-motion/dist/es/render/dom/scroll/utils/get-timeline.mjs +0 -27
- package/dist/es/external/.pnpm/framer-motion@12.9.0/external/framer-motion/dist/es/value/use-will-change/add-will-change.mjs +0 -15
- package/dist/es/external/.pnpm/framer-motion@12.9.0/external/framer-motion/dist/es/value/utils/resolve-motion-value.mjs +0 -7
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/AsyncMotionValueAnimation.mjs +0 -133
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/GroupAnimationWithThen.mjs +0 -10
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/JSAnimation.mjs +0 -261
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/NativeAnimation.mjs +0 -150
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/NativeAnimationExtended.mjs +0 -44
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/NativeAnimationWrapper.mjs +0 -14
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/generators/utils/is-generator.mjs +0 -6
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/keyframes/get-final.mjs +0 -10
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/keyframes/utils/apply-px-defaults.mjs +0 -11
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/keyframes/utils/fill-wildcards.mjs +0 -8
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/utils/WithPromise.mjs +0 -29
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/utils/active-animations.mjs +0 -11
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/utils/get-value-transition.mjs +0 -6
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/utils/replace-transition-type.mjs +0 -18
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/easing/cubic-bezier.mjs +0 -4
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/easing/is-supported.mjs +0 -9
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/easing/map-easing.mjs +0 -21
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/easing/supported.mjs +0 -15
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/start-waapi-animation.mjs +0 -36
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/supports/waapi.mjs +0 -26
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/utils/apply-generator.mjs +0 -14
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/utils/px-values.mjs +0 -40
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/utils/unsupported-easing.mjs +0 -19
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/effects/style-effect.mjs +0 -30
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/frameloop/index-legacy.mjs +0 -11
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/gestures/drag/state/set-active.mjs +0 -25
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/gestures/press/index.mjs +0 -53
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/render/dom/is-css-var.mjs +0 -4
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/render/dom/style-computed.mjs +0 -8
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/render/dom/style-set.mjs +0 -7
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/stats/animation-count.mjs +0 -8
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/stats/index.mjs +0 -114
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/utils/supports/flags.mjs +0 -4
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/utils/supports/memo.mjs +0 -9
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/map-value.mjs +0 -9
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/subscribe-value.mjs +0 -13
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/transform-value.mjs +0 -14
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/utils/find.mjs +0 -9
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/view/index.mjs +0 -65
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/view/queue.mjs +0 -45
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/view/start.mjs +0 -115
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/view/utils/choose-layer-type.mjs +0 -12
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/view/utils/css.mjs +0 -35
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/view/utils/get-layer-name.mjs +0 -9
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/view/utils/get-view-animations.mjs +0 -13
- package/dist/es/external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/view/utils/has-target.mjs +0 -6
- package/dist/es/external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/array.mjs +0 -23
- package/dist/es/external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/global-config.mjs +0 -4
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi → framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators}/utils/accelerated-values.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/animators/waapi/utils/get-final-keyframe.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/animation/generators/inertia.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/animation/generators/spring/defaults.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/optimized-appear/data-id.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/optimized-appear/get-appear-id.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/sequence/utils/calc-repeat-duration.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/sequence/utils/normalize-times.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/sequence/utils/sort.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/utils/create-visual-element.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/animation/utils/is-animatable.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/utils/is-animation-controls.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/utils/is-dom-keyframes.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/utils/is-keyframes-target.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/animation/utils/is-transition-defined.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils → framer-motion@12.5.0/external/framer-motion}/dist/es/easing/anticipate.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils → framer-motion@12.5.0/external/framer-motion}/dist/es/easing/back.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils → framer-motion@12.5.0/external/framer-motion}/dist/es/easing/circ.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils → framer-motion@12.5.0/external/framer-motion}/dist/es/easing/ease.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils → framer-motion@12.5.0/external/framer-motion}/dist/es/easing/modifiers/mirror.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils → framer-motion@12.5.0/external/framer-motion}/dist/es/easing/modifiers/reverse.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils → framer-motion@12.5.0/external/framer-motion}/dist/es/easing/utils/is-easing-array.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/events/add-dom-event.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/motion/features/definitions.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/geometry/conversion.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/geometry/copy.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/geometry/models.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/geometry/utils.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/node/DocumentProjectionNode.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/node/HTMLProjectionNode.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/node/state.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/utils/each-axis.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/utils/has-transform.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/projection/utils/measure.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/dom/resize/handle-window.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/dom/resize/index.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/dom/scroll/offsets/edge.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/dom/scroll/offsets/inset.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/dom/scroll/offsets/offset.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/dom/scroll/offsets/presets.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/dom/utils/camel-to-dash.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/animation → framer-motion@12.5.0/external/framer-motion/dist/es/render/dom}/utils/is-css-variable.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/dom/utils/is-svg-element.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/value/types/utils → framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/value-types}/get-as-type.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/value/types → framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/value-types}/test.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/value/types/auto.mjs → framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/value-types/type-auto.mjs} +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/render → framer-motion@12.5.0/external/framer-motion/dist/es/render/html}/utils/keys-position.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/render/dom → framer-motion@12.5.0/external/framer-motion/dist/es/render/html/utils}/parse-transform.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/html/utils/render.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/object/ObjectVisualElement.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/store.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/svg/utils/camel-case-attrs.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/svg/utils/is-svg-tag.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/svg/utils/render.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/utils/compare-by-depth.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/utils/is-controlling-variants.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/utils/is-variant-label.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/utils/resolve-dynamic-variants.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/render/utils/variant-props.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils/dist/es → framer-motion@12.5.0/external/framer-motion/dist/es/utils}/clamp.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/utils/distance.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/value/types/color → framer-motion@12.5.0/external/framer-motion/dist/es/utils}/hsla-to-rgba.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/utils/is-browser.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils/dist/es → framer-motion@12.5.0/external/framer-motion/dist/es/utils}/is-numerical-string.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils/dist/es → framer-motion@12.5.0/external/framer-motion/dist/es/utils}/is-zero-value-string.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/utils/mix/immediate.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/utils/mix/index.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/utils/mix/number.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/utils/mix/visibility.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/animation/keyframes → framer-motion@12.5.0/external/framer-motion/dist/es/utils}/offsets/default.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom/dist/es/animation/keyframes → framer-motion@12.5.0/external/framer-motion/dist/es/utils}/offsets/time.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils/dist/es → framer-motion@12.5.0/external/framer-motion/dist/es/utils}/pipe.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/utils/reduced-motion/index.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/utils/reduced-motion/state.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils/dist/es → framer-motion@12.5.0/external/framer-motion/dist/es/utils}/wrap.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/value/types/color/hex.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/value/types/color/hsla.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/value/types/color/index.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/value/types/color/utils.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/value/types/complex/filter.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/value/types/utils/color-regex.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/value/types/utils/float-regex.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/value/types/utils/is-nullish.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/value/types/utils/sanitize.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0/external/motion-dom → framer-motion@12.5.0/external/framer-motion}/dist/es/value/types/utils/single-color-regex.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/value/use-will-change/is.mjs +0 -0
- /package/dist/es/external/.pnpm/{framer-motion@12.9.0 → framer-motion@12.5.0}/external/framer-motion/dist/es/value/utils/is-motion-value.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/animation/generators/utils/calc-duration.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/frameloop/microtask.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/frameloop/render-step.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/gestures/hover.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/gestures/press/utils/keyboard.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/gestures/press/utils/state.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/gestures/utils/is-node-or-child.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/gestures/utils/is-primary-pointer.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/gestures/utils/setup.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/stats/buffer.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3/external/motion-utils/dist/es/easing → motion-dom@12.5.0/external/motion-dom/dist/es}/utils/is-bezier-definition.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-dom@12.9.0 → motion-dom@12.5.0}/external/motion-dom/dist/es/utils/supports/linear-easing.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3 → motion-utils@12.5.0}/external/motion-utils/dist/es/memo.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3 → motion-utils@12.5.0}/external/motion-utils/dist/es/noop.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3 → motion-utils@12.5.0}/external/motion-utils/dist/es/progress.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3 → motion-utils@12.5.0}/external/motion-utils/dist/es/subscription-manager.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3 → motion-utils@12.5.0}/external/motion-utils/dist/es/time-conversion.mjs +0 -0
- /package/dist/es/external/.pnpm/{motion-utils@12.8.3 → motion-utils@12.5.0}/external/motion-utils/dist/es/velocity-per-second.mjs +0 -0
package/dist/es/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { addScaleCorrector } from "./external/.pnpm/framer-motion@12.
|
|
1
|
+
import { addScaleCorrector } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/projection/styles/scale-correction.mjs";
|
|
2
2
|
import { default as default2 } from "./components/LayoutGroup.vue.mjs";
|
|
3
3
|
import { useLayoutGroup } from "./components/use-layout-group.mjs";
|
|
4
4
|
import { injectLayoutGroup, injectMotion, provideLayoutGroup, provideMotion } from "./components/context.mjs";
|
|
@@ -8,127 +8,40 @@ import { domAnimation } from "./features/dom-animation.mjs";
|
|
|
8
8
|
import { default as default3 } from "./components/RowValue.vue.mjs";
|
|
9
9
|
import { default as default4 } from "./components/animate-presence/AnimatePresence.vue.mjs";
|
|
10
10
|
import { default as default5 } from "./components/motion-config/MotionConfig.vue.mjs";
|
|
11
|
-
import { MotionValue,
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import { isWaapiSupportedEasing } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/easing/is-supported.mjs";
|
|
46
|
-
import { mapEasingToNativeEasing } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/easing/map-easing.mjs";
|
|
47
|
-
import { supportedWaapiEasing } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/easing/supported.mjs";
|
|
48
|
-
import { startWaapiAnimation } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/start-waapi-animation.mjs";
|
|
49
|
-
import { supportsPartialKeyframes } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/supports/partial-keyframes.mjs";
|
|
50
|
-
import { supportsBrowserAnimation } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/supports/waapi.mjs";
|
|
51
|
-
import { acceleratedValues } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/utils/accelerated-values.mjs";
|
|
52
|
-
import { generateLinearEasing } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/animation/waapi/utils/linear.mjs";
|
|
53
|
-
import { styleEffect } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/effects/style-effect.mjs";
|
|
54
|
-
import { createRenderBatcher } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/frameloop/batcher.mjs";
|
|
55
|
-
import { cancelMicrotask, microtask } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/frameloop/microtask.mjs";
|
|
56
|
-
import { time } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/frameloop/sync-time.mjs";
|
|
57
|
-
import { isDragActive, isDragging } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/gestures/drag/state/is-active.mjs";
|
|
58
|
-
import { setDragLock } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/gestures/drag/state/set-active.mjs";
|
|
59
|
-
import { hover } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/gestures/hover.mjs";
|
|
60
|
-
import { press } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/gestures/press/index.mjs";
|
|
61
|
-
import { isNodeOrChild } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/gestures/utils/is-node-or-child.mjs";
|
|
62
|
-
import { isPrimaryPointer } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/gestures/utils/is-primary-pointer.mjs";
|
|
63
|
-
import { parseValueFromTransform, readTransformValue } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/render/dom/parse-transform.mjs";
|
|
64
|
-
import { getComputedStyle } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/render/dom/style-computed.mjs";
|
|
65
|
-
import { setStyle } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/render/dom/style-set.mjs";
|
|
66
|
-
import { positionalKeys } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/render/utils/keys-position.mjs";
|
|
67
|
-
import { transformPropOrder, transformProps } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/render/utils/keys-transform.mjs";
|
|
68
|
-
import { observeTimeline } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/scroll/observe.mjs";
|
|
69
|
-
import { recordStats } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/stats/index.mjs";
|
|
70
|
-
import { activeAnimations } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/stats/animation-count.mjs";
|
|
71
|
-
import { statsBuffer } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/stats/buffer.mjs";
|
|
72
|
-
import { interpolate } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/utils/interpolate.mjs";
|
|
73
|
-
import { mix } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/utils/mix/index.mjs";
|
|
74
|
-
import { mixColor, mixLinearColor } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/utils/mix/color.mjs";
|
|
75
|
-
import { getMixer, mixArray, mixComplex, mixObject } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/utils/mix/complex.mjs";
|
|
76
|
-
import { mixImmediate } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/utils/mix/immediate.mjs";
|
|
77
|
-
import { mixNumber } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/utils/mix/number.mjs";
|
|
78
|
-
import { invisibleValues, mixVisibility } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/utils/mix/visibility.mjs";
|
|
79
|
-
import { resolveElements } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/utils/resolve-elements.mjs";
|
|
80
|
-
import { supportsFlags } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/utils/supports/flags.mjs";
|
|
81
|
-
import { supportsLinearEasing } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/utils/supports/linear-easing.mjs";
|
|
82
|
-
import { supportsScrollTimeline } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/utils/supports/scroll-timeline.mjs";
|
|
83
|
-
import { transform } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/utils/transform.mjs";
|
|
84
|
-
import { mapValue } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/map-value.mjs";
|
|
85
|
-
import { transformValue } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/transform-value.mjs";
|
|
86
|
-
import { color } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/color/index.mjs";
|
|
87
|
-
import { hex } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/color/hex.mjs";
|
|
88
|
-
import { hsla } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/color/hsla.mjs";
|
|
89
|
-
import { hslaToRgba } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/color/hsla-to-rgba.mjs";
|
|
90
|
-
import { rgbUnit, rgba } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/color/rgba.mjs";
|
|
91
|
-
import { analyseComplexValue, complex } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/complex/index.mjs";
|
|
92
|
-
import { dimensionValueTypes, findDimensionValueType } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/dimensions.mjs";
|
|
93
|
-
import { defaultValueTypes, getDefaultValueType } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/maps/defaults.mjs";
|
|
94
|
-
import { numberValueTypes } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/maps/number.mjs";
|
|
95
|
-
import { transformValueTypes } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/maps/transform.mjs";
|
|
96
|
-
import { alpha, number, scale } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/numbers/index.mjs";
|
|
97
|
-
import { degrees, percent, progressPercentage, px, vh, vw } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/numbers/units.mjs";
|
|
98
|
-
import { testValueType } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/test.mjs";
|
|
99
|
-
import { getAnimatableNone } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/utils/animatable-none.mjs";
|
|
100
|
-
import { findValueType } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/utils/find.mjs";
|
|
101
|
-
import { getValueAsType } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/types/utils/get-as-type.mjs";
|
|
102
|
-
import { ViewTransitionBuilder, animateView } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/view/index.mjs";
|
|
103
|
-
import { cancelSync, sync } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/frameloop/index-legacy.mjs";
|
|
104
|
-
import { cancelFrame, frame, frameData, frameSteps } from "./external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/frameloop/frame.mjs";
|
|
105
|
-
import { addUniqueItem, moveItem, removeItem } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/array.mjs";
|
|
106
|
-
import { clamp } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/clamp.mjs";
|
|
107
|
-
import { invariant, warning } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/errors.mjs";
|
|
108
|
-
import { MotionGlobalConfig } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/global-config.mjs";
|
|
109
|
-
import { isNumericalString } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/is-numerical-string.mjs";
|
|
110
|
-
import { isZeroValueString } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/is-zero-value-string.mjs";
|
|
111
|
-
import { memo } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/memo.mjs";
|
|
112
|
-
import { noop } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/noop.mjs";
|
|
113
|
-
import { pipe } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/pipe.mjs";
|
|
114
|
-
import { progress } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/progress.mjs";
|
|
115
|
-
import { SubscriptionManager } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/subscription-manager.mjs";
|
|
116
|
-
import { millisecondsToSeconds, secondsToMilliseconds } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/time-conversion.mjs";
|
|
117
|
-
import { velocityPerSecond } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/velocity-per-second.mjs";
|
|
118
|
-
import { hasWarned, warnOnce } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/warn-once.mjs";
|
|
119
|
-
import { wrap } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/wrap.mjs";
|
|
120
|
-
import { anticipate } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/easing/anticipate.mjs";
|
|
121
|
-
import { backIn, backInOut, backOut } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/easing/back.mjs";
|
|
122
|
-
import { circIn, circInOut, circOut } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/easing/circ.mjs";
|
|
123
|
-
import { cubicBezier } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/easing/cubic-bezier.mjs";
|
|
124
|
-
import { easeIn, easeInOut, easeOut } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/easing/ease.mjs";
|
|
125
|
-
import { mirrorEasing } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/easing/modifiers/mirror.mjs";
|
|
126
|
-
import { reverseEasing } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/easing/modifiers/reverse.mjs";
|
|
127
|
-
import { steps } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/easing/steps.mjs";
|
|
128
|
-
import { getEasingForSegment } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/easing/utils/get-easing-for-segment.mjs";
|
|
129
|
-
import { isBezierDefinition } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/easing/utils/is-bezier-definition.mjs";
|
|
130
|
-
import { isEasingArray } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/easing/utils/is-easing-array.mjs";
|
|
131
|
-
import { easingDefinitionToFunction } from "./external/.pnpm/motion-utils@12.8.3/external/motion-utils/dist/es/easing/utils/map.mjs";
|
|
11
|
+
import { MotionValue, motionValue, motionValue as motionValue2 } from "./external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/value/index.mjs";
|
|
12
|
+
import { cancelFrame, frame, frameData } from "./external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/frameloop/frame.mjs";
|
|
13
|
+
import { hover } from "./external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/gestures/hover.mjs";
|
|
14
|
+
import { isDragActive } from "./external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/gestures/drag/state/is-active.mjs";
|
|
15
|
+
import { press } from "./external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/gestures/press/index.mjs";
|
|
16
|
+
import { time } from "./external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/frameloop/sync-time.mjs";
|
|
17
|
+
import { invariant } from "./external/.pnpm/motion-utils@12.5.0/external/motion-utils/dist/es/errors.mjs";
|
|
18
|
+
import { noop } from "./external/.pnpm/motion-utils@12.5.0/external/motion-utils/dist/es/noop.mjs";
|
|
19
|
+
import { progress } from "./external/.pnpm/motion-utils@12.5.0/external/motion-utils/dist/es/progress.mjs";
|
|
20
|
+
import { animate, createScopedAnimate } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animate/index.mjs";
|
|
21
|
+
import { animateMini } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/waapi/animate-style.mjs";
|
|
22
|
+
import { scroll } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/scroll/index.mjs";
|
|
23
|
+
import { scrollInfo } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/scroll/track.mjs";
|
|
24
|
+
import { inView } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/viewport/index.mjs";
|
|
25
|
+
import { anticipate } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/easing/anticipate.mjs";
|
|
26
|
+
import { backIn, backInOut, backOut } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/easing/back.mjs";
|
|
27
|
+
import { circIn, circInOut, circOut } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/easing/circ.mjs";
|
|
28
|
+
import { cubicBezier } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/easing/cubic-bezier.mjs";
|
|
29
|
+
import { easeIn, easeInOut, easeOut } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/easing/ease.mjs";
|
|
30
|
+
import { mirrorEasing } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/easing/modifiers/mirror.mjs";
|
|
31
|
+
import { reverseEasing } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/easing/modifiers/reverse.mjs";
|
|
32
|
+
import { steps } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/easing/steps.mjs";
|
|
33
|
+
import { inertia } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/generators/inertia.mjs";
|
|
34
|
+
import { keyframes } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/generators/keyframes.mjs";
|
|
35
|
+
import { spring } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/generators/spring/index.mjs";
|
|
36
|
+
import { stagger } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/utils/stagger.mjs";
|
|
37
|
+
import { clamp } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/utils/clamp.mjs";
|
|
38
|
+
import { delayInSeconds } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/utils/delay.mjs";
|
|
39
|
+
import { distance, distance2D } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/utils/distance.mjs";
|
|
40
|
+
import { interpolate } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/utils/interpolate.mjs";
|
|
41
|
+
import { mix } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/utils/mix/index.mjs";
|
|
42
|
+
import { pipe } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/utils/pipe.mjs";
|
|
43
|
+
import { transform } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/utils/transform.mjs";
|
|
44
|
+
import { wrap } from "./external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/utils/wrap.mjs";
|
|
132
45
|
import { Motion, motion } from "./components/motion/index.mjs";
|
|
133
46
|
import { mountedStates } from "./state/motion-state.mjs";
|
|
134
47
|
import { provideMotionConfig, useMotionConfig } from "./components/motion-config/context.mjs";
|
|
@@ -151,72 +64,37 @@ import { createContext } from "./utils/createContext.mjs";
|
|
|
151
64
|
import { isMotionValue } from "./utils/motion-value.mjs";
|
|
152
65
|
import { useInView } from "./utils/use-in-view.mjs";
|
|
153
66
|
import { useAnimationFrame } from "./utils/use-animation-frame.mjs";
|
|
67
|
+
import { millisecondsToSeconds, secondsToMilliseconds } from "./utils/time-conversion.mjs";
|
|
154
68
|
import { getContextWindow } from "./utils/get-context-window.mjs";
|
|
155
69
|
import { useDomRef } from "./utils/use-dom-ref.mjs";
|
|
156
70
|
export {
|
|
157
71
|
default4 as AnimatePresence,
|
|
158
|
-
AsyncMotionValueAnimation,
|
|
159
|
-
DOMKeyframesResolver,
|
|
160
|
-
GroupAnimation,
|
|
161
|
-
GroupAnimationWithThen,
|
|
162
|
-
JSAnimation,
|
|
163
|
-
KeyframeResolver,
|
|
164
72
|
default2 as LayoutGroup,
|
|
165
73
|
LazyMotion,
|
|
166
74
|
M,
|
|
167
75
|
Motion,
|
|
168
76
|
default5 as MotionConfig,
|
|
169
|
-
MotionGlobalConfig,
|
|
170
77
|
MotionValue,
|
|
171
|
-
NativeAnimation,
|
|
172
|
-
NativeAnimationExtended,
|
|
173
|
-
NativeAnimationWrapper,
|
|
174
78
|
Reorder,
|
|
175
79
|
ReorderGroup,
|
|
176
80
|
ReorderItem,
|
|
177
81
|
default3 as RowValue,
|
|
178
|
-
SubscriptionManager,
|
|
179
|
-
ViewTransitionBuilder,
|
|
180
|
-
acceleratedValues,
|
|
181
|
-
activeAnimations,
|
|
182
82
|
addScaleCorrector,
|
|
183
|
-
addUniqueItem,
|
|
184
|
-
alpha,
|
|
185
|
-
analyseComplexValue,
|
|
186
83
|
animate,
|
|
187
84
|
animateMini,
|
|
188
|
-
animateValue,
|
|
189
|
-
animateView,
|
|
190
|
-
animationMapKey,
|
|
191
85
|
anticipate,
|
|
192
|
-
applyPxDefaults,
|
|
193
86
|
backIn,
|
|
194
87
|
backInOut,
|
|
195
88
|
backOut,
|
|
196
|
-
calcGeneratorDuration,
|
|
197
89
|
cancelFrame,
|
|
198
|
-
cancelMicrotask,
|
|
199
|
-
cancelSync,
|
|
200
90
|
circIn,
|
|
201
91
|
circInOut,
|
|
202
92
|
circOut,
|
|
203
93
|
clamp,
|
|
204
|
-
collectMotionValues,
|
|
205
|
-
color,
|
|
206
|
-
complex,
|
|
207
|
-
convertOffsetToTimes,
|
|
208
94
|
createContext,
|
|
209
|
-
createGeneratorEasing,
|
|
210
|
-
createRenderBatcher,
|
|
211
95
|
createScopedAnimate,
|
|
212
96
|
cubicBezier,
|
|
213
|
-
cubicBezierAsString,
|
|
214
|
-
defaultEasing,
|
|
215
|
-
defaultOffset,
|
|
216
|
-
defaultValueTypes,
|
|
217
|
-
degrees,
|
|
218
97
|
delayInSeconds as delay,
|
|
219
|
-
dimensionValueTypes,
|
|
220
98
|
distance,
|
|
221
99
|
distance2D,
|
|
222
100
|
domAnimation,
|
|
@@ -224,122 +102,42 @@ export {
|
|
|
224
102
|
easeIn,
|
|
225
103
|
easeInOut,
|
|
226
104
|
easeOut,
|
|
227
|
-
easingDefinitionToFunction,
|
|
228
|
-
fillOffset,
|
|
229
|
-
fillWildcards,
|
|
230
|
-
findDimensionValueType,
|
|
231
|
-
findValueType,
|
|
232
|
-
flushKeyframeResolvers,
|
|
233
105
|
frame,
|
|
234
106
|
frameData,
|
|
235
|
-
frameSteps,
|
|
236
|
-
generateLinearEasing,
|
|
237
|
-
getAnimatableNone,
|
|
238
|
-
getAnimationMap,
|
|
239
|
-
getComputedStyle,
|
|
240
107
|
getContextWindow,
|
|
241
|
-
getDefaultValueType,
|
|
242
|
-
getEasingForSegment,
|
|
243
|
-
getMixer,
|
|
244
|
-
getValueAsType,
|
|
245
|
-
getValueTransition,
|
|
246
|
-
getVariableValue,
|
|
247
|
-
hasWarned,
|
|
248
|
-
hex,
|
|
249
108
|
hover,
|
|
250
|
-
hsla,
|
|
251
|
-
hslaToRgba,
|
|
252
109
|
inView,
|
|
253
110
|
inertia,
|
|
254
111
|
injectLayoutGroup,
|
|
255
112
|
injectMotion,
|
|
256
113
|
interpolate,
|
|
257
114
|
invariant,
|
|
258
|
-
invisibleValues,
|
|
259
|
-
isBezierDefinition,
|
|
260
|
-
isCSSVariableName,
|
|
261
|
-
isCSSVariableToken,
|
|
262
115
|
isDragActive,
|
|
263
|
-
isDragging,
|
|
264
|
-
isEasingArray,
|
|
265
|
-
isGenerator,
|
|
266
116
|
isMotionValue,
|
|
267
|
-
isNodeOrChild,
|
|
268
|
-
isNumericalString,
|
|
269
|
-
isPrimaryPointer,
|
|
270
|
-
isWaapiSupportedEasing,
|
|
271
|
-
isZeroValueString,
|
|
272
117
|
keyframes,
|
|
273
118
|
m,
|
|
274
|
-
mapEasingToNativeEasing,
|
|
275
|
-
mapValue,
|
|
276
|
-
maxGeneratorDuration,
|
|
277
|
-
memo,
|
|
278
|
-
microtask,
|
|
279
119
|
millisecondsToSeconds,
|
|
280
120
|
mirrorEasing,
|
|
281
121
|
mix,
|
|
282
|
-
mixArray,
|
|
283
|
-
mixColor,
|
|
284
|
-
mixComplex,
|
|
285
|
-
mixImmediate,
|
|
286
|
-
mixLinearColor,
|
|
287
|
-
mixNumber,
|
|
288
|
-
mixObject,
|
|
289
|
-
mixVisibility,
|
|
290
122
|
motion,
|
|
291
123
|
motionValue,
|
|
292
124
|
mountedStates,
|
|
293
|
-
moveItem,
|
|
294
125
|
noop,
|
|
295
|
-
number,
|
|
296
|
-
numberValueTypes,
|
|
297
|
-
observeTimeline,
|
|
298
|
-
parseCSSVariable,
|
|
299
|
-
parseValueFromTransform,
|
|
300
|
-
percent,
|
|
301
126
|
pipe,
|
|
302
|
-
positionalKeys,
|
|
303
127
|
press,
|
|
304
128
|
progress,
|
|
305
|
-
progressPercentage,
|
|
306
129
|
provideLayoutGroup,
|
|
307
130
|
provideMotion,
|
|
308
131
|
provideMotionConfig,
|
|
309
|
-
px,
|
|
310
|
-
readTransformValue,
|
|
311
|
-
recordStats,
|
|
312
|
-
removeItem,
|
|
313
|
-
resolveElements,
|
|
314
132
|
reverseEasing,
|
|
315
|
-
rgbUnit,
|
|
316
|
-
rgba,
|
|
317
|
-
scale,
|
|
318
133
|
scroll,
|
|
319
134
|
scrollInfo,
|
|
320
135
|
secondsToMilliseconds,
|
|
321
|
-
setDragLock,
|
|
322
|
-
setStyle,
|
|
323
136
|
spring,
|
|
324
137
|
stagger,
|
|
325
|
-
startWaapiAnimation,
|
|
326
|
-
statsBuffer,
|
|
327
138
|
steps,
|
|
328
|
-
styleEffect,
|
|
329
|
-
supportedWaapiEasing,
|
|
330
|
-
supportsBrowserAnimation,
|
|
331
|
-
supportsFlags,
|
|
332
|
-
supportsLinearEasing,
|
|
333
|
-
supportsPartialKeyframes,
|
|
334
|
-
supportsScrollTimeline,
|
|
335
|
-
sync,
|
|
336
|
-
testValueType,
|
|
337
139
|
time,
|
|
338
140
|
transform,
|
|
339
|
-
transformPropOrder,
|
|
340
|
-
transformProps,
|
|
341
|
-
transformValue,
|
|
342
|
-
transformValueTypes,
|
|
343
141
|
useAnimate,
|
|
344
142
|
useAnimationControls,
|
|
345
143
|
useAnimationFrame,
|
|
@@ -359,10 +157,5 @@ export {
|
|
|
359
157
|
useTime,
|
|
360
158
|
useTransform,
|
|
361
159
|
useVelocity,
|
|
362
|
-
velocityPerSecond,
|
|
363
|
-
vh,
|
|
364
|
-
vw,
|
|
365
|
-
warnOnce,
|
|
366
|
-
warning,
|
|
367
160
|
wrap
|
|
368
161
|
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { MotionState } from './motion-state';
|
|
2
|
+
import { $Transition, AnimationFactory } from '../types';
|
|
3
|
+
export type ActiveVariant = {
|
|
4
|
+
[key: string]: {
|
|
5
|
+
definition: string;
|
|
6
|
+
transition: $Transition;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
export declare function animateVariantsChildren(state: MotionState, activeState: ActiveVariant, isFirstAnimate?: boolean): {
|
|
10
|
+
animations: any[];
|
|
11
|
+
getAnimations: () => Promise<void>;
|
|
12
|
+
} | {
|
|
13
|
+
animations: AnimationFactory[];
|
|
14
|
+
getAnimations: () => Promise<unknown[]>;
|
|
15
|
+
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { isSVGElement } from "./utils.mjs";
|
|
2
|
-
import { HTMLVisualElement } from "../external/.pnpm/framer-motion@12.
|
|
3
|
-
import { SVGVisualElement } from "../external/.pnpm/framer-motion@12.
|
|
2
|
+
import { HTMLVisualElement } from "../external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/html/HTMLVisualElement.mjs";
|
|
3
|
+
import { SVGVisualElement } from "../external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/svg/SVGVisualElement.mjs";
|
|
4
4
|
function createVisualElement(Component, options) {
|
|
5
5
|
return isSVGElement(Component) ? new SVGVisualElement(options) : new HTMLVisualElement(options);
|
|
6
6
|
}
|
|
@@ -3,8 +3,9 @@ import { isSVGElement, resolveVariant, isAnimateChanged } from "./utils.mjs";
|
|
|
3
3
|
import { FeatureManager } from "../features/feature-manager.mjs";
|
|
4
4
|
import { doneCallbacks } from "../components/presence.mjs";
|
|
5
5
|
import { isVariantLabels } from "./utils/is-variant-labels.mjs";
|
|
6
|
-
import { noop } from "../external/.pnpm/motion-utils@12.
|
|
7
|
-
import
|
|
6
|
+
import { noop } from "../external/.pnpm/motion-utils@12.5.0/external/motion-utils/dist/es/noop.mjs";
|
|
7
|
+
import "../external/.pnpm/motion-utils@12.5.0/external/motion-utils/dist/es/errors.mjs";
|
|
8
|
+
import { frame, cancelFrame } from "../external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/frameloop/frame.mjs";
|
|
8
9
|
const mountedStates = /* @__PURE__ */ new WeakMap();
|
|
9
10
|
let id = 0;
|
|
10
11
|
const mountedLayoutIds = /* @__PURE__ */ new Set();
|
|
@@ -83,6 +84,9 @@ class MotionState {
|
|
|
83
84
|
this.updateOptions();
|
|
84
85
|
this.featureManager.mount();
|
|
85
86
|
if (!notAnimate && this.options.animate) {
|
|
87
|
+
if (this.type === "svg") {
|
|
88
|
+
this.visualElement.updateDimensions();
|
|
89
|
+
}
|
|
86
90
|
(_a = this.startAnimation) == null ? void 0 : _a.call(this);
|
|
87
91
|
}
|
|
88
92
|
if (this.options.layoutId) {
|
package/dist/es/state/utils.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { $Transition, AsTag, Options } from '../types';
|
|
2
|
-
import {
|
|
3
|
-
export declare function resolveVariant(definition?: Options['animate'], variants?: Options['variants'], custom?: Options['custom']):
|
|
2
|
+
import { Variant } from 'framer-motion';
|
|
3
|
+
export declare function resolveVariant(definition?: Options['animate'], variants?: Options['variants'], custom?: Options['custom']): Variant | undefined;
|
|
4
4
|
export declare function hasChanged(a: any, b: any): boolean;
|
|
5
5
|
export declare function shallowCompare(next: any[], prev: any[]): boolean;
|
|
6
6
|
export declare function addUniqueItem<T>(array: T[], item: T): void;
|
package/dist/es/types/index.d.ts
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { EasingFunction } from 'framer-motion';
|
|
2
|
+
export interface TransformOptions<T> {
|
|
3
|
+
/**
|
|
4
|
+
* Clamp values to within the given range. Defaults to `true`
|
|
5
|
+
*
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
clamp?: boolean;
|
|
9
|
+
/**
|
|
10
|
+
* Easing functions to use on the interpolations between each value in the input and output ranges.
|
|
11
|
+
*
|
|
12
|
+
* If provided as an array, the array must be one item shorter than the input and output ranges, as the easings apply to the transition **between** each.
|
|
13
|
+
*
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
ease?: EasingFunction | EasingFunction[];
|
|
17
|
+
/**
|
|
18
|
+
* Provide a function that can interpolate between any two values in the provided range.
|
|
19
|
+
*
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
mixer?: (from: T, to: T) => (v: number) => any;
|
|
23
|
+
}
|
package/dist/es/utils/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { onBeforeUpdate, onUnmounted } from "vue";
|
|
2
|
-
import { frame, cancelFrame } from "../external/.pnpm/motion-dom@12.
|
|
2
|
+
import { frame, cancelFrame } from "../external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/frameloop/frame.mjs";
|
|
3
|
+
import "../external/.pnpm/motion-utils@12.5.0/external/motion-utils/dist/es/errors.mjs";
|
|
3
4
|
function useAnimationFrame(callback) {
|
|
4
5
|
let initialTimestamp = 0;
|
|
5
6
|
const provideTimeSinceStart = ({ timestamp, delta }) => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ref, watch, isRef, unref } from "vue";
|
|
2
|
-
import { inView } from "../external/.pnpm/framer-motion@12.
|
|
2
|
+
import { inView } from "../external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/viewport/index.mjs";
|
|
3
3
|
function useInView(domRef, options) {
|
|
4
4
|
const isInView = ref(false);
|
|
5
5
|
watch([domRef, () => isRef(options) ? options.value : options], (_v1, _v2, onCleanup) => {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { onUnmounted } from "vue";
|
|
2
|
-
import { motionValue } from "../external/.pnpm/motion-dom@12.
|
|
3
|
-
import
|
|
2
|
+
import { motionValue } from "../external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/value/index.mjs";
|
|
3
|
+
import "../external/.pnpm/motion-utils@12.5.0/external/motion-utils/dist/es/errors.mjs";
|
|
4
|
+
import { cancelFrame, frame } from "../external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/frameloop/frame.mjs";
|
|
4
5
|
function useCombineMotionValues(combineValues) {
|
|
5
6
|
const value = motionValue(combineValues());
|
|
6
7
|
const updateValue = () => value.set(combineValues());
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { useCombineMotionValues } from "./use-combine-values.mjs";
|
|
2
|
+
import "../external/.pnpm/motion-utils@12.5.0/external/motion-utils/dist/es/errors.mjs";
|
|
3
|
+
import { collectMotionValues } from "../external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/value/index.mjs";
|
|
2
4
|
import { onBeforeUpdate } from "vue";
|
|
3
|
-
import { collectMotionValues } from "../external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/value/index.mjs";
|
|
4
5
|
function useComputed(computed) {
|
|
5
6
|
collectMotionValues.current = [];
|
|
6
7
|
const { value, subscribe, unsubscribe } = useCombineMotionValues(computed);
|
|
@@ -5,8 +5,8 @@ export interface UseScrollOptions extends Omit<ScrollInfoOptions, 'container' |
|
|
|
5
5
|
target?: Ref<HTMLElement | null>;
|
|
6
6
|
}
|
|
7
7
|
export declare function useScroll({ container, target, ...options }?: UseScrollOptions): {
|
|
8
|
-
scrollX: import('
|
|
9
|
-
scrollY: import('
|
|
10
|
-
scrollXProgress: import('
|
|
11
|
-
scrollYProgress: import('
|
|
8
|
+
scrollX: import('motion-dom').MotionValue<number>;
|
|
9
|
+
scrollY: import('motion-dom').MotionValue<number>;
|
|
10
|
+
scrollXProgress: import('motion-dom').MotionValue<number>;
|
|
11
|
+
scrollYProgress: import('motion-dom').MotionValue<number>;
|
|
12
12
|
};
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { onMounted, watch } from "vue";
|
|
2
2
|
import { warning } from "hey-listen";
|
|
3
3
|
import { isSSR } from "../utils/is.mjs";
|
|
4
|
-
import { scroll } from "../external/.pnpm/framer-motion@12.
|
|
5
|
-
import { motionValue } from "../external/.pnpm/motion-dom@12.
|
|
4
|
+
import { scroll } from "../external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/scroll/index.mjs";
|
|
5
|
+
import { motionValue } from "../external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/value/index.mjs";
|
|
6
|
+
import "../external/.pnpm/motion-utils@12.5.0/external/motion-utils/dist/es/errors.mjs";
|
|
6
7
|
function refWarning(name, ref) {
|
|
7
8
|
warning(
|
|
8
9
|
Boolean(!ref || ref.value),
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { watch, isRef
|
|
2
|
-
import {
|
|
3
|
-
import { motionValue } from "../external/.pnpm/motion-dom@12.
|
|
1
|
+
import { watch, isRef } from "vue";
|
|
2
|
+
import { animateValue } from "../external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/MainThreadAnimation.mjs";
|
|
3
|
+
import { motionValue } from "../external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/value/index.mjs";
|
|
4
|
+
import "../external/.pnpm/motion-utils@12.5.0/external/motion-utils/dist/es/errors.mjs";
|
|
5
|
+
import { frame, frameData } from "../external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/frameloop/frame.mjs";
|
|
4
6
|
import { isMotionValue } from "../utils/motion-value.mjs";
|
|
5
|
-
import { frame, frameData } from "../external/.pnpm/motion-dom@12.9.0/external/motion-dom/dist/es/frameloop/frame.mjs";
|
|
6
7
|
function toNumber(v) {
|
|
7
8
|
if (typeof v === "number")
|
|
8
9
|
return v;
|
|
@@ -28,8 +29,8 @@ function useSpring(source, config = {}) {
|
|
|
28
29
|
animation.sample(frameData.delta);
|
|
29
30
|
}
|
|
30
31
|
stopAnimation();
|
|
31
|
-
const springConfig =
|
|
32
|
-
activeSpringAnimation =
|
|
32
|
+
const springConfig = isRef(config) ? config.value : config;
|
|
33
|
+
activeSpringAnimation = animateValue({
|
|
33
34
|
keyframes: [value.get(), latestValue],
|
|
34
35
|
velocity: value.getVelocity(),
|
|
35
36
|
type: "spring",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function useTime(): import('
|
|
1
|
+
export declare function useTime(): import('motion-dom').MotionValue<number>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { useAnimationFrame } from "../utils/use-animation-frame.mjs";
|
|
2
|
-
import { motionValue } from "../external/.pnpm/motion-dom@12.
|
|
2
|
+
import { motionValue } from "../external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/value/index.mjs";
|
|
3
|
+
import "../external/.pnpm/motion-utils@12.5.0/external/motion-utils/dist/es/errors.mjs";
|
|
3
4
|
function useTime() {
|
|
4
5
|
const time = motionValue(0);
|
|
5
6
|
useAnimationFrame((t) => time.set(t));
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { TransformOptions } from '../types';
|
|
2
|
+
import { MotionValue } from 'framer-motion/dom';
|
|
2
3
|
import { MaybeRef } from 'vue';
|
|
3
4
|
type InputRange = number[];
|
|
4
5
|
type SingleTransformer<I, O> = (input: I) => O;
|