Phase 9b · Tier A
RN-universal Tooltip pilot
ScaffoldedAnchored hint popup. Same anchored-positioning as Popover, but the trigger reacts to hover/focus on web (onHoverIn / onHoverOut) and to long-press on native. v1 has no arrow and no shared-group delay coalescing.
Side-by-side: hover / focus
shadcn (Radix)
RN
On a touch device, tap-and-hold the RN trigger to show the tooltip; tap anywhere to dismiss.
Side variants
Semantics
| Aspect | shadcn | RN | Notes |
|---|---|---|---|
| Provider | TooltipProvider (delay) | RnTooltipProvider (no-op v1) | Per-tooltip delayDuration prop |
| Trigger events | pointerenter / focus | onHoverIn / onFocus | Plus onLongPress on touch |
| Dismiss | pointerleave / blur / esc | onHoverOut / onBlur / press | Tap content to dismiss on touch |
| Arrow | Yes | No (v1) | Could ship in 0.2.x |
| delayDuration | Provider default 0 | Per-tooltip prop (default 200ms) | Coalesced delay groups not in v1 |
| ARIA | role="tooltip" | role="tooltip" | aria-describedby on trigger |