igniteui-react-grids
Version:
Ignite UI React grid components.
130 lines (129 loc) • 4.13 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 TreeGridRecord = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(TreeGridRecord, _super);
function TreeGridRecord() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.c = new WCNativeHelper();
_this.h = null;
return _this;
}
Object.defineProperty(TreeGridRecord.prototype, "d", {
get: function () {
return this.c;
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreeGridRecord.prototype, "nativeElement", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
this.c.o = this.h;
},
enumerable: false,
configurable: true
});
TreeGridRecord.prototype.setNativeElement = function (a) {
this.nativeElement = a;
};
Object.defineProperty(TreeGridRecord.prototype, "j", {
get: function () {
var ret_ = this.d.n("key");
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("key", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreeGridRecord.prototype, "i", {
get: function () {
var ret_ = this.d.n("data");
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("data", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreeGridRecord.prototype, "a", {
get: function () {
var ret_ = this.d.m("children", function (a) { return new TreeGridRecord(); });
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("children", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreeGridRecord.prototype, "b", {
get: function () {
var ret_ = this.d.m("parent", function (a) { return new TreeGridRecord(); });
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("parent", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreeGridRecord.prototype, "g", {
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(TreeGridRecord.prototype, "f", {
get: function () {
var ret_ = this.d.n("isFilteredOutParent");
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("isFilteredOutParent", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreeGridRecord.prototype, "e", {
get: function () {
var ret_ = this.d.n("expanded");
return ret_;
},
set: function (a) {
var value_ = a;
this.d.w("expanded", value_);
},
enumerable: false,
configurable: true
});
TreeGridRecord.$t = markType(TreeGridRecord, 'TreeGridRecord');
return TreeGridRecord;
}(Base));
export { TreeGridRecord };