-
-
Notifications
You must be signed in to change notification settings - Fork 743
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
feat: remove node hovered state on mouseleave event #569
feat: remove node hovered state on mouseleave event #569
Conversation
🦋 Changeset detectedLatest commit: 54e24a4 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Added mouseleave to default hover event handler, the 'hovered' state gets removed when this is triggered
15d95a5
to
10147bf
Compare
10147bf
to
e6b4883
Compare
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.
Thank you! 💯
Added
mouseleave
to default hover event handler, thehovered
state gets removed when this is triggered.Previously, if you wanted to removed the
hovered
state, you'd have to add something likeref={(ref: HTMLDivElement) => connectors.select(connectors.hover(ref, ''), '')}
to a parent container to deselect/remove the hover state when the mouse pointer clicks/is outside of a node.
Also updated the
useEffect
inpackages/core/src/editor/Editor.tsx
due to lint error.