igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
86 lines (85 loc) • 3.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 { WebHierarchicalGridBaseDirectiveDescription } from "./WebHierarchicalGridBaseDirectiveDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebHierarchicalGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebHierarchicalGridDescription, _super);
function WebHierarchicalGridDescription() {
var _this = _super.call(this) || this;
_this.g8 = null;
_this.hf = null;
_this.he = null;
_this.hc = 0;
_this.ha = false;
return _this;
}
WebHierarchicalGridDescription.prototype.get_type = function () {
return "WebHierarchicalGrid";
};
Object.defineProperty(WebHierarchicalGridDescription.prototype, "childLayoutList", {
get: function () {
return this.g8;
},
set: function (a) {
this.g8 = a;
this.j("ChildLayoutList");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebHierarchicalGridDescription.prototype, "id", {
get: function () {
return this.hf;
},
set: function (a) {
this.hf = a;
this.j("Id");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebHierarchicalGridDescription.prototype, "dataRef", {
get: function () {
return this.he;
},
set: function (a) {
this.he = a;
this.j("DataRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebHierarchicalGridDescription.prototype, "totalItemCount", {
get: function () {
return this.hc;
},
set: function (a) {
this.hc = a;
this.j("TotalItemCount");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebHierarchicalGridDescription.prototype, "expandChildren", {
get: function () {
return this.ha;
},
set: function (a) {
this.ha = a;
this.j("ExpandChildren");
},
enumerable: false,
configurable: true
});
WebHierarchicalGridDescription.$t = markType(WebHierarchicalGridDescription, 'WebHierarchicalGridDescription', WebHierarchicalGridBaseDirectiveDescription.$);
return WebHierarchicalGridDescription;
}(WebHierarchicalGridBaseDirectiveDescription));
export { WebHierarchicalGridDescription };