UNPKG

igniteui-react-core

Version:
104 lines (103 loc) 3.08 kB
/* 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 { WebGridBaseDirectiveDescription } from "./WebGridBaseDirectiveDescription"; import { markType } from "./type"; /** * @hidden */ export let WebTreeGridDescription = /*@__PURE__*/ (() => { class WebTreeGridDescription extends WebGridBaseDirectiveDescription { get_type() { return "WebTreeGrid"; } constructor() { super(); this.gx = null; this.gz = null; this.g0 = null; this.gt = false; this.g1 = null; this.gq = null; this.gp = null; this.gy = null; this.gv = 0; this.g2 = null; } get childDataKey() { return this.gx; } set childDataKey(a) { this.gx = a; this.g("ChildDataKey"); } get foreignKey() { return this.gz; } set foreignKey(a) { this.gz = a; this.g("ForeignKey"); } get hasChildrenKey() { return this.g0; } set hasChildrenKey(a) { this.g0 = a; this.g("HasChildrenKey"); } get cascadeOnDelete() { return this.gt; } set cascadeOnDelete(a) { this.gt = a; this.g("CascadeOnDelete"); } get id() { return this.g1; } set id(a) { this.g1 = a; this.g("Id"); } get rootRecords() { return this.gq; } set rootRecords(a) { this.gq = a; this.g("RootRecords"); } get processedRootRecords() { return this.gp; } set processedRootRecords(a) { this.gp = a; this.g("ProcessedRootRecords"); } get dataRef() { return this.gy; } set dataRef(a) { this.gy = a; this.g("DataRef"); } get expansionDepth() { return this.gv; } set expansionDepth(a) { this.gv = a; this.g("ExpansionDepth"); } get rowLoadingIndicatorTemplateRef() { return this.g2; } set rowLoadingIndicatorTemplateRef(a) { this.g2 = a; this.g("RowLoadingIndicatorTemplateRef"); } } WebTreeGridDescription.$t = /*@__PURE__*/ markType(WebTreeGridDescription, 'WebTreeGridDescription', WebGridBaseDirectiveDescription.$); return WebTreeGridDescription; })();