Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency framer-motion to v11 #1882

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
framer-motion 10.0.0 -> 11.9.0 age adoption passing confidence

Release Notes

framer/motion (framer-motion)

v11.9.0

Compare Source

Added
  • Mini animate and useAnimate functions.

v11.8.0

Compare Source

Added
  • Easing functions now get compiled into linear() easings when animating via WAAPI.

v11.7.0

Compare Source

Added
  • Added support for custom animation generators via type.

v11.6.0

Compare Source

Added
  • Added info and element tracking to scroll.
  • Added steps easing.
Changed
  • Values added to will-change now stay there for their lifespan to prevent GPU thrashing and weird Safari subpixel jitters.

v11.5.6

Compare Source

Fixed
  • Ensuring updating motion values during render doesn't lock rendering for an element.

v11.5.5

Compare Source

Fixed
  • Changed values of child variants now animate even when the parent variant name hasn't changed.

v11.5.4

Compare Source

Fixed
  • Improving tree-shakability.

v11.5.3

Compare Source

Fixed
  • Reorder components now import motion proxy.

v11.5.2

Compare Source

Added
  • Changing motion() deprecation warning to warnOnce.

v11.5.1

Compare Source

Added
  • Exporting findSpring for internal use.

v11.5.0

Compare Source

Added
  • motion.create() and m.create().
Deprecrated
  • motion() and m().

v11.4.0

Compare Source

Added
  • Support for React Server Components, including new entrypoints for motion and m components.

v11.3.31

Compare Source

Fixed
  • Detects conflicts between optimised animations and rendered style.
  • Resumes optimised animations where possible once layout measurements are complete.

v11.3.30

Compare Source

Fixed
  • Removed double "change" handler on externally-provided MotionValues.

v11.3.29

Compare Source

Fixed
  • Selective cancellation of optimised appear animations.

v11.3.28

Compare Source

Fixed
  • Use startTime instead of elapsed to sync optimised animations.

v11.3.27

Compare Source

Changed
  • Allow manual setting of startTime via animation options (currently for internal use only).

v11.3.26

Compare Source

Fixed
  • Improving synchronisation between DOM animations on externally-provided MotionValues and internal MotionValues.
  • Fixing unit conversion on DOM animations with externally-provided MotionValues.

v11.3.25

Compare Source

Changed
  • Improve calculation of startTime to prefer the immediacy of animation creation over keyframe resolution, but fall back to the latter if the former would lead to a perceptual jump.

v11.3.24

Compare Source

Fixed
  • Fixing incorrect version publish.

v11.3.23

Compare Source

Fixed
  • Improving optimised appear animation check from data-appear-id to active recording of started animations.
  • Only cancelling optimised appear animations from layout animations when they're animating transform.

v11.3.22

Compare Source

Fixed
  • Fixing spring animations with explicit velocities that animate to their current value.

v11.3.21

Compare Source

Changed
  • Removing default transforms from generated transform string provided to transformTemplate.

v11.3.20

Compare Source

Changed
  • Improved performance of transform by up to 30% when providing many default transforms as MotionValues.

v11.3.19

Compare Source

Fixed
  • Fixed problem with AnimatePresence not rerendering children unless their presence had changed.

v11.3.18

Compare Source

Fixed
  • Improved correctness of AnimatePresence and made safe to use with concurrent rendering.

v11.3.17

Compare Source

Added
  • domMin feature bundle.

v11.3.16

Compare Source

Changed
  • Exporting UseScrollOptions type.

v11.3.15

Compare Source

Changed
  • Improved types for inView()'s margin property.

v11.3.14

Compare Source

Fixed
  • Wrapping usePresence's safeToRemove callback in useCallback leading to fewer re-renders.

v11.3.13

Compare Source

Fixed
  • Fixing position: fixed layout animations while scrolling.

v11.3.12

Compare Source

Fixed
  • Improving useSpring types so it accepts MotionValue<string> or MotionValue<number> but always returns MotionValue<number>.

v11.3.11

Compare Source

Fixed
  • Removing "react" import from DOM-only bundle.

v11.3.10

Compare Source

Fixed
  • Changing isBrowser check from document to window.

v11.3.9

Compare Source

Changed
  • Improve performance of window.MotionDebug check.

v11.3.8

Compare Source

Changed
  • Improve performance of layout animation calculated projection comparisons.

v11.3.7

Compare Source

Changed
  • Active render scheduling check to prevent unnecessary Set lookups.

v11.3.6

Compare Source

Changed
  • Minor performance improvements for layout animations.

v11.3.5

Compare Source

Fixed
  • Ensuring DOM bundle doesn't include react and react-dom as dependencies.

v11.3.4

Compare Source

Changed
  • Check for display: contents elements now against component props instead of Element.style.

v11.3.3

Compare Source

Changed
  • Frameloop now uses a single Set vs Set and Array, leading to smaller bundlesize and better performance under heavy load.

v11.3.2

Compare Source

Fixed
  • No longer adding background-color to will-change.

v11.3.1

Compare Source

Updated
  • Externally-provided MotionValues are no longer permanently added to will-change.

v11.3.0

Compare Source

Updated
  • Animations automatically optimised via will-change.

v11.2.14

Compare Source

Updated
  • Improved performance of core render loop.

v11.2.13

Compare Source

Fixed
  • Checking for null before interpolating color values.

v11.2.12

Compare Source

Fixed
  • Fixing dragConstraints={ref} mixed with layout animations.

v11.2.11

Compare Source

Fixed
  • Fix animations in resuspended components.

v11.2.10

Compare Source

Fixed
  • Changing invalid number interpolation from error to warning and immediate mix.

v11.2.9

Compare Source

Fixed
  • Fixing animation of CSS variables when leading space is present.

v11.2.8

Compare Source

Fixed
  • Ensuring instant animations return animation controls.

v11.2.7

Compare Source

Fixed
  • Only allow layout animations to cancel optimised appear animations when on the same node or an ancestor.

v11.2.6

Compare Source

Fixed
  • Fixed optimised appear animations interrupted by layout animations triggered by a state update within useLayoutEffect.

v11.2.5

Compare Source

Fixed
  • Fixing layout animations within portals. Tag motion root within portal with data-framer-portal-id attribute.

v11.2.4

Compare Source

Fixed
  • Batching triggering animations with useSpring.

v11.2.3

Compare Source

Fixed
  • MotionValues created with undefined can track velocity correctly.

v11.2.2

Compare Source

Fixed
  • Fixed visual jump when interrupting an optimised appear animation.

v11.2.1

Compare Source

Changed
  • Improved performance of resolving variants by lazy resolving current MotionValue state.

v11.2.0

Compare Source

Added
  • Binary visibility interpolation i.e display: ["block", "none"] now maintains the visible state throughout the animation.

v11.1.9

Compare Source

Changed
  • Reinstating async event handlers to fix issues with user code and Suspence within Framer.

v11.1.8

Compare Source

Fixed
  • Animating between keyframe unit types when one keyframe is 0 and the other is an explicitly defined keyframe, e.g y: ["100%", 0].

v11.1.7

Compare Source

Changed
  • Updating types for motion.div.

v11.1.6

Compare Source

Changed
  • Binding stop to MainThreadAnimation

v11.1.5

Compare Source

Changed
  • Exporting DOMMotionComponents.

v11.1.4

Compare Source

Fixed
  • Fixing types of motion.div in certain TS5 environment configurations.
Changed
  • Skip removal of existing motion value when undefined.

v11.1.3

Compare Source

Fixed
  • ESM compat with CJS bundle.

v11.1.2

Compare Source

Fixed
  • Ensuring transforms unset during unit conversion are restored.

v11.1.1

Compare Source

Changed
  • Updating JSX transform.

v11.1.0

Compare Source

Changed
  • TypeScript 5 upgrade.

v11.0.28

Compare Source

Fixed
  • Ensure CSS var token is set as final animation keyframe.

v11.0.27

Compare Source

Fixed
  • Skipping animations with duration: 0.

v11.0.26

Compare Source

Fixed
  • Adding perspective() to projection transform.
  • Changing scheduling of useTransform to ensure frames are up-to-date.

v11.0.25

Compare Source

Fixed
  • Ensuring motion(Fragment) nodes are skipped from layout projection.

v11.0.24

Compare Source

Fixed
  • Changes in style are visible once a value is no longer present in animation props.

v11.0.23

Compare Source

Fixed
  • Fixed layout animations when combined with z transforms.

v11.0.22

Compare Source

Fixed
  • Fixed pre-generation of no-op WAAPI animations.

v11.0.21

Compare Source

Fixed
  • Fixed interrupting WAAPI spring animations.

v11.0.20

Compare Source

Fixed
  • Fixed interrupting shared element animations that contain rotate or skew transforms.

v11.0.19

Compare Source

Fixed
  • Fixed layout animations when combined with skew transforms.

v11.0.18

Compare Source

Fixed
  • Default duration doesn't override duration: 0 WAAPI animations.
  • Fix error when trying to animate unmounted element.
  • Avoid resolving WAAPI animation when stopping unresolved animation.

v11.0.17

Compare Source

v11.0.16

Compare Source

Fixed
  • Restored animation promise handling to match behaviour of <11.0.11.

v11.0.15

Compare Source

Fixed
  • Fixed measurements when more than one transform changes unit type.

v11.0.14

Compare Source

Fixed
  • Fixed animation controls in instances where keyframes resolve to be unanimatable.

v11.0.13

Compare Source

Added
  • Added default value types for backgroundPositionX and backgroundPositionY.
Fixed
  • Fixed height: auto animations.

v11.0.12

Compare Source

Fixed
  • Updated @emotion/is-valid-prop as peer dependency.

v11.0.11

Compare Source

Changed
  • Keyframes now resolved asynchronously.
  • External event handlers now fired synchronously.
  • CSS variables and unit conversion now supported with >2 keyframe animations.
  • Removed WAAPI animation of background-color.

v11.0.10

Compare Source

Fixed
  • Improved speed and stability of regexes.

v11.0.9

Compare Source

Added
  • Added support for Content Security Policy (CSP) nonces via MotionConfig.

v11.0.8

Compare Source

Fixed
  • Ensure optimised appear animations are cancelled before layout animation measurements.

v11.0.7

Compare Source

Fixed
  • Strip comments from strings before testing if they're CSS variables to prevent significant performance degradation.

v11.0.6

Compare Source

Updated
  • Added support for motion(Fragment) for controlling variants. For internal Framer use only.

v11.0.5

Compare Source

Updated
  • Performance updates.

v11.0.4

Compare Source

Fixed
  • Tighten check for navigator.userAgent.

v11.0.3

Compare Source

Fixed
  • Fixed layout animation bug in Framer.

v11.0.2

Compare Source

Fixed
  • Fixed velocity calculations when interrupting WAAPI animations.

v11.0.1

Compare Source

Removed
  • Support for internal transformValues prop.

v11.0.0

Compare Source

Changed
  • Replaced velocity-check jobs in favour of passive detection.
  • Post-commit render moved to a microtask.

v10.18.0

Compare Source

Added
  • globalTapTarget for use in Framer.

v10.17.12

Compare Source

Fixed
  • Fixed animate sequencing for MotionValues.

v10.17.11

Compare Source

Fixed
  • Fixed layout prop crashing Framer Motion 3D.

v10.17.9

Compare Source

Fixed
  • Improve error message when trying to animate multiple keyframes via spring.

v10.17.8

Compare Source

Fixed
  • Adding null safeguard for useAnimationControls.

v10.17.7

Compare Source

Fixed
  • Fix touch event filtering for hover gesture.

v10.17.6

Compare Source

Fixed
  • Ensure cancelled WAAPI animations can't finish.

v10.17.5

Compare Source

Fixed
  • Fixing final keyframe when using repeatType "reverse" and "mirror".
  • Display warning if scroll container is position: static.
  • Adding amount to useInView dependencies.

v10.17.4

Compare Source

Fixed
  • Ensure keyframe animations don't rerun if all values are the same.

v10.17.3

Compare Source

Fixed
  • Unset gestures correctly animate back to values defined in parent variant.

v10.17.2

Compare Source

Fixed
  • Fixed issues with duration-based springs appearing stuck or snapping.

v10.17.1

Compare Source

Fixed
  • Fixed issue with dragSnapToOrigin not continuing animation when interrupted.

v10.17.0

Compare Source

Added
  • Adding MotionGlobalConfig.skipAnimations to globally disable animations when testing.

v10.16.16

Compare Source

Fixed
  • circInOut easing fixed.
  • Improved optimised animation handoff.

v10.16.15

Compare Source

Fixed
  • Ensure animateChanges only runs in layout effect in initial render.

v10.16.14

Compare Source

v10.16.13

Compare Source

Fixed
  • Ensure animations don't attempt to fire when initial equals animate.

v10.16.12

Compare Source

Fixed
  • Use single animation to detect document paint ready before triggering optimised animations.
  • Measure one time for optimised animation start and one for handoff to emulate frame scheduling.

v10.16.11

Compare Source

Fixed
  • Ensure animation is never skipped if it's an interrupting animation.

v10.16.10

Compare Source

Fixed
  • Fixing appear animation optimisation when React portal is present.

v10.16.9

Compare Source

Fixed
  • Skipping no-op animations.

v10.16.8

Compare Source

Fixed
  • Added disableInstantAnimation private API.
  • Ensure optimised appear animations don't run post-hydration.

v10.16.7

Compare Source

Fixed
  • Fixing pan events within React portal.

v10.16.6

Compare Source

Fixed
  • Fixing Reorder component types.
  • Fixing Reorder.Item order calculation.
  • Fixing broken dragConstraints if component re-renders during resize.

v10.16.5

Compare Source

Fixed
  • Fixing AnimatePresence fast rerender bug.

v10.16.4

Compare Source

Fixed
  • Changed handoff startTime source from performance.now() to document.timeline.currentTime.

v10.16.3

Compare Source

Fixed
  • Improved compatibility of custom RefObject and MutableRefObject types.
  • Fixing useScroll dependencies array.
  • Fixing optimised handoff to WAAPI animations.

v10.16.2

Compare Source

Fixed
  • Improved performance of frameloop scheduling.
  • Fixed crasher when using SVGs as scroll animation targets.

v10.16.1

Compare Source

Fixed
  • SVGs mount read/writes are now batched.

v10.16.0

Compare Source

Added
  • New function syntax for useTransform.
Improved
  • Improved handoff animation performance.

v10.15.2

Compare Source

Fixed
  • Numerical CSS variables are now read correctly.

v10.15.1

Compare Source

Fixed

v10.15.0

Compare Source

Added
  • Updated types for public inView API.

v10.14.0

Compare Source

Added
  • scroll() now accepts animations from animate() to create hardware-accelerated animations.

v10.13.2

Compare Source

Fixed
  • Removed animation resync for optimised animation handoff.
  • Fixed offset not working with useScroll.

v10.13.1

Compare Source

Added
  • Fixed subpixel layout rounding in Chrome.

v10.13.0

Compare Source

Added
  • scroll(), a universal API for powering scroll-driven animations via ScrollTimeline.

v10.12.23

Compare Source

Fixed
  • Fixing subpixel layout support in Webkit.

v10.12.22

Compare Source

Fixed
  • Supporting subpixel layouts in layout animations.

v10.12.21

Compare Source

Fixed
  • Transforming values if new values have been read from props.

v10.12.20

Compare Source

Fixed
  • Fixing race condition with animation Promise.
  • Attempt to read initial animation from props before reading from DOM.

v10.12.18

Compare Source

Fixed
  • When layout animation is forced to be instant via useInstantTransition, ignore the delay option.

v10.12.17

Compare Source

Fixed
  • Fixing useInstantTransition when called on subsequent frames.
  • Fixing reverse animation with negative speed finishes too early when the
    time is set to the duration.

v10.12.16

Compare Source

Fixed
  • Fixing unit conversion when animating translateX/translateY.

v10.12.15

Compare Source

Fixed
  • Fixed timing bug when mixing layout prop and animate().
  • Removing errant log from resolveConstraints.

v10.12.14

Compare Source

Fixed
  • Ensure new layout components animate correctly on the first re-render.

v10.12.13

Compare Source

Fixed
  • Fixed scale correction in elements that have finished layout animations.

v10.12.12

Compare Source

Fixed
  • Ensuring zero units like "0px" can be used as keyframe templates.

v10.12.11

Compare Source

Fixed
  • Fixing ending layout animations immediately on resize.

v10.12.10

Compare Source

Fixed
  • Fixing persisting AnimatePresence child when exit animation is interrupted.

v10.12.9

Compare Source

Fixed
  • Fixing jumpy layer when a layout changes after a pending animation has been scheduled.

v10.12.8

Compare Source

Fixed
  • Moving layout animations to queueMicrotasks(), ensuring layout animations don't fire until all synchronous effects have executed.

v10.12.7

Compare Source

Fixed
  • Improve handling of "none" keyframes.

v10.12.6

Compare Source

Fixed
  • Fixing relative layout animations when mixing type: false and type: "tween", duration: 0.

v10.12.5

Compare Source

Changed
  • Exporting visualElementStore for internal use.

v10.12.4

Compare Source

Fixed
  • Fixing types for attrX, attrY and attrScale values.

v10.12.3

Compare Source

Fixed
  • Fixing CSS variable interpolation inside complex strings.

v10.12.2

Compare Source

Fixed
  • Fixing subpixel layout support in Webkit.

v10.12.1

Compare Source

Fixed
  • Fixing unit conversion for translateX/translateY.

v10.12.0

Compare Source

Added
  • Exporting frame and cancelFrame as a public API.

v10.11.6

Compare Source

Fixed
  • Fixed performance regression introduced with previous fix.

v10.11.5

Compare Source

Fixed
  • Propagating relative nodes in layout animations.

v10.11.4

Compare Source

Fixed
  • Fixing optimised transform animations.

v10.11.3

Compare Source

Fixed
  • Calling .play() on finished animations now correctly restarts them.

v10.11.2

Compare Source

Fixed
  • Fixing WAAPI offsets with springs in animation sequences.

v10.11.1

Compare Source

v10.11.0

Compare Source

Added
  • Adding springs to animation sequences.
Fixed
  • Fixing "keyframes must be of same type" error with some animation

v10.10.0

Compare Source

Fixed
  • Adding .duration to animate(). sequences.

v10.9.4

Compare Source

Fixed
  • Removing log from useSpring.

v10.9.3

Compare Source

Fixed
  • Improving scroll animation startup time.

v10.9.2

Compare Source

Fixed
  • Fixing animation scope with animation sequences.

v10.9.1

Compare Source

Fixed
  • Recalculating and rerendering relative targets when layout is remeasured.

v10.9.0

Compare Source

Added
  • Animation sequencing.

v10.8.5

Compare Source

Fixed
  • Fixed use of multiple easing functions with WAAPI animations.

v10.8.4

Compare Source

Changed
  • Fixing from option in stagger().

v10.8.3

Compare Source

Changed
  • Fixing duration: 0 animations never ending.

v10.8.2

Compare Source

Changed
  • Further loosening animate() overloads.

v10.8.1

Compare Source

Changed
  • Loosening animate() overloads.

v10.8.0

Compare Source

Added
  • stagger()
Fixed
  • SVG and SVG path types for animate().

v10.7.0

Compare Source

Changed
  • Default transitions no longer need to be namespaced under default.

v10.6.8

Compare Source

v10.6.1

Compare Source

Fixed
  • Complex string types interpolate correctly with WAAPI spring easing.

v10.6.0

Compare Source

Added
  • cancel(), complete() and speed to animate().
Changed
  • "easeIn", "easeOut" and "easeInOut" easing functions are now WAAPI spec-compliant.
Fixed
  • .stop() stops animations permanently.
  • useSpring timing.
  • animate() with repeat: 1 and repeatType "reverse" or "mirror" correctly applies final keyframe.

v10.5.0

Compare Source

Added
  • useAnimate() provides a composable way to use animate().

v10.4.0

Compare Source

Added
  • animate() now supports DOM elements and DOM selectors.

v10.3.4

Compare Source

Fixed
  • Updating README.

v10.3.3

Compare Source

Fixed
  • Using frame timestamp, when available, to sample time.

v10.3.2

Compare Source

Fixed
  • Applying target CSS variable at the end of animation.

v10.3.1

Compare Source

Fixed
  • Fixed time Promise on instant animation.

v10.3.0

Compare Source

Added
  • time, play(), pause() and then() to animations created with animate().

v10.2.5

Compare Source

Fixed
  • Adding de-opt to projection tree when relative target has changed.

v10.2.4

Compare Source

Changed
  • Refactored animate to resolve for time instead of timeDelta.
Fixed
  • delay will now apply to "inertia" animations.

v10.2.3

Compare Source

Fixed
  • Unifying AnimationPlaybackControls types.
  • Changing Feature type to fix Next build errors.

v10.2.2

Compare Source

Fixed
  • Restoring DeprecatedLayoutGroupContext for legacy Smart Components in Framer.

v10.2.1

Compare Source

Fixed
  • Passing low restSpeed and restDelta to useSpring().

v10.2.0

Compare Source

Added
  • Vanilla JS entry point framer-motion/dom.

v10.1.0

Compare Source

Added
  • Frame-batched event handlers. This means external event handlers are now batched on the next animation frame, allowing React to correctly batch state updates.

v10.0.2

Compare Source

Fixed
  • Fixing "Non-numeric offset" error in older browsers.

v10.0.1

Compare Source

Changed
  • Reducing keyframe pregeneration duration by 75%.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch 2 times, most recently from e66e000 to e6624b8 Compare January 24, 2024 11:16
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch 2 times, most recently from 53cb6bb to bf3c309 Compare February 13, 2024 19:51
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch 3 times, most recently from d3c9308 to e60e8dd Compare February 29, 2024 15:03
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch 3 times, most recently from 33f879b to 7a9175d Compare March 15, 2024 12:21
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch 5 times, most recently from cdd071c to 1b68d20 Compare March 26, 2024 11:17
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch 3 times, most recently from 4043741 to 5a539ef Compare March 29, 2024 16:45
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch 3 times, most recently from 5400c48 to f7d4ee7 Compare April 11, 2024 11:54
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch 8 times, most recently from 15295e8 to 7708481 Compare April 19, 2024 16:07
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch from 7708481 to 23fabc4 Compare May 6, 2024 13:09
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch 6 times, most recently from 8822a77 to 5974830 Compare July 24, 2024 17:51
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch 3 times, most recently from 0dfe487 to a517191 Compare August 1, 2024 16:31
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch 4 times, most recently from 1b1353d to ed338a0 Compare August 8, 2024 09:50
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch 3 times, most recently from d67ed5e to e9c5e4c Compare August 21, 2024 10:41
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch 2 times, most recently from 36a6d85 to 6c1061f Compare August 29, 2024 10:20
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch 5 times, most recently from 6c8290d to a71a97e Compare September 5, 2024 14:27
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch 4 times, most recently from 470107b to a5d0abc Compare September 25, 2024 17:25
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch from a5d0abc to b0ea527 Compare September 26, 2024 16:55
@renovate renovate bot force-pushed the renovate/framer-motion-11.x branch from b0ea527 to 4003bfe Compare September 27, 2024 16:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants