UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

116 lines (115 loc) 3.42 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 ExporterOptionsBase = /*@__PURE__*/ (() => { class ExporterOptionsBase extends Base { constructor() { super(...arguments); this.a = new WCNativeHelper(); this.l = null; } get b() { return this.a; } get nativeElement() { return this.l; } set nativeElement(a) { this.l = a; this.a.o = this.l; } setNativeElement(a) { this.nativeElement = a; } get g() { let ret_ = this.b.n("ignoreColumnsVisibility"); return ret_; } set g(a) { let value_ = a; this.b.w("ignoreColumnsVisibility", value_); } get h() { let ret_ = this.b.n("ignoreFiltering"); return ret_; } set h(a) { let value_ = a; this.b.w("ignoreFiltering", value_); } get f() { let ret_ = this.b.n("ignoreColumnsOrder"); return ret_; } set f(a) { let value_ = a; this.b.w("ignoreColumnsOrder", value_); } get k() { let ret_ = this.b.n("ignoreSorting"); return ret_; } set k(a) { let value_ = a; this.b.w("ignoreSorting", value_); } get i() { let ret_ = this.b.n("ignoreGrouping"); return ret_; } set i(a) { let value_ = a; this.b.w("ignoreGrouping", value_); } get j() { let ret_ = this.b.n("ignoreMultiColumnHeaders"); return ret_; } set j(a) { let value_ = a; this.b.w("ignoreMultiColumnHeaders", value_); } get d() { let ret_ = this.b.n("exportSummaries"); return ret_; } set d(a) { let value_ = a; this.b.w("exportSummaries", value_); } get e() { let ret_ = this.b.n("freezeHeaders"); return ret_; } set e(a) { let value_ = a; this.b.w("freezeHeaders", value_); } get c() { let ret_ = this.b.n("alwaysExportHeaders"); return ret_; } set c(a) { let value_ = a; this.b.w("alwaysExportHeaders", value_); } get n() { let ret_ = this.b.n("fileName"); return ret_; } set n(a) { let value_ = a; this.b.w("fileName", value_); } } ExporterOptionsBase.$t = /*@__PURE__*/ markType(ExporterOptionsBase, 'ExporterOptionsBase'); return ExporterOptionsBase; })();