UNPKG

devextreme-vue

Version:

DevExtreme Vue UI and Visualization Components

54 lines (52 loc) 1.95 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 ActionSheet, { IOptions } from "devextreme/ui/action_sheet"; declare type AccessibleOptions = Pick<IOptions, "cancelText" | "dataSource" | "disabled" | "elementAttr" | "height" | "hint" | "hoverStateEnabled" | "itemHoldTimeout" | "items" | "itemTemplate" | "onCancelClick" | "onContentReady" | "onDisposing" | "onInitialized" | "onItemClick" | "onItemContextMenu" | "onItemHold" | "onItemRendered" | "onOptionChanged" | "rtlEnabled" | "showCancelButton" | "showTitle" | "target" | "title" | "usePopover" | "visible" | "width">; interface DxActionSheet extends AccessibleOptions { readonly instance?: ActionSheet; } declare const DxActionSheet: VueType.VueConstructor<{ instance: ActionSheet; } & { cancelText: string; dataSource: any; disabled: boolean; elementAttr: any; height: string | number | Function; hint: string; hoverStateEnabled: boolean; itemHoldTimeout: number; items: unknown[]; itemTemplate: unknown; onCancelClick: TimerHandler; onContentReady: Function; onDisposing: Function; onInitialized: Function; onItemClick: TimerHandler; onItemContextMenu: Function; onItemHold: Function; onItemRendered: Function; onOptionChanged: Function; rtlEnabled: boolean; showCancelButton: boolean; showTitle: boolean; target: unknown; title: string; usePopover: boolean; visible: boolean; width: string | number | Function; } & VueType.default>; declare const DxItem: any; export default DxActionSheet; export { DxActionSheet, DxItem };