UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

92 lines (91 loc) 2.69 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 { Base, markType } from "igniteui-react-core"; import { WCNativeHelper } from "igniteui-react"; /** * @hidden */ export let TreeGridRecord = /*@__PURE__*/ (() => { class TreeGridRecord extends Base { constructor() { super(...arguments); this.c = new WCNativeHelper(); this.h = null; } get d() { return this.c; } get nativeElement() { return this.h; } set nativeElement(a) { this.h = a; this.c.o = this.h; } setNativeElement(a) { this.nativeElement = a; } get j() { let ret_ = this.d.n("key"); return ret_; } set j(a) { let value_ = a; this.d.w("key", value_); } get i() { let ret_ = this.d.n("data"); return ret_; } set i(a) { let value_ = a; this.d.w("data", value_); } get a() { let ret_ = this.d.m("children", (a) => new TreeGridRecord()); return ret_; } set a(a) { let value_ = a; this.d.w("children", value_); } get b() { let ret_ = this.d.m("parent", (a) => new TreeGridRecord()); return ret_; } set b(a) { let value_ = a; this.d.w("parent", value_); } get g() { let ret_ = this.d.n("level"); return ret_; } set g(a) { let value_ = a; this.d.w("level", value_); } get f() { let ret_ = this.d.n("isFilteredOutParent"); return ret_; } set f(a) { let value_ = a; this.d.w("isFilteredOutParent", value_); } get e() { let ret_ = this.d.n("expanded"); return ret_; } set e(a) { let value_ = a; this.d.w("expanded", value_); } } TreeGridRecord.$t = /*@__PURE__*/ markType(TreeGridRecord, 'TreeGridRecord'); return TreeGridRecord; })();