atomiks / tippyjs

Tooltip, popover, dropdown, and menu library
https://atomiks.github.io/tippyjs/
MIT License
11.97k stars 520 forks source link

Pass `event` into `onHide` callback #1165

Open zipper opened 5 months ago

zipper commented 5 months ago

Problem

I'm using hideOnClick: true to hide the tooltip when clicked outside the component. But I need to prevent the hiding when clicked inside the related component. Since there is no event in the onHide callback and onClickOutside cannot prevent the hiding, this behaviour cannot be achieved in a clean way. Instead I have to rely on the deprecated window.event.

Solution

An event should be passed in the onHide callback and / or hiding should be preventable from onClickOutside as suggested in https://github.com/atomiks/tippyjs/issues/1155.