igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
96 lines (95 loc) • 3.21 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 {
constructor() {
super();
this.dw = false;
this.d4 = null;
this.d0 = null;
this.d2 = null;
this.dy = null;
this.d5 = null;
this.d1 = null;
this.d3 = null;
this.dz = null;
}
get_type() {
return "ToolActionCheckbox";
}
get isChecked() {
return this.dw;
}
set isChecked(a) {
this.dw = a;
this.j("IsChecked");
}
get uncheckedBackgroundColor() {
return this.d4;
}
set uncheckedBackgroundColor(a) {
this.d4 = a;
this.j("UncheckedBackgroundColor");
}
get actualUncheckedBackgroundColor() {
return this.d0;
}
set actualUncheckedBackgroundColor(a) {
this.d0 = a;
this.j("ActualUncheckedBackgroundColor");
}
get checkedBackgroundColor() {
return this.d2;
}
set checkedBackgroundColor(a) {
this.d2 = a;
this.j("CheckedBackgroundColor");
}
get actualCheckedBackgroundColor() {
return this.dy;
}
set actualCheckedBackgroundColor(a) {
this.dy = a;
this.j("ActualCheckedBackgroundColor");
}
get uncheckedBorderColor() {
return this.d5;
}
set uncheckedBorderColor(a) {
this.d5 = a;
this.j("UncheckedBorderColor");
}
get actualUncheckedBorderColor() {
return this.d1;
}
set actualUncheckedBorderColor(a) {
this.d1 = a;
this.j("ActualUncheckedBorderColor");
}
get checkedBorderColor() {
return this.d3;
}
set checkedBorderColor(a) {
this.d3 = a;
this.j("CheckedBorderColor");
}
get actualCheckedBorderColor() {
return this.dz;
}
set actualCheckedBorderColor(a) {
this.dz = a;
this.j("ActualCheckedBorderColor");
}
}
ToolActionCheckboxDescription.$t = markType(ToolActionCheckboxDescription, 'ToolActionCheckboxDescription', ToolActionDescription.$);
return ToolActionCheckboxDescription;
})();