igniteui-react-grids
Version:
Ignite UI React grid components.
166 lines (165 loc) • 5.32 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 ExporterOptionsBase = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ExporterOptionsBase, _super);
function ExporterOptionsBase() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.a = new WCNativeHelper();
_this.l = null;
return _this;
}
Object.defineProperty(ExporterOptionsBase.prototype, "b", {
get: function () {
return this.a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ExporterOptionsBase.prototype, "nativeElement", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.a.o = this.l;
},
enumerable: false,
configurable: true
});
ExporterOptionsBase.prototype.setNativeElement = function (a) {
this.nativeElement = a;
};
Object.defineProperty(ExporterOptionsBase.prototype, "g", {
get: function () {
var ret_ = this.b.n("ignoreColumnsVisibility");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("ignoreColumnsVisibility", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(ExporterOptionsBase.prototype, "h", {
get: function () {
var ret_ = this.b.n("ignoreFiltering");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("ignoreFiltering", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(ExporterOptionsBase.prototype, "f", {
get: function () {
var ret_ = this.b.n("ignoreColumnsOrder");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("ignoreColumnsOrder", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(ExporterOptionsBase.prototype, "k", {
get: function () {
var ret_ = this.b.n("ignoreSorting");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("ignoreSorting", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(ExporterOptionsBase.prototype, "i", {
get: function () {
var ret_ = this.b.n("ignoreGrouping");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("ignoreGrouping", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(ExporterOptionsBase.prototype, "j", {
get: function () {
var ret_ = this.b.n("ignoreMultiColumnHeaders");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("ignoreMultiColumnHeaders", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(ExporterOptionsBase.prototype, "d", {
get: function () {
var ret_ = this.b.n("exportSummaries");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("exportSummaries", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(ExporterOptionsBase.prototype, "e", {
get: function () {
var ret_ = this.b.n("freezeHeaders");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("freezeHeaders", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(ExporterOptionsBase.prototype, "c", {
get: function () {
var ret_ = this.b.n("alwaysExportHeaders");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("alwaysExportHeaders", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(ExporterOptionsBase.prototype, "n", {
get: function () {
var ret_ = this.b.n("fileName");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("fileName", value_);
},
enumerable: false,
configurable: true
});
ExporterOptionsBase.$t = markType(ExporterOptionsBase, 'ExporterOptionsBase');
return ExporterOptionsBase;
}(Base));
export { ExporterOptionsBase };