igniteui-react-core
Version:
Ignite UI React Core.
96 lines (95 loc) • 3.13 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 ToolActionCheckboxDescription = /*@__PURE__*/ (() => {
class ToolActionCheckboxDescription extends ToolActionDescription {
get_type() {
return "ToolActionCheckbox";
}
constructor() {
super();
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;
}
get isChecked() {
return this.dv;
}
set isChecked(a) {
this.dv = a;
this.g("IsChecked");
}
get uncheckedBackgroundColor() {
return this.d3;
}
set uncheckedBackgroundColor(a) {
this.d3 = a;
this.g("UncheckedBackgroundColor");
}
get actualUncheckedBackgroundColor() {
return this.dz;
}
set actualUncheckedBackgroundColor(a) {
this.dz = a;
this.g("ActualUncheckedBackgroundColor");
}
get checkedBackgroundColor() {
return this.d1;
}
set checkedBackgroundColor(a) {
this.d1 = a;
this.g("CheckedBackgroundColor");
}
get actualCheckedBackgroundColor() {
return this.dx;
}
set actualCheckedBackgroundColor(a) {
this.dx = a;
this.g("ActualCheckedBackgroundColor");
}
get uncheckedBorderColor() {
return this.d4;
}
set uncheckedBorderColor(a) {
this.d4 = a;
this.g("UncheckedBorderColor");
}
get actualUncheckedBorderColor() {
return this.d0;
}
set actualUncheckedBorderColor(a) {
this.d0 = a;
this.g("ActualUncheckedBorderColor");
}
get checkedBorderColor() {
return this.d2;
}
set checkedBorderColor(a) {
this.d2 = a;
this.g("CheckedBorderColor");
}
get actualCheckedBorderColor() {
return this.dy;
}
set actualCheckedBorderColor(a) {
this.dy = a;
this.g("ActualCheckedBorderColor");
}
}
ToolActionCheckboxDescription.$t = /*@__PURE__*/ markType(ToolActionCheckboxDescription, 'ToolActionCheckboxDescription', ToolActionDescription.$);
return ToolActionCheckboxDescription;
})();