From 7c688d60ec3bb5b52441a7cc068b4c5b6d101cbc Mon Sep 17 00:00:00 2001 From: Tyler Jones Date: Wed, 5 Nov 2025 11:44:12 -0500 Subject: [PATCH 1/2] Add docs for `delay` --- packages/react/src/TooltipV2/Tooltip.docs.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/react/src/TooltipV2/Tooltip.docs.json b/packages/react/src/TooltipV2/Tooltip.docs.json index 439ad9ad165..5d412a53f4e 100644 --- a/packages/react/src/TooltipV2/Tooltip.docs.json +++ b/packages/react/src/TooltipV2/Tooltip.docs.json @@ -57,7 +57,12 @@ "name": "keybindingHint", "type": "string", "description": "Optional keybinding hint to indicate the availability of a keyboard shortcut. Supported syntax is described in the docs for the `KeybindingHint` component." + }, + { + "name": "delay", + "type": "'short' | 'medium' | 'long'", + "description": "Sets the delay before showing the tooltip. `short` is 50ms (default), `medium` is 400ms, and `long` is 1200ms." } ], "subcomponents": [] -} \ No newline at end of file +} From cd529468775ffe6dca2a34cefa119bcb222a4e0c Mon Sep 17 00:00:00 2001 From: Tyler Jones Date: Wed, 5 Nov 2025 11:51:16 -0500 Subject: [PATCH 2/2] Update packages/react/src/TooltipV2/Tooltip.docs.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- packages/react/src/TooltipV2/Tooltip.docs.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react/src/TooltipV2/Tooltip.docs.json b/packages/react/src/TooltipV2/Tooltip.docs.json index 5d412a53f4e..5b56bc7d269 100644 --- a/packages/react/src/TooltipV2/Tooltip.docs.json +++ b/packages/react/src/TooltipV2/Tooltip.docs.json @@ -61,6 +61,7 @@ { "name": "delay", "type": "'short' | 'medium' | 'long'", + "defaultValue": "short", "description": "Sets the delay before showing the tooltip. `short` is 50ms (default), `medium` is 400ms, and `long` is 1200ms." } ],