From 9eed25e02b8d90e94ee5a6215ca6b5b09268f504 Mon Sep 17 00:00:00 2001 From: Tsvetomir Hristov <106250052+Tsvetomir-Hr@users.noreply.github.com> Date: Wed, 2 Apr 2025 17:28:02 +0300 Subject: [PATCH 1/2] chore(Tooltip): update parameter description --- components/tooltip/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/tooltip/overview.md b/components/tooltip/overview.md index 8317336ad..2ed021764 100644 --- a/components/tooltip/overview.md +++ b/components/tooltip/overview.md @@ -62,7 +62,7 @@ The Blazor Tooltip provides the following configuration parameters. Also check t | --- | --- | --- | | `Class` | `string` | Renders a custom CSS class to the `<div class="k-animation-container">` element, which is an ancestor (but not parent) of the `<div class="k-tooltip>` element. The former element is responsible for the Tooltip's `position` and `z-index` styles. The latter element applies the theme styling (borders, background, etc.). Use a CSS class to [override theme styles](slug:themes-override). Here is a [custom Tooltip styling example](slug:tooltip-kb-custom-styles). | | `Height` | `string` | Applies a height style in [any supported unit](slug:common-features/dimensions). @[template](/_contentTemplates/tooltip/notes.md#dimensions-behavior) | -| `HideDelay` | `int` <br/> (0) | The Tooltip hiding delay in milliseconds. | +| `HideDelay` | `int` <br/> (0) | The delay in milliseconds before the Tooltip hides. The countdown starts only after the cursor moves away from the item. | | `Id` | `string` | Renders an `id` attribute to the `<div class="k-tooltip>` element. To improve accessibility and screen reader behavior, set the same string as Tooltip `Id` and `aria-described-by` attribute of all Tooltip targets. | | `Position` | `TooltipPosition` enum <br /> (`Top`) | Sets the [Tooltip popup direction](slug:tooltip-position), with regard to its target. | | `ShowDelay` | `int` <br/> (0) | The Tooltip opening delay in milliseconds. | From cf7be81a2499d2cca9702a522b984bbfcf483ac7 Mon Sep 17 00:00:00 2001 From: Tsvetomir Hristov <106250052+Tsvetomir-Hr@users.noreply.github.com> Date: Thu, 3 Apr 2025 10:53:28 +0300 Subject: [PATCH 2/2] Update components/tooltip/overview.md Co-authored-by: Dimo Dimov <961014+dimodi@users.noreply.github.com> --- components/tooltip/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/tooltip/overview.md b/components/tooltip/overview.md index 2ed021764..f7cdc95d0 100644 --- a/components/tooltip/overview.md +++ b/components/tooltip/overview.md @@ -62,7 +62,7 @@ The Blazor Tooltip provides the following configuration parameters. Also check t | --- | --- | --- | | `Class` | `string` | Renders a custom CSS class to the `<div class="k-animation-container">` element, which is an ancestor (but not parent) of the `<div class="k-tooltip>` element. The former element is responsible for the Tooltip's `position` and `z-index` styles. The latter element applies the theme styling (borders, background, etc.). Use a CSS class to [override theme styles](slug:themes-override). Here is a [custom Tooltip styling example](slug:tooltip-kb-custom-styles). | | `Height` | `string` | Applies a height style in [any supported unit](slug:common-features/dimensions). @[template](/_contentTemplates/tooltip/notes.md#dimensions-behavior) | -| `HideDelay` | `int` <br/> (0) | The delay in milliseconds before the Tooltip hides. The countdown starts only after the cursor moves away from the item. | +| `HideDelay` | `int` <br/> (0) | The delay in milliseconds before the Tooltip hides. The countdown starts only after the cursor moves away from the anchor. | | `Id` | `string` | Renders an `id` attribute to the `<div class="k-tooltip>` element. To improve accessibility and screen reader behavior, set the same string as Tooltip `Id` and `aria-described-by` attribute of all Tooltip targets. | | `Position` | `TooltipPosition` enum <br /> (`Top`) | Sets the [Tooltip popup direction](slug:tooltip-position), with regard to its target. | | `ShowDelay` | `int` <br/> (0) | The Tooltip opening delay in milliseconds. |