UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

201 lines (200 loc) 6.33 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var ColumnGroupingDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ColumnGroupingDescription, _super); function ColumnGroupingDescription() { var _this = _super.call(this) || this; _this.q = null; _this.i = null; _this.m = null; _this.s = null; _this.t = null; _this.j = null; _this.f = 0; _this.k = null; _this.l = null; _this.r = null; _this.n = null; _this.o = null; _this.p = null; _this.h = null; return _this; } ColumnGroupingDescription.prototype.get_type = function () { return "ColumnGrouping"; }; Object.defineProperty(ColumnGroupingDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnGroupingDescription.prototype, "targetGridRef", { get: function () { return this.q; }, set: function (a) { this.q = a; this.e("TargetGridRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnGroupingDescription.prototype, "baseTheme", { get: function () { return this.i; }, set: function (a) { this.i = a; this.e("BaseTheme"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnGroupingDescription.prototype, "density", { get: function () { return this.m; }, set: function (a) { this.m = a; this.e("Density"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnGroupingDescription.prototype, "title", { get: function () { return this.s; }, set: function (a) { this.s = a; this.e("Title"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnGroupingDescription.prototype, "titleColor", { get: function () { return this.t; }, set: function (a) { this.t = a; this.e("TitleColor"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnGroupingDescription.prototype, "columnGroupTitleFontFamily", { get: function () { return this.j; }, set: function (a) { this.j = a; this.e("ColumnGroupTitleFontFamily"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnGroupingDescription.prototype, "columnGroupTitleFontSize", { get: function () { return this.f; }, set: function (a) { this.f = a; this.e("ColumnGroupTitleFontSize"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnGroupingDescription.prototype, "columnGroupTitleFontStyle", { get: function () { return this.k; }, set: function (a) { this.k = a; this.e("ColumnGroupTitleFontStyle"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnGroupingDescription.prototype, "columnGroupTitleFontWeight", { get: function () { return this.l; }, set: function (a) { this.l = a; this.e("ColumnGroupTitleFontWeight"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnGroupingDescription.prototype, "textColor", { get: function () { return this.r; }, set: function (a) { this.r = a; this.e("TextColor"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnGroupingDescription.prototype, "iconColor", { get: function () { return this.n; }, set: function (a) { this.n = a; this.e("IconColor"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnGroupingDescription.prototype, "itemBackgroundColor", { get: function () { return this.o; }, set: function (a) { this.o = a; this.e("ItemBackgroundColor"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnGroupingDescription.prototype, "itemHoverBackgroundColor", { get: function () { return this.p; }, set: function (a) { this.p = a; this.e("ItemHoverBackgroundColor"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnGroupingDescription.prototype, "backgroundColor", { get: function () { return this.h; }, set: function (a) { this.h = a; this.e("BackgroundColor"); }, enumerable: false, configurable: true }); ColumnGroupingDescription.$t = markType(ColumnGroupingDescription, 'ColumnGroupingDescription', Description.$); return ColumnGroupingDescription; }(Description)); export { ColumnGroupingDescription };