This repository has been archived by the owner on Nov 9, 2024. It is now read-only.
v3.2.0
Deprecations
- Deprecate
tippy.useCapture()
and make capture phase for the global click listener default. This prevents the need to wrap calls to.show()
insetTimeout
if manually triggering the tooltip after a click event somewhere
Fixes
- Add
characterData
to the popper mutation observer so changes to textual content within a tippy is detected and its position updated accordingly. Mainly noticeable in React updates. - Use
state.isMounted
overstate.isVisible
to determine ifhide(0)
should be called when destroying a tippy. This was not a leak but caused glitches when using the React component after changing routes and unmounting the Tippy component.