igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
82 lines (81 loc) • 2.81 kB
JavaScript
/*
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.gq = null;
this.gr = null;
this.gv = null;
this.gs = null;
this.gn = 0;
this.gt = null;
this.gu = null;
}
get_type() {
return "SummaryCellInfo";
}
get resolvedSummaryLabel() {
return this.gq;
}
set resolvedSummaryLabel(a) {
this.gq = a;
this.j("ResolvedSummaryLabel");
}
get resolvedSummaryValue() {
return this.gr;
}
set resolvedSummaryValue(a) {
this.gr = a;
this.j("ResolvedSummaryValue");
}
get summaryLabelTextColor() {
return this.gv;
}
set summaryLabelTextColor(a) {
this.gv = a;
this.j("SummaryLabelTextColor");
}
get summaryLabelFontFamily() {
return this.gs;
}
set summaryLabelFontFamily(a) {
this.gs = a;
this.j("SummaryLabelFontFamily");
}
get summaryLabelFontSize() {
return this.gn;
}
set summaryLabelFontSize(a) {
this.gn = a;
this.j("SummaryLabelFontSize");
}
get summaryLabelFontStyle() {
return this.gt;
}
set summaryLabelFontStyle(a) {
this.gt = a;
this.j("SummaryLabelFontStyle");
}
get summaryLabelFontWeight() {
return this.gu;
}
set summaryLabelFontWeight(a) {
this.gu = a;
this.j("SummaryLabelFontWeight");
}
}
SummaryCellInfoDescription.$t = markType(SummaryCellInfoDescription, 'SummaryCellInfoDescription', CellInfoDescription.$);
SummaryCellInfoDescription.__marshalByValue1 = true;
SummaryCellInfoDescription.__marshalByValueAlias1 = "SummaryCellModel";
return SummaryCellInfoDescription;
})();