igniteui-react-core
Version:
Ignite UI React Core.
141 lines (140 loc) • 4.22 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.h = null;
_this.t = 0;
_this.x = null;
_this.l = false;
_this.j = false;
_this.k = false;
_this.n = false;
_this.m = false;
_this.v = 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.h;
},
set: function (a) {
this.h = a;
this.g("Parent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "level", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.g("Level");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "label", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.g("Label");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "expanded", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.g("Expanded");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "active", {
get: function () {
return this.j;
},
set: function (a) {
this.j = a;
this.g("Active");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "disabled", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.g("Disabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "selected", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.g("Selected");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "loading", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("Loading");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeItemDescription.prototype, "value", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.g("Value");
},
enumerable: false,
configurable: true
});
WebTreeItemDescription.$t = markType(WebTreeItemDescription, 'WebTreeItemDescription', Description.$);
return WebTreeItemDescription;
}(Description));
export { WebTreeItemDescription };