-
Notifications
You must be signed in to change notification settings - Fork 28
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
[Bug] Tooltips Do Not Work With ShadowDOMs #48
Comments
Thanks for reporting this! I'll try to fix this |
@DonIsaac could you also provide a simple repro? |
I can't use the codebase that I'm using as an example, but if I get time I'll upload a simple repro |
A related issue is that tooltips don't work in a React portal in another browser window (due to this hard binding to the main window's |
@emilschutte hm, thanks for letting me know, could you provide a repro so I could try fixing that? |
Let's see, not sure I remember exactly 😅 ... I think it was something like this: https://codesandbox.io/s/react-fiddle-l7qdj?file=/src/App.js |
I made it to work in the portal by adding a separate instance of in the root of the portal, however, the tooltips open in all instances of the and sometimes you can see more than one tooltips at the same time. |
Heyo,
My preact application uses a shadow dom as a mounting point, and tooltips are not appearing. I did some digging through the source code, and I believe I know why.
Events in the shadow dom are not propagated up to
document
, sotoggleHint
never fires.One way that this could be fixed is by allowing users to specify the element where the
ReactHint
singleton should listen for eventsThe text was updated successfully, but these errors were encountered: