UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

85 lines (84 loc) 2.58 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let WebTreeGridRecordDescription = /*@__PURE__*/ (() => { class WebTreeGridRecordDescription extends Description { constructor() { super(); this.w = null; this.v = null; this.k = null; this.m = null; this.t = 0; this.q = false; this.p = false; } get_type() { return "WebTreeGridRecord"; } get type() { return this.get_type(); } get key() { return this.w; } set key(a) { this.w = a; this.j("Key"); } get data() { return this.v; } set data(a) { this.v = a; this.j("Data"); } get children() { return this.k; } set children(a) { this.k = a; this.j("Children"); } get recordParent() { return this.m; } set recordParent(a) { this.m = a; this.j("RecordParent"); } get level() { return this.t; } set level(a) { this.t = a; this.j("Level"); } get isFilteredOutParent() { return this.q; } set isFilteredOutParent(a) { this.q = a; this.j("IsFilteredOutParent"); } get expanded() { return this.p; } set expanded(a) { this.p = a; this.j("Expanded"); } } WebTreeGridRecordDescription.$t = markType(WebTreeGridRecordDescription, 'WebTreeGridRecordDescription', Description.$); WebTreeGridRecordDescription.__marshalByValue = true; WebTreeGridRecordDescription.__marshalByValueAlias = "TreeGridRecord"; return WebTreeGridRecordDescription; })();