motion-v 1.0.0-beta.3 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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
|
@@ -36,708 +36,708 @@ export declare function useMotionState(props: MotionProps): {
|
|
|
36
36
|
};
|
|
37
37
|
inherit?: boolean;
|
|
38
38
|
style?: Partial<{
|
|
39
|
-
[x: number]: string | number | import('
|
|
40
|
-
[x: `--${string}`]: string | number | import('
|
|
41
|
-
string?: string | number | import('
|
|
42
|
-
end?: string | number | import('
|
|
43
|
-
x?: string | number | import('
|
|
44
|
-
y?: string | number | import('
|
|
45
|
-
position?: string | number | import('
|
|
46
|
-
page?: string | number | import('
|
|
47
|
-
[Symbol.iterator]?: string | number | import('
|
|
48
|
-
top?: string | number | import('
|
|
49
|
-
right?: string | number | import('
|
|
50
|
-
bottom?: string | number | import('
|
|
51
|
-
left?: string | number | import('
|
|
52
|
-
readonly length?: string | number | import('
|
|
53
|
-
filter?: string | number | import('
|
|
54
|
-
fill?: string | number | import('
|
|
55
|
-
values?: string | number | import('
|
|
56
|
-
all?: string | number | import('
|
|
57
|
-
clear?: string | number | import('
|
|
58
|
-
willChange?: string | number | import('
|
|
59
|
-
rotate?: string | number | import('
|
|
60
|
-
scale?: string | number | import('
|
|
61
|
-
perspective?: string | number | import('
|
|
62
|
-
transition?: string | number | import('
|
|
63
|
-
translate?: string | number | import('
|
|
64
|
-
from?: string | number | import('
|
|
65
|
-
resize?: string | number | import('
|
|
66
|
-
transform?: string | number | import('
|
|
67
|
-
offset?: string | number | import('
|
|
68
|
-
clipPath?: string | number | import('
|
|
69
|
-
marker?: string | number | import('
|
|
70
|
-
mask?: string | number | import('
|
|
71
|
-
path?: string | number | import('
|
|
72
|
-
direction?: string | number | import('
|
|
73
|
-
z?: string | number | import('
|
|
74
|
-
accentColor?: string | number | import('
|
|
75
|
-
alignContent?: string | number | import('
|
|
76
|
-
alignItems?: string | number | import('
|
|
77
|
-
alignSelf?: string | number | import('
|
|
78
|
-
alignmentBaseline?: string | number | import('
|
|
79
|
-
animation?: string | number | import('
|
|
80
|
-
animationComposition?: string | number | import('
|
|
81
|
-
animationDelay?: string | number | import('
|
|
82
|
-
animationDirection?: string | number | import('
|
|
83
|
-
animationDuration?: string | number | import('
|
|
84
|
-
animationFillMode?: string | number | import('
|
|
85
|
-
animationIterationCount?: string | number | import('
|
|
86
|
-
animationName?: string | number | import('
|
|
87
|
-
animationPlayState?: string | number | import('
|
|
88
|
-
animationTimingFunction?: string | number | import('
|
|
89
|
-
appearance?: string | number | import('
|
|
90
|
-
aspectRatio?: string | number | import('
|
|
91
|
-
backdropFilter?: string | number | import('
|
|
92
|
-
backfaceVisibility?: string | number | import('
|
|
93
|
-
background?: string | number | import('
|
|
94
|
-
backgroundAttachment?: string | number | import('
|
|
95
|
-
backgroundBlendMode?: string | number | import('
|
|
96
|
-
backgroundClip?: string | number | import('
|
|
97
|
-
backgroundColor?: string | number | import('
|
|
98
|
-
backgroundImage?: string | number | import('
|
|
99
|
-
backgroundOrigin?: string | number | import('
|
|
100
|
-
backgroundPosition?: string | number | import('
|
|
101
|
-
backgroundPositionX?: string | number | import('
|
|
102
|
-
backgroundPositionY?: string | number | import('
|
|
103
|
-
backgroundRepeat?: string | number | import('
|
|
104
|
-
backgroundSize?: string | number | import('
|
|
105
|
-
baselineShift?: string | number | import('
|
|
106
|
-
baselineSource?: string | number | import('
|
|
107
|
-
blockSize?: string | number | import('
|
|
108
|
-
border?: string | number | import('
|
|
109
|
-
borderBlock?: string | number | import('
|
|
110
|
-
borderBlockColor?: string | number | import('
|
|
111
|
-
borderBlockEnd?: string | number | import('
|
|
112
|
-
borderBlockEndColor?: string | number | import('
|
|
113
|
-
borderBlockEndStyle?: string | number | import('
|
|
114
|
-
borderBlockEndWidth?: string | number | import('
|
|
115
|
-
borderBlockStart?: string | number | import('
|
|
116
|
-
borderBlockStartColor?: string | number | import('
|
|
117
|
-
borderBlockStartStyle?: string | number | import('
|
|
118
|
-
borderBlockStartWidth?: string | number | import('
|
|
119
|
-
borderBlockStyle?: string | number | import('
|
|
120
|
-
borderBlockWidth?: string | number | import('
|
|
121
|
-
borderBottom?: string | number | import('
|
|
122
|
-
borderBottomColor?: string | number | import('
|
|
123
|
-
borderBottomLeftRadius?: string | number | import('
|
|
124
|
-
borderBottomRightRadius?: string | number | import('
|
|
125
|
-
borderBottomStyle?: string | number | import('
|
|
126
|
-
borderBottomWidth?: string | number | import('
|
|
127
|
-
borderCollapse?: string | number | import('
|
|
128
|
-
borderColor?: string | number | import('
|
|
129
|
-
borderEndEndRadius?: string | number | import('
|
|
130
|
-
borderEndStartRadius?: string | number | import('
|
|
131
|
-
borderImage?: string | number | import('
|
|
132
|
-
borderImageOutset?: string | number | import('
|
|
133
|
-
borderImageRepeat?: string | number | import('
|
|
134
|
-
borderImageSlice?: string | number | import('
|
|
135
|
-
borderImageSource?: string | number | import('
|
|
136
|
-
borderImageWidth?: string | number | import('
|
|
137
|
-
borderInline?: string | number | import('
|
|
138
|
-
borderInlineColor?: string | number | import('
|
|
139
|
-
borderInlineEnd?: string | number | import('
|
|
140
|
-
borderInlineEndColor?: string | number | import('
|
|
141
|
-
borderInlineEndStyle?: string | number | import('
|
|
142
|
-
borderInlineEndWidth?: string | number | import('
|
|
143
|
-
borderInlineStart?: string | number | import('
|
|
144
|
-
borderInlineStartColor?: string | number | import('
|
|
145
|
-
borderInlineStartStyle?: string | number | import('
|
|
146
|
-
borderInlineStartWidth?: string | number | import('
|
|
147
|
-
borderInlineStyle?: string | number | import('
|
|
148
|
-
borderInlineWidth?: string | number | import('
|
|
149
|
-
borderLeft?: string | number | import('
|
|
150
|
-
borderLeftColor?: string | number | import('
|
|
151
|
-
borderLeftStyle?: string | number | import('
|
|
152
|
-
borderLeftWidth?: string | number | import('
|
|
153
|
-
borderRadius?: string | number | import('
|
|
154
|
-
borderRight?: string | number | import('
|
|
155
|
-
borderRightColor?: string | number | import('
|
|
156
|
-
borderRightStyle?: string | number | import('
|
|
157
|
-
borderRightWidth?: string | number | import('
|
|
158
|
-
borderSpacing?: string | number | import('
|
|
159
|
-
borderStartEndRadius?: string | number | import('
|
|
160
|
-
borderStartStartRadius?: string | number | import('
|
|
161
|
-
borderStyle?: string | number | import('
|
|
162
|
-
borderTop?: string | number | import('
|
|
163
|
-
borderTopColor?: string | number | import('
|
|
164
|
-
borderTopLeftRadius?: string | number | import('
|
|
165
|
-
borderTopRightRadius?: string | number | import('
|
|
166
|
-
borderTopStyle?: string | number | import('
|
|
167
|
-
borderTopWidth?: string | number | import('
|
|
168
|
-
borderWidth?: string | number | import('
|
|
169
|
-
boxShadow?: string | number | import('
|
|
170
|
-
boxSizing?: string | number | import('
|
|
171
|
-
breakAfter?: string | number | import('
|
|
172
|
-
breakBefore?: string | number | import('
|
|
173
|
-
breakInside?: string | number | import('
|
|
174
|
-
captionSide?: string | number | import('
|
|
175
|
-
caretColor?: string | number | import('
|
|
176
|
-
clip?: string | number | import('
|
|
177
|
-
clipRule?: string | number | import('
|
|
178
|
-
color?: string | number | import('
|
|
179
|
-
colorInterpolation?: string | number | import('
|
|
180
|
-
colorInterpolationFilters?: string | number | import('
|
|
181
|
-
colorScheme?: string | number | import('
|
|
182
|
-
columnCount?: string | number | import('
|
|
183
|
-
columnFill?: string | number | import('
|
|
184
|
-
columnGap?: string | number | import('
|
|
185
|
-
columnRule?: string | number | import('
|
|
186
|
-
columnRuleColor?: string | number | import('
|
|
187
|
-
columnRuleStyle?: string | number | import('
|
|
188
|
-
columnRuleWidth?: string | number | import('
|
|
189
|
-
columnSpan?: string | number | import('
|
|
190
|
-
columnWidth?: string | number | import('
|
|
191
|
-
columns?: string | number | import('
|
|
192
|
-
contain?: string | number | import('
|
|
193
|
-
containIntrinsicBlockSize?: string | number | import('
|
|
194
|
-
containIntrinsicHeight?: string | number | import('
|
|
195
|
-
containIntrinsicInlineSize?: string | number | import('
|
|
196
|
-
containIntrinsicSize?: string | number | import('
|
|
197
|
-
containIntrinsicWidth?: string | number | import('
|
|
198
|
-
container?: string | number | import('
|
|
199
|
-
containerName?: string | number | import('
|
|
200
|
-
containerType?: string | number | import('
|
|
201
|
-
content?: string | number | import('
|
|
202
|
-
contentVisibility?: string | number | import('
|
|
203
|
-
counterIncrement?: string | number | import('
|
|
204
|
-
counterReset?: string | number | import('
|
|
205
|
-
counterSet?: string | number | import('
|
|
206
|
-
cssFloat?: string | number | import('
|
|
207
|
-
cssText?: string | number | import('
|
|
208
|
-
cursor?: string | number | import('
|
|
209
|
-
cx?: string | number | import('
|
|
210
|
-
cy?: string | number | import('
|
|
211
|
-
d?: string | number | import('
|
|
212
|
-
display?: string | number | import('
|
|
213
|
-
dominantBaseline?: string | number | import('
|
|
214
|
-
emptyCells?: string | number | import('
|
|
215
|
-
fillOpacity?: string | number | import('
|
|
216
|
-
fillRule?: string | number | import('
|
|
217
|
-
flex?: string | number | import('
|
|
218
|
-
flexBasis?: string | number | import('
|
|
219
|
-
flexDirection?: string | number | import('
|
|
220
|
-
flexFlow?: string | number | import('
|
|
221
|
-
flexGrow?: string | number | import('
|
|
222
|
-
flexShrink?: string | number | import('
|
|
223
|
-
flexWrap?: string | number | import('
|
|
224
|
-
float?: string | number | import('
|
|
225
|
-
floodColor?: string | number | import('
|
|
226
|
-
floodOpacity?: string | number | import('
|
|
227
|
-
font?: string | number | import('
|
|
228
|
-
fontFamily?: string | number | import('
|
|
229
|
-
fontFeatureSettings?: string | number | import('
|
|
230
|
-
fontKerning?: string | number | import('
|
|
231
|
-
fontOpticalSizing?: string | number | import('
|
|
232
|
-
fontPalette?: string | number | import('
|
|
233
|
-
fontSize?: string | number | import('
|
|
234
|
-
fontSizeAdjust?: string | number | import('
|
|
235
|
-
fontStretch?: string | number | import('
|
|
236
|
-
fontStyle?: string | number | import('
|
|
237
|
-
fontSynthesis?: string | number | import('
|
|
238
|
-
fontSynthesisSmallCaps?: string | number | import('
|
|
239
|
-
fontSynthesisStyle?: string | number | import('
|
|
240
|
-
fontSynthesisWeight?: string | number | import('
|
|
241
|
-
fontVariant?: string | number | import('
|
|
242
|
-
fontVariantAlternates?: string | number | import('
|
|
243
|
-
fontVariantCaps?: string | number | import('
|
|
244
|
-
fontVariantEastAsian?: string | number | import('
|
|
245
|
-
fontVariantLigatures?: string | number | import('
|
|
246
|
-
fontVariantNumeric?: string | number | import('
|
|
247
|
-
fontVariantPosition?: string | number | import('
|
|
248
|
-
fontVariationSettings?: string | number | import('
|
|
249
|
-
fontWeight?: string | number | import('
|
|
250
|
-
forcedColorAdjust?: string | number | import('
|
|
251
|
-
gap?: string | number | import('
|
|
252
|
-
grid?: string | number | import('
|
|
253
|
-
gridArea?: string | number | import('
|
|
254
|
-
gridAutoColumns?: string | number | import('
|
|
255
|
-
gridAutoFlow?: string | number | import('
|
|
256
|
-
gridAutoRows?: string | number | import('
|
|
257
|
-
gridColumn?: string | number | import('
|
|
258
|
-
gridColumnEnd?: string | number | import('
|
|
259
|
-
gridColumnGap?: string | number | import('
|
|
260
|
-
gridColumnStart?: string | number | import('
|
|
261
|
-
gridGap?: string | number | import('
|
|
262
|
-
gridRow?: string | number | import('
|
|
263
|
-
gridRowEnd?: string | number | import('
|
|
264
|
-
gridRowGap?: string | number | import('
|
|
265
|
-
gridRowStart?: string | number | import('
|
|
266
|
-
gridTemplate?: string | number | import('
|
|
267
|
-
gridTemplateAreas?: string | number | import('
|
|
268
|
-
gridTemplateColumns?: string | number | import('
|
|
269
|
-
gridTemplateRows?: string | number | import('
|
|
270
|
-
height?: string | number | import('
|
|
271
|
-
hyphenateCharacter?: string | number | import('
|
|
272
|
-
hyphens?: string | number | import('
|
|
273
|
-
imageOrientation?: string | number | import('
|
|
274
|
-
imageRendering?: string | number | import('
|
|
275
|
-
inlineSize?: string | number | import('
|
|
276
|
-
inset?: string | number | import('
|
|
277
|
-
insetBlock?: string | number | import('
|
|
278
|
-
insetBlockEnd?: string | number | import('
|
|
279
|
-
insetBlockStart?: string | number | import('
|
|
280
|
-
insetInline?: string | number | import('
|
|
281
|
-
insetInlineEnd?: string | number | import('
|
|
282
|
-
insetInlineStart?: string | number | import('
|
|
283
|
-
isolation?: string | number | import('
|
|
284
|
-
justifyContent?: string | number | import('
|
|
285
|
-
justifyItems?: string | number | import('
|
|
286
|
-
justifySelf?: string | number | import('
|
|
287
|
-
letterSpacing?: string | number | import('
|
|
288
|
-
lightingColor?: string | number | import('
|
|
289
|
-
lineBreak?: string | number | import('
|
|
290
|
-
lineHeight?: string | number | import('
|
|
291
|
-
listStyle?: string | number | import('
|
|
292
|
-
listStyleImage?: string | number | import('
|
|
293
|
-
listStylePosition?: string | number | import('
|
|
294
|
-
listStyleType?: string | number | import('
|
|
295
|
-
margin?: string | number | import('
|
|
296
|
-
marginBlock?: string | number | import('
|
|
297
|
-
marginBlockEnd?: string | number | import('
|
|
298
|
-
marginBlockStart?: string | number | import('
|
|
299
|
-
marginBottom?: string | number | import('
|
|
300
|
-
marginInline?: string | number | import('
|
|
301
|
-
marginInlineEnd?: string | number | import('
|
|
302
|
-
marginInlineStart?: string | number | import('
|
|
303
|
-
marginLeft?: string | number | import('
|
|
304
|
-
marginRight?: string | number | import('
|
|
305
|
-
marginTop?: string | number | import('
|
|
306
|
-
markerEnd?: string | number | import('
|
|
307
|
-
markerMid?: string | number | import('
|
|
308
|
-
markerStart?: string | number | import('
|
|
309
|
-
maskClip?: string | number | import('
|
|
310
|
-
maskComposite?: string | number | import('
|
|
311
|
-
maskImage?: string | number | import('
|
|
312
|
-
maskMode?: string | number | import('
|
|
313
|
-
maskOrigin?: string | number | import('
|
|
314
|
-
maskPosition?: string | number | import('
|
|
315
|
-
maskRepeat?: string | number | import('
|
|
316
|
-
maskSize?: string | number | import('
|
|
317
|
-
maskType?: string | number | import('
|
|
318
|
-
mathDepth?: string | number | import('
|
|
319
|
-
mathStyle?: string | number | import('
|
|
320
|
-
maxBlockSize?: string | number | import('
|
|
321
|
-
maxHeight?: string | number | import('
|
|
322
|
-
maxInlineSize?: string | number | import('
|
|
323
|
-
maxWidth?: string | number | import('
|
|
324
|
-
minBlockSize?: string | number | import('
|
|
325
|
-
minHeight?: string | number | import('
|
|
326
|
-
minInlineSize?: string | number | import('
|
|
327
|
-
minWidth?: string | number | import('
|
|
328
|
-
mixBlendMode?: string | number | import('
|
|
329
|
-
objectFit?: string | number | import('
|
|
330
|
-
objectPosition?: string | number | import('
|
|
331
|
-
offsetAnchor?: string | number | import('
|
|
332
|
-
offsetDistance?: string | number | import('
|
|
333
|
-
offsetPath?: string | number | import('
|
|
334
|
-
offsetPosition?: string | number | import('
|
|
335
|
-
offsetRotate?: string | number | import('
|
|
336
|
-
opacity?: string | number | import('
|
|
337
|
-
order?: string | number | import('
|
|
338
|
-
orphans?: string | number | import('
|
|
339
|
-
outline?: string | number | import('
|
|
340
|
-
outlineColor?: string | number | import('
|
|
341
|
-
outlineOffset?: string | number | import('
|
|
342
|
-
outlineStyle?: string | number | import('
|
|
343
|
-
outlineWidth?: string | number | import('
|
|
344
|
-
overflow?: string | number | import('
|
|
345
|
-
overflowAnchor?: string | number | import('
|
|
346
|
-
overflowClipMargin?: string | number | import('
|
|
347
|
-
overflowWrap?: string | number | import('
|
|
348
|
-
overflowX?: string | number | import('
|
|
349
|
-
overflowY?: string | number | import('
|
|
350
|
-
overscrollBehavior?: string | number | import('
|
|
351
|
-
overscrollBehaviorBlock?: string | number | import('
|
|
352
|
-
overscrollBehaviorInline?: string | number | import('
|
|
353
|
-
overscrollBehaviorX?: string | number | import('
|
|
354
|
-
overscrollBehaviorY?: string | number | import('
|
|
355
|
-
padding?: string | number | import('
|
|
356
|
-
paddingBlock?: string | number | import('
|
|
357
|
-
paddingBlockEnd?: string | number | import('
|
|
358
|
-
paddingBlockStart?: string | number | import('
|
|
359
|
-
paddingBottom?: string | number | import('
|
|
360
|
-
paddingInline?: string | number | import('
|
|
361
|
-
paddingInlineEnd?: string | number | import('
|
|
362
|
-
paddingInlineStart?: string | number | import('
|
|
363
|
-
paddingLeft?: string | number | import('
|
|
364
|
-
paddingRight?: string | number | import('
|
|
365
|
-
paddingTop?: string | number | import('
|
|
366
|
-
pageBreakAfter?: string | number | import('
|
|
367
|
-
pageBreakBefore?: string | number | import('
|
|
368
|
-
pageBreakInside?: string | number | import('
|
|
369
|
-
paintOrder?: string | number | import('
|
|
370
|
-
readonly parentRule?: string | number | import('
|
|
371
|
-
perspectiveOrigin?: string | number | import('
|
|
372
|
-
placeContent?: string | number | import('
|
|
373
|
-
placeItems?: string | number | import('
|
|
374
|
-
placeSelf?: string | number | import('
|
|
375
|
-
pointerEvents?: string | number | import('
|
|
376
|
-
printColorAdjust?: string | number | import('
|
|
377
|
-
quotes?: string | number | import('
|
|
378
|
-
r?: string | number | import('
|
|
379
|
-
rowGap?: string | number | import('
|
|
380
|
-
rubyPosition?: string | number | import('
|
|
381
|
-
rx?: string | number | import('
|
|
382
|
-
ry?: string | number | import('
|
|
383
|
-
scrollBehavior?: string | number | import('
|
|
384
|
-
scrollMargin?: string | number | import('
|
|
385
|
-
scrollMarginBlock?: string | number | import('
|
|
386
|
-
scrollMarginBlockEnd?: string | number | import('
|
|
387
|
-
scrollMarginBlockStart?: string | number | import('
|
|
388
|
-
scrollMarginBottom?: string | number | import('
|
|
389
|
-
scrollMarginInline?: string | number | import('
|
|
390
|
-
scrollMarginInlineEnd?: string | number | import('
|
|
391
|
-
scrollMarginInlineStart?: string | number | import('
|
|
392
|
-
scrollMarginLeft?: string | number | import('
|
|
393
|
-
scrollMarginRight?: string | number | import('
|
|
394
|
-
scrollMarginTop?: string | number | import('
|
|
395
|
-
scrollPadding?: string | number | import('
|
|
396
|
-
scrollPaddingBlock?: string | number | import('
|
|
397
|
-
scrollPaddingBlockEnd?: string | number | import('
|
|
398
|
-
scrollPaddingBlockStart?: string | number | import('
|
|
399
|
-
scrollPaddingBottom?: string | number | import('
|
|
400
|
-
scrollPaddingInline?: string | number | import('
|
|
401
|
-
scrollPaddingInlineEnd?: string | number | import('
|
|
402
|
-
scrollPaddingInlineStart?: string | number | import('
|
|
403
|
-
scrollPaddingLeft?: string | number | import('
|
|
404
|
-
scrollPaddingRight?: string | number | import('
|
|
405
|
-
scrollPaddingTop?: string | number | import('
|
|
406
|
-
scrollSnapAlign?: string | number | import('
|
|
407
|
-
scrollSnapStop?: string | number | import('
|
|
408
|
-
scrollSnapType?: string | number | import('
|
|
409
|
-
scrollbarColor?: string | number | import('
|
|
410
|
-
scrollbarGutter?: string | number | import('
|
|
411
|
-
scrollbarWidth?: string | number | import('
|
|
412
|
-
shapeImageThreshold?: string | number | import('
|
|
413
|
-
shapeMargin?: string | number | import('
|
|
414
|
-
shapeOutside?: string | number | import('
|
|
415
|
-
shapeRendering?: string | number | import('
|
|
416
|
-
stopColor?: string | number | import('
|
|
417
|
-
stopOpacity?: string | number | import('
|
|
418
|
-
stroke?: string | number | import('
|
|
419
|
-
strokeDasharray?: string | number | import('
|
|
420
|
-
strokeDashoffset?: string | number | import('
|
|
421
|
-
strokeLinecap?: string | number | import('
|
|
422
|
-
strokeLinejoin?: string | number | import('
|
|
423
|
-
strokeMiterlimit?: string | number | import('
|
|
424
|
-
strokeOpacity?: string | number | import('
|
|
425
|
-
strokeWidth?: string | number | import('
|
|
426
|
-
tabSize?: string | number | import('
|
|
427
|
-
tableLayout?: string | number | import('
|
|
428
|
-
textAlign?: string | number | import('
|
|
429
|
-
textAlignLast?: string | number | import('
|
|
430
|
-
textAnchor?: string | number | import('
|
|
431
|
-
textCombineUpright?: string | number | import('
|
|
432
|
-
textDecoration?: string | number | import('
|
|
433
|
-
textDecorationColor?: string | number | import('
|
|
434
|
-
textDecorationLine?: string | number | import('
|
|
435
|
-
textDecorationSkipInk?: string | number | import('
|
|
436
|
-
textDecorationStyle?: string | number | import('
|
|
437
|
-
textDecorationThickness?: string | number | import('
|
|
438
|
-
textEmphasis?: string | number | import('
|
|
439
|
-
textEmphasisColor?: string | number | import('
|
|
440
|
-
textEmphasisPosition?: string | number | import('
|
|
441
|
-
textEmphasisStyle?: string | number | import('
|
|
442
|
-
textIndent?: string | number | import('
|
|
443
|
-
textOrientation?: string | number | import('
|
|
444
|
-
textOverflow?: string | number | import('
|
|
445
|
-
textRendering?: string | number | import('
|
|
446
|
-
textShadow?: string | number | import('
|
|
447
|
-
textTransform?: string | number | import('
|
|
448
|
-
textUnderlineOffset?: string | number | import('
|
|
449
|
-
textUnderlinePosition?: string | number | import('
|
|
450
|
-
textWrap?: string | number | import('
|
|
451
|
-
textWrapMode?: string | number | import('
|
|
452
|
-
textWrapStyle?: string | number | import('
|
|
453
|
-
touchAction?: string | number | import('
|
|
454
|
-
transformBox?: string | number | import('
|
|
455
|
-
transformOrigin?: string | number | import('
|
|
456
|
-
transformStyle?: string | number | import('
|
|
457
|
-
transitionBehavior?: string | number | import('
|
|
458
|
-
transitionDelay?: string | number | import('
|
|
459
|
-
transitionDuration?: string | number | import('
|
|
460
|
-
transitionProperty?: string | number | import('
|
|
461
|
-
transitionTimingFunction?: string | number | import('
|
|
462
|
-
unicodeBidi?: string | number | import('
|
|
463
|
-
userSelect?: string | number | import('
|
|
464
|
-
vectorEffect?: string | number | import('
|
|
465
|
-
verticalAlign?: string | number | import('
|
|
466
|
-
visibility?: string | number | import('
|
|
467
|
-
webkitAlignContent?: string | number | import('
|
|
468
|
-
webkitAlignItems?: string | number | import('
|
|
469
|
-
webkitAlignSelf?: string | number | import('
|
|
470
|
-
webkitAnimation?: string | number | import('
|
|
471
|
-
webkitAnimationDelay?: string | number | import('
|
|
472
|
-
webkitAnimationDirection?: string | number | import('
|
|
473
|
-
webkitAnimationDuration?: string | number | import('
|
|
474
|
-
webkitAnimationFillMode?: string | number | import('
|
|
475
|
-
webkitAnimationIterationCount?: string | number | import('
|
|
476
|
-
webkitAnimationName?: string | number | import('
|
|
477
|
-
webkitAnimationPlayState?: string | number | import('
|
|
478
|
-
webkitAnimationTimingFunction?: string | number | import('
|
|
479
|
-
webkitAppearance?: string | number | import('
|
|
480
|
-
webkitBackfaceVisibility?: string | number | import('
|
|
481
|
-
webkitBackgroundClip?: string | number | import('
|
|
482
|
-
webkitBackgroundOrigin?: string | number | import('
|
|
483
|
-
webkitBackgroundSize?: string | number | import('
|
|
484
|
-
webkitBorderBottomLeftRadius?: string | number | import('
|
|
485
|
-
webkitBorderBottomRightRadius?: string | number | import('
|
|
486
|
-
webkitBorderRadius?: string | number | import('
|
|
487
|
-
webkitBorderTopLeftRadius?: string | number | import('
|
|
488
|
-
webkitBorderTopRightRadius?: string | number | import('
|
|
489
|
-
webkitBoxAlign?: string | number | import('
|
|
490
|
-
webkitBoxFlex?: string | number | import('
|
|
491
|
-
webkitBoxOrdinalGroup?: string | number | import('
|
|
492
|
-
webkitBoxOrient?: string | number | import('
|
|
493
|
-
webkitBoxPack?: string | number | import('
|
|
494
|
-
webkitBoxShadow?: string | number | import('
|
|
495
|
-
webkitBoxSizing?: string | number | import('
|
|
496
|
-
webkitFilter?: string | number | import('
|
|
497
|
-
webkitFlex?: string | number | import('
|
|
498
|
-
webkitFlexBasis?: string | number | import('
|
|
499
|
-
webkitFlexDirection?: string | number | import('
|
|
500
|
-
webkitFlexFlow?: string | number | import('
|
|
501
|
-
webkitFlexGrow?: string | number | import('
|
|
502
|
-
webkitFlexShrink?: string | number | import('
|
|
503
|
-
webkitFlexWrap?: string | number | import('
|
|
504
|
-
webkitJustifyContent?: string | number | import('
|
|
505
|
-
webkitLineClamp?: string | number | import('
|
|
506
|
-
webkitMask?: string | number | import('
|
|
507
|
-
webkitMaskBoxImage?: string | number | import('
|
|
508
|
-
webkitMaskBoxImageOutset?: string | number | import('
|
|
509
|
-
webkitMaskBoxImageRepeat?: string | number | import('
|
|
510
|
-
webkitMaskBoxImageSlice?: string | number | import('
|
|
511
|
-
webkitMaskBoxImageSource?: string | number | import('
|
|
512
|
-
webkitMaskBoxImageWidth?: string | number | import('
|
|
513
|
-
webkitMaskClip?: string | number | import('
|
|
514
|
-
webkitMaskComposite?: string | number | import('
|
|
515
|
-
webkitMaskImage?: string | number | import('
|
|
516
|
-
webkitMaskOrigin?: string | number | import('
|
|
517
|
-
webkitMaskPosition?: string | number | import('
|
|
518
|
-
webkitMaskRepeat?: string | number | import('
|
|
519
|
-
webkitMaskSize?: string | number | import('
|
|
520
|
-
webkitOrder?: string | number | import('
|
|
521
|
-
webkitPerspective?: string | number | import('
|
|
522
|
-
webkitPerspectiveOrigin?: string | number | import('
|
|
523
|
-
webkitTextFillColor?: string | number | import('
|
|
524
|
-
webkitTextSizeAdjust?: string | number | import('
|
|
525
|
-
webkitTextStroke?: string | number | import('
|
|
526
|
-
webkitTextStrokeColor?: string | number | import('
|
|
527
|
-
webkitTextStrokeWidth?: string | number | import('
|
|
528
|
-
webkitTransform?: string | number | import('
|
|
529
|
-
webkitTransformOrigin?: string | number | import('
|
|
530
|
-
webkitTransformStyle?: string | number | import('
|
|
531
|
-
webkitTransition?: string | number | import('
|
|
532
|
-
webkitTransitionDelay?: string | number | import('
|
|
533
|
-
webkitTransitionDuration?: string | number | import('
|
|
534
|
-
webkitTransitionProperty?: string | number | import('
|
|
535
|
-
webkitTransitionTimingFunction?: string | number | import('
|
|
536
|
-
webkitUserSelect?: string | number | import('
|
|
537
|
-
whiteSpace?: string | number | import('
|
|
538
|
-
whiteSpaceCollapse?: string | number | import('
|
|
539
|
-
widows?: string | number | import('
|
|
540
|
-
width?: string | number | import('
|
|
541
|
-
wordBreak?: string | number | import('
|
|
542
|
-
wordSpacing?: string | number | import('
|
|
543
|
-
wordWrap?: string | number | import('
|
|
544
|
-
writingMode?: string | number | import('
|
|
545
|
-
zIndex?: string | number | import('
|
|
546
|
-
zoom?: string | number | import('
|
|
547
|
-
getPropertyPriority?: string | number | import('
|
|
548
|
-
getPropertyValue?: string | number | import('
|
|
549
|
-
item?: string | number | import('
|
|
550
|
-
removeProperty?: string | number | import('
|
|
551
|
-
setProperty?: string | number | import('
|
|
552
|
-
rotateX?: string | number | import('
|
|
553
|
-
rotateY?: string | number | import('
|
|
554
|
-
rotateZ?: string | number | import('
|
|
555
|
-
scaleX?: string | number | import('
|
|
556
|
-
scaleY?: string | number | import('
|
|
557
|
-
scaleZ?: string | number | import('
|
|
558
|
-
skewX?: string | number | import('
|
|
559
|
-
skewY?: string | number | import('
|
|
560
|
-
accentHeight?: string | number | import('
|
|
561
|
-
accumulate?: string | number | import('
|
|
562
|
-
additive?: string | number | import('
|
|
563
|
-
allowReorder?: string | number | import('
|
|
564
|
-
alphabetic?: string | number | import('
|
|
565
|
-
amplitude?: string | number | import('
|
|
566
|
-
arabicForm?: string | number | import('
|
|
567
|
-
ascent?: string | number | import('
|
|
568
|
-
attributeName?: string | number | import('
|
|
569
|
-
attributeType?: string | number | import('
|
|
570
|
-
autoReverse?: string | number | import('
|
|
571
|
-
azimuth?: string | number | import('
|
|
572
|
-
baseFrequency?: string | number | import('
|
|
573
|
-
baseProfile?: string | number | import('
|
|
574
|
-
bbox?: string | number | import('
|
|
575
|
-
begin?: string | number | import('
|
|
576
|
-
bias?: string | number | import('
|
|
577
|
-
by?: string | number | import('
|
|
578
|
-
calcMode?: string | number | import('
|
|
579
|
-
capHeight?: string | number | import('
|
|
580
|
-
clipPathUnits?: string | number | import('
|
|
581
|
-
colorProfile?: string | number | import('
|
|
582
|
-
colorRendering?: string | number | import('
|
|
583
|
-
contentScriptType?: string | number | import('
|
|
584
|
-
contentStyleType?: string | number | import('
|
|
585
|
-
decelerate?: string | number | import('
|
|
586
|
-
descent?: string | number | import('
|
|
587
|
-
diffuseConstant?: string | number | import('
|
|
588
|
-
divisor?: string | number | import('
|
|
589
|
-
dur?: string | number | import('
|
|
590
|
-
dx?: string | number | import('
|
|
591
|
-
dy?: string | number | import('
|
|
592
|
-
edgeMode?: string | number | import('
|
|
593
|
-
elevation?: string | number | import('
|
|
594
|
-
enableBackground?: string | number | import('
|
|
595
|
-
exponent?: string | number | import('
|
|
596
|
-
externalResourcesRequired?: string | number | import('
|
|
597
|
-
filterRes?: string | number | import('
|
|
598
|
-
filterUnits?: string | number | import('
|
|
599
|
-
focusable?: string | number | import('
|
|
600
|
-
format?: string | number | import('
|
|
601
|
-
fr?: string | number | import('
|
|
602
|
-
fx?: string | number | import('
|
|
603
|
-
fy?: string | number | import('
|
|
604
|
-
g1?: string | number | import('
|
|
605
|
-
g2?: string | number | import('
|
|
606
|
-
glyphName?: string | number | import('
|
|
607
|
-
glyphOrientationHorizontal?: string | number | import('
|
|
608
|
-
glyphOrientationVertical?: string | number | import('
|
|
609
|
-
glyphRef?: string | number | import('
|
|
610
|
-
gradientTransform?: string | number | import('
|
|
611
|
-
gradientUnits?: string | number | import('
|
|
612
|
-
hanging?: string | number | import('
|
|
613
|
-
horizAdvX?: string | number | import('
|
|
614
|
-
horizOriginX?: string | number | import('
|
|
615
|
-
href?: string | number | import('
|
|
616
|
-
ideographic?: string | number | import('
|
|
617
|
-
in2?: string | number | import('
|
|
618
|
-
in?: string | number | import('
|
|
619
|
-
intercept?: string | number | import('
|
|
620
|
-
k1?: string | number | import('
|
|
621
|
-
k2?: string | number | import('
|
|
622
|
-
k3?: string | number | import('
|
|
623
|
-
k4?: string | number | import('
|
|
624
|
-
k?: string | number | import('
|
|
625
|
-
kernelMatrix?: string | number | import('
|
|
626
|
-
kernelUnitLength?: string | number | import('
|
|
627
|
-
kerning?: string | number | import('
|
|
628
|
-
keyPoints?: string | number | import('
|
|
629
|
-
keySplines?: string | number | import('
|
|
630
|
-
keyTimes?: string | number | import('
|
|
631
|
-
lengthAdjust?: string | number | import('
|
|
632
|
-
limitingConeAngle?: string | number | import('
|
|
633
|
-
local?: string | number | import('
|
|
634
|
-
markerHeight?: string | number | import('
|
|
635
|
-
markerUnits?: string | number | import('
|
|
636
|
-
markerWidth?: string | number | import('
|
|
637
|
-
maskContentUnits?: string | number | import('
|
|
638
|
-
maskUnits?: string | number | import('
|
|
639
|
-
mathematical?: string | number | import('
|
|
640
|
-
mode?: string | number | import('
|
|
641
|
-
numOctaves?: string | number | import('
|
|
642
|
-
operator?: string | number | import('
|
|
643
|
-
orient?: string | number | import('
|
|
644
|
-
orientation?: string | number | import('
|
|
645
|
-
origin?: string | number | import('
|
|
646
|
-
overlinePosition?: string | number | import('
|
|
647
|
-
overlineThickness?: string | number | import('
|
|
648
|
-
panose1?: string | number | import('
|
|
649
|
-
pathLength?: string | number | import('
|
|
650
|
-
patternContentUnits?: string | number | import('
|
|
651
|
-
patternTransform?: string | number | import('
|
|
652
|
-
patternUnits?: string | number | import('
|
|
653
|
-
points?: string | number | import('
|
|
654
|
-
pointsAtX?: string | number | import('
|
|
655
|
-
pointsAtY?: string | number | import('
|
|
656
|
-
pointsAtZ?: string | number | import('
|
|
657
|
-
preserveAlpha?: string | number | import('
|
|
658
|
-
preserveAspectRatio?: string | number | import('
|
|
659
|
-
primitiveUnits?: string | number | import('
|
|
660
|
-
radius?: string | number | import('
|
|
661
|
-
refX?: string | number | import('
|
|
662
|
-
refY?: string | number | import('
|
|
663
|
-
renderingIntent?: string | number | import('
|
|
664
|
-
repeatCount?: string | number | import('
|
|
665
|
-
repeatDur?: string | number | import('
|
|
666
|
-
requiredExtensions?: string | number | import('
|
|
667
|
-
requiredFeatures?: string | number | import('
|
|
668
|
-
restart?: string | number | import('
|
|
669
|
-
result?: string | number | import('
|
|
670
|
-
seed?: string | number | import('
|
|
671
|
-
slope?: string | number | import('
|
|
672
|
-
spacing?: string | number | import('
|
|
673
|
-
specularConstant?: string | number | import('
|
|
674
|
-
specularExponent?: string | number | import('
|
|
675
|
-
speed?: string | number | import('
|
|
676
|
-
spreadMethod?: string | number | import('
|
|
677
|
-
startOffset?: string | number | import('
|
|
678
|
-
stdDeviation?: string | number | import('
|
|
679
|
-
stemh?: string | number | import('
|
|
680
|
-
stemv?: string | number | import('
|
|
681
|
-
stitchTiles?: string | number | import('
|
|
682
|
-
strikethroughPosition?: string | number | import('
|
|
683
|
-
strikethroughThickness?: string | number | import('
|
|
684
|
-
surfaceScale?: string | number | import('
|
|
685
|
-
systemLanguage?: string | number | import('
|
|
686
|
-
tableValues?: string | number | import('
|
|
687
|
-
targetX?: string | number | import('
|
|
688
|
-
targetY?: string | number | import('
|
|
689
|
-
textLength?: string | number | import('
|
|
690
|
-
to?: string | number | import('
|
|
691
|
-
u1?: string | number | import('
|
|
692
|
-
u2?: string | number | import('
|
|
693
|
-
underlinePosition?: string | number | import('
|
|
694
|
-
underlineThickness?: string | number | import('
|
|
695
|
-
unicode?: string | number | import('
|
|
696
|
-
unicodeRange?: string | number | import('
|
|
697
|
-
unitsPerEm?: string | number | import('
|
|
698
|
-
vAlphabetic?: string | number | import('
|
|
699
|
-
version?: string | number | import('
|
|
700
|
-
vertAdvY?: string | number | import('
|
|
701
|
-
vertOriginX?: string | number | import('
|
|
702
|
-
vertOriginY?: string | number | import('
|
|
703
|
-
vHanging?: string | number | import('
|
|
704
|
-
vIdeographic?: string | number | import('
|
|
705
|
-
viewBox?: string | number | import('
|
|
706
|
-
viewTarget?: string | number | import('
|
|
707
|
-
vMathematical?: string | number | import('
|
|
708
|
-
widths?: string | number | import('
|
|
709
|
-
x1?: string | number | import('
|
|
710
|
-
x2?: string | number | import('
|
|
711
|
-
xChannelSelector?: string | number | import('
|
|
712
|
-
xHeight?: string | number | import('
|
|
713
|
-
xlinkActuate?: string | number | import('
|
|
714
|
-
xlinkArcrole?: string | number | import('
|
|
715
|
-
xlinkHref?: string | number | import('
|
|
716
|
-
xlinkRole?: string | number | import('
|
|
717
|
-
xlinkShow?: string | number | import('
|
|
718
|
-
xlinkTitle?: string | number | import('
|
|
719
|
-
xlinkType?: string | number | import('
|
|
720
|
-
xmlBase?: string | number | import('
|
|
721
|
-
xmlLang?: string | number | import('
|
|
722
|
-
xmlns?: string | number | import('
|
|
723
|
-
xmlnsXlink?: string | number | import('
|
|
724
|
-
xmlSpace?: string | number | import('
|
|
725
|
-
y1?: string | number | import('
|
|
726
|
-
y2?: string | number | import('
|
|
727
|
-
yChannelSelector?: string | number | import('
|
|
728
|
-
zoomAndPan?: string | number | import('
|
|
729
|
-
pathOffset?: string | number | import('
|
|
730
|
-
pathSpacing?: string | number | import('
|
|
731
|
-
translateX?: string | number | import('
|
|
732
|
-
translateY?: string | number | import('
|
|
733
|
-
translateZ?: string | number | import('
|
|
734
|
-
skew?: string | number | import('
|
|
735
|
-
originX?: string | number | import('
|
|
736
|
-
originY?: string | number | import('
|
|
737
|
-
originZ?: string | number | import('
|
|
738
|
-
transformPerspective?: string | number | import('
|
|
39
|
+
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
40
|
+
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
41
|
+
string?: string | number | import('motion-dom').MotionValue<any>;
|
|
42
|
+
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
43
|
+
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
44
|
+
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
45
|
+
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
46
|
+
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
47
|
+
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
48
|
+
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
49
|
+
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
50
|
+
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
51
|
+
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
52
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
53
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
54
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
55
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
56
|
+
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
57
|
+
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
58
|
+
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
59
|
+
rotate?: string | number | import('motion-dom').MotionValue<any>;
|
|
60
|
+
scale?: string | number | import('motion-dom').MotionValue<any>;
|
|
61
|
+
perspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
62
|
+
transition?: string | number | import('motion-dom').MotionValue<any>;
|
|
63
|
+
translate?: string | number | import('motion-dom').MotionValue<any>;
|
|
64
|
+
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
65
|
+
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
66
|
+
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
67
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
68
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
69
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
70
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
71
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
72
|
+
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
73
|
+
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
74
|
+
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
75
|
+
alignContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
76
|
+
alignItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
77
|
+
alignSelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
78
|
+
alignmentBaseline?: string | number | import('motion-dom').MotionValue<any>;
|
|
79
|
+
animation?: string | number | import('motion-dom').MotionValue<any>;
|
|
80
|
+
animationComposition?: string | number | import('motion-dom').MotionValue<any>;
|
|
81
|
+
animationDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
82
|
+
animationDirection?: string | number | import('motion-dom').MotionValue<any>;
|
|
83
|
+
animationDuration?: string | number | import('motion-dom').MotionValue<any>;
|
|
84
|
+
animationFillMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
85
|
+
animationIterationCount?: string | number | import('motion-dom').MotionValue<any>;
|
|
86
|
+
animationName?: string | number | import('motion-dom').MotionValue<any>;
|
|
87
|
+
animationPlayState?: string | number | import('motion-dom').MotionValue<any>;
|
|
88
|
+
animationTimingFunction?: string | number | import('motion-dom').MotionValue<any>;
|
|
89
|
+
appearance?: string | number | import('motion-dom').MotionValue<any>;
|
|
90
|
+
aspectRatio?: string | number | import('motion-dom').MotionValue<any>;
|
|
91
|
+
backdropFilter?: string | number | import('motion-dom').MotionValue<any>;
|
|
92
|
+
backfaceVisibility?: string | number | import('motion-dom').MotionValue<any>;
|
|
93
|
+
background?: string | number | import('motion-dom').MotionValue<any>;
|
|
94
|
+
backgroundAttachment?: string | number | import('motion-dom').MotionValue<any>;
|
|
95
|
+
backgroundBlendMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
96
|
+
backgroundClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
97
|
+
backgroundColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
98
|
+
backgroundImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
99
|
+
backgroundOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
100
|
+
backgroundPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
101
|
+
backgroundPositionX?: string | number | import('motion-dom').MotionValue<any>;
|
|
102
|
+
backgroundPositionY?: string | number | import('motion-dom').MotionValue<any>;
|
|
103
|
+
backgroundRepeat?: string | number | import('motion-dom').MotionValue<any>;
|
|
104
|
+
backgroundSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
105
|
+
baselineShift?: string | number | import('motion-dom').MotionValue<any>;
|
|
106
|
+
baselineSource?: string | number | import('motion-dom').MotionValue<any>;
|
|
107
|
+
blockSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
108
|
+
border?: string | number | import('motion-dom').MotionValue<any>;
|
|
109
|
+
borderBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
110
|
+
borderBlockColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
111
|
+
borderBlockEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
112
|
+
borderBlockEndColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
113
|
+
borderBlockEndStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
114
|
+
borderBlockEndWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
115
|
+
borderBlockStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
116
|
+
borderBlockStartColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
117
|
+
borderBlockStartStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
118
|
+
borderBlockStartWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
119
|
+
borderBlockStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
120
|
+
borderBlockWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
121
|
+
borderBottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
122
|
+
borderBottomColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
123
|
+
borderBottomLeftRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
124
|
+
borderBottomRightRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
125
|
+
borderBottomStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
126
|
+
borderBottomWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
127
|
+
borderCollapse?: string | number | import('motion-dom').MotionValue<any>;
|
|
128
|
+
borderColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
129
|
+
borderEndEndRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
130
|
+
borderEndStartRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
131
|
+
borderImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
132
|
+
borderImageOutset?: string | number | import('motion-dom').MotionValue<any>;
|
|
133
|
+
borderImageRepeat?: string | number | import('motion-dom').MotionValue<any>;
|
|
134
|
+
borderImageSlice?: string | number | import('motion-dom').MotionValue<any>;
|
|
135
|
+
borderImageSource?: string | number | import('motion-dom').MotionValue<any>;
|
|
136
|
+
borderImageWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
137
|
+
borderInline?: string | number | import('motion-dom').MotionValue<any>;
|
|
138
|
+
borderInlineColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
139
|
+
borderInlineEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
140
|
+
borderInlineEndColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
141
|
+
borderInlineEndStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
142
|
+
borderInlineEndWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
143
|
+
borderInlineStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
144
|
+
borderInlineStartColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
145
|
+
borderInlineStartStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
146
|
+
borderInlineStartWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
147
|
+
borderInlineStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
148
|
+
borderInlineWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
149
|
+
borderLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
150
|
+
borderLeftColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
151
|
+
borderLeftStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
152
|
+
borderLeftWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
153
|
+
borderRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
154
|
+
borderRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
155
|
+
borderRightColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
156
|
+
borderRightStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
157
|
+
borderRightWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
158
|
+
borderSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
159
|
+
borderStartEndRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
160
|
+
borderStartStartRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
161
|
+
borderStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
162
|
+
borderTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
163
|
+
borderTopColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
164
|
+
borderTopLeftRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
165
|
+
borderTopRightRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
166
|
+
borderTopStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
167
|
+
borderTopWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
168
|
+
borderWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
169
|
+
boxShadow?: string | number | import('motion-dom').MotionValue<any>;
|
|
170
|
+
boxSizing?: string | number | import('motion-dom').MotionValue<any>;
|
|
171
|
+
breakAfter?: string | number | import('motion-dom').MotionValue<any>;
|
|
172
|
+
breakBefore?: string | number | import('motion-dom').MotionValue<any>;
|
|
173
|
+
breakInside?: string | number | import('motion-dom').MotionValue<any>;
|
|
174
|
+
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
175
|
+
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
176
|
+
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
177
|
+
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
178
|
+
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
179
|
+
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
180
|
+
colorInterpolationFilters?: string | number | import('motion-dom').MotionValue<any>;
|
|
181
|
+
colorScheme?: string | number | import('motion-dom').MotionValue<any>;
|
|
182
|
+
columnCount?: string | number | import('motion-dom').MotionValue<any>;
|
|
183
|
+
columnFill?: string | number | import('motion-dom').MotionValue<any>;
|
|
184
|
+
columnGap?: string | number | import('motion-dom').MotionValue<any>;
|
|
185
|
+
columnRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
186
|
+
columnRuleColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
187
|
+
columnRuleStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
188
|
+
columnRuleWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
189
|
+
columnSpan?: string | number | import('motion-dom').MotionValue<any>;
|
|
190
|
+
columnWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
191
|
+
columns?: string | number | import('motion-dom').MotionValue<any>;
|
|
192
|
+
contain?: string | number | import('motion-dom').MotionValue<any>;
|
|
193
|
+
containIntrinsicBlockSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
194
|
+
containIntrinsicHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
195
|
+
containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
196
|
+
containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
197
|
+
containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
198
|
+
container?: string | number | import('motion-dom').MotionValue<any>;
|
|
199
|
+
containerName?: string | number | import('motion-dom').MotionValue<any>;
|
|
200
|
+
containerType?: string | number | import('motion-dom').MotionValue<any>;
|
|
201
|
+
content?: string | number | import('motion-dom').MotionValue<any>;
|
|
202
|
+
contentVisibility?: string | number | import('motion-dom').MotionValue<any>;
|
|
203
|
+
counterIncrement?: string | number | import('motion-dom').MotionValue<any>;
|
|
204
|
+
counterReset?: string | number | import('motion-dom').MotionValue<any>;
|
|
205
|
+
counterSet?: string | number | import('motion-dom').MotionValue<any>;
|
|
206
|
+
cssFloat?: string | number | import('motion-dom').MotionValue<any>;
|
|
207
|
+
cssText?: string | number | import('motion-dom').MotionValue<any>;
|
|
208
|
+
cursor?: string | number | import('motion-dom').MotionValue<any>;
|
|
209
|
+
cx?: string | number | import('motion-dom').MotionValue<any>;
|
|
210
|
+
cy?: string | number | import('motion-dom').MotionValue<any>;
|
|
211
|
+
d?: string | number | import('motion-dom').MotionValue<any>;
|
|
212
|
+
display?: string | number | import('motion-dom').MotionValue<any>;
|
|
213
|
+
dominantBaseline?: string | number | import('motion-dom').MotionValue<any>;
|
|
214
|
+
emptyCells?: string | number | import('motion-dom').MotionValue<any>;
|
|
215
|
+
fillOpacity?: string | number | import('motion-dom').MotionValue<any>;
|
|
216
|
+
fillRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
217
|
+
flex?: string | number | import('motion-dom').MotionValue<any>;
|
|
218
|
+
flexBasis?: string | number | import('motion-dom').MotionValue<any>;
|
|
219
|
+
flexDirection?: string | number | import('motion-dom').MotionValue<any>;
|
|
220
|
+
flexFlow?: string | number | import('motion-dom').MotionValue<any>;
|
|
221
|
+
flexGrow?: string | number | import('motion-dom').MotionValue<any>;
|
|
222
|
+
flexShrink?: string | number | import('motion-dom').MotionValue<any>;
|
|
223
|
+
flexWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
224
|
+
float?: string | number | import('motion-dom').MotionValue<any>;
|
|
225
|
+
floodColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
226
|
+
floodOpacity?: string | number | import('motion-dom').MotionValue<any>;
|
|
227
|
+
font?: string | number | import('motion-dom').MotionValue<any>;
|
|
228
|
+
fontFamily?: string | number | import('motion-dom').MotionValue<any>;
|
|
229
|
+
fontFeatureSettings?: string | number | import('motion-dom').MotionValue<any>;
|
|
230
|
+
fontKerning?: string | number | import('motion-dom').MotionValue<any>;
|
|
231
|
+
fontOpticalSizing?: string | number | import('motion-dom').MotionValue<any>;
|
|
232
|
+
fontPalette?: string | number | import('motion-dom').MotionValue<any>;
|
|
233
|
+
fontSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
234
|
+
fontSizeAdjust?: string | number | import('motion-dom').MotionValue<any>;
|
|
235
|
+
fontStretch?: string | number | import('motion-dom').MotionValue<any>;
|
|
236
|
+
fontStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
237
|
+
fontSynthesis?: string | number | import('motion-dom').MotionValue<any>;
|
|
238
|
+
fontSynthesisSmallCaps?: string | number | import('motion-dom').MotionValue<any>;
|
|
239
|
+
fontSynthesisStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
240
|
+
fontSynthesisWeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
241
|
+
fontVariant?: string | number | import('motion-dom').MotionValue<any>;
|
|
242
|
+
fontVariantAlternates?: string | number | import('motion-dom').MotionValue<any>;
|
|
243
|
+
fontVariantCaps?: string | number | import('motion-dom').MotionValue<any>;
|
|
244
|
+
fontVariantEastAsian?: string | number | import('motion-dom').MotionValue<any>;
|
|
245
|
+
fontVariantLigatures?: string | number | import('motion-dom').MotionValue<any>;
|
|
246
|
+
fontVariantNumeric?: string | number | import('motion-dom').MotionValue<any>;
|
|
247
|
+
fontVariantPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
248
|
+
fontVariationSettings?: string | number | import('motion-dom').MotionValue<any>;
|
|
249
|
+
fontWeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
250
|
+
forcedColorAdjust?: string | number | import('motion-dom').MotionValue<any>;
|
|
251
|
+
gap?: string | number | import('motion-dom').MotionValue<any>;
|
|
252
|
+
grid?: string | number | import('motion-dom').MotionValue<any>;
|
|
253
|
+
gridArea?: string | number | import('motion-dom').MotionValue<any>;
|
|
254
|
+
gridAutoColumns?: string | number | import('motion-dom').MotionValue<any>;
|
|
255
|
+
gridAutoFlow?: string | number | import('motion-dom').MotionValue<any>;
|
|
256
|
+
gridAutoRows?: string | number | import('motion-dom').MotionValue<any>;
|
|
257
|
+
gridColumn?: string | number | import('motion-dom').MotionValue<any>;
|
|
258
|
+
gridColumnEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
259
|
+
gridColumnGap?: string | number | import('motion-dom').MotionValue<any>;
|
|
260
|
+
gridColumnStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
261
|
+
gridGap?: string | number | import('motion-dom').MotionValue<any>;
|
|
262
|
+
gridRow?: string | number | import('motion-dom').MotionValue<any>;
|
|
263
|
+
gridRowEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
264
|
+
gridRowGap?: string | number | import('motion-dom').MotionValue<any>;
|
|
265
|
+
gridRowStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
266
|
+
gridTemplate?: string | number | import('motion-dom').MotionValue<any>;
|
|
267
|
+
gridTemplateAreas?: string | number | import('motion-dom').MotionValue<any>;
|
|
268
|
+
gridTemplateColumns?: string | number | import('motion-dom').MotionValue<any>;
|
|
269
|
+
gridTemplateRows?: string | number | import('motion-dom').MotionValue<any>;
|
|
270
|
+
height?: string | number | import('motion-dom').MotionValue<any>;
|
|
271
|
+
hyphenateCharacter?: string | number | import('motion-dom').MotionValue<any>;
|
|
272
|
+
hyphens?: string | number | import('motion-dom').MotionValue<any>;
|
|
273
|
+
imageOrientation?: string | number | import('motion-dom').MotionValue<any>;
|
|
274
|
+
imageRendering?: string | number | import('motion-dom').MotionValue<any>;
|
|
275
|
+
inlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
276
|
+
inset?: string | number | import('motion-dom').MotionValue<any>;
|
|
277
|
+
insetBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
278
|
+
insetBlockEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
279
|
+
insetBlockStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
280
|
+
insetInline?: string | number | import('motion-dom').MotionValue<any>;
|
|
281
|
+
insetInlineEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
282
|
+
insetInlineStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
283
|
+
isolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
284
|
+
justifyContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
285
|
+
justifyItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
286
|
+
justifySelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
287
|
+
letterSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
288
|
+
lightingColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
289
|
+
lineBreak?: string | number | import('motion-dom').MotionValue<any>;
|
|
290
|
+
lineHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
291
|
+
listStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
292
|
+
listStyleImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
293
|
+
listStylePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
294
|
+
listStyleType?: string | number | import('motion-dom').MotionValue<any>;
|
|
295
|
+
margin?: string | number | import('motion-dom').MotionValue<any>;
|
|
296
|
+
marginBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
297
|
+
marginBlockEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
298
|
+
marginBlockStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
299
|
+
marginBottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
300
|
+
marginInline?: string | number | import('motion-dom').MotionValue<any>;
|
|
301
|
+
marginInlineEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
302
|
+
marginInlineStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
303
|
+
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
304
|
+
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
305
|
+
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
306
|
+
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
307
|
+
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
308
|
+
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
309
|
+
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
310
|
+
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
311
|
+
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
312
|
+
maskMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
313
|
+
maskOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
314
|
+
maskPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
315
|
+
maskRepeat?: string | number | import('motion-dom').MotionValue<any>;
|
|
316
|
+
maskSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
317
|
+
maskType?: string | number | import('motion-dom').MotionValue<any>;
|
|
318
|
+
mathDepth?: string | number | import('motion-dom').MotionValue<any>;
|
|
319
|
+
mathStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
320
|
+
maxBlockSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
321
|
+
maxHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
322
|
+
maxInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
323
|
+
maxWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
324
|
+
minBlockSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
325
|
+
minHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
326
|
+
minInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
327
|
+
minWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
328
|
+
mixBlendMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
329
|
+
objectFit?: string | number | import('motion-dom').MotionValue<any>;
|
|
330
|
+
objectPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
331
|
+
offsetAnchor?: string | number | import('motion-dom').MotionValue<any>;
|
|
332
|
+
offsetDistance?: string | number | import('motion-dom').MotionValue<any>;
|
|
333
|
+
offsetPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
334
|
+
offsetPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
335
|
+
offsetRotate?: string | number | import('motion-dom').MotionValue<any>;
|
|
336
|
+
opacity?: string | number | import('motion-dom').MotionValue<any>;
|
|
337
|
+
order?: string | number | import('motion-dom').MotionValue<any>;
|
|
338
|
+
orphans?: string | number | import('motion-dom').MotionValue<any>;
|
|
339
|
+
outline?: string | number | import('motion-dom').MotionValue<any>;
|
|
340
|
+
outlineColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
341
|
+
outlineOffset?: string | number | import('motion-dom').MotionValue<any>;
|
|
342
|
+
outlineStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
343
|
+
outlineWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
344
|
+
overflow?: string | number | import('motion-dom').MotionValue<any>;
|
|
345
|
+
overflowAnchor?: string | number | import('motion-dom').MotionValue<any>;
|
|
346
|
+
overflowClipMargin?: string | number | import('motion-dom').MotionValue<any>;
|
|
347
|
+
overflowWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
348
|
+
overflowX?: string | number | import('motion-dom').MotionValue<any>;
|
|
349
|
+
overflowY?: string | number | import('motion-dom').MotionValue<any>;
|
|
350
|
+
overscrollBehavior?: string | number | import('motion-dom').MotionValue<any>;
|
|
351
|
+
overscrollBehaviorBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
352
|
+
overscrollBehaviorInline?: string | number | import('motion-dom').MotionValue<any>;
|
|
353
|
+
overscrollBehaviorX?: string | number | import('motion-dom').MotionValue<any>;
|
|
354
|
+
overscrollBehaviorY?: string | number | import('motion-dom').MotionValue<any>;
|
|
355
|
+
padding?: string | number | import('motion-dom').MotionValue<any>;
|
|
356
|
+
paddingBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
357
|
+
paddingBlockEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
358
|
+
paddingBlockStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
359
|
+
paddingBottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
360
|
+
paddingInline?: string | number | import('motion-dom').MotionValue<any>;
|
|
361
|
+
paddingInlineEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
362
|
+
paddingInlineStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
363
|
+
paddingLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
364
|
+
paddingRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
365
|
+
paddingTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
366
|
+
pageBreakAfter?: string | number | import('motion-dom').MotionValue<any>;
|
|
367
|
+
pageBreakBefore?: string | number | import('motion-dom').MotionValue<any>;
|
|
368
|
+
pageBreakInside?: string | number | import('motion-dom').MotionValue<any>;
|
|
369
|
+
paintOrder?: string | number | import('motion-dom').MotionValue<any>;
|
|
370
|
+
readonly parentRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
371
|
+
perspectiveOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
372
|
+
placeContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
373
|
+
placeItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
374
|
+
placeSelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
375
|
+
pointerEvents?: string | number | import('motion-dom').MotionValue<any>;
|
|
376
|
+
printColorAdjust?: string | number | import('motion-dom').MotionValue<any>;
|
|
377
|
+
quotes?: string | number | import('motion-dom').MotionValue<any>;
|
|
378
|
+
r?: string | number | import('motion-dom').MotionValue<any>;
|
|
379
|
+
rowGap?: string | number | import('motion-dom').MotionValue<any>;
|
|
380
|
+
rubyPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
381
|
+
rx?: string | number | import('motion-dom').MotionValue<any>;
|
|
382
|
+
ry?: string | number | import('motion-dom').MotionValue<any>;
|
|
383
|
+
scrollBehavior?: string | number | import('motion-dom').MotionValue<any>;
|
|
384
|
+
scrollMargin?: string | number | import('motion-dom').MotionValue<any>;
|
|
385
|
+
scrollMarginBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
386
|
+
scrollMarginBlockEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
387
|
+
scrollMarginBlockStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
388
|
+
scrollMarginBottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
389
|
+
scrollMarginInline?: string | number | import('motion-dom').MotionValue<any>;
|
|
390
|
+
scrollMarginInlineEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
391
|
+
scrollMarginInlineStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
392
|
+
scrollMarginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
393
|
+
scrollMarginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
394
|
+
scrollMarginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
395
|
+
scrollPadding?: string | number | import('motion-dom').MotionValue<any>;
|
|
396
|
+
scrollPaddingBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
397
|
+
scrollPaddingBlockEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
398
|
+
scrollPaddingBlockStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
399
|
+
scrollPaddingBottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
400
|
+
scrollPaddingInline?: string | number | import('motion-dom').MotionValue<any>;
|
|
401
|
+
scrollPaddingInlineEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
402
|
+
scrollPaddingInlineStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
403
|
+
scrollPaddingLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
404
|
+
scrollPaddingRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
405
|
+
scrollPaddingTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
406
|
+
scrollSnapAlign?: string | number | import('motion-dom').MotionValue<any>;
|
|
407
|
+
scrollSnapStop?: string | number | import('motion-dom').MotionValue<any>;
|
|
408
|
+
scrollSnapType?: string | number | import('motion-dom').MotionValue<any>;
|
|
409
|
+
scrollbarColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
410
|
+
scrollbarGutter?: string | number | import('motion-dom').MotionValue<any>;
|
|
411
|
+
scrollbarWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
412
|
+
shapeImageThreshold?: string | number | import('motion-dom').MotionValue<any>;
|
|
413
|
+
shapeMargin?: string | number | import('motion-dom').MotionValue<any>;
|
|
414
|
+
shapeOutside?: string | number | import('motion-dom').MotionValue<any>;
|
|
415
|
+
shapeRendering?: string | number | import('motion-dom').MotionValue<any>;
|
|
416
|
+
stopColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
417
|
+
stopOpacity?: string | number | import('motion-dom').MotionValue<any>;
|
|
418
|
+
stroke?: string | number | import('motion-dom').MotionValue<any>;
|
|
419
|
+
strokeDasharray?: string | number | import('motion-dom').MotionValue<any>;
|
|
420
|
+
strokeDashoffset?: string | number | import('motion-dom').MotionValue<any>;
|
|
421
|
+
strokeLinecap?: string | number | import('motion-dom').MotionValue<any>;
|
|
422
|
+
strokeLinejoin?: string | number | import('motion-dom').MotionValue<any>;
|
|
423
|
+
strokeMiterlimit?: string | number | import('motion-dom').MotionValue<any>;
|
|
424
|
+
strokeOpacity?: string | number | import('motion-dom').MotionValue<any>;
|
|
425
|
+
strokeWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
426
|
+
tabSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
427
|
+
tableLayout?: string | number | import('motion-dom').MotionValue<any>;
|
|
428
|
+
textAlign?: string | number | import('motion-dom').MotionValue<any>;
|
|
429
|
+
textAlignLast?: string | number | import('motion-dom').MotionValue<any>;
|
|
430
|
+
textAnchor?: string | number | import('motion-dom').MotionValue<any>;
|
|
431
|
+
textCombineUpright?: string | number | import('motion-dom').MotionValue<any>;
|
|
432
|
+
textDecoration?: string | number | import('motion-dom').MotionValue<any>;
|
|
433
|
+
textDecorationColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
434
|
+
textDecorationLine?: string | number | import('motion-dom').MotionValue<any>;
|
|
435
|
+
textDecorationSkipInk?: string | number | import('motion-dom').MotionValue<any>;
|
|
436
|
+
textDecorationStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
437
|
+
textDecorationThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
438
|
+
textEmphasis?: string | number | import('motion-dom').MotionValue<any>;
|
|
439
|
+
textEmphasisColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
440
|
+
textEmphasisPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
441
|
+
textEmphasisStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
442
|
+
textIndent?: string | number | import('motion-dom').MotionValue<any>;
|
|
443
|
+
textOrientation?: string | number | import('motion-dom').MotionValue<any>;
|
|
444
|
+
textOverflow?: string | number | import('motion-dom').MotionValue<any>;
|
|
445
|
+
textRendering?: string | number | import('motion-dom').MotionValue<any>;
|
|
446
|
+
textShadow?: string | number | import('motion-dom').MotionValue<any>;
|
|
447
|
+
textTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
448
|
+
textUnderlineOffset?: string | number | import('motion-dom').MotionValue<any>;
|
|
449
|
+
textUnderlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
450
|
+
textWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
451
|
+
textWrapMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
452
|
+
textWrapStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
453
|
+
touchAction?: string | number | import('motion-dom').MotionValue<any>;
|
|
454
|
+
transformBox?: string | number | import('motion-dom').MotionValue<any>;
|
|
455
|
+
transformOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
456
|
+
transformStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
457
|
+
transitionBehavior?: string | number | import('motion-dom').MotionValue<any>;
|
|
458
|
+
transitionDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
459
|
+
transitionDuration?: string | number | import('motion-dom').MotionValue<any>;
|
|
460
|
+
transitionProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
461
|
+
transitionTimingFunction?: string | number | import('motion-dom').MotionValue<any>;
|
|
462
|
+
unicodeBidi?: string | number | import('motion-dom').MotionValue<any>;
|
|
463
|
+
userSelect?: string | number | import('motion-dom').MotionValue<any>;
|
|
464
|
+
vectorEffect?: string | number | import('motion-dom').MotionValue<any>;
|
|
465
|
+
verticalAlign?: string | number | import('motion-dom').MotionValue<any>;
|
|
466
|
+
visibility?: string | number | import('motion-dom').MotionValue<any>;
|
|
467
|
+
webkitAlignContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
468
|
+
webkitAlignItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
469
|
+
webkitAlignSelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
470
|
+
webkitAnimation?: string | number | import('motion-dom').MotionValue<any>;
|
|
471
|
+
webkitAnimationDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
472
|
+
webkitAnimationDirection?: string | number | import('motion-dom').MotionValue<any>;
|
|
473
|
+
webkitAnimationDuration?: string | number | import('motion-dom').MotionValue<any>;
|
|
474
|
+
webkitAnimationFillMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
475
|
+
webkitAnimationIterationCount?: string | number | import('motion-dom').MotionValue<any>;
|
|
476
|
+
webkitAnimationName?: string | number | import('motion-dom').MotionValue<any>;
|
|
477
|
+
webkitAnimationPlayState?: string | number | import('motion-dom').MotionValue<any>;
|
|
478
|
+
webkitAnimationTimingFunction?: string | number | import('motion-dom').MotionValue<any>;
|
|
479
|
+
webkitAppearance?: string | number | import('motion-dom').MotionValue<any>;
|
|
480
|
+
webkitBackfaceVisibility?: string | number | import('motion-dom').MotionValue<any>;
|
|
481
|
+
webkitBackgroundClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
482
|
+
webkitBackgroundOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
483
|
+
webkitBackgroundSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
484
|
+
webkitBorderBottomLeftRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
485
|
+
webkitBorderBottomRightRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
486
|
+
webkitBorderRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
487
|
+
webkitBorderTopLeftRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
488
|
+
webkitBorderTopRightRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
489
|
+
webkitBoxAlign?: string | number | import('motion-dom').MotionValue<any>;
|
|
490
|
+
webkitBoxFlex?: string | number | import('motion-dom').MotionValue<any>;
|
|
491
|
+
webkitBoxOrdinalGroup?: string | number | import('motion-dom').MotionValue<any>;
|
|
492
|
+
webkitBoxOrient?: string | number | import('motion-dom').MotionValue<any>;
|
|
493
|
+
webkitBoxPack?: string | number | import('motion-dom').MotionValue<any>;
|
|
494
|
+
webkitBoxShadow?: string | number | import('motion-dom').MotionValue<any>;
|
|
495
|
+
webkitBoxSizing?: string | number | import('motion-dom').MotionValue<any>;
|
|
496
|
+
webkitFilter?: string | number | import('motion-dom').MotionValue<any>;
|
|
497
|
+
webkitFlex?: string | number | import('motion-dom').MotionValue<any>;
|
|
498
|
+
webkitFlexBasis?: string | number | import('motion-dom').MotionValue<any>;
|
|
499
|
+
webkitFlexDirection?: string | number | import('motion-dom').MotionValue<any>;
|
|
500
|
+
webkitFlexFlow?: string | number | import('motion-dom').MotionValue<any>;
|
|
501
|
+
webkitFlexGrow?: string | number | import('motion-dom').MotionValue<any>;
|
|
502
|
+
webkitFlexShrink?: string | number | import('motion-dom').MotionValue<any>;
|
|
503
|
+
webkitFlexWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
504
|
+
webkitJustifyContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
505
|
+
webkitLineClamp?: string | number | import('motion-dom').MotionValue<any>;
|
|
506
|
+
webkitMask?: string | number | import('motion-dom').MotionValue<any>;
|
|
507
|
+
webkitMaskBoxImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
508
|
+
webkitMaskBoxImageOutset?: string | number | import('motion-dom').MotionValue<any>;
|
|
509
|
+
webkitMaskBoxImageRepeat?: string | number | import('motion-dom').MotionValue<any>;
|
|
510
|
+
webkitMaskBoxImageSlice?: string | number | import('motion-dom').MotionValue<any>;
|
|
511
|
+
webkitMaskBoxImageSource?: string | number | import('motion-dom').MotionValue<any>;
|
|
512
|
+
webkitMaskBoxImageWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
513
|
+
webkitMaskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
514
|
+
webkitMaskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
515
|
+
webkitMaskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
516
|
+
webkitMaskOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
517
|
+
webkitMaskPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
518
|
+
webkitMaskRepeat?: string | number | import('motion-dom').MotionValue<any>;
|
|
519
|
+
webkitMaskSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
520
|
+
webkitOrder?: string | number | import('motion-dom').MotionValue<any>;
|
|
521
|
+
webkitPerspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
522
|
+
webkitPerspectiveOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
523
|
+
webkitTextFillColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
524
|
+
webkitTextSizeAdjust?: string | number | import('motion-dom').MotionValue<any>;
|
|
525
|
+
webkitTextStroke?: string | number | import('motion-dom').MotionValue<any>;
|
|
526
|
+
webkitTextStrokeColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
527
|
+
webkitTextStrokeWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
528
|
+
webkitTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
529
|
+
webkitTransformOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
530
|
+
webkitTransformStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
531
|
+
webkitTransition?: string | number | import('motion-dom').MotionValue<any>;
|
|
532
|
+
webkitTransitionDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
533
|
+
webkitTransitionDuration?: string | number | import('motion-dom').MotionValue<any>;
|
|
534
|
+
webkitTransitionProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
535
|
+
webkitTransitionTimingFunction?: string | number | import('motion-dom').MotionValue<any>;
|
|
536
|
+
webkitUserSelect?: string | number | import('motion-dom').MotionValue<any>;
|
|
537
|
+
whiteSpace?: string | number | import('motion-dom').MotionValue<any>;
|
|
538
|
+
whiteSpaceCollapse?: string | number | import('motion-dom').MotionValue<any>;
|
|
539
|
+
widows?: string | number | import('motion-dom').MotionValue<any>;
|
|
540
|
+
width?: string | number | import('motion-dom').MotionValue<any>;
|
|
541
|
+
wordBreak?: string | number | import('motion-dom').MotionValue<any>;
|
|
542
|
+
wordSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
543
|
+
wordWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
544
|
+
writingMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
545
|
+
zIndex?: string | number | import('motion-dom').MotionValue<any>;
|
|
546
|
+
zoom?: string | number | import('motion-dom').MotionValue<any>;
|
|
547
|
+
getPropertyPriority?: string | number | import('motion-dom').MotionValue<any>;
|
|
548
|
+
getPropertyValue?: string | number | import('motion-dom').MotionValue<any>;
|
|
549
|
+
item?: string | number | import('motion-dom').MotionValue<any>;
|
|
550
|
+
removeProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
551
|
+
setProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
552
|
+
rotateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
553
|
+
rotateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
554
|
+
rotateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
555
|
+
scaleX?: string | number | import('motion-dom').MotionValue<any>;
|
|
556
|
+
scaleY?: string | number | import('motion-dom').MotionValue<any>;
|
|
557
|
+
scaleZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
558
|
+
skewX?: string | number | import('motion-dom').MotionValue<any>;
|
|
559
|
+
skewY?: string | number | import('motion-dom').MotionValue<any>;
|
|
560
|
+
accentHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
561
|
+
accumulate?: string | number | import('motion-dom').MotionValue<any>;
|
|
562
|
+
additive?: string | number | import('motion-dom').MotionValue<any>;
|
|
563
|
+
allowReorder?: string | number | import('motion-dom').MotionValue<any>;
|
|
564
|
+
alphabetic?: string | number | import('motion-dom').MotionValue<any>;
|
|
565
|
+
amplitude?: string | number | import('motion-dom').MotionValue<any>;
|
|
566
|
+
arabicForm?: string | number | import('motion-dom').MotionValue<any>;
|
|
567
|
+
ascent?: string | number | import('motion-dom').MotionValue<any>;
|
|
568
|
+
attributeName?: string | number | import('motion-dom').MotionValue<any>;
|
|
569
|
+
attributeType?: string | number | import('motion-dom').MotionValue<any>;
|
|
570
|
+
autoReverse?: string | number | import('motion-dom').MotionValue<any>;
|
|
571
|
+
azimuth?: string | number | import('motion-dom').MotionValue<any>;
|
|
572
|
+
baseFrequency?: string | number | import('motion-dom').MotionValue<any>;
|
|
573
|
+
baseProfile?: string | number | import('motion-dom').MotionValue<any>;
|
|
574
|
+
bbox?: string | number | import('motion-dom').MotionValue<any>;
|
|
575
|
+
begin?: string | number | import('motion-dom').MotionValue<any>;
|
|
576
|
+
bias?: string | number | import('motion-dom').MotionValue<any>;
|
|
577
|
+
by?: string | number | import('motion-dom').MotionValue<any>;
|
|
578
|
+
calcMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
579
|
+
capHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
580
|
+
clipPathUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
581
|
+
colorProfile?: string | number | import('motion-dom').MotionValue<any>;
|
|
582
|
+
colorRendering?: string | number | import('motion-dom').MotionValue<any>;
|
|
583
|
+
contentScriptType?: string | number | import('motion-dom').MotionValue<any>;
|
|
584
|
+
contentStyleType?: string | number | import('motion-dom').MotionValue<any>;
|
|
585
|
+
decelerate?: string | number | import('motion-dom').MotionValue<any>;
|
|
586
|
+
descent?: string | number | import('motion-dom').MotionValue<any>;
|
|
587
|
+
diffuseConstant?: string | number | import('motion-dom').MotionValue<any>;
|
|
588
|
+
divisor?: string | number | import('motion-dom').MotionValue<any>;
|
|
589
|
+
dur?: string | number | import('motion-dom').MotionValue<any>;
|
|
590
|
+
dx?: string | number | import('motion-dom').MotionValue<any>;
|
|
591
|
+
dy?: string | number | import('motion-dom').MotionValue<any>;
|
|
592
|
+
edgeMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
593
|
+
elevation?: string | number | import('motion-dom').MotionValue<any>;
|
|
594
|
+
enableBackground?: string | number | import('motion-dom').MotionValue<any>;
|
|
595
|
+
exponent?: string | number | import('motion-dom').MotionValue<any>;
|
|
596
|
+
externalResourcesRequired?: string | number | import('motion-dom').MotionValue<any>;
|
|
597
|
+
filterRes?: string | number | import('motion-dom').MotionValue<any>;
|
|
598
|
+
filterUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
599
|
+
focusable?: string | number | import('motion-dom').MotionValue<any>;
|
|
600
|
+
format?: string | number | import('motion-dom').MotionValue<any>;
|
|
601
|
+
fr?: string | number | import('motion-dom').MotionValue<any>;
|
|
602
|
+
fx?: string | number | import('motion-dom').MotionValue<any>;
|
|
603
|
+
fy?: string | number | import('motion-dom').MotionValue<any>;
|
|
604
|
+
g1?: string | number | import('motion-dom').MotionValue<any>;
|
|
605
|
+
g2?: string | number | import('motion-dom').MotionValue<any>;
|
|
606
|
+
glyphName?: string | number | import('motion-dom').MotionValue<any>;
|
|
607
|
+
glyphOrientationHorizontal?: string | number | import('motion-dom').MotionValue<any>;
|
|
608
|
+
glyphOrientationVertical?: string | number | import('motion-dom').MotionValue<any>;
|
|
609
|
+
glyphRef?: string | number | import('motion-dom').MotionValue<any>;
|
|
610
|
+
gradientTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
611
|
+
gradientUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
612
|
+
hanging?: string | number | import('motion-dom').MotionValue<any>;
|
|
613
|
+
horizAdvX?: string | number | import('motion-dom').MotionValue<any>;
|
|
614
|
+
horizOriginX?: string | number | import('motion-dom').MotionValue<any>;
|
|
615
|
+
href?: string | number | import('motion-dom').MotionValue<any>;
|
|
616
|
+
ideographic?: string | number | import('motion-dom').MotionValue<any>;
|
|
617
|
+
in2?: string | number | import('motion-dom').MotionValue<any>;
|
|
618
|
+
in?: string | number | import('motion-dom').MotionValue<any>;
|
|
619
|
+
intercept?: string | number | import('motion-dom').MotionValue<any>;
|
|
620
|
+
k1?: string | number | import('motion-dom').MotionValue<any>;
|
|
621
|
+
k2?: string | number | import('motion-dom').MotionValue<any>;
|
|
622
|
+
k3?: string | number | import('motion-dom').MotionValue<any>;
|
|
623
|
+
k4?: string | number | import('motion-dom').MotionValue<any>;
|
|
624
|
+
k?: string | number | import('motion-dom').MotionValue<any>;
|
|
625
|
+
kernelMatrix?: string | number | import('motion-dom').MotionValue<any>;
|
|
626
|
+
kernelUnitLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
627
|
+
kerning?: string | number | import('motion-dom').MotionValue<any>;
|
|
628
|
+
keyPoints?: string | number | import('motion-dom').MotionValue<any>;
|
|
629
|
+
keySplines?: string | number | import('motion-dom').MotionValue<any>;
|
|
630
|
+
keyTimes?: string | number | import('motion-dom').MotionValue<any>;
|
|
631
|
+
lengthAdjust?: string | number | import('motion-dom').MotionValue<any>;
|
|
632
|
+
limitingConeAngle?: string | number | import('motion-dom').MotionValue<any>;
|
|
633
|
+
local?: string | number | import('motion-dom').MotionValue<any>;
|
|
634
|
+
markerHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
635
|
+
markerUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
636
|
+
markerWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
637
|
+
maskContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
638
|
+
maskUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
639
|
+
mathematical?: string | number | import('motion-dom').MotionValue<any>;
|
|
640
|
+
mode?: string | number | import('motion-dom').MotionValue<any>;
|
|
641
|
+
numOctaves?: string | number | import('motion-dom').MotionValue<any>;
|
|
642
|
+
operator?: string | number | import('motion-dom').MotionValue<any>;
|
|
643
|
+
orient?: string | number | import('motion-dom').MotionValue<any>;
|
|
644
|
+
orientation?: string | number | import('motion-dom').MotionValue<any>;
|
|
645
|
+
origin?: string | number | import('motion-dom').MotionValue<any>;
|
|
646
|
+
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
647
|
+
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
648
|
+
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
649
|
+
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
650
|
+
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
651
|
+
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
652
|
+
patternUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
653
|
+
points?: string | number | import('motion-dom').MotionValue<any>;
|
|
654
|
+
pointsAtX?: string | number | import('motion-dom').MotionValue<any>;
|
|
655
|
+
pointsAtY?: string | number | import('motion-dom').MotionValue<any>;
|
|
656
|
+
pointsAtZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
657
|
+
preserveAlpha?: string | number | import('motion-dom').MotionValue<any>;
|
|
658
|
+
preserveAspectRatio?: string | number | import('motion-dom').MotionValue<any>;
|
|
659
|
+
primitiveUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
660
|
+
radius?: string | number | import('motion-dom').MotionValue<any>;
|
|
661
|
+
refX?: string | number | import('motion-dom').MotionValue<any>;
|
|
662
|
+
refY?: string | number | import('motion-dom').MotionValue<any>;
|
|
663
|
+
renderingIntent?: string | number | import('motion-dom').MotionValue<any>;
|
|
664
|
+
repeatCount?: string | number | import('motion-dom').MotionValue<any>;
|
|
665
|
+
repeatDur?: string | number | import('motion-dom').MotionValue<any>;
|
|
666
|
+
requiredExtensions?: string | number | import('motion-dom').MotionValue<any>;
|
|
667
|
+
requiredFeatures?: string | number | import('motion-dom').MotionValue<any>;
|
|
668
|
+
restart?: string | number | import('motion-dom').MotionValue<any>;
|
|
669
|
+
result?: string | number | import('motion-dom').MotionValue<any>;
|
|
670
|
+
seed?: string | number | import('motion-dom').MotionValue<any>;
|
|
671
|
+
slope?: string | number | import('motion-dom').MotionValue<any>;
|
|
672
|
+
spacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
673
|
+
specularConstant?: string | number | import('motion-dom').MotionValue<any>;
|
|
674
|
+
specularExponent?: string | number | import('motion-dom').MotionValue<any>;
|
|
675
|
+
speed?: string | number | import('motion-dom').MotionValue<any>;
|
|
676
|
+
spreadMethod?: string | number | import('motion-dom').MotionValue<any>;
|
|
677
|
+
startOffset?: string | number | import('motion-dom').MotionValue<any>;
|
|
678
|
+
stdDeviation?: string | number | import('motion-dom').MotionValue<any>;
|
|
679
|
+
stemh?: string | number | import('motion-dom').MotionValue<any>;
|
|
680
|
+
stemv?: string | number | import('motion-dom').MotionValue<any>;
|
|
681
|
+
stitchTiles?: string | number | import('motion-dom').MotionValue<any>;
|
|
682
|
+
strikethroughPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
683
|
+
strikethroughThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
684
|
+
surfaceScale?: string | number | import('motion-dom').MotionValue<any>;
|
|
685
|
+
systemLanguage?: string | number | import('motion-dom').MotionValue<any>;
|
|
686
|
+
tableValues?: string | number | import('motion-dom').MotionValue<any>;
|
|
687
|
+
targetX?: string | number | import('motion-dom').MotionValue<any>;
|
|
688
|
+
targetY?: string | number | import('motion-dom').MotionValue<any>;
|
|
689
|
+
textLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
690
|
+
to?: string | number | import('motion-dom').MotionValue<any>;
|
|
691
|
+
u1?: string | number | import('motion-dom').MotionValue<any>;
|
|
692
|
+
u2?: string | number | import('motion-dom').MotionValue<any>;
|
|
693
|
+
underlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
694
|
+
underlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
695
|
+
unicode?: string | number | import('motion-dom').MotionValue<any>;
|
|
696
|
+
unicodeRange?: string | number | import('motion-dom').MotionValue<any>;
|
|
697
|
+
unitsPerEm?: string | number | import('motion-dom').MotionValue<any>;
|
|
698
|
+
vAlphabetic?: string | number | import('motion-dom').MotionValue<any>;
|
|
699
|
+
version?: string | number | import('motion-dom').MotionValue<any>;
|
|
700
|
+
vertAdvY?: string | number | import('motion-dom').MotionValue<any>;
|
|
701
|
+
vertOriginX?: string | number | import('motion-dom').MotionValue<any>;
|
|
702
|
+
vertOriginY?: string | number | import('motion-dom').MotionValue<any>;
|
|
703
|
+
vHanging?: string | number | import('motion-dom').MotionValue<any>;
|
|
704
|
+
vIdeographic?: string | number | import('motion-dom').MotionValue<any>;
|
|
705
|
+
viewBox?: string | number | import('motion-dom').MotionValue<any>;
|
|
706
|
+
viewTarget?: string | number | import('motion-dom').MotionValue<any>;
|
|
707
|
+
vMathematical?: string | number | import('motion-dom').MotionValue<any>;
|
|
708
|
+
widths?: string | number | import('motion-dom').MotionValue<any>;
|
|
709
|
+
x1?: string | number | import('motion-dom').MotionValue<any>;
|
|
710
|
+
x2?: string | number | import('motion-dom').MotionValue<any>;
|
|
711
|
+
xChannelSelector?: string | number | import('motion-dom').MotionValue<any>;
|
|
712
|
+
xHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
713
|
+
xlinkActuate?: string | number | import('motion-dom').MotionValue<any>;
|
|
714
|
+
xlinkArcrole?: string | number | import('motion-dom').MotionValue<any>;
|
|
715
|
+
xlinkHref?: string | number | import('motion-dom').MotionValue<any>;
|
|
716
|
+
xlinkRole?: string | number | import('motion-dom').MotionValue<any>;
|
|
717
|
+
xlinkShow?: string | number | import('motion-dom').MotionValue<any>;
|
|
718
|
+
xlinkTitle?: string | number | import('motion-dom').MotionValue<any>;
|
|
719
|
+
xlinkType?: string | number | import('motion-dom').MotionValue<any>;
|
|
720
|
+
xmlBase?: string | number | import('motion-dom').MotionValue<any>;
|
|
721
|
+
xmlLang?: string | number | import('motion-dom').MotionValue<any>;
|
|
722
|
+
xmlns?: string | number | import('motion-dom').MotionValue<any>;
|
|
723
|
+
xmlnsXlink?: string | number | import('motion-dom').MotionValue<any>;
|
|
724
|
+
xmlSpace?: string | number | import('motion-dom').MotionValue<any>;
|
|
725
|
+
y1?: string | number | import('motion-dom').MotionValue<any>;
|
|
726
|
+
y2?: string | number | import('motion-dom').MotionValue<any>;
|
|
727
|
+
yChannelSelector?: string | number | import('motion-dom').MotionValue<any>;
|
|
728
|
+
zoomAndPan?: string | number | import('motion-dom').MotionValue<any>;
|
|
729
|
+
pathOffset?: string | number | import('motion-dom').MotionValue<any>;
|
|
730
|
+
pathSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
731
|
+
translateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
732
|
+
translateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
733
|
+
translateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
734
|
+
skew?: string | number | import('motion-dom').MotionValue<any>;
|
|
735
|
+
originX?: string | number | import('motion-dom').MotionValue<any>;
|
|
736
|
+
originY?: string | number | import('motion-dom').MotionValue<any>;
|
|
737
|
+
originZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
738
|
+
transformPerspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
739
739
|
}>;
|
|
740
|
-
transformTemplate?: (transform: import('
|
|
740
|
+
transformTemplate?: (transform: import('motion-dom').TransformProperties, generatedTransform: string) => string;
|
|
741
741
|
onAnimationComplete?: (definition: import('../..').Options["animate"]) => void;
|
|
742
742
|
onUpdate?: (latest: import('framer-motion').ResolvedValues) => void;
|
|
743
743
|
onAnimationStart?: (definition: import('../..').Options["animate"]) => void;
|
|
@@ -747,8 +747,8 @@ export declare function useMotionState(props: MotionProps): {
|
|
|
747
747
|
'data-framer-portal-id'?: string;
|
|
748
748
|
crossfade?: boolean;
|
|
749
749
|
layoutDependency?: any;
|
|
750
|
-
onBeforeLayoutMeasure?: (box: import('framer-motion
|
|
751
|
-
onLayoutMeasure?: (box: import('framer-motion
|
|
750
|
+
onBeforeLayoutMeasure?: (box: import('framer-motion').Box) => void;
|
|
751
|
+
onLayoutMeasure?: (box: import('framer-motion').Box, prevBox: import('framer-motion').Box) => void;
|
|
752
752
|
onLayoutAnimationStart?: () => void;
|
|
753
753
|
onLayoutAnimationComplete?: () => void;
|
|
754
754
|
globalPressTarget?: boolean;
|
|
@@ -763,10 +763,10 @@ export declare function useMotionState(props: MotionProps): {
|
|
|
763
763
|
dragSnapToOrigin?: boolean;
|
|
764
764
|
dragDirectionLock?: boolean;
|
|
765
765
|
dragPropagation?: boolean;
|
|
766
|
-
dragConstraints?: false | Partial<import('framer-motion
|
|
766
|
+
dragConstraints?: false | Partial<import('framer-motion').BoundingBox> | HTMLElement;
|
|
767
767
|
dragElastic?: import('framer-motion').DragElastic;
|
|
768
768
|
dragMomentum?: boolean;
|
|
769
|
-
dragTransition?: import('
|
|
769
|
+
dragTransition?: import('motion-dom').InertiaOptions;
|
|
770
770
|
dragListener?: boolean;
|
|
771
771
|
dragControls?: import('../../features/gestures/drag/use-drag-controls').DragControls;
|
|
772
772
|
onDragStart?: (event: PointerEvent, info: import('framer-motion').PanInfo) => void;
|
|
@@ -774,7 +774,7 @@ export declare function useMotionState(props: MotionProps): {
|
|
|
774
774
|
onDrag?: (event: PointerEvent, info: import('framer-motion').PanInfo) => void;
|
|
775
775
|
onDirectionLock?: (axis: "x" | "y") => void;
|
|
776
776
|
onDragTransitionEnd?: () => void;
|
|
777
|
-
onMeasureDragConstraints?: (constraints: import('framer-motion
|
|
777
|
+
onMeasureDragConstraints?: (constraints: import('framer-motion').BoundingBox) => import('framer-motion').BoundingBox | void;
|
|
778
778
|
onPanSessionStart?: (event: PointerEvent, info: import('../..').PanInfo) => void;
|
|
779
779
|
onPanStart?: (event: PointerEvent, info: import('../..').PanInfo) => void;
|
|
780
780
|
onPan?: (event: PointerEvent, info: import('../..').PanInfo) => void;
|