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.
This commit is contained in:
p-sw 2024-06-11 20:15:58 +09:00
parent 90960ff800
commit 5db9be1eb3

View File

@ -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