devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
53 lines (51 loc) • 1.93 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 ResponsiveBox, { IOptions } from "devextreme/ui/responsive_box";
declare type AccessibleOptions = Pick<IOptions, "cols" | "dataSource" | "disabled" | "elementAttr" | "height" | "hoverStateEnabled" | "itemHoldTimeout" | "items" | "itemTemplate" | "onContentReady" | "onDisposing" | "onInitialized" | "onItemClick" | "onItemContextMenu" | "onItemHold" | "onItemRendered" | "onOptionChanged" | "rows" | "rtlEnabled" | "screenByWidth" | "singleColumnScreen" | "visible" | "width">;
interface DxResponsiveBox extends AccessibleOptions {
readonly instance?: ResponsiveBox;
}
declare const DxResponsiveBox: VueType.VueConstructor<{
instance: ResponsiveBox;
} & {
cols: unknown[];
dataSource: any;
disabled: boolean;
elementAttr: any;
height: string | number | Function;
hoverStateEnabled: boolean;
itemHoldTimeout: number;
items: unknown[];
itemTemplate: unknown;
onContentReady: Function;
onDisposing: Function;
onInitialized: Function;
onItemClick: TimerHandler;
onItemContextMenu: Function;
onItemHold: Function;
onItemRendered: Function;
onOptionChanged: Function;
rows: unknown[];
rtlEnabled: boolean;
screenByWidth: Function;
singleColumnScreen: string;
visible: boolean;
width: string | number | Function;
} & VueType.default>;
declare const DxCol: any;
declare const DxItem: any;
declare const DxLocation: any;
declare const DxRow: any;
export default DxResponsiveBox;
export { DxResponsiveBox, DxCol, DxItem, DxLocation, DxRow };