-
-
Notifications
You must be signed in to change notification settings - Fork 36
Closed
Description
- Improve structure
- Improve default styling
- Support TooltipItem colors
- Add default slot implementation
Instead of
<Tooltip header={(data) => formatDate(data.date, "eee, MMMM do")} let:data>
<TooltipItem label="value" value={data.value} />
</Tooltip>a better structure
<Tooltip.Root let:data>
<Tooltip.Header>{formatDate(data.date, "eee, MMMM do")}</Tooltip.Header>
<Tooltip.List>
<Tooltip.Item label="value" value={data.value} />
</Tooltip.List>
</Tooltip.Root>With this structure, TooltipHeader will need to use col-span-full since it will be within the default slots's grid
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels