UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

31 lines (30 loc) 1.22 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 { GridCellBase } from "./GridCellBase"; import { TemplateCellContainer } from "./TemplateCellContainer"; import { markType } from "igniteui-react-core"; /** * @hidden */ export let TemplateHeaderCell = /*@__PURE__*/ (() => { class TemplateHeaderCell extends GridCellBase { get cl() { return this.ck; } constructor(a) { super(a); this.ck = null; this.ck = new TemplateCellContainer(a); this.ah.append(this.ck.element); } get_x() { return true; } } TemplateHeaderCell.$t = /*@__PURE__*/ markType(TemplateHeaderCell, 'TemplateHeaderCell', GridCellBase.$); return TemplateHeaderCell; })();