devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
80 lines (65 loc) • 2.33 kB
TypeScript
/**
* DevExtreme (ui/tooltip.d.ts)
* Version: 24.2.6
* Build date: Mon Mar 17 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import {
Cancelable,
EventInfo,
InitializedEventInfo,
ChangedOptionInfo,
} from '../common/core/events';
import dxPopover, {
dxPopoverOptions,
} from './popover';
/**
* The type of the contentReady event handler's argument.
*/
export type ContentReadyEvent = EventInfo<dxTooltip>;
/**
* The type of the disposing event handler's argument.
*/
export type DisposingEvent = EventInfo<dxTooltip>;
/**
* The type of the hiding event handler's argument.
*/
export type HidingEvent = Cancelable & EventInfo<dxTooltip>;
/**
* The type of the hidden event handler's argument.
*/
export type HiddenEvent = EventInfo<dxTooltip>;
/**
* The type of the initialized event handler's argument.
*/
export type InitializedEvent = InitializedEventInfo<dxTooltip>;
/**
* The type of the optionChanged event handler's argument.
*/
export type OptionChangedEvent = EventInfo<dxTooltip> & ChangedOptionInfo;
/**
* The type of the showing event handler's argument.
*/
export type ShowingEvent = Cancelable & EventInfo<dxTooltip>;
/**
* The type of the shown event handler's argument.
*/
export type ShownEvent = EventInfo<dxTooltip>;
/**
*
* @deprecated
* @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution.
*/
export interface dxTooltipOptions extends dxPopoverOptions<dxTooltip> { }
/**
* The Tooltip UI component displays a tooltip for a specified element on the page.
*/
export default class dxTooltip extends dxPopover<dxTooltipOptions> { }
export type Properties = dxTooltipOptions;
/**
* @deprecated use Properties instead
* @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution.
*/
export type Options = dxTooltipOptions;