igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
141 lines (140 loc) • 4.36 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var WebTreeItemDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebTreeItemDescription, _super);
function WebTreeItemDescription() {
var _this = _super.call(this) || this;
_this.k = null;
_this.w = 0;
_this.aa = null;
_this.o = false;
_this.m = false;
_this.n = false;
_this.q = false;
_this.p = false;
_this.y = null;
return _this;
}
WebTreeItemDescription.prototype.get_type = function () {
return "WebTreeItem";
};
Object.defineProperty(WebTreeItemDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "parent", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("Parent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "level", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("Level");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "label", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("Label");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "expanded", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("Expanded");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "active", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("Active");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "disabled", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("Disabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "selected", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("Selected");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "loading", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("Loading");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "value", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("Value");
},
enumerable: false,
configurable: true
});
WebTreeItemDescription.$t = markType(WebTreeItemDescription, 'WebTreeItemDescription', Description.$);
return WebTreeItemDescription;
}(Description));
export { WebTreeItemDescription };