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.fn = null; _this.fo = null; _this.fs = null; _this.fp = null; _this.fk = 0; _this.fq = null; _this.fr = null; return _this; } SummaryCellInfoDescription.prototype.get_type = function () { return "SummaryCellInfo"; }; Object.defineProperty(SummaryCellInfoDescription.prototype, "resolvedSummaryLabel", { get: function () { return this.fn; }, set: function (a) { this.fn = a; this.e("ResolvedSummaryLabel"); }, enumerable: false, configurable: true }); Object.defineProperty(SummaryCellInfoDescription.prototype, "resolvedSummaryValue", { get: function () { return this.fo; }, set: function (a) { this.fo = a; this.e("ResolvedSummaryValue"); }, enumerable: false, configurable: true }); Object.defineProperty(SummaryCellInfoDescription.prototype, "summaryLabelTextColor", { get: function () { return this.fs; }, set: function (a) { this.fs = a; this.e("SummaryLabelTextColor"); }, enumerable: false, configurable: true }); Object.defineProperty(SummaryCellInfoDescription.prototype, "summaryLabelFontFamily", { get: function () { return this.fp; }, set: function (a) { this.fp = a; this.e("SummaryLabelFontFamily"); }, enumerable: false, configurable: true }); Object.defineProperty(SummaryCellInfoDescription.prototype, "summaryLabelFontSize", { get: function () { return this.fk; }, set: function (a) { this.fk = a; this.e("SummaryLabelFontSize"); }, enumerable: false, configurable: true }); Object.defineProperty(SummaryCellInfoDescription.prototype, "summaryLabelFontStyle", { get: function () { return this.fq; }, set: function (a) { this.fq = a; this.e("SummaryLabelFontStyle"); }, enumerable: false, configurable: true }); Object.defineProperty(SummaryCellInfoDescription.prototype, "summaryLabelFontWeight", { get: function () { return this.fr; }, set: function (a) { this.fr = a; this.e("SummaryLabelFontWeight"); }, enumerable: false, configurable: true }); SummaryCellInfoDescription.$t = markType(SummaryCellInfoDescription, 'SummaryCellInfoDescription', CellInfoDescription.$); SummaryCellInfoDescription.__marshalByValue1 = true; SummaryCellInfoDescription.__marshalByValueAlias1 = "SummaryCellModel"; return SummaryCellInfoDescription; }(CellInfoDescription)); export { SummaryCellInfoDescription };