UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

28 lines (27 loc) 881 B
import { __extends } from "tslib"; import { IgrHeader } from "./igr-header"; import { TextHeader } from "./TextHeader"; /** * Represents a class used to configure the appearance of a text column header cells. */ var IgrTextHeader = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgrTextHeader, _super); function IgrTextHeader(props) { return _super.call(this, props) || this; } IgrTextHeader.prototype.createImplementation = function () { return new TextHeader(); }; Object.defineProperty(IgrTextHeader.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); return IgrTextHeader; }(IgrHeader)); export { IgrTextHeader };