igniteui-react-core
Version:
Ignite UI React Core.
170 lines (169 loc) • 5.43 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 ToolActionRadioDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ToolActionRadioDescription, _super);
function ToolActionRadioDescription() {
var _this = _super.call(this) || this;
_this.ea = null;
_this.ed = null;
_this.d2 = false;
_this.d3 = false;
_this.ee = null;
_this.d8 = null;
_this.eb = null;
_this.d6 = null;
_this.ef = null;
_this.d9 = null;
_this.ec = null;
_this.d7 = null;
return _this;
}
ToolActionRadioDescription.prototype.get_type = function () {
return "ToolActionRadio";
};
Object.defineProperty(ToolActionRadioDescription.prototype, "channel", {
get: function () {
return this.ea;
},
set: function (a) {
this.ea = a;
this.j("Channel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionRadioDescription.prototype, "shorthandTitle", {
get: function () {
return this.ed;
},
set: function (a) {
this.ed = a;
this.j("ShorthandTitle");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionRadioDescription.prototype, "isChecked", {
get: function () {
return this.d2;
},
set: function (a) {
this.d2 = a;
this.j("IsChecked");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionRadioDescription.prototype, "isManual", {
get: function () {
return this.d3;
},
set: function (a) {
this.d3 = a;
this.j("IsManual");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionRadioDescription.prototype, "uncheckedBackgroundColor", {
get: function () {
return this.ee;
},
set: function (a) {
this.ee = a;
this.j("UncheckedBackgroundColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionRadioDescription.prototype, "actualUncheckedBackgroundColor", {
get: function () {
return this.d8;
},
set: function (a) {
this.d8 = a;
this.j("ActualUncheckedBackgroundColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionRadioDescription.prototype, "checkedBackgroundColor", {
get: function () {
return this.eb;
},
set: function (a) {
this.eb = a;
this.j("CheckedBackgroundColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionRadioDescription.prototype, "actualCheckedBackgroundColor", {
get: function () {
return this.d6;
},
set: function (a) {
this.d6 = a;
this.j("ActualCheckedBackgroundColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionRadioDescription.prototype, "uncheckedBorderColor", {
get: function () {
return this.ef;
},
set: function (a) {
this.ef = a;
this.j("UncheckedBorderColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionRadioDescription.prototype, "actualUncheckedBorderColor", {
get: function () {
return this.d9;
},
set: function (a) {
this.d9 = a;
this.j("ActualUncheckedBorderColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionRadioDescription.prototype, "checkedBorderColor", {
get: function () {
return this.ec;
},
set: function (a) {
this.ec = a;
this.j("CheckedBorderColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionRadioDescription.prototype, "actualCheckedBorderColor", {
get: function () {
return this.d7;
},
set: function (a) {
this.d7 = a;
this.j("ActualCheckedBorderColor");
},
enumerable: false,
configurable: true
});
ToolActionRadioDescription.$t = markType(ToolActionRadioDescription, 'ToolActionRadioDescription', ToolActionDescription.$);
return ToolActionRadioDescription;
}(ToolActionDescription));
export { ToolActionRadioDescription };