igniteui-react-grids
Version:
Ignite UI React grid components.
37 lines (36 loc) • 1.5 kB
JavaScript
/*
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 { __extends } from "tslib";
import { GridCellBase } from "./GridCellBase";
import { TemplateCellContainer } from "./TemplateCellContainer";
import { markType } from "igniteui-react-core";
/**
* @hidden
*/
var TemplateHeaderCell = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(TemplateHeaderCell, _super);
function TemplateHeaderCell(a) {
var _this = _super.call(this, a) || this;
_this.ck = null;
_this.ck = new TemplateCellContainer(a);
_this.ah.append(_this.ck.element);
return _this;
}
Object.defineProperty(TemplateHeaderCell.prototype, "cl", {
get: function () {
return this.ck;
},
enumerable: false,
configurable: true
});
TemplateHeaderCell.prototype.get_x = function () {
return true;
};
TemplateHeaderCell.$t = markType(TemplateHeaderCell, 'TemplateHeaderCell', GridCellBase.$);
return TemplateHeaderCell;
}(GridCellBase));
export { TemplateHeaderCell };