UNPKG

devextreme-vue

Version:

DevExtreme Vue UI and Visualization Components

65 lines (63 loc) 2.41 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 HtmlEditor, { IOptions } from "devextreme/ui/html_editor"; declare type AccessibleOptions = Pick<IOptions, "accessKey" | "activeStateEnabled" | "customizeModules" | "disabled" | "elementAttr" | "focusStateEnabled" | "height" | "hint" | "hoverStateEnabled" | "isValid" | "mediaResizing" | "mentions" | "name" | "onContentReady" | "onDisposing" | "onFocusIn" | "onFocusOut" | "onInitialized" | "onOptionChanged" | "onValueChanged" | "placeholder" | "readOnly" | "rtlEnabled" | "tabIndex" | "toolbar" | "validationError" | "validationErrors" | "validationMessageMode" | "validationStatus" | "value" | "valueType" | "variables" | "visible" | "width">; interface DxHtmlEditor extends AccessibleOptions { readonly instance?: HtmlEditor; } declare const DxHtmlEditor: VueType.VueConstructor<{ instance: HtmlEditor; } & { accessKey: string; activeStateEnabled: boolean; customizeModules: Function; disabled: boolean; elementAttr: any; focusStateEnabled: boolean; height: string | number | Function; hint: string; hoverStateEnabled: boolean; isValid: boolean; mediaResizing: any; mentions: unknown[]; name: string; onContentReady: Function; onDisposing: Function; onFocusIn: Function; onFocusOut: Function; onInitialized: Function; onOptionChanged: Function; onValueChanged: Function; placeholder: string; readOnly: boolean; rtlEnabled: boolean; tabIndex: number; toolbar: any; validationError: any; validationErrors: unknown[]; validationMessageMode: string; validationStatus: string; value: unknown; valueType: string; variables: any; visible: boolean; width: string | number | Function; } & VueType.default>; declare const DxItem: any; declare const DxMediaResizing: any; declare const DxMention: any; declare const DxToolbar: any; declare const DxVariables: any; export default DxHtmlEditor; export { DxHtmlEditor, DxItem, DxMediaResizing, DxMention, DxToolbar, DxVariables };