igniteui-react-grids
Version:
Ignite UI React grid components.
108 lines (107 loc) • 3.59 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 { BaseElement } from "igniteui-react";
import { WCNativeHelper } from "igniteui-react";
import { markType } from "igniteui-react-core";
import { PivotGrid } from "./PivotGrid";
/**
* @hidden
*/
var PivotDataSelector = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PivotDataSelector, _super);
function PivotDataSelector() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.b = new WCNativeHelper();
_this.h = null;
return _this;
}
Object.defineProperty(PivotDataSelector.prototype, "c", {
get: function () {
return this.b;
},
enumerable: false,
configurable: true
});
Object.defineProperty(PivotDataSelector.prototype, "nativeElement", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
this.b.o = this.h;
},
enumerable: false,
configurable: true
});
PivotDataSelector.prototype.setNativeElement = function (a) {
this.nativeElement = a;
};
Object.defineProperty(PivotDataSelector.prototype, "d", {
get: function () {
var ret_ = this.c.n("columnsExpanded");
return ret_;
},
set: function (a) {
var value_ = a;
this.c.w("columnsExpanded", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(PivotDataSelector.prototype, "f", {
get: function () {
var ret_ = this.c.n("rowsExpanded");
return ret_;
},
set: function (a) {
var value_ = a;
this.c.w("rowsExpanded", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(PivotDataSelector.prototype, "e", {
get: function () {
var ret_ = this.c.n("filtersExpanded");
return ret_;
},
set: function (a) {
var value_ = a;
this.c.w("filtersExpanded", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(PivotDataSelector.prototype, "g", {
get: function () {
var ret_ = this.c.n("valuesExpanded");
return ret_;
},
set: function (a) {
var value_ = a;
this.c.w("valuesExpanded", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(PivotDataSelector.prototype, "a", {
get: function () {
var ret_ = this.c.m("grid", function (a) { return new PivotGrid(); });
return ret_;
},
set: function (a) {
var value_ = a;
this.c.w("grid", value_);
},
enumerable: false,
configurable: true
});
PivotDataSelector.$t = markType(PivotDataSelector, 'PivotDataSelector', BaseElement.$);
return PivotDataSelector;
}(BaseElement));
export { PivotDataSelector };