igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
74 lines (73 loc) • 2.34 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 { WebDockManagerPaneDescription } from "./WebDockManagerPaneDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebTabGroupPaneDescription = /*@__PURE__*/ (() => {
class WebTabGroupPaneDescription extends WebDockManagerPaneDescription {
constructor() {
super();
this.q = null;
this.r = null;
this.g = null;
this.m = 0;
this.l = 0;
this.j = false;
}
get_type() {
return "WebTabGroupPane";
}
get id() {
return this.q;
}
set id(a) {
this.q = a;
this.e("Id");
}
get paneType() {
return this.r;
}
set paneType(a) {
this.r = a;
this.e("PaneType");
}
get panes() {
return this.g;
}
set panes(a) {
this.g = a;
this.e("Panes");
}
get size() {
return this.m;
}
set size(a) {
this.m = a;
this.e("Size");
}
get selectedIndex() {
return this.l;
}
set selectedIndex(a) {
this.l = a;
this.e("SelectedIndex");
}
get allowEmpty() {
return this.j;
}
set allowEmpty(a) {
this.j = a;
this.e("AllowEmpty");
}
}
WebTabGroupPaneDescription.$t = markType(WebTabGroupPaneDescription, 'WebTabGroupPaneDescription', WebDockManagerPaneDescription.$);
WebTabGroupPaneDescription.__marshalByValue = true;
WebTabGroupPaneDescription.__marshalByValueAlias = "TabGroupPane";
return WebTabGroupPaneDescription;
})();