devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
62 lines (60 loc) • 2.31 kB
TypeScript
/*!
* 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 Tabs, { IOptions } from "devextreme/ui/tabs";
declare type AccessibleOptions = Pick<IOptions, "accessKey" | "dataSource" | "disabled" | "elementAttr" | "focusStateEnabled" | "height" | "hint" | "hoverStateEnabled" | "itemHoldTimeout" | "items" | "itemTemplate" | "keyExpr" | "noDataText" | "onContentReady" | "onDisposing" | "onInitialized" | "onItemClick" | "onItemContextMenu" | "onItemHold" | "onItemRendered" | "onOptionChanged" | "onSelectionChanged" | "repaintChangesOnly" | "rtlEnabled" | "scrollByContent" | "scrollingEnabled" | "selectedIndex" | "selectedItem" | "selectedItemKeys" | "selectedItems" | "selectionMode" | "showNavButtons" | "tabIndex" | "visible" | "width">;
interface DxTabs extends AccessibleOptions {
readonly instance?: Tabs;
}
declare const DxTabs: VueType.VueConstructor<{
instance: Tabs;
} & {
accessKey: string;
dataSource: any;
disabled: boolean;
elementAttr: any;
focusStateEnabled: boolean;
height: string | number | Function;
hint: string;
hoverStateEnabled: boolean;
itemHoldTimeout: number;
items: unknown[];
itemTemplate: unknown;
keyExpr: TimerHandler;
noDataText: string;
onContentReady: Function;
onDisposing: Function;
onInitialized: Function;
onItemClick: TimerHandler;
onItemContextMenu: Function;
onItemHold: Function;
onItemRendered: Function;
onOptionChanged: Function;
onSelectionChanged: Function;
repaintChangesOnly: boolean;
rtlEnabled: boolean;
scrollByContent: boolean;
scrollingEnabled: boolean;
selectedIndex: number;
selectedItem: any;
selectedItemKeys: unknown[];
selectedItems: unknown[];
selectionMode: string;
showNavButtons: boolean;
tabIndex: number;
visible: boolean;
width: string | number | Function;
} & VueType.default>;
declare const DxItem: any;
export default DxTabs;
export { DxTabs, DxItem };