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.cd = null; this.cc = null; this.b5 = 0; this.b7 = 0; this.b6 = 0; this.b4 = 0; this.b2 = false; this.ce = null; } get_type() { return "SectionHeader"; } get selectedBackground() { return this.cd; } set selectedBackground(a) { this.cd = a; this.e("SelectedBackground"); } get actualSelectedBackground() { return this.cc; } set actualSelectedBackground(a) { this.cc = a; this.e("ActualSelectedBackground"); } get paddingLeft() { return this.b5; } set paddingLeft(a) { this.b5 = a; this.e("PaddingLeft"); } get paddingTop() { return this.b7; } set paddingTop(a) { this.b7 = a; this.e("PaddingTop"); } get paddingRight() { return this.b6; } set paddingRight(a) { this.b6 = a; this.e("PaddingRight"); } get paddingBottom() { return this.b4; } set paddingBottom(a) { this.b4 = a; this.e("PaddingBottom"); } get isCollapsable() { return this.b2; } set isCollapsable(a) { this.b2 = a; this.e("IsCollapsable"); } get summaryDisplayMode() { return this.ce; } set summaryDisplayMode(a) { this.ce = a; this.e("SummaryDisplayMode"); } } SectionHeaderDescription.$t = markType(SectionHeaderDescription, 'SectionHeaderDescription', DefinitionBaseDescription.$); return SectionHeaderDescription; })();