UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

77 lines (76 loc) 2.36 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"; import { PivotDimension } from "./PivotDimension"; /** * @hidden */ export let PivotGridRecord = /*@__PURE__*/ (() => { class PivotGridRecord extends Base { constructor() { super(...arguments); this.c = new WCNativeHelper(); this.g = null; } get d() { return this.c; } get nativeElement() { return this.g; } set nativeElement(a) { this.g = a; this.c.o = this.g; } setNativeElement(a) { this.nativeElement = a; } get b() { let ret_ = this.d.n("records"); return ret_; } set b(a) { let value_ = a; this.d.w("records", value_); } get f() { let ret_ = this.d.n("level"); return ret_; } set f(a) { let value_ = a; this.d.w("level", value_); } get a() { let ret_ = this.d.m("dimensions", (a) => new PivotDimension()); return ret_; } set a(a) { let value_ = a; this.d.w("dimensions", value_); } get i() { let ret_ = this.d.n("totalRecordDimensionName"); return ret_; } set i(a) { let value_ = a; this.d.w("totalRecordDimensionName", value_); } get e() { let ret_ = this.d.n("dataIndex"); return ret_; } set e(a) { let value_ = a; this.d.w("dataIndex", value_); } } PivotGridRecord.$t = /*@__PURE__*/ markType(PivotGridRecord, 'PivotGridRecord'); return PivotGridRecord; })();