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.g1 = null; this.g3 = null; this.g4 = null; this.gx = false; this.g5 = null; this.gu = null; this.gt = null; this.g2 = null; this.gz = 0; this.g6 = null; } get childDataKey() { return this.g1; } set childDataKey(a) { this.g1 = a; this.g("ChildDataKey"); } get foreignKey() { return this.g3; } set foreignKey(a) { this.g3 = a; this.g("ForeignKey"); } get hasChildrenKey() { return this.g4; } set hasChildrenKey(a) { this.g4 = a; this.g("HasChildrenKey"); } get cascadeOnDelete() { return this.gx; } set cascadeOnDelete(a) { this.gx = a; this.g("CascadeOnDelete"); } get id() { return this.g5; } set id(a) { this.g5 = a; this.g("Id"); } get rootRecords() { return this.gu; } set rootRecords(a) { this.gu = a; this.g("RootRecords"); } get processedRootRecords() { return this.gt; } set processedRootRecords(a) { this.gt = a; this.g("ProcessedRootRecords"); } get dataRef() { return this.g2; } set dataRef(a) { this.g2 = a; this.g("DataRef"); } get expansionDepth() { return this.gz; } set expansionDepth(a) { this.gz = a; this.g("ExpansionDepth"); } get rowLoadingIndicatorTemplateRef() { return this.g6; } set rowLoadingIndicatorTemplateRef(a) { this.g6 = a; this.g("RowLoadingIndicatorTemplateRef"); } } WebTreeGridDescription.$t = /*@__PURE__*/ markType(WebTreeGridDescription, 'WebTreeGridDescription', WebGridBaseDirectiveDescription.$); return WebTreeGridDescription; })();