UNPKG

devextreme-vue

Version:

DevExtreme Vue UI and Visualization Components

75 lines (73 loc) 2.82 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 Popover, { IOptions } from "devextreme/ui/popover"; declare type AccessibleOptions = Pick<IOptions, "animation" | "closeOnOutsideClick" | "container" | "contentTemplate" | "deferRendering" | "disabled" | "elementAttr" | "height" | "hideEvent" | "hint" | "hoverStateEnabled" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onContentReady" | "onDisposing" | "onHidden" | "onHiding" | "onInitialized" | "onOptionChanged" | "onShowing" | "onShown" | "onTitleRendered" | "position" | "rtlEnabled" | "shading" | "shadingColor" | "showCloseButton" | "showEvent" | "showTitle" | "target" | "title" | "titleTemplate" | "toolbarItems" | "visible" | "width">; interface DxPopover extends AccessibleOptions { readonly instance?: Popover; } declare const DxPopover: VueType.VueConstructor<{ instance: Popover; } & { animation: any; closeOnOutsideClick: boolean | Function; container: unknown; contentTemplate: unknown; deferRendering: boolean; disabled: boolean; elementAttr: any; height: string | number | Function; hideEvent: any; 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; onShowing: Function; onShown: Function; onTitleRendered: Function; position: any; rtlEnabled: boolean; shading: boolean; shadingColor: string; showCloseButton: boolean; showEvent: any; showTitle: boolean; target: unknown; 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 DxHideEvent: any; declare const DxMy: any; declare const DxOffset: any; declare const DxPosition: any; declare const DxShow: any; declare const DxShowEvent: any; declare const DxToolbarItem: any; export default DxPopover; export { DxPopover, DxAnimation, DxAt, DxBoundaryOffset, DxCollision, DxHide, DxHideEvent, DxMy, DxOffset, DxPosition, DxShow, DxShowEvent, DxToolbarItem };