igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
80 lines (79 loc) • 2.56 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 {
constructor() {
super();
this.d3 = null;
this.d5 = null;
this.d0 = false;
this.d2 = null;
this.dw = null;
this.dx = null;
this.d4 = null;
}
get_type() {
return "ToolActionCheckboxList";
}
get dataSourceRef() {
return this.d3;
}
set dataSourceRef(a) {
this.d3 = a;
this.j("DataSourceRef");
}
get selectedMemberPath() {
return this.d5;
}
set selectedMemberPath(a) {
this.d5 = a;
this.j("SelectedMemberPath");
}
get showSelectAll() {
return this.d0;
}
set showSelectAll(a) {
this.d0 = a;
this.j("ShowSelectAll");
}
get dataMemberPath() {
return this.d2;
}
set dataMemberPath(a) {
this.d2 = a;
this.j("DataMemberPath");
}
get primaryKey() {
return this.dw;
}
set primaryKey(a) {
this.dw = a;
this.j("PrimaryKey");
}
get selectedKeys() {
return this.dx;
}
set selectedKeys(a) {
this.dx = a;
this.j("SelectedKeys");
}
get indexType() {
return this.d4;
}
set indexType(a) {
this.d4 = a;
this.j("IndexType");
}
}
ToolActionCheckboxListDescription.$t = markType(ToolActionCheckboxListDescription, 'ToolActionCheckboxListDescription', ToolActionDescription.$);
return ToolActionCheckboxListDescription;
})();