devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
59 lines (57 loc) • 2.19 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 MultiView, { IOptions } from "devextreme/ui/multi_view";
declare type AccessibleOptions = Pick<IOptions, "accessKey" | "activeStateEnabled" | "animationEnabled" | "dataSource" | "deferRendering" | "disabled" | "elementAttr" | "focusStateEnabled" | "height" | "hint" | "hoverStateEnabled" | "itemHoldTimeout" | "items" | "itemTemplate" | "loop" | "noDataText" | "onContentReady" | "onDisposing" | "onInitialized" | "onItemClick" | "onItemContextMenu" | "onItemHold" | "onItemRendered" | "onOptionChanged" | "onSelectionChanged" | "rtlEnabled" | "selectedIndex" | "selectedItem" | "swipeEnabled" | "tabIndex" | "visible" | "width">;
interface DxMultiView extends AccessibleOptions {
readonly instance?: MultiView;
}
declare const DxMultiView: VueType.VueConstructor<{
instance: MultiView;
} & {
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;
loop: boolean;
noDataText: string;
onContentReady: Function;
onDisposing: Function;
onInitialized: Function;
onItemClick: TimerHandler;
onItemContextMenu: Function;
onItemHold: Function;
onItemRendered: Function;
onOptionChanged: Function;
onSelectionChanged: Function;
rtlEnabled: boolean;
selectedIndex: number;
selectedItem: any;
swipeEnabled: boolean;
tabIndex: number;
visible: boolean;
width: string | number | Function;
} & VueType.default>;
declare const DxItem: any;
export default DxMultiView;
export { DxMultiView, DxItem };