UNPKG

igniteui-react-core

Version:
82 lines (81 loc) 2.74 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 { get_type() { return "SummaryCellInfo"; } constructor() { super(); this.fr = null; this.fs = null; this.fw = null; this.ft = null; this.fo = 0; this.fu = null; this.fv = null; } get resolvedSummaryLabel() { return this.fr; } set resolvedSummaryLabel(a) { this.fr = a; this.g("ResolvedSummaryLabel"); } get resolvedSummaryValue() { return this.fs; } set resolvedSummaryValue(a) { this.fs = a; this.g("ResolvedSummaryValue"); } get summaryLabelTextColor() { return this.fw; } set summaryLabelTextColor(a) { this.fw = a; this.g("SummaryLabelTextColor"); } get summaryLabelFontFamily() { return this.ft; } set summaryLabelFontFamily(a) { this.ft = a; this.g("SummaryLabelFontFamily"); } get summaryLabelFontSize() { return this.fo; } set summaryLabelFontSize(a) { this.fo = a; this.g("SummaryLabelFontSize"); } get summaryLabelFontStyle() { return this.fu; } set summaryLabelFontStyle(a) { this.fu = a; this.g("SummaryLabelFontStyle"); } get summaryLabelFontWeight() { return this.fv; } set summaryLabelFontWeight(a) { this.fv = a; this.g("SummaryLabelFontWeight"); } } SummaryCellInfoDescription.$t = /*@__PURE__*/ markType(SummaryCellInfoDescription, 'SummaryCellInfoDescription', CellInfoDescription.$); SummaryCellInfoDescription.__marshalByValue1 = true; SummaryCellInfoDescription.__marshalByValueAlias1 = "SummaryCellModel"; return SummaryCellInfoDescription; })();