-
Notifications
You must be signed in to change notification settings - Fork 38
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(Tooltip): use popover API #2916
base: next
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: b115b69 The changes in this PR will be included in the next version bump. This PR includes changesets to release 4 packages
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 |
Preview deployments for this pull request: Storybook - |
Coverage Report
File Coverage
|
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.
return () => { | ||
window.removeEventListener('keydown', handleKeyDown); | ||
}; | ||
}, []); |
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.
Vi trenger kanskje ikke ESC når den uansett forsvinner på blur og mouseleave?
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.
Eg lurte på det også, men eg tenker kanskje det er greit å følge w3c sitt mønster, sølv om det enda er WIP
resolves #2897
It works like the old tooltip, but if the trigger is an element that can trigger a popover, a click will close it.
This is because we don't prevent the default event, to make sure we don't stop any events from propogating.