UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

119 lines (118 loc) 3.97 kB
/* 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var WebTreeGridRecordDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebTreeGridRecordDescription, _super); function WebTreeGridRecordDescription() { var _this = _super.call(this) || this; _this.w = null; _this.v = null; _this.k = null; _this.m = null; _this.t = 0; _this.q = false; _this.p = false; return _this; } WebTreeGridRecordDescription.prototype.get_type = function () { return "WebTreeGridRecord"; }; Object.defineProperty(WebTreeGridRecordDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebTreeGridRecordDescription.prototype, "key", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("Key"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTreeGridRecordDescription.prototype, "data", { get: function () { return this.v; }, set: function (a) { this.v = a; this.j("Data"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTreeGridRecordDescription.prototype, "children", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("Children"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTreeGridRecordDescription.prototype, "recordParent", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("RecordParent"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTreeGridRecordDescription.prototype, "level", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("Level"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTreeGridRecordDescription.prototype, "isFilteredOutParent", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("IsFilteredOutParent"); }, enumerable: false, configurable: true }); Object.defineProperty(WebTreeGridRecordDescription.prototype, "expanded", { get: function () { return this.p; }, set: function (a) { this.p = a; this.j("Expanded"); }, enumerable: false, configurable: true }); WebTreeGridRecordDescription.$t = markType(WebTreeGridRecordDescription, 'WebTreeGridRecordDescription', Description.$); WebTreeGridRecordDescription.__marshalByValue = true; WebTreeGridRecordDescription.__marshalByValueAlias = "TreeGridRecord"; return WebTreeGridRecordDescription; }(Description)); export { WebTreeGridRecordDescription };