igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
64 lines (63 loc) • 2.18 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 { WebHierarchicalGridBaseDirectiveDescription } from "./WebHierarchicalGridBaseDirectiveDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebHierarchicalGridDescription = /*@__PURE__*/ (() => {
class WebHierarchicalGridDescription extends WebHierarchicalGridBaseDirectiveDescription {
constructor() {
super();
this.g8 = null;
this.hf = null;
this.he = null;
this.hc = 0;
this.ha = false;
}
get_type() {
return "WebHierarchicalGrid";
}
get childLayoutList() {
return this.g8;
}
set childLayoutList(a) {
this.g8 = a;
this.j("ChildLayoutList");
}
get id() {
return this.hf;
}
set id(a) {
this.hf = a;
this.j("Id");
}
get dataRef() {
return this.he;
}
set dataRef(a) {
this.he = a;
this.j("DataRef");
}
get totalItemCount() {
return this.hc;
}
set totalItemCount(a) {
this.hc = a;
this.j("TotalItemCount");
}
get expandChildren() {
return this.ha;
}
set expandChildren(a) {
this.ha = a;
this.j("ExpandChildren");
}
}
WebHierarchicalGridDescription.$t = markType(WebHierarchicalGridDescription, 'WebHierarchicalGridDescription', WebHierarchicalGridBaseDirectiveDescription.$);
return WebHierarchicalGridDescription;
})();