igniteui-react-core
Version:
Ignite UI React Core.
146 lines (145 loc) • 4.58 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 { WebGridBaseDirectiveDescription } from "./WebGridBaseDirectiveDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebTreeGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebTreeGridDescription, _super);
function WebTreeGridDescription() {
var _this = _super.call(this) || this;
_this.g1 = null;
_this.g3 = null;
_this.g4 = null;
_this.gx = false;
_this.g5 = null;
_this.gu = null;
_this.gt = null;
_this.g2 = null;
_this.gz = 0;
_this.g6 = null;
return _this;
}
WebTreeGridDescription.prototype.get_type = function () {
return "WebTreeGrid";
};
Object.defineProperty(WebTreeGridDescription.prototype, "childDataKey", {
get: function () {
return this.g1;
},
set: function (a) {
this.g1 = a;
this.g("ChildDataKey");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridDescription.prototype, "foreignKey", {
get: function () {
return this.g3;
},
set: function (a) {
this.g3 = a;
this.g("ForeignKey");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridDescription.prototype, "hasChildrenKey", {
get: function () {
return this.g4;
},
set: function (a) {
this.g4 = a;
this.g("HasChildrenKey");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridDescription.prototype, "cascadeOnDelete", {
get: function () {
return this.gx;
},
set: function (a) {
this.gx = a;
this.g("CascadeOnDelete");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridDescription.prototype, "id", {
get: function () {
return this.g5;
},
set: function (a) {
this.g5 = a;
this.g("Id");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridDescription.prototype, "rootRecords", {
get: function () {
return this.gu;
},
set: function (a) {
this.gu = a;
this.g("RootRecords");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridDescription.prototype, "processedRootRecords", {
get: function () {
return this.gt;
},
set: function (a) {
this.gt = a;
this.g("ProcessedRootRecords");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridDescription.prototype, "dataRef", {
get: function () {
return this.g2;
},
set: function (a) {
this.g2 = a;
this.g("DataRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridDescription.prototype, "expansionDepth", {
get: function () {
return this.gz;
},
set: function (a) {
this.gz = a;
this.g("ExpansionDepth");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridDescription.prototype, "rowLoadingIndicatorTemplateRef", {
get: function () {
return this.g6;
},
set: function (a) {
this.g6 = a;
this.g("RowLoadingIndicatorTemplateRef");
},
enumerable: false,
configurable: true
});
WebTreeGridDescription.$t = markType(WebTreeGridDescription, 'WebTreeGridDescription', WebGridBaseDirectiveDescription.$);
return WebTreeGridDescription;
}(WebGridBaseDirectiveDescription));
export { WebTreeGridDescription };