UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

88 lines (87 loc) 2.76 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 SectionHeaderDescription = /*@__PURE__*/ (() => { class SectionHeaderDescription extends DefinitionBaseDescription { constructor() { super(); this.c2 = null; this.c1 = null; this.cu = 0; this.cw = 0; this.cv = 0; this.ct = 0; this.cr = false; this.c3 = null; } get_type() { return "SectionHeader"; } get selectedBackground() { return this.c2; } set selectedBackground(a) { this.c2 = a; this.j("SelectedBackground"); } get actualSelectedBackground() { return this.c1; } set actualSelectedBackground(a) { this.c1 = a; this.j("ActualSelectedBackground"); } 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"); } get isCollapsable() { return this.cr; } set isCollapsable(a) { this.cr = a; this.j("IsCollapsable"); } get summaryDisplayMode() { return this.c3; } set summaryDisplayMode(a) { this.c3 = a; this.j("SummaryDisplayMode"); } } SectionHeaderDescription.$t = markType(SectionHeaderDescription, 'SectionHeaderDescription', DefinitionBaseDescription.$); return SectionHeaderDescription; })();