UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

112 lines (111 loc) 3.94 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 { CellInfoDescription } from "./CellInfoDescription"; import { markType } from "./type"; /** * @hidden */ var SummaryCellInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(SummaryCellInfoDescription, _super); function SummaryCellInfoDescription() { var _this = _super.call(this) || this; _this.gq = null; _this.gr = null; _this.gv = null; _this.gs = null; _this.gn = 0; _this.gt = null; _this.gu = null; return _this; } SummaryCellInfoDescription.prototype.get_type = function () { return "SummaryCellInfo"; }; Object.defineProperty(SummaryCellInfoDescription.prototype, "resolvedSummaryLabel", { get: function () { return this.gq; }, set: function (a) { this.gq = a; this.j("ResolvedSummaryLabel"); }, enumerable: false, configurable: true }); Object.defineProperty(SummaryCellInfoDescription.prototype, "resolvedSummaryValue", { get: function () { return this.gr; }, set: function (a) { this.gr = a; this.j("ResolvedSummaryValue"); }, enumerable: false, configurable: true }); Object.defineProperty(SummaryCellInfoDescription.prototype, "summaryLabelTextColor", { get: function () { return this.gv; }, set: function (a) { this.gv = a; this.j("SummaryLabelTextColor"); }, enumerable: false, configurable: true }); Object.defineProperty(SummaryCellInfoDescription.prototype, "summaryLabelFontFamily", { get: function () { return this.gs; }, set: function (a) { this.gs = a; this.j("SummaryLabelFontFamily"); }, enumerable: false, configurable: true }); Object.defineProperty(SummaryCellInfoDescription.prototype, "summaryLabelFontSize", { get: function () { return this.gn; }, set: function (a) { this.gn = a; this.j("SummaryLabelFontSize"); }, enumerable: false, configurable: true }); Object.defineProperty(SummaryCellInfoDescription.prototype, "summaryLabelFontStyle", { get: function () { return this.gt; }, set: function (a) { this.gt = a; this.j("SummaryLabelFontStyle"); }, enumerable: false, configurable: true }); Object.defineProperty(SummaryCellInfoDescription.prototype, "summaryLabelFontWeight", { get: function () { return this.gu; }, set: function (a) { this.gu = a; this.j("SummaryLabelFontWeight"); }, enumerable: false, configurable: true }); SummaryCellInfoDescription.$t = markType(SummaryCellInfoDescription, 'SummaryCellInfoDescription', CellInfoDescription.$); SummaryCellInfoDescription.__marshalByValue1 = true; SummaryCellInfoDescription.__marshalByValueAlias1 = "SummaryCellModel"; return SummaryCellInfoDescription; }(CellInfoDescription)); export { SummaryCellInfoDescription };