igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
99 lines (98 loc) • 2.73 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let WebTreeItemDescription = /*@__PURE__*/ (() => {
class WebTreeItemDescription extends Description {
constructor() {
super();
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;
}
get_type() {
return "WebTreeItem";
}
get type() {
return this.get_type();
}
get parent() {
return this.k;
}
set parent(a) {
this.k = a;
this.j("Parent");
}
get level() {
return this.w;
}
set level(a) {
this.w = a;
this.j("Level");
}
get label() {
return this.aa;
}
set label(a) {
this.aa = a;
this.j("Label");
}
get expanded() {
return this.o;
}
set expanded(a) {
this.o = a;
this.j("Expanded");
}
get active() {
return this.m;
}
set active(a) {
this.m = a;
this.j("Active");
}
get disabled() {
return this.n;
}
set disabled(a) {
this.n = a;
this.j("Disabled");
}
get selected() {
return this.q;
}
set selected(a) {
this.q = a;
this.j("Selected");
}
get loading() {
return this.p;
}
set loading(a) {
this.p = a;
this.j("Loading");
}
get value() {
return this.y;
}
set value(a) {
this.y = a;
this.j("Value");
}
}
WebTreeItemDescription.$t = markType(WebTreeItemDescription, 'WebTreeItemDescription', Description.$);
return WebTreeItemDescription;
})();