UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

40 lines (39 loc) 1.69 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 { SectionHeader } from "./SectionHeader"; import { markType } from "igniteui-react-core"; import { TemplateSectionHeaderCellModel } from "./TemplateSectionHeaderCellModel"; import { TemplateSectionHeaderCellUpdatingEventArgs } from "./TemplateSectionHeaderCellUpdatingEventArgs"; /** * @hidden */ export let TemplateSectionHeader = /*@__PURE__*/ (() => { class TemplateSectionHeader extends SectionHeader { constructor() { super(...arguments); this.cellUpdating = null; } d2(a, b, c) { return "templateSectionHeader"; } n(a) { return new TemplateSectionHeaderCellModel(); } hu(a, b) { if (this.cellUpdating != null) { this.cellUpdating(this, ((() => { let $ret = new TemplateSectionHeaderCellUpdatingEventArgs(); $ret.cellInfo = a; $ret.content = b; return $ret; })())); } } } TemplateSectionHeader.$t = /*@__PURE__*/ markType(TemplateSectionHeader, 'TemplateSectionHeader', SectionHeader.$); return TemplateSectionHeader; })();