/** * DevExtreme (ui/speed_dial_action.d.ts) * Version: 21.1.7 * Build date: Thu Aug 07 2025 * * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import { UserDefinedElement, DxElement, } from '../core/element'; import { EventInfo, NativeEventInfo, InitializedEventInfo, ChangedOptionInfo, } from '../events/index'; import Widget, { WidgetOptions, } from './widget/ui.widget'; /** @public */ export type ClickEvent = NativeEventInfo & { actionElement?: DxElement; }; /** @public */ export type ContentReadyEvent = EventInfo & { actionElement?: DxElement; }; /** @public */ export type DisposingEvent = EventInfo; /** @public */ export type InitializedEvent = InitializedEventInfo; /** @public */ export type OptionChangedEvent = EventInfo & ChangedOptionInfo; /** * @deprecated use Properties instead * @namespace DevExpress.ui */ export interface dxSpeedDialActionOptions extends WidgetOptions { /** * @docid * @default "" * @public */ icon?: string; /** * @docid * @default 0 * @public */ index?: number; /** * @docid * @default "" * @public */ label?: string; /** * @docid * @type_function_param1 e:object * @type_function_param1_field1 event:event * @type_function_param1_field2 component:this * @type_function_param1_field3 element:DxElement * @type_function_param1_field4 actionElement:DxElement * @action * @public */ onClick?: ((e: ClickEvent) => void); /** * @docid * @default null * @type_function_param1 e:object * @type_function_param1_field1 component:dxSpeedDialAction * @type_function_param1_field2 element:DxElement * @type_function_param1_field3 model:any * @type_function_param1_field4 actionElement:DxElement * @action * @public */ onContentReady?: ((e: ContentReadyEvent) => void); /** * @docid * @public */ visible?: boolean; } /** * @docid * @inherits Widget * @namespace DevExpress.ui * @public */ export default class dxSpeedDialAction extends Widget { constructor(element: UserDefinedElement, options?: dxSpeedDialActionOptions) } /** @public */ export type Properties = dxSpeedDialActionOptions; /** @deprecated use Properties instead */ export type Options = dxSpeedDialActionOptions; /** @deprecated use Properties instead */ export type IOptions = dxSpeedDialActionOptions;