igniteui-react-grids
Version:
Ignite UI React grid components.
119 lines (118 loc) • 3.82 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";
/**
* @hidden
*/
var FilteringOperation = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FilteringOperation, _super);
function FilteringOperation() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.c = new WCNativeHelper();
_this.h = null;
return _this;
}
Object.defineProperty(FilteringOperation.prototype, "d", {
get: function () {
return this.c;
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilteringOperation.prototype, "nativeElement", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
this.c.o = this.h;
},
enumerable: false,
configurable: true
});
FilteringOperation.prototype.setNativeElement = function (a) {
this.nativeElement = a;
};
Object.defineProperty(FilteringOperation.prototype, "k", {
get: function () {
var ret_ = this.d.n("name");
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("name", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilteringOperation.prototype, "g", {
get: function () {
var ret_ = this.d.n("isUnary");
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("isUnary", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilteringOperation.prototype, "f", {
get: function () {
var ret_ = this.d.n("isNestedQuery");
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("isNestedQuery", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilteringOperation.prototype, "j", {
get: function () {
var ret_ = this.d.n("iconName");
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("iconName", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilteringOperation.prototype, "e", {
get: function () {
var ret_ = this.d.n("hidden");
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("hidden", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilteringOperation.prototype, "b", {
get: function () {
var ret_ = this.d.n("logic");
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("logic", value_);
},
enumerable: false,
configurable: true
});
FilteringOperation.$t = markType(FilteringOperation, 'FilteringOperation');
FilteringOperation.__marshalByValueIgnore = ["logic"];
return FilteringOperation;
}(Base));
export { FilteringOperation };