UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

104 lines (103 loc) 3.16 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 { constructor() { super(); this.g8 = null; this.ha = null; this.hb = null; this.g4 = false; this.hc = null; this.g1 = null; this.g0 = null; this.g9 = null; this.g6 = 0; this.hd = null; } get_type() { return "WebTreeGrid"; } get childDataKey() { return this.g8; } set childDataKey(a) { this.g8 = a; this.j("ChildDataKey"); } get foreignKey() { return this.ha; } set foreignKey(a) { this.ha = a; this.j("ForeignKey"); } get hasChildrenKey() { return this.hb; } set hasChildrenKey(a) { this.hb = a; this.j("HasChildrenKey"); } get cascadeOnDelete() { return this.g4; } set cascadeOnDelete(a) { this.g4 = a; this.j("CascadeOnDelete"); } get id() { return this.hc; } set id(a) { this.hc = a; this.j("Id"); } get rootRecords() { return this.g1; } set rootRecords(a) { this.g1 = a; this.j("RootRecords"); } get processedRootRecords() { return this.g0; } set processedRootRecords(a) { this.g0 = a; this.j("ProcessedRootRecords"); } get dataRef() { return this.g9; } set dataRef(a) { this.g9 = a; this.j("DataRef"); } get expansionDepth() { return this.g6; } set expansionDepth(a) { this.g6 = a; this.j("ExpansionDepth"); } get rowLoadingIndicatorTemplateRef() { return this.hd; } set rowLoadingIndicatorTemplateRef(a) { this.hd = a; this.j("RowLoadingIndicatorTemplateRef"); } } WebTreeGridDescription.$t = markType(WebTreeGridDescription, 'WebTreeGridDescription', WebGridBaseDirectiveDescription.$); return WebTreeGridDescription; })();