UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

104 lines (91 loc) 3.16 kB
/** * DevExtreme (ui/speed_dial_action.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 { DxElement, } from '../core/element'; import { EventInfo, NativeEventInfo, InitializedEventInfo, ChangedOptionInfo, } from '../common/core/events'; import Widget, { WidgetOptions, } from './widget/ui.widget'; /** * The type of the click event handler&apos;s argument. */ export type ClickEvent = NativeEventInfo<dxSpeedDialAction, MouseEvent | PointerEvent> & { /** * */ actionElement?: DxElement; }; /** * The type of the contentReady event handler&apos;s argument. */ export type ContentReadyEvent = EventInfo<dxSpeedDialAction> & { /** * */ actionElement?: DxElement; }; /** * The type of the disposing event handler&apos;s argument. */ export type DisposingEvent = EventInfo<dxSpeedDialAction>; /** * The type of the initialized event handler&apos;s argument. */ export type InitializedEvent = InitializedEventInfo<dxSpeedDialAction>; /** * The type of the optionChanged event handler&apos;s argument. */ export type OptionChangedEvent = EventInfo<dxSpeedDialAction> & ChangedOptionInfo; /** * * @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 dxSpeedDialActionOptions extends WidgetOptions<dxSpeedDialAction> { /** * Specifies the icon the FAB or speed dial action button displays. */ icon?: string; /** * Allows you to reorder action buttons in the speed dial menu. */ index?: number; /** * Specifies the text label displayed inside the FAB or near the speed dial action button. */ label?: string; /** * A function that is executed when the FAB or speed dial action button is clicked or tapped. */ onClick?: ((e: ClickEvent) => void); /** * A function that is executed when the UI component is rendered and each time the component is repainted. */ onContentReady?: ((e: ContentReadyEvent) => void); /** * Allows you to hide the FAB from the view or the action from the speed dial menu. */ visible?: boolean; } /** * The SpeedDialAction is a button that performs a custom action. It can be represented by a Floating Action Button (FAB) or a button in a speed dial menu opened with the FAB. */ export default class dxSpeedDialAction extends Widget<dxSpeedDialActionOptions> { } export type Properties = dxSpeedDialActionOptions; /** * @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 = dxSpeedDialActionOptions;