UNPKG

devextreme-vue

Version:

DevExtreme Vue UI and Visualization Components

67 lines (65 loc) 2.58 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 TabPanel, { IOptions } from "devextreme/ui/tab_panel"; declare type AccessibleOptions = Pick<IOptions, "accessKey" | "activeStateEnabled" | "animationEnabled" | "dataSource" | "deferRendering" | "disabled" | "elementAttr" | "focusStateEnabled" | "height" | "hint" | "hoverStateEnabled" | "itemHoldTimeout" | "items" | "itemTemplate" | "itemTitleTemplate" | "loop" | "noDataText" | "onContentReady" | "onDisposing" | "onInitialized" | "onItemClick" | "onItemContextMenu" | "onItemHold" | "onItemRendered" | "onOptionChanged" | "onSelectionChanged" | "onTitleClick" | "onTitleHold" | "onTitleRendered" | "repaintChangesOnly" | "rtlEnabled" | "scrollByContent" | "scrollingEnabled" | "selectedIndex" | "selectedItem" | "showNavButtons" | "swipeEnabled" | "tabIndex" | "visible" | "width">; interface DxTabPanel extends AccessibleOptions { readonly instance?: TabPanel; } declare const DxTabPanel: VueType.VueConstructor<{ instance: TabPanel; } & { accessKey: string; activeStateEnabled: boolean; animationEnabled: boolean; dataSource: any; deferRendering: boolean; disabled: boolean; elementAttr: any; focusStateEnabled: boolean; height: string | number | Function; hint: string; hoverStateEnabled: boolean; itemHoldTimeout: number; items: unknown[]; itemTemplate: unknown; itemTitleTemplate: unknown; loop: boolean; noDataText: string; onContentReady: Function; onDisposing: Function; onInitialized: Function; onItemClick: TimerHandler; onItemContextMenu: Function; onItemHold: Function; onItemRendered: Function; onOptionChanged: Function; onSelectionChanged: Function; onTitleClick: TimerHandler; onTitleHold: Function; onTitleRendered: Function; repaintChangesOnly: boolean; rtlEnabled: boolean; scrollByContent: boolean; scrollingEnabled: boolean; selectedIndex: number; selectedItem: any; showNavButtons: boolean; swipeEnabled: boolean; tabIndex: number; visible: boolean; width: string | number | Function; } & VueType.default>; declare const DxItem: any; export default DxTabPanel; export { DxTabPanel, DxItem };