igniteui-react-core
Version:
Ignite UI React Core.
134 lines (133 loc) • 4.5 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { ToolActionDescription } from "./ToolActionDescription";
import { markType } from "./type";
/**
* @hidden
*/
var ToolActionCheckboxDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ToolActionCheckboxDescription, _super);
function ToolActionCheckboxDescription() {
var _this = _super.call(this) || this;
_this.dv = false;
_this.d3 = null;
_this.dz = null;
_this.d1 = null;
_this.dx = null;
_this.d4 = null;
_this.d0 = null;
_this.d2 = null;
_this.dy = null;
return _this;
}
ToolActionCheckboxDescription.prototype.get_type = function () {
return "ToolActionCheckbox";
};
Object.defineProperty(ToolActionCheckboxDescription.prototype, "isChecked", {
get: function () {
return this.dv;
},
set: function (a) {
this.dv = a;
this.g("IsChecked");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "uncheckedBackgroundColor", {
get: function () {
return this.d3;
},
set: function (a) {
this.d3 = a;
this.g("UncheckedBackgroundColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "actualUncheckedBackgroundColor", {
get: function () {
return this.dz;
},
set: function (a) {
this.dz = a;
this.g("ActualUncheckedBackgroundColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "checkedBackgroundColor", {
get: function () {
return this.d1;
},
set: function (a) {
this.d1 = a;
this.g("CheckedBackgroundColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "actualCheckedBackgroundColor", {
get: function () {
return this.dx;
},
set: function (a) {
this.dx = a;
this.g("ActualCheckedBackgroundColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "uncheckedBorderColor", {
get: function () {
return this.d4;
},
set: function (a) {
this.d4 = a;
this.g("UncheckedBorderColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "actualUncheckedBorderColor", {
get: function () {
return this.d0;
},
set: function (a) {
this.d0 = a;
this.g("ActualUncheckedBorderColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "checkedBorderColor", {
get: function () {
return this.d2;
},
set: function (a) {
this.d2 = a;
this.g("CheckedBorderColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "actualCheckedBorderColor", {
get: function () {
return this.dy;
},
set: function (a) {
this.dy = a;
this.g("ActualCheckedBorderColor");
},
enumerable: false,
configurable: true
});
ToolActionCheckboxDescription.$t = markType(ToolActionCheckboxDescription, 'ToolActionCheckboxDescription', ToolActionDescription.$);
return ToolActionCheckboxDescription;
}(ToolActionDescription));
export { ToolActionCheckboxDescription };