pantoken / renderers/web-components/src / tooltip
Variable: tooltip
consttooltip:ElementDefinition
Alpha
<instui-tooltip> — wraps a slotted trigger and shows a .tip bubble (from the tip attribute) on hover/focus. placement maps to -placement-<value> (e.g. bottom, end); show-delay and hide-delay (ms, default 0) gate the reveal/hide, and Escape dismisses it. JS owns the timing: a .-show-gated !important override neutralizes the pure-CSS :hover/:focus-within auto-show so the delay actually applies.
Example
html
<instui-tooltip tip="Placement bottom" placement="bottom" show-delay="200">
<button class="instui-button -color-secondary">Hover me</button>
</instui-tooltip>