igniteui-react-core
Version:
Ignite UI React Core.
144 lines (143 loc) • 4.35 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 ToolActionCheckboxListDescription = /*@__PURE__*/ (() => {
class ToolActionCheckboxListDescription extends ToolActionDescription {
get_type() {
return "ToolActionCheckboxList";
}
constructor() {
super();
this.ef = null;
this.eh = null;
this.d6 = false;
this.ee = null;
this.d2 = null;
this.d3 = null;
this.eg = null;
this.ei = null;
this.ea = null;
this.ec = null;
this.d8 = null;
this.ej = null;
this.eb = null;
this.ed = null;
this.d9 = null;
}
get dataSourceRef() {
return this.ef;
}
set dataSourceRef(a) {
this.ef = a;
this.j("DataSourceRef");
}
get selectedMemberPath() {
return this.eh;
}
set selectedMemberPath(a) {
this.eh = a;
this.j("SelectedMemberPath");
}
get showSelectAll() {
return this.d6;
}
set showSelectAll(a) {
this.d6 = a;
this.j("ShowSelectAll");
}
get dataMemberPath() {
return this.ee;
}
set dataMemberPath(a) {
this.ee = a;
this.j("DataMemberPath");
}
get primaryKey() {
return this.d2;
}
set primaryKey(a) {
this.d2 = a;
this.j("PrimaryKey");
}
get selectedKeys() {
return this.d3;
}
set selectedKeys(a) {
this.d3 = a;
this.j("SelectedKeys");
}
get indexType() {
return this.eg;
}
set indexType(a) {
this.eg = a;
this.j("IndexType");
}
get uncheckedBackgroundColor() {
return this.ei;
}
set uncheckedBackgroundColor(a) {
this.ei = a;
this.j("UncheckedBackgroundColor");
}
get actualUncheckedBackgroundColor() {
return this.ea;
}
set actualUncheckedBackgroundColor(a) {
this.ea = a;
this.j("ActualUncheckedBackgroundColor");
}
get checkedBackgroundColor() {
return this.ec;
}
set checkedBackgroundColor(a) {
this.ec = a;
this.j("CheckedBackgroundColor");
}
get actualCheckedBackgroundColor() {
return this.d8;
}
set actualCheckedBackgroundColor(a) {
this.d8 = a;
this.j("ActualCheckedBackgroundColor");
}
get uncheckedBorderColor() {
return this.ej;
}
set uncheckedBorderColor(a) {
this.ej = a;
this.j("UncheckedBorderColor");
}
get actualUncheckedBorderColor() {
return this.eb;
}
set actualUncheckedBorderColor(a) {
this.eb = a;
this.j("ActualUncheckedBorderColor");
}
get checkedBorderColor() {
return this.ed;
}
set checkedBorderColor(a) {
this.ed = a;
this.j("CheckedBorderColor");
}
get actualCheckedBorderColor() {
return this.d9;
}
set actualCheckedBorderColor(a) {
this.d9 = a;
this.j("ActualCheckedBorderColor");
}
}
ToolActionCheckboxListDescription.$t = /*@__PURE__*/ markType(ToolActionCheckboxListDescription, 'ToolActionCheckboxListDescription', ToolActionDescription.$);
return ToolActionCheckboxListDescription;
})();