devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
52 lines (51 loc) • 2.15 kB
JavaScript
/**
* DevExtreme (esm/__internal/ui/check_box/generated_wrapper.js)
* Version: 24.2.6
* Build date: Mon Mar 17 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import registerComponent from "../../../core/component_registrator";
import {
CheckBox as CheckBoxComponent,
defaultOptions
} from "./check_box";
import BaseComponent from "./wrapper";
export default class CheckBox extends BaseComponent {
getProps() {
const 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: ["defaultValue", "validationError", "validationErrors", "value"],
elements: [],
templates: [],
props: ["text", "iconSize", "enableThreeStateBehavior", "activeStateEnabled", "hoverStateEnabled", "focusStateEnabled", "saveValueChangeEvent", "defaultValue", "valueChange", "readOnly", "name", "validationError", "validationErrors", "validationMessageMode", "validationMessagePosition", "validationStatus", "isValid", "isDirty", "inputAttr", "onFocusIn", "className", "accessKey", "disabled", "height", "hint", "onClick", "onKeyDown", "rtlEnabled", "tabIndex", "visible", "width", "aria", "value"]
}
}
get _viewComponent() {
return CheckBoxComponent
}
}
registerComponent("dxCheckBox", CheckBox);
CheckBox.defaultOptions = defaultOptions;