UNPKG

@progress/kendo-angular-tooltip

Version:

Kendo UI Tooltip for Angular - A highly customizable and easily themeable tooltip from the creators developers trust for professional Angular components.

15 lines (14 loc) 943 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * The `PopoverShowOption` type defines the different ways a Popover can be displayed based on user interaction with its anchor element. * * The supported values are: * - `click` (default) — Shows the Popover when its anchor element is clicked. * - `hover`—Shows the Popover when its anchor element is hovered. * - `focus`—Shows the Popover when its anchor element is focused. * - `none`—Does not show the Popover on user interaction. You can render it via the Popover API methods. */ export type PopoverShowOption = 'hover' | 'click' | 'none' | 'focus';