From 9b550e5e91fdbd5b812002f87307ea455640353d Mon Sep 17 00:00:00 2001 From: dev-rb Date: Sun, 25 Aug 2024 11:17:40 -0400 Subject: [PATCH] Add docs for skipDelayDuration prop --- apps/docs/src/routes/docs/core/components/tooltip.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/docs/src/routes/docs/core/components/tooltip.mdx b/apps/docs/src/routes/docs/core/components/tooltip.mdx index 53f52ccc7..a98ab5bb7 100644 --- a/apps/docs/src/routes/docs/core/components/tooltip.mdx +++ b/apps/docs/src/routes/docs/core/components/tooltip.mdx @@ -248,6 +248,7 @@ We expose a CSS custom property `--kb-tooltip-content-transform-origin` which ca | onOpenChange | `(open: boolean) => void`
Event handler called when the open state of the tooltip changes. | | triggerOnFocusOnly | `boolean`
Whether to open the tooltip only when the trigger is focused. By default, opens for both focus and hover. | | openDelay | `number`
The duration from when the mouse enters the trigger until the tooltip opens. | +| skipDelayDuration | `number`
The duration from when the mouse leaves the trigger or content and moves to another tooltip trigger or content without incurring another openDelay | | closeDelay | `number`
The duration from when the mouse leaves the trigger or content until the tooltip closes. | | ignoreSafeArea | `boolean`
Whether to close the tooltip even if the user cursor is inside the safe area between the trigger and tooltip. | | id | `string`
A unique identifier for the component. The id is used to generate id attributes for nested components. If no id prop is provided, a generated id will be used. |