UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

87 lines (86 loc) 2.86 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 { FilteringExpressionsTreeOrFilteringExpression } from "./FilteringExpressionsTreeOrFilteringExpression"; import { WCNativeHelper } from "igniteui-react"; import { markType } from "igniteui-react-core"; import { FilteringOperation } from "./FilteringOperation"; import { ExpressionTree } from "./ExpressionTree"; /** * @hidden */ export let FilteringExpression = /*@__PURE__*/ (() => { class FilteringExpression extends FilteringExpressionsTreeOrFilteringExpression { constructor() { super(...arguments); this.c = new WCNativeHelper(); this.f = null; } get d() { return this.c; } get nativeElement() { return this.f; } set nativeElement(a) { this.f = a; this.c.o = this.f; } setNativeElement(a) { this.nativeElement = a; } get j() { let ret_ = this.d.n("fieldName"); return ret_; } set j(a) { let value_ = a; this.d.w("fieldName", value_); } get b() { let ret_ = this.d.m("condition", (a) => new FilteringOperation()); return ret_; } set b(a) { let value_ = a; this.d.w("condition", value_); } get i() { let ret_ = this.d.n("conditionName"); return ret_; } set i(a) { let value_ = a; this.d.w("conditionName", value_); } get h() { let ret_ = this.d.n("searchVal"); return ret_; } set h(a) { let value_ = a; this.d.w("searchVal", value_); } get a() { let ret_ = this.d.m("searchTree", (a) => new ExpressionTree()); return ret_; } set a(a) { let value_ = a; this.d.w("searchTree", value_); } get e() { let ret_ = this.d.n("ignoreCase"); return ret_; } set e(a) { let value_ = a; this.d.w("ignoreCase", value_); } } FilteringExpression.$t = /*@__PURE__*/ markType(FilteringExpression, 'FilteringExpression', FilteringExpressionsTreeOrFilteringExpression.$); return FilteringExpression; })();