From 5db9be1eb30f007b10bd72c2fcd5de4106d03542 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 20:15:58 +0900 Subject: [PATCH] feat(react): update Tooltip properties in docs Add two new properties, 'controlled' and 'opened', to the Tooltip documentation in the React package. The 'controlled' property blocks the tooltip from being triggered by hover state, while the 'opened' property forces the tooltip to stay open. --- packages/react/src/docs/components/Tooltip.mdx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/react/src/docs/components/Tooltip.mdx b/packages/react/src/docs/components/Tooltip.mdx index 42ef25b..344fc0d 100644 --- a/packages/react/src/docs/components/Tooltip.mdx +++ b/packages/react/src/docs/components/Tooltip.mdx @@ -50,9 +50,11 @@ import { Tooltip, TooltipContent } from "@components/Tooltip"; #### Variants -| Prop | Type | Default | Description | -|:-----------|:-----------------------------------------|:--------|:-----------------------------| -| `position` | `"bottom" \| "left" \| "right" \| "top"` | `"top"` | The position of the tooltip. | +| Prop | Type | Default | Description | +|:-------------|:-----------------------------------------|:--------|:----------------------------------------| +| `position` | `"bottom" \| "left" \| "right" \| "top"` | `"top"` | The position of the tooltip. | +| `controlled` | `boolean` | `false` | Blocks tooltip triggered by hover state | +| `opened` | `boolean` | `false` | Forces to be opened | ### TooltipContent