UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

58 lines (57 loc) 2.04 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 { WebColumnDescription } from "./WebColumnDescription"; import { markType } from "./type"; /** * @hidden */ export let WebColumnGroupDescription = /*@__PURE__*/ (() => { class WebColumnGroupDescription extends WebColumnDescription { constructor() { super(); this.cw = null; this.cz = false; this.c0 = false; this.c4 = null; } get_type() { return "WebColumnGroup"; } get children() { return this.cw; } set children(a) { this.cw = a; this.g("Children"); } get collapsible() { return this.cz; } set collapsible(a) { this.cz = a; this.g("Collapsible"); } get expanded() { return this.c0; } set expanded(a) { this.c0 = a; this.g("Expanded"); } get collapsibleIndicatorTemplateRef() { return this.c4; } set collapsibleIndicatorTemplateRef(a) { this.c4 = a; this.g("CollapsibleIndicatorTemplateRef"); } } WebColumnGroupDescription.$t = markType(WebColumnGroupDescription, 'WebColumnGroupDescription', WebColumnDescription.$); WebColumnGroupDescription.__canMarshalByValue1 = true; WebColumnGroupDescription.__marshalByValueAlias1 = "ColumnGroup"; return WebColumnGroupDescription; })();