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
To make the tooltip accessible, you need an aria-describedby attr on the element that triggers the tooltip (whose value is the id of the tooltip wrapper). Since id isn't added to the tooltip wrapper element, this component cannot be made accessible. e.g this is the minimum required html, which is not possible to achieve:
<divaria-describedby="foo">
I'm a trigger
</div><divrole="tooltip" id="foo">
I'm a tooltip
</div>
I would also ask, why is this not accessible by default?