igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
99 lines (98 loc) • 2.95 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 WebTreeDescription = /*@__PURE__*/ (() => {
class WebTreeDescription extends Description {
constructor() {
super();
this.k = false;
this.l = false;
this.t = null;
this.u = null;
this.s = null;
this.r = null;
this.q = null;
this.p = null;
this.o = null;
}
get_type() {
return "WebTree";
}
get type() {
return this.get_type();
}
get singleBranchExpand() {
return this.k;
}
set singleBranchExpand(a) {
this.k = a;
this.j("SingleBranchExpand");
}
get toggleNodeOnClick() {
return this.l;
}
set toggleNodeOnClick(a) {
this.l = a;
this.j("ToggleNodeOnClick");
}
get selection() {
return this.t;
}
set selection(a) {
this.t = a;
this.j("Selection");
}
get selectionChangedRef() {
return this.u;
}
set selectionChangedRef(a) {
this.u = a;
this.j("SelectionChangedRef");
}
get itemExpandingRef() {
return this.s;
}
set itemExpandingRef(a) {
this.s = a;
this.j("ItemExpandingRef");
}
get itemExpandedRef() {
return this.r;
}
set itemExpandedRef(a) {
this.r = a;
this.j("ItemExpandedRef");
}
get itemCollapsingRef() {
return this.q;
}
set itemCollapsingRef(a) {
this.q = a;
this.j("ItemCollapsingRef");
}
get itemCollapsedRef() {
return this.p;
}
set itemCollapsedRef(a) {
this.p = a;
this.j("ItemCollapsedRef");
}
get activeItemRef() {
return this.o;
}
set activeItemRef(a) {
this.o = a;
this.j("ActiveItemRef");
}
}
WebTreeDescription.$t = markType(WebTreeDescription, 'WebTreeDescription', Description.$);
return WebTreeDescription;
})();