igniteui-react-grids
Version:
Ignite UI React grid components.
71 lines (70 loc) • 2.7 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 { __extends } from "tslib";
import { Base, markType } from "igniteui-react-core";
import { WCNativeHelper } from "igniteui-react";
import { FilteringOperation } from "./FilteringOperation";
/**
* @hidden
*/
var FilteringOperand = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FilteringOperand, _super);
function FilteringOperand() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.e = new WCNativeHelper();
_this.g = null;
return _this;
}
Object.defineProperty(FilteringOperand.prototype, "f", {
get: function () {
return this.e;
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilteringOperand.prototype, "nativeElement", {
get: function () {
return this.g;
},
set: function (a) {
this.g = a;
this.e.o = this.g;
},
enumerable: false,
configurable: true
});
FilteringOperand.prototype.setNativeElement = function (a) {
this.nativeElement = a;
};
Object.defineProperty(FilteringOperand.prototype, "b", {
get: function () {
var ret_ = this.f.m("operations", function (a) { return new FilteringOperation(); });
return ret_;
},
set: function (a) {
var value_ = a;
this.f.w("operations", value_);
},
enumerable: false,
configurable: true
});
FilteringOperand.prototype.c = function () {
return this.f.g(this.nativeElement.instance(), function (a) { return new FilteringOperand(); });
};
FilteringOperand.prototype.a = function () {
return (this.nativeElement.conditionList());
};
FilteringOperand.prototype.d = function (a) {
return this.f.g(this.nativeElement.condition(this.f.i(a)), function (b) { return new FilteringOperation(); });
};
FilteringOperand.prototype.i = function (a) {
this.nativeElement.append(this.f.i(a));
};
FilteringOperand.$t = markType(FilteringOperand, 'FilteringOperand');
return FilteringOperand;
}(Base));
export { FilteringOperand };