igniteui-react-core
Version:
Ignite UI React Core.
112 lines (111 loc) • 3.47 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 { ToolActionDescription } from "./ToolActionDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ToolActionRadioDescription = /*@__PURE__*/ (() => {
class ToolActionRadioDescription extends ToolActionDescription {
get_type() {
return "ToolActionRadio";
}
constructor() {
super();
this.d3 = null;
this.dv = false;
this.dw = false;
this.d6 = null;
this.d1 = null;
this.d4 = null;
this.dz = null;
this.d7 = null;
this.d2 = null;
this.d5 = null;
this.d0 = null;
}
get channel() {
return this.d3;
}
set channel(a) {
this.d3 = a;
this.g("Channel");
}
get isChecked() {
return this.dv;
}
set isChecked(a) {
this.dv = a;
this.g("IsChecked");
}
get isManual() {
return this.dw;
}
set isManual(a) {
this.dw = a;
this.g("IsManual");
}
get uncheckedBackgroundColor() {
return this.d6;
}
set uncheckedBackgroundColor(a) {
this.d6 = a;
this.g("UncheckedBackgroundColor");
}
get actualUncheckedBackgroundColor() {
return this.d1;
}
set actualUncheckedBackgroundColor(a) {
this.d1 = a;
this.g("ActualUncheckedBackgroundColor");
}
get checkedBackgroundColor() {
return this.d4;
}
set checkedBackgroundColor(a) {
this.d4 = a;
this.g("CheckedBackgroundColor");
}
get actualCheckedBackgroundColor() {
return this.dz;
}
set actualCheckedBackgroundColor(a) {
this.dz = a;
this.g("ActualCheckedBackgroundColor");
}
get uncheckedBorderColor() {
return this.d7;
}
set uncheckedBorderColor(a) {
this.d7 = a;
this.g("UncheckedBorderColor");
}
get actualUncheckedBorderColor() {
return this.d2;
}
set actualUncheckedBorderColor(a) {
this.d2 = a;
this.g("ActualUncheckedBorderColor");
}
get checkedBorderColor() {
return this.d5;
}
set checkedBorderColor(a) {
this.d5 = a;
this.g("CheckedBorderColor");
}
get actualCheckedBorderColor() {
return this.d0;
}
set actualCheckedBorderColor(a) {
this.d0 = a;
this.g("ActualCheckedBorderColor");
}
}
ToolActionRadioDescription.$t = /*@__PURE__*/ markType(ToolActionRadioDescription, 'ToolActionRadioDescription', ToolActionDescription.$);
return ToolActionRadioDescription;
})();