UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

52 lines (51 loc) 2.04 kB
/** * DevExtreme (esm/renovation/ui/editors/common/editor.j.js) * Version: 22.1.9 * Build date: Tue Apr 18 2023 * * Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import registerComponent from "../../../../core/component_registrator"; import EditorWrapperComponent from "../../../component_wrapper/editors/editor"; import { Editor as EditorComponent, defaultOptions } from "./editor"; export default class Editor extends EditorWrapperComponent { getProps() { var props = super.getProps(); props.onKeyDown = this._wrapKeyDownHandler(props.onKeyDown); return props } focus() { var _this$viewRef; return null === (_this$viewRef = this.viewRef) || void 0 === _this$viewRef ? void 0 : _this$viewRef.focus(...arguments) } blur() { var _this$viewRef2; return null === (_this$viewRef2 = this.viewRef) || void 0 === _this$viewRef2 ? void 0 : _this$viewRef2.blur(...arguments) } _getActionConfigs() { return { onFocusIn: {}, onClick: {} } } get _propsInfo() { return { twoWay: [ ["value", "defaultValue", "valueChange"] ], allowNull: ["validationError", "validationErrors"], elements: [], templates: [], props: ["readOnly", "name", "validationError", "validationErrors", "validationMessageMode", "validationStatus", "isValid", "onFocusIn", "defaultValue", "valueChange", "className", "accessKey", "activeStateEnabled", "disabled", "focusStateEnabled", "height", "hint", "hoverStateEnabled", "onClick", "onKeyDown", "rtlEnabled", "tabIndex", "visible", "width", "aria", "classes", "value"] } } get _viewComponent() { return EditorComponent } } registerComponent("dxEditor", Editor); Editor.defaultOptions = defaultOptions;