-
Notifications
You must be signed in to change notification settings - Fork 0
fix(deps): update dependency framer-motion to v12 #66
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
base: master
Are you sure you want to change the base?
Conversation
Reviewer's Guide by SourceryThis pull request updates the framer-motion dependency from version 11.9.0 to 12.0.0. This is a minor version update that includes a change to the arguments passed to gesture start callbacks. Sequence diagram showing updated gesture callback behavior in framer-motion v12sequenceDiagram
participant C as Component
participant M as Motion Component
participant CB as Gesture Callback
Note over C,CB: Changes in v12.0.0
C->>M: User interacts (press/hover/inView)
M->>CB: Call gesture callback with target element
Note right of CB: Now receives target element<br/>as first argument
Class diagram showing framer-motion gesture callback interface changesclassDiagram
class GestureCallbacks {
+onHoverStart(element: HTMLElement, ...args)
+onPressStart(element: HTMLElement, ...args)
+onInViewStart(element: HTMLElement, ...args)
}
note for GestureCallbacks "v12: Callbacks now receive target element as first argument"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have skipped reviewing this pull request. It seems to have been created by a bot (hey, renovate[bot]!). We assume it knows what it's doing!
✅ Deploy Preview for arithmeticsequence ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
5acc762
to
44ee840
Compare
This PR contains the following updates:
^11.9.0
->^12.0.0
Release Notes
motiondivision/motion (framer-motion)
v12.0.1
Compare Source
Fixed
v12.0.0
Compare Source
Changed
press
,hover
andinView
now pass the target element as the first argument to the gesture start callback.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.
This PR was generated by Mend Renovate. View the repository job log.