From ea987ad590b89288f3318eeb1739efc3c454e2bb Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 19:23:48 +0900 Subject: [PATCH] docs(Tooltip): add delay prop in docs The documentation for the Tooltip component in the react package has been updated to include a new 'delay' prop. This prop controls the time between hover start and the appearance of the tooltip. --- packages/react/src/docs/components/Tooltip.mdx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/react/src/docs/components/Tooltip.mdx b/packages/react/src/docs/components/Tooltip.mdx index 08986eb..0efa0b1 100644 --- a/packages/react/src/docs/components/Tooltip.mdx +++ b/packages/react/src/docs/components/Tooltip.mdx @@ -58,9 +58,10 @@ import { Tooltip, TooltipContent } from "@components/Tooltip"; #### Variants -| Prop | Type | Default | Description | -|:---------|:-----------------------|:--------|:-----------------------------------------| -| `offset` | `"sm" \| "md" \| "lg"` | `"md"` | Gap between the tooltip and the trigger. | +| Prop | Type | Default | Description | +|:---------|:------------------------------------------|:-----------|:---------------------------------------------------| +| `offset` | `"sm" \| "md" \| "lg"` | `"md"` | Gap between the tooltip and the trigger. | +| `delay` | `"none" \| "early" \| "normal" \| "late"` | `"normal"` | The time between hover start and appear of tooltip | ## Examples