UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

39 lines (38 loc) 1.58 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 { __extends } from "tslib"; import { CanvasGridCellBase } from "./CanvasGridCellBase"; import { CanvasTemplateCellContainer } from "./CanvasTemplateCellContainer"; import { markType } from "igniteui-react-core"; /** * @hidden */ var CanvasTemplateCell = /** @class */ /*@__PURE__*/ (function (_super) { __extends(CanvasTemplateCell, _super); function CanvasTemplateCell(a) { var _this = _super.call(this, a) || this; _this.da = null; _this.da = new CanvasTemplateCellContainer(a); return _this; } Object.defineProperty(CanvasTemplateCell.prototype, "db", { get: function () { return this.da; }, enumerable: false, configurable: true }); CanvasTemplateCell.prototype.get_af = function () { return true; }; CanvasTemplateCell.prototype.dc = function () { this.b8(); }; CanvasTemplateCell.$t = markType(CanvasTemplateCell, 'CanvasTemplateCell', CanvasGridCellBase.$); return CanvasTemplateCell; }(CanvasGridCellBase)); export { CanvasTemplateCell };