igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
107 lines (106 loc) • 3.08 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.f = false;
this.n = null;
this.i = null;
this.p = null;
this.o = null;
this.m = null;
this.l = null;
this.k = null;
this.j = null;
this.h = null;
}
get_type() {
return "WebTree";
}
get type() {
return this.get_type();
}
get singleBranchExpand() {
return this.f;
}
set singleBranchExpand(a) {
this.f = a;
this.e("SingleBranchExpand");
}
get selection() {
return this.n;
}
set selection(a) {
this.n = a;
this.e("Selection");
}
get dir() {
return this.i;
}
set dir(a) {
this.i = a;
this.e("Dir");
}
get size() {
return this.p;
}
set size(a) {
this.p = a;
this.e("Size");
}
get selectionChangedRef() {
return this.o;
}
set selectionChangedRef(a) {
this.o = a;
this.e("SelectionChangedRef");
}
get itemExpandingRef() {
return this.m;
}
set itemExpandingRef(a) {
this.m = a;
this.e("ItemExpandingRef");
}
get itemExpandedRef() {
return this.l;
}
set itemExpandedRef(a) {
this.l = a;
this.e("ItemExpandedRef");
}
get itemCollapsingRef() {
return this.k;
}
set itemCollapsingRef(a) {
this.k = a;
this.e("ItemCollapsingRef");
}
get itemCollapsedRef() {
return this.j;
}
set itemCollapsedRef(a) {
this.j = a;
this.e("ItemCollapsedRef");
}
get activeItemRef() {
return this.h;
}
set activeItemRef(a) {
this.h = a;
this.e("ActiveItemRef");
}
}
WebTreeDescription.$t = markType(WebTreeDescription, 'WebTreeDescription', Description.$);
return WebTreeDescription;
})();