igniteui-react-grids
Version:
Ignite UI React grid components.
107 lines (106 loc) • 3.5 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";
import { PivotDimension } from "./PivotDimension";
/**
* @hidden
*/
var PivotGridRecord = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PivotGridRecord, _super);
function PivotGridRecord() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.c = new WCNativeHelper();
_this.g = null;
return _this;
}
Object.defineProperty(PivotGridRecord.prototype, "d", {
get: function () {
return this.c;
},
enumerable: false,
configurable: true
});
Object.defineProperty(PivotGridRecord.prototype, "nativeElement", {
get: function () {
return this.g;
},
set: function (a) {
this.g = a;
this.c.o = this.g;
},
enumerable: false,
configurable: true
});
PivotGridRecord.prototype.setNativeElement = function (a) {
this.nativeElement = a;
};
Object.defineProperty(PivotGridRecord.prototype, "b", {
get: function () {
var ret_ = this.d.n("records");
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("records", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(PivotGridRecord.prototype, "f", {
get: function () {
var ret_ = this.d.n("level");
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("level", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(PivotGridRecord.prototype, "a", {
get: function () {
var ret_ = this.d.m("dimensions", function (a) { return new PivotDimension(); });
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("dimensions", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(PivotGridRecord.prototype, "i", {
get: function () {
var ret_ = this.d.n("totalRecordDimensionName");
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("totalRecordDimensionName", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(PivotGridRecord.prototype, "e", {
get: function () {
var ret_ = this.d.n("dataIndex");
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("dataIndex", value_);
},
enumerable: false,
configurable: true
});
PivotGridRecord.$t = markType(PivotGridRecord, 'PivotGridRecord');
return PivotGridRecord;
}(Base));
export { PivotGridRecord };