UNPKG

devextreme-vue

Version:

DevExtreme Vue UI and Visualization Components

82 lines (80 loc) 3.02 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 Sankey, { IOptions } from "devextreme/viz/sankey"; declare type AccessibleOptions = Pick<IOptions, "adaptiveLayout" | "alignment" | "dataSource" | "disabled" | "elementAttr" | "export" | "hoverEnabled" | "label" | "link" | "loadingIndicator" | "margin" | "node" | "onDisposing" | "onDrawn" | "onExported" | "onExporting" | "onFileSaving" | "onIncidentOccurred" | "onInitialized" | "onLinkClick" | "onLinkHoverChanged" | "onNodeClick" | "onNodeHoverChanged" | "onOptionChanged" | "palette" | "paletteExtensionMode" | "pathModified" | "redrawOnResize" | "rtlEnabled" | "size" | "sortData" | "sourceField" | "targetField" | "theme" | "title" | "tooltip" | "weightField">; interface DxSankey extends AccessibleOptions { readonly instance?: Sankey; } declare const DxSankey: VueType.VueConstructor<{ instance: Sankey; } & { adaptiveLayout: any; alignment: string | unknown[]; dataSource: any; disabled: boolean; elementAttr: any; export: any; hoverEnabled: boolean; label: any; link: any; loadingIndicator: any; margin: any; node: any; onDisposing: Function; onDrawn: Function; onExported: Function; onExporting: Function; onFileSaving: Function; onIncidentOccurred: Function; onInitialized: Function; onLinkClick: TimerHandler; onLinkHoverChanged: Function; onNodeClick: TimerHandler; onNodeHoverChanged: Function; onOptionChanged: Function; palette: string | unknown[]; paletteExtensionMode: string; pathModified: boolean; redrawOnResize: boolean; rtlEnabled: boolean; size: any; sortData: any; sourceField: string; targetField: string; theme: string; title: any; tooltip: any; weightField: string; } & VueType.default>; declare const DxAdaptiveLayout: any; declare const DxBorder: any; declare const DxExport: any; declare const DxFont: any; declare const DxFormat: any; declare const DxHatching: any; declare const DxHoverStyle: any; declare const DxLabel: any; declare const DxLink: any; declare const DxLoadingIndicator: any; declare const DxMargin: any; declare const DxNode: any; declare const DxSankeyborder: any; declare const DxShadow: any; declare const DxSize: any; declare const DxSubtitle: any; declare const DxTitle: any; declare const DxTooltip: any; declare const DxTooltipBorder: any; export default DxSankey; export { DxSankey, DxAdaptiveLayout, DxBorder, DxExport, DxFont, DxFormat, DxHatching, DxHoverStyle, DxLabel, DxLink, DxLoadingIndicator, DxMargin, DxNode, DxSankeyborder, DxShadow, DxSize, DxSubtitle, DxTitle, DxTooltip, DxTooltipBorder };