UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

88 lines (87 loc) 3.3 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 { TextCellInfoDescription } from "./TextCellInfoDescription"; import { markType } from "./type"; /** * @hidden */ var TextHeaderCellInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(TextHeaderCellInfoDescription, _super); function TextHeaderCellInfoDescription() { var _this = _super.call(this) || this; _this.gr = false; _this.gx = null; _this.gu = null; _this.gw = null; _this.gv = null; return _this; } TextHeaderCellInfoDescription.prototype.get_type = function () { return "TextHeaderCellInfo"; }; Object.defineProperty(TextHeaderCellInfoDescription.prototype, "isColumnOptionsEnabled", { get: function () { return this.gr; }, set: function (a) { this.gr = a; this.j("IsColumnOptionsEnabled"); }, enumerable: false, configurable: true }); Object.defineProperty(TextHeaderCellInfoDescription.prototype, "sortIndicatorStyle", { get: function () { return this.gx; }, set: function (a) { this.gx = a; this.j("SortIndicatorStyle"); }, enumerable: false, configurable: true }); Object.defineProperty(TextHeaderCellInfoDescription.prototype, "columnOptionsIconAlignment", { get: function () { return this.gu; }, set: function (a) { this.gu = a; this.j("ColumnOptionsIconAlignment"); }, enumerable: false, configurable: true }); Object.defineProperty(TextHeaderCellInfoDescription.prototype, "columnOptionsIconColor", { get: function () { return this.gw; }, set: function (a) { this.gw = a; this.j("ColumnOptionsIconColor"); }, enumerable: false, configurable: true }); Object.defineProperty(TextHeaderCellInfoDescription.prototype, "columnOptionsIconBehavior", { get: function () { return this.gv; }, set: function (a) { this.gv = a; this.j("ColumnOptionsIconBehavior"); }, enumerable: false, configurable: true }); TextHeaderCellInfoDescription.$t = markType(TextHeaderCellInfoDescription, 'TextHeaderCellInfoDescription', TextCellInfoDescription.$); TextHeaderCellInfoDescription.__marshalByValue2 = true; TextHeaderCellInfoDescription.__marshalByValueAlias2 = "TextHeaderCellModel"; return TextHeaderCellInfoDescription; }(TextCellInfoDescription)); export { TextHeaderCellInfoDescription };