UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

82 lines (81 loc) 2.54 kB
/* 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.z = null; this.aa = null; this.n = null; this.v = 0; this.u = 0; this.q = false; this.r = false; } get_type() { return "WebTabGroupPane"; } get id() { return this.z; } set id(a) { this.z = a; this.j("Id"); } get paneType() { return this.aa; } set paneType(a) { this.aa = a; this.j("PaneType"); } get panes() { return this.n; } set panes(a) { this.n = a; this.j("Panes"); } get size() { return this.v; } set size(a) { this.v = a; this.j("Size"); } get selectedIndex() { return this.u; } set selectedIndex(a) { this.u = a; this.j("SelectedIndex"); } get allowEmpty() { return this.q; } set allowEmpty(a) { this.q = a; this.j("AllowEmpty"); } get isMaximized() { return this.r; } set isMaximized(a) { this.r = a; this.j("IsMaximized"); } } WebTabGroupPaneDescription.$t = markType(WebTabGroupPaneDescription, 'WebTabGroupPaneDescription', WebDockManagerPaneDescription.$); WebTabGroupPaneDescription.__marshalByValue1 = true; WebTabGroupPaneDescription.__marshalByValueAlias1 = "TabGroupPane"; return WebTabGroupPaneDescription; })();