devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
79 lines (77 loc) • 3 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 Popup, { IOptions } from "devextreme/ui/popup";
declare type AccessibleOptions = Pick<IOptions, "accessKey" | "animation" | "closeOnOutsideClick" | "container" | "contentTemplate" | "deferRendering" | "disabled" | "dragEnabled" | "elementAttr" | "focusStateEnabled" | "fullScreen" | "height" | "hint" | "hoverStateEnabled" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onContentReady" | "onDisposing" | "onHidden" | "onHiding" | "onInitialized" | "onOptionChanged" | "onResize" | "onResizeEnd" | "onResizeStart" | "onShowing" | "onShown" | "onTitleRendered" | "position" | "resizeEnabled" | "rtlEnabled" | "shading" | "shadingColor" | "showCloseButton" | "showTitle" | "tabIndex" | "title" | "titleTemplate" | "toolbarItems" | "visible" | "width">;
interface DxPopup extends AccessibleOptions {
readonly instance?: Popup;
}
declare const DxPopup: VueType.VueConstructor<{
instance: Popup;
} & {
accessKey: string;
animation: any;
closeOnOutsideClick: boolean | Function;
container: unknown;
contentTemplate: unknown;
deferRendering: boolean;
disabled: boolean;
dragEnabled: boolean;
elementAttr: any;
focusStateEnabled: boolean;
fullScreen: boolean;
height: string | number | Function;
hint: string;
hoverStateEnabled: boolean;
maxHeight: string | number | Function;
maxWidth: string | number | Function;
minHeight: string | number | Function;
minWidth: string | number | Function;
onContentReady: Function;
onDisposing: Function;
onHidden: Function;
onHiding: Function;
onInitialized: Function;
onOptionChanged: Function;
onResize: Function;
onResizeEnd: Function;
onResizeStart: Function;
onShowing: Function;
onShown: Function;
onTitleRendered: Function;
position: any;
resizeEnabled: boolean;
rtlEnabled: boolean;
shading: boolean;
shadingColor: string;
showCloseButton: boolean;
showTitle: boolean;
tabIndex: number;
title: string;
titleTemplate: unknown;
toolbarItems: unknown[];
visible: boolean;
width: string | number | Function;
} & VueType.default>;
declare const DxAnimation: any;
declare const DxAt: any;
declare const DxBoundaryOffset: any;
declare const DxCollision: any;
declare const DxHide: any;
declare const DxMy: any;
declare const DxOffset: any;
declare const DxPosition: any;
declare const DxShow: any;
declare const DxToolbarItem: any;
export default DxPopup;
export { DxPopup, DxAnimation, DxAt, DxBoundaryOffset, DxCollision, DxHide, DxMy, DxOffset, DxPosition, DxShow, DxToolbarItem };