igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
172 lines (171 loc) • 5.5 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 { CellInfoDescription } from "./CellInfoDescription";
import { markType } from "./type";
/**
* @hidden
*/
var FilterCellInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FilterCellInfoDescription, _super);
function FilterCellInfoDescription() {
var _this = _super.call(this) || this;
_this.f7 = null;
_this.fp = null;
_this.fr = null;
_this.fn = null;
_this.f9 = null;
_this.f8 = null;
_this.fz = 0;
_this.fy = 0;
_this.fx = 0;
_this.fw = 0;
_this.fv = 0;
_this.fu = 0;
return _this;
}
FilterCellInfoDescription.prototype.get_type = function () {
return "FilterCellInfo";
};
Object.defineProperty(FilterCellInfoDescription.prototype, "dataType", {
get: function () {
return this.f7;
},
set: function (a) {
this.f7 = a;
this.g("DataType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterCellInfoDescription.prototype, "filter", {
get: function () {
return this.fp;
},
set: function (a) {
this.fp = a;
this.g("Filter");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterCellInfoDescription.prototype, "filterExpression", {
get: function () {
return this.fr;
},
set: function (a) {
this.fr = a;
this.g("FilterExpression");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterCellInfoDescription.prototype, "filterOperands", {
get: function () {
return this.fn;
},
set: function (a) {
this.fn = a;
this.g("FilterOperands");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterCellInfoDescription.prototype, "operatorType", {
get: function () {
return this.f9;
},
set: function (a) {
this.f9 = a;
this.g("OperatorType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterCellInfoDescription.prototype, "filterValueRef", {
get: function () {
return this.f8;
},
set: function (a) {
this.f8 = a;
this.g("FilterValueRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterCellInfoDescription.prototype, "selectorTop", {
get: function () {
return this.fz;
},
set: function (a) {
this.fz = a;
this.g("SelectorTop");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterCellInfoDescription.prototype, "selectorLeft", {
get: function () {
return this.fy;
},
set: function (a) {
this.fy = a;
this.g("SelectorLeft");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterCellInfoDescription.prototype, "editorTop", {
get: function () {
return this.fx;
},
set: function (a) {
this.fx = a;
this.g("EditorTop");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterCellInfoDescription.prototype, "editorLeft", {
get: function () {
return this.fw;
},
set: function (a) {
this.fw = a;
this.g("EditorLeft");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterCellInfoDescription.prototype, "clearIconTop", {
get: function () {
return this.fv;
},
set: function (a) {
this.fv = a;
this.g("ClearIconTop");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterCellInfoDescription.prototype, "clearIconLeft", {
get: function () {
return this.fu;
},
set: function (a) {
this.fu = a;
this.g("ClearIconLeft");
},
enumerable: false,
configurable: true
});
FilterCellInfoDescription.$t = markType(FilterCellInfoDescription, 'FilterCellInfoDescription', CellInfoDescription.$);
FilterCellInfoDescription.__marshalByValue1 = true;
FilterCellInfoDescription.__marshalByValueAlias1 = "FilterCellModel";
return FilterCellInfoDescription;
}(CellInfoDescription));
export { FilterCellInfoDescription };