Tooltip
Contextual information on hover
Basic Tooltip
{
"type": "tooltip",
"content": "Helpful information",
"children": [
{
"type": "button",
"label": "Hover me"
}
]
}
interface TooltipSchema {
type: 'tooltip';
content: string;
children: SchemaNode;
side?: 'top' | 'right' | 'bottom' | 'left';
}