UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

108 lines (101 loc) 3.99 kB
/** * DevExtreme (renovation/ui/editors/check_box/check_box.j.js) * Version: 21.2.4 * Build date: Mon Dec 06 2021 * * Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; exports.default = void 0; var _component_registrator = _interopRequireDefault(require("../../../../core/component_registrator")); var _check_box = _interopRequireDefault(require("../../../component_wrapper/editors/check_box")); var _check_box2 = require("./check_box"); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) { descriptor.writable = true } Object.defineProperty(target, descriptor.key, descriptor) } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) { _defineProperties(Constructor.prototype, protoProps) } if (staticProps) { _defineProperties(Constructor, staticProps) } return Constructor } function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass) } function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function(o, p) { o.__proto__ = p; return o }; return _setPrototypeOf(o, p) } var CheckBox = function(_BaseComponent) { _inheritsLoose(CheckBox, _BaseComponent); function CheckBox() { return _BaseComponent.apply(this, arguments) || this } var _proto = CheckBox.prototype; _proto.getProps = function() { var props = _BaseComponent.prototype.getProps.call(this); props.onKeyDown = this._wrapKeyDownHandler(props.onKeyDown); return props }; _proto.focus = function() { var _this$viewRef; return null === (_this$viewRef = this.viewRef) || void 0 === _this$viewRef ? void 0 : _this$viewRef.focus.apply(_this$viewRef, arguments) }; _proto.blur = function() { var _this$viewRef2; return null === (_this$viewRef2 = this.viewRef) || void 0 === _this$viewRef2 ? void 0 : _this$viewRef2.blur.apply(_this$viewRef2, arguments) }; _proto._getActionConfigs = function() { return { onFocusIn: {}, onClick: {} } }; _createClass(CheckBox, [{ key: "_propsInfo", get: function() { return { twoWay: [ ["value", "defaultValue", "valueChange"] ], allowNull: ["defaultValue", "validationError", "validationErrors", "value"], elements: [], templates: [], props: ["text", "iconSize", "activeStateEnabled", "hoverStateEnabled", "saveValueChangeEvent", "defaultValue", "valueChange", "readOnly", "name", "validationError", "validationErrors", "validationMessageMode", "validationStatus", "isValid", "onFocusIn", "className", "accessKey", "disabled", "focusStateEnabled", "height", "hint", "onClick", "onKeyDown", "rtlEnabled", "tabIndex", "visible", "width", "aria", "value"] } } }, { key: "_viewComponent", get: function() { return _check_box2.CheckBox } }]); return CheckBox }(_check_box.default); exports.default = CheckBox; (0, _component_registrator.default)("dxCheckBox", CheckBox); CheckBox.defaultOptions = _check_box2.defaultOptions; module.exports = exports.default; module.exports.default = exports.default;