UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

83 lines (82 loc) 2.47 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let WebExpansionPanelDescription = /*@__PURE__*/ (() => { class WebExpansionPanelDescription extends Description { constructor() { super(); this.l = false; this.k = false; this.q = null; this.s = null; this.r = null; this.p = null; this.o = null; } get_type() { return "WebExpansionPanel"; } get type() { return this.get_type(); } get open() { return this.l; } set open(a) { this.l = a; this.j("Open"); } get disabled() { return this.k; } set disabled(a) { this.k = a; this.j("Disabled"); } get indicatorPosition() { return this.q; } set indicatorPosition(a) { this.q = a; this.j("IndicatorPosition"); } get openingRef() { return this.s; } set openingRef(a) { this.s = a; this.j("OpeningRef"); } get openedRef() { return this.r; } set openedRef(a) { this.r = a; this.j("OpenedRef"); } get closingRef() { return this.p; } set closingRef(a) { this.p = a; this.j("ClosingRef"); } get closedRef() { return this.o; } set closedRef(a) { this.o = a; this.j("ClosedRef"); } } WebExpansionPanelDescription.$t = markType(WebExpansionPanelDescription, 'WebExpansionPanelDescription', Description.$); return WebExpansionPanelDescription; })();