UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

82 lines (81 loc) 2.81 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 { CellInfoDescription } from "./CellInfoDescription"; import { markType } from "./type"; /** * @hidden */ export let SummaryCellInfoDescription = /*@__PURE__*/ (() => { class SummaryCellInfoDescription extends CellInfoDescription { constructor() { super(); this.fn = null; this.fo = null; this.fs = null; this.fp = null; this.fk = 0; this.fq = null; this.fr = null; } get_type() { return "SummaryCellInfo"; } get resolvedSummaryLabel() { return this.fn; } set resolvedSummaryLabel(a) { this.fn = a; this.e("ResolvedSummaryLabel"); } get resolvedSummaryValue() { return this.fo; } set resolvedSummaryValue(a) { this.fo = a; this.e("ResolvedSummaryValue"); } get summaryLabelTextColor() { return this.fs; } set summaryLabelTextColor(a) { this.fs = a; this.e("SummaryLabelTextColor"); } get summaryLabelFontFamily() { return this.fp; } set summaryLabelFontFamily(a) { this.fp = a; this.e("SummaryLabelFontFamily"); } get summaryLabelFontSize() { return this.fk; } set summaryLabelFontSize(a) { this.fk = a; this.e("SummaryLabelFontSize"); } get summaryLabelFontStyle() { return this.fq; } set summaryLabelFontStyle(a) { this.fq = a; this.e("SummaryLabelFontStyle"); } get summaryLabelFontWeight() { return this.fr; } set summaryLabelFontWeight(a) { this.fr = a; this.e("SummaryLabelFontWeight"); } } SummaryCellInfoDescription.$t = markType(SummaryCellInfoDescription, 'SummaryCellInfoDescription', CellInfoDescription.$); SummaryCellInfoDescription.__marshalByValue1 = true; SummaryCellInfoDescription.__marshalByValueAlias1 = "SummaryCellModel"; return SummaryCellInfoDescription; })();