UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

120 lines (119 loc) 3.71 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 { DefinitionBaseDescription } from "./DefinitionBaseDescription"; import { markType } from "./type"; /** * @hidden */ export let SummaryRowDescription = /*@__PURE__*/ (() => { class SummaryRowDescription extends DefinitionBaseDescription { constructor() { super(); this.c3 = null; this.c1 = null; this.c7 = null; this.c2 = null; this.c4 = null; this.cr = 0; this.c5 = null; this.c6 = null; this.cu = 0; this.cw = 0; this.cv = 0; this.ct = 0; } get_type() { return "SummaryRow"; } get selectedBackground() { return this.c3; } set selectedBackground(a) { this.c3 = a; this.j("SelectedBackground"); } get actualSelectedBackground() { return this.c1; } set actualSelectedBackground(a) { this.c1 = a; this.j("ActualSelectedBackground"); } get summaryLabelTextColor() { return this.c7; } set summaryLabelTextColor(a) { this.c7 = a; this.j("SummaryLabelTextColor"); } get actualSummaryLabelTextColor() { return this.c2; } set actualSummaryLabelTextColor(a) { this.c2 = a; this.j("ActualSummaryLabelTextColor"); } get summaryLabelFontFamily() { return this.c4; } set summaryLabelFontFamily(a) { this.c4 = a; this.j("SummaryLabelFontFamily"); } get summaryLabelFontSize() { return this.cr; } set summaryLabelFontSize(a) { this.cr = a; this.j("SummaryLabelFontSize"); } get summaryLabelFontStyle() { return this.c5; } set summaryLabelFontStyle(a) { this.c5 = a; this.j("SummaryLabelFontStyle"); } get summaryLabelFontWeight() { return this.c6; } set summaryLabelFontWeight(a) { this.c6 = a; this.j("SummaryLabelFontWeight"); } get paddingLeft() { return this.cu; } set paddingLeft(a) { this.cu = a; this.j("PaddingLeft"); } get paddingTop() { return this.cw; } set paddingTop(a) { this.cw = a; this.j("PaddingTop"); } get paddingRight() { return this.cv; } set paddingRight(a) { this.cv = a; this.j("PaddingRight"); } get paddingBottom() { return this.ct; } set paddingBottom(a) { this.ct = a; this.j("PaddingBottom"); } } SummaryRowDescription.$t = markType(SummaryRowDescription, 'SummaryRowDescription', DefinitionBaseDescription.$); return SummaryRowDescription; })();