UNPKG

devextreme-vue

Version:

DevExtreme Vue UI and Visualization Components

43 lines (41 loc) 1.48 kB
/*! * devextreme-vue * Version: 19.2.6 * Build date: Thu Jan 30 2020 * * Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file in the root of the project for details. * * https://github.com/DevExpress/devextreme-vue */ import * as VueType from "vue"; import SpeedDialAction, { IOptions } from "devextreme/ui/speed_dial_action"; declare type AccessibleOptions = Pick<IOptions, "accessKey" | "activeStateEnabled" | "elementAttr" | "focusStateEnabled" | "hint" | "hoverStateEnabled" | "icon" | "index" | "label" | "onClick" | "onContentReady" | "onDisposing" | "onInitialized" | "onOptionChanged" | "rtlEnabled" | "tabIndex" | "visible">; interface DxSpeedDialAction extends AccessibleOptions { readonly instance?: SpeedDialAction; } declare const DxSpeedDialAction: VueType.VueConstructor<{ instance: SpeedDialAction; } & { accessKey: string; activeStateEnabled: boolean; elementAttr: any; focusStateEnabled: boolean; hint: string; hoverStateEnabled: boolean; icon: string; index: number; label: string; onClick: Function; onContentReady: Function; onDisposing: Function; onInitialized: Function; onOptionChanged: Function; rtlEnabled: boolean; tabIndex: number; visible: boolean; } & VueType.default>; export default DxSpeedDialAction; export { DxSpeedDialAction };