devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
72 lines (70 loc) • 2.66 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 TextArea, { IOptions } from "devextreme/ui/text_area";
declare type AccessibleOptions = Pick<IOptions, "accessKey" | "activeStateEnabled" | "autoResizeEnabled" | "disabled" | "elementAttr" | "focusStateEnabled" | "height" | "hint" | "hoverStateEnabled" | "inputAttr" | "isValid" | "maxHeight" | "maxLength" | "minHeight" | "name" | "onChange" | "onContentReady" | "onCopy" | "onCut" | "onDisposing" | "onEnterKey" | "onFocusIn" | "onFocusOut" | "onInitialized" | "onInput" | "onKeyDown" | "onKeyPress" | "onKeyUp" | "onOptionChanged" | "onPaste" | "onValueChanged" | "placeholder" | "readOnly" | "rtlEnabled" | "spellcheck" | "stylingMode" | "tabIndex" | "text" | "validationError" | "validationErrors" | "validationMessageMode" | "validationStatus" | "value" | "valueChangeEvent" | "visible" | "width">;
interface DxTextArea extends AccessibleOptions {
readonly instance?: TextArea;
}
declare const DxTextArea: VueType.VueConstructor<{
instance: TextArea;
} & {
accessKey: string;
activeStateEnabled: boolean;
autoResizeEnabled: boolean;
disabled: boolean;
elementAttr: any;
focusStateEnabled: boolean;
height: string | number | Function;
hint: string;
hoverStateEnabled: boolean;
inputAttr: any;
isValid: boolean;
maxHeight: string | number;
maxLength: string | number;
minHeight: string | number;
name: string;
onChange: Function;
onContentReady: Function;
onCopy: Function;
onCut: Function;
onDisposing: Function;
onEnterKey: Function;
onFocusIn: Function;
onFocusOut: Function;
onInitialized: Function;
onInput: Function;
onKeyDown: Function;
onKeyPress: Function;
onKeyUp: Function;
onOptionChanged: Function;
onPaste: Function;
onValueChanged: Function;
placeholder: string;
readOnly: boolean;
rtlEnabled: boolean;
spellcheck: boolean;
stylingMode: string;
tabIndex: number;
text: string;
validationError: any;
validationErrors: unknown[];
validationMessageMode: string;
validationStatus: string;
value: string;
valueChangeEvent: string;
visible: boolean;
width: string | number | Function;
} & VueType.default>;
export default DxTextArea;
export { DxTextArea };