UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

112 lines (111 loc) 3.37 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.hf = null; this.hh = null; this.hi = null; this.g9 = false; this.hj = null; this.g6 = null; this.g5 = null; this.hg = null; this.hd = null; this.hb = 0; this.hk = null; } get_type() { return "WebTreeGrid"; } get childDataKey() { return this.hf; } set childDataKey(a) { this.hf = a; this.e("ChildDataKey"); } get foreignKey() { return this.hh; } set foreignKey(a) { this.hh = a; this.e("ForeignKey"); } get hasChildrenKey() { return this.hi; } set hasChildrenKey(a) { this.hi = a; this.e("HasChildrenKey"); } get cascadeOnDelete() { return this.g9; } set cascadeOnDelete(a) { this.g9 = a; this.e("CascadeOnDelete"); } get id() { return this.hj; } set id(a) { this.hj = a; this.e("Id"); } get rootRecords() { return this.g6; } set rootRecords(a) { this.g6 = a; this.e("RootRecords"); } get processedRootRecords() { return this.g5; } set processedRootRecords(a) { this.g5 = a; this.e("ProcessedRootRecords"); } get dataRef() { return this.hg; } set dataRef(a) { this.hg = a; this.e("DataRef"); } get filteredData() { return this.hd; } set filteredData(a) { this.hd = a; this.e("FilteredData"); } get expansionDepth() { return this.hb; } set expansionDepth(a) { this.hb = a; this.e("ExpansionDepth"); } get rowLoadingIndicatorTemplateRef() { return this.hk; } set rowLoadingIndicatorTemplateRef(a) { this.hk = a; this.e("RowLoadingIndicatorTemplateRef"); } } WebTreeGridDescription.$t = markType(WebTreeGridDescription, 'WebTreeGridDescription', WebGridBaseDirectiveDescription.$); return WebTreeGridDescription; })();