UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

77 lines (76 loc) 2.3 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 FilteringOperation = /*@__PURE__*/ (() => { class FilteringOperation 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 j() { let ret_ = this.d.n("name"); return ret_; } set j(a) { let value_ = a; this.d.w("name", value_); } get f() { let ret_ = this.d.n("isUnary"); return ret_; } set f(a) { let value_ = a; this.d.w("isUnary", value_); } get i() { let ret_ = this.d.n("iconName"); return ret_; } set i(a) { let value_ = a; this.d.w("iconName", value_); } get e() { let ret_ = this.d.n("hidden"); return ret_; } set e(a) { let value_ = a; this.d.w("hidden", value_); } get b() { let ret_ = this.d.n("logic"); return ret_; } set b(a) { let value_ = a; this.d.w("logic", value_); } } FilteringOperation.$t = /*@__PURE__*/ markType(FilteringOperation, 'FilteringOperation'); FilteringOperation.__marshalByValueIgnore = ["logic"]; return FilteringOperation; })();