UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

40 lines (39 loc) 1.51 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.cu = null; this.cw = null; } get_type() { return "WebColumnGroup"; } get children() { return this.cu; } set children(a) { this.cu = a; this.e("Children"); } get collapsibleIndicatorTemplateRef() { return this.cw; } set collapsibleIndicatorTemplateRef(a) { this.cw = a; this.e("CollapsibleIndicatorTemplateRef"); } } WebColumnGroupDescription.$t = markType(WebColumnGroupDescription, 'WebColumnGroupDescription', WebColumnDescription.$); return WebColumnGroupDescription; })();