igniteui-react-core
Version:
Ignite UI React Core.
146 lines (145 loc) • 4.84 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.d2 = false;
_this.ea = null;
_this.eb = null;
_this.d6 = null;
_this.d8 = null;
_this.d4 = null;
_this.ec = null;
_this.d7 = null;
_this.d9 = null;
_this.d5 = null;
return _this;
}
ToolActionCheckboxDescription.prototype.get_type = function () {
return "ToolActionCheckbox";
};
Object.defineProperty(ToolActionCheckboxDescription.prototype, "isChecked", {
get: function () {
return this.d2;
},
set: function (a) {
this.d2 = a;
this.j("IsChecked");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "shorthandTitle", {
get: function () {
return this.ea;
},
set: function (a) {
this.ea = a;
this.j("ShorthandTitle");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "uncheckedBackgroundColor", {
get: function () {
return this.eb;
},
set: function (a) {
this.eb = a;
this.j("UncheckedBackgroundColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "actualUncheckedBackgroundColor", {
get: function () {
return this.d6;
},
set: function (a) {
this.d6 = a;
this.j("ActualUncheckedBackgroundColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "checkedBackgroundColor", {
get: function () {
return this.d8;
},
set: function (a) {
this.d8 = a;
this.j("CheckedBackgroundColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "actualCheckedBackgroundColor", {
get: function () {
return this.d4;
},
set: function (a) {
this.d4 = a;
this.j("ActualCheckedBackgroundColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "uncheckedBorderColor", {
get: function () {
return this.ec;
},
set: function (a) {
this.ec = a;
this.j("UncheckedBorderColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "actualUncheckedBorderColor", {
get: function () {
return this.d7;
},
set: function (a) {
this.d7 = a;
this.j("ActualUncheckedBorderColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "checkedBorderColor", {
get: function () {
return this.d9;
},
set: function (a) {
this.d9 = a;
this.j("CheckedBorderColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxDescription.prototype, "actualCheckedBorderColor", {
get: function () {
return this.d5;
},
set: function (a) {
this.d5 = a;
this.j("ActualCheckedBorderColor");
},
enumerable: false,
configurable: true
});
ToolActionCheckboxDescription.$t = markType(ToolActionCheckboxDescription, 'ToolActionCheckboxDescription', ToolActionDescription.$);
return ToolActionCheckboxDescription;
}(ToolActionDescription));
export { ToolActionCheckboxDescription };