igniteui-react-grids
Version:
Ignite UI React grid components.
57 lines (56 loc) • 1.96 kB
JavaScript
/*
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 { FilteringOperation } from "./FilteringOperation";
/**
* @hidden
*/
export let FilteringOperand = /*@__PURE__*/ (() => {
class FilteringOperand extends Base {
constructor() {
super(...arguments);
this.e = new WCNativeHelper();
this.g = null;
}
get f() {
return this.e;
}
get nativeElement() {
return this.g;
}
set nativeElement(a) {
this.g = a;
this.e.o = this.g;
}
setNativeElement(a) {
this.nativeElement = a;
}
get b() {
let ret_ = this.f.m("operations", (a) => new FilteringOperation());
return ret_;
}
set b(a) {
let value_ = a;
this.f.w("operations", value_);
}
c() {
return this.f.g(this.nativeElement.instance(), (a) => new FilteringOperand());
}
a() {
return (this.nativeElement.conditionList());
}
d(a) {
return this.f.g(this.nativeElement.condition(this.f.i(a)), (b) => new FilteringOperation());
}
i(a) {
this.nativeElement.append(this.f.i(a));
}
}
FilteringOperand.$t = /*@__PURE__*/ markType(FilteringOperand, 'FilteringOperand');
return FilteringOperand;
})();