igniteui-react-grids
Version:
Ignite UI React grid components.
226 lines (225 loc) • 6.87 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 GridStateOptions = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GridStateOptions, _super);
function GridStateOptions() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.a = new WCNativeHelper();
_this.r = null;
return _this;
}
Object.defineProperty(GridStateOptions.prototype, "b", {
get: function () {
return this.a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridStateOptions.prototype, "nativeElement", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.a.o = this.r;
},
enumerable: false,
configurable: true
});
GridStateOptions.prototype.setNativeElement = function (a) {
this.nativeElement = a;
};
Object.defineProperty(GridStateOptions.prototype, "e", {
get: function () {
var ret_ = this.b.n("columns");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("columns", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridStateOptions.prototype, "h", {
get: function () {
var ret_ = this.b.n("filtering");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("filtering", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridStateOptions.prototype, "c", {
get: function () {
var ret_ = this.b.n("advancedFiltering");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("advancedFiltering", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridStateOptions.prototype, "q", {
get: function () {
var ret_ = this.b.n("sorting");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("sorting", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridStateOptions.prototype, "i", {
get: function () {
var ret_ = this.b.n("groupBy");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("groupBy", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridStateOptions.prototype, "k", {
get: function () {
var ret_ = this.b.n("paging");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("paging", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridStateOptions.prototype, "d", {
get: function () {
var ret_ = this.b.n("cellSelection");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("cellSelection", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridStateOptions.prototype, "p", {
get: function () {
var ret_ = this.b.n("rowSelection");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("rowSelection", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridStateOptions.prototype, "f", {
get: function () {
var ret_ = this.b.n("columnSelection");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("columnSelection", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridStateOptions.prototype, "o", {
get: function () {
var ret_ = this.b.n("rowPinning");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("rowPinning", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridStateOptions.prototype, "l", {
get: function () {
var ret_ = this.b.n("pinningConfig");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("pinningConfig", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridStateOptions.prototype, "g", {
get: function () {
var ret_ = this.b.n("expansion");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("expansion", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridStateOptions.prototype, "n", {
get: function () {
var ret_ = this.b.n("rowIslands");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("rowIslands", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridStateOptions.prototype, "j", {
get: function () {
var ret_ = this.b.n("moving");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("moving", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridStateOptions.prototype, "m", {
get: function () {
var ret_ = this.b.n("pivotConfiguration");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("pivotConfiguration", value_);
},
enumerable: false,
configurable: true
});
GridStateOptions.$t = markType(GridStateOptions, 'GridStateOptions');
return GridStateOptions;
}(Base));
export { GridStateOptions };