igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
213 lines (212 loc) • 6.68 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 WebGridStateOptionsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebGridStateOptionsDescription, _super);
function WebGridStateOptionsDescription() {
var _this = _super.call(this) || this;
_this.m = false;
_this.p = false;
_this.k = false;
_this.y = false;
_this.q = false;
_this.s = false;
_this.l = false;
_this.x = false;
_this.n = false;
_this.w = false;
_this.t = false;
_this.o = false;
_this.v = false;
_this.r = false;
_this.u = false;
return _this;
}
WebGridStateOptionsDescription.prototype.get_type = function () {
return "WebGridStateOptions";
};
Object.defineProperty(WebGridStateOptionsDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateOptionsDescription.prototype, "columns", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("Columns");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateOptionsDescription.prototype, "filtering", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("Filtering");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateOptionsDescription.prototype, "advancedFiltering", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("AdvancedFiltering");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateOptionsDescription.prototype, "sorting", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("Sorting");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateOptionsDescription.prototype, "groupBy", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("GroupBy");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateOptionsDescription.prototype, "paging", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("Paging");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateOptionsDescription.prototype, "cellSelection", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("CellSelection");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateOptionsDescription.prototype, "rowSelection", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("RowSelection");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateOptionsDescription.prototype, "columnSelection", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("ColumnSelection");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateOptionsDescription.prototype, "rowPinning", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("RowPinning");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateOptionsDescription.prototype, "pinningConfig", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("PinningConfig");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateOptionsDescription.prototype, "expansion", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("Expansion");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateOptionsDescription.prototype, "rowIslands", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("RowIslands");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateOptionsDescription.prototype, "moving", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("Moving");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridStateOptionsDescription.prototype, "pivotConfiguration", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("PivotConfiguration");
},
enumerable: false,
configurable: true
});
WebGridStateOptionsDescription.$t = markType(WebGridStateOptionsDescription, 'WebGridStateOptionsDescription', Description.$);
return WebGridStateOptionsDescription;
}(Description));
export { WebGridStateOptionsDescription };