igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
227 lines (226 loc) • 7.07 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var WebGridStateInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebGridStateInfoDescription, _super);
function WebGridStateInfoDescription() {
var _this = _super.call(this) || this;
_this.l = null;
_this.ab = null;
_this.aa = null;
_this.ag = null;
_this.an = false;
_this.r = null;
_this.ae = null;
_this.k = null;
_this.q = null;
_this.m = null;
_this.p = null;
_this.ai = null;
_this.n = null;
_this.o = null;
_this.aq = null;
_this.ak = null;
return _this;
}
WebGridStateInfoDescription.prototype.get_type = function () {
return "WebGridStateInfo";
};
Object.defineProperty(WebGridStateInfoDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "columns", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("Columns");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "filtering", {
get: function () {
return this.ab;
},
set: function (a) {
this.ab = a;
this.j("Filtering");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "advancedFiltering", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("AdvancedFiltering");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "paging", {
get: function () {
return this.ag;
},
set: function (a) {
this.ag = a;
this.j("Paging");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "moving", {
get: function () {
return this.an;
},
set: function (a) {
this.an = a;
this.j("Moving");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "sorting", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("Sorting");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "groupBy", {
get: function () {
return this.ae;
},
set: function (a) {
this.ae = a;
this.j("GroupBy");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "cellSelection", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("CellSelection");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "rowSelection", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("RowSelection");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "columnSelection", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("ColumnSelection");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "rowPinning", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("RowPinning");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "pinningConfig", {
get: function () {
return this.ai;
},
set: function (a) {
this.ai = a;
this.j("PinningConfig");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "expansion", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("Expansion");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "rowIslands", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("RowIslands");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "id", {
get: function () {
return this.aq;
},
set: function (a) {
this.aq = a;
this.j("Id");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateInfoDescription.prototype, "pivotConfiguration", {
get: function () {
return this.ak;
},
set: function (a) {
this.ak = a;
this.j("PivotConfiguration");
},
enumerable: false,
configurable: true
});
WebGridStateInfoDescription.$t = markType(WebGridStateInfoDescription, 'WebGridStateInfoDescription', Description.$);
WebGridStateInfoDescription.__marshalByValue = true;
WebGridStateInfoDescription.__marshalByValueAlias = "GridStateInfo";
return WebGridStateInfoDescription;
}(Description));
export { WebGridStateInfoDescription };