UNPKG

devextreme-vue

Version:

DevExtreme Vue UI and Visualization Components

61 lines (59 loc) 2.32 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 SlideOut, { IOptions } from "devextreme/ui/slide_out"; declare type AccessibleOptions = Pick<IOptions, "activeStateEnabled" | "contentTemplate" | "dataSource" | "disabled" | "elementAttr" | "height" | "hint" | "hoverStateEnabled" | "itemHoldTimeout" | "items" | "itemTemplate" | "menuGrouped" | "menuGroupTemplate" | "menuItemTemplate" | "menuPosition" | "menuVisible" | "noDataText" | "onContentReady" | "onDisposing" | "onInitialized" | "onItemClick" | "onItemContextMenu" | "onItemHold" | "onItemRendered" | "onMenuGroupRendered" | "onMenuItemRendered" | "onOptionChanged" | "onSelectionChanged" | "rtlEnabled" | "selectedIndex" | "selectedItem" | "swipeEnabled" | "visible" | "width">; interface DxSlideOut extends AccessibleOptions { readonly instance?: SlideOut; } declare const DxSlideOut: VueType.VueConstructor<{ instance: SlideOut; } & { activeStateEnabled: boolean; contentTemplate: unknown; dataSource: any; disabled: boolean; elementAttr: any; height: string | number | Function; hint: string; hoverStateEnabled: boolean; itemHoldTimeout: number; items: unknown[]; itemTemplate: unknown; menuGrouped: boolean; menuGroupTemplate: unknown; menuItemTemplate: unknown; menuPosition: string; menuVisible: boolean; noDataText: string; onContentReady: Function; onDisposing: Function; onInitialized: Function; onItemClick: TimerHandler; onItemContextMenu: Function; onItemHold: Function; onItemRendered: Function; onMenuGroupRendered: Function; onMenuItemRendered: Function; onOptionChanged: Function; onSelectionChanged: Function; rtlEnabled: boolean; selectedIndex: number; selectedItem: any; swipeEnabled: boolean; visible: boolean; width: string | number | Function; } & VueType.default>; declare const DxItem: any; export default DxSlideOut; export { DxSlideOut, DxItem };