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.gw = null; this.gx = null; this.g1 = null; this.gy = null; this.gt = 0; this.gz = null; this.g0 = null; } get resolvedSummaryLabel() { return this.gw; } set resolvedSummaryLabel(a) { this.gw = a; this.j("ResolvedSummaryLabel"); } get resolvedSummaryValue() { return this.gx; } set resolvedSummaryValue(a) { this.gx = a; this.j("ResolvedSummaryValue"); } get summaryLabelTextColor() { return this.g1; } set summaryLabelTextColor(a) { this.g1 = a; this.j("SummaryLabelTextColor"); } get summaryLabelFontFamily() { return this.gy; } set summaryLabelFontFamily(a) { this.gy = a; this.j("SummaryLabelFontFamily"); } get summaryLabelFontSize() { return this.gt; } set summaryLabelFontSize(a) { this.gt = a; this.j("SummaryLabelFontSize"); } get summaryLabelFontStyle() { return this.gz; } set summaryLabelFontStyle(a) { this.gz = a; this.j("SummaryLabelFontStyle"); } get summaryLabelFontWeight() { return this.g0; } set summaryLabelFontWeight(a) { this.g0 = a; this.j("SummaryLabelFontWeight"); } } SummaryCellInfoDescription.$t = /*@__PURE__*/ markType(SummaryCellInfoDescription, 'SummaryCellInfoDescription', CellInfoDescription.$); SummaryCellInfoDescription.__marshalByValue1 = true; SummaryCellInfoDescription.__marshalByValueAlias1 = "SummaryCellModel"; return SummaryCellInfoDescription; })();