You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, if you hover over a series of tooltip elements, you can observe that there is a delay incurred every time before the tooltip appears:
Screencast.from.2023-10-03.09-52-09.webm
It would be nice if this delay could be removed when hovering over further tooltip triggers, after the initial "warm-up" period. Radix tooltips do actually implement this behavior (see the skipDelayDuration prop in the tooltip docs), but because we mount a separate tooltip Provider for every tooltip, this "warm-up" state isn't shared across tooltips. To fix this, we should require consumers to wrap their application in a global Provider, and remove it from the individual tooltip component instances.
The text was updated successfully, but these errors were encountered:
Currently, if you hover over a series of tooltip elements, you can observe that there is a delay incurred every time before the tooltip appears:
Screencast.from.2023-10-03.09-52-09.webm
It would be nice if this delay could be removed when hovering over further tooltip triggers, after the initial "warm-up" period. Radix tooltips do actually implement this behavior (see the
skipDelayDuration
prop in the tooltip docs), but because we mount a separate tooltipProvider
for every tooltip, this "warm-up" state isn't shared across tooltips. To fix this, we should require consumers to wrap their application in a globalProvider
, and remove it from the individual tooltip component instances.The text was updated successfully, but these errors were encountered: