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.g = false; this.f = false; this.l = null; this.n = null; this.m = null; this.k = null; this.j = null; } get_type() { return "WebExpansionPanel"; } get type() { return this.get_type(); } get open() { return this.g; } set open(a) { this.g = a; this.e("Open"); } get disabled() { return this.f; } set disabled(a) { this.f = a; this.e("Disabled"); } get indicatorPosition() { return this.l; } set indicatorPosition(a) { this.l = a; this.e("IndicatorPosition"); } get openingRef() { return this.n; } set openingRef(a) { this.n = a; this.e("OpeningRef"); } get openedRef() { return this.m; } set openedRef(a) { this.m = a; this.e("OpenedRef"); } get closingRef() { return this.k; } set closingRef(a) { this.k = a; this.e("ClosingRef"); } get closedRef() { return this.j; } set closedRef(a) { this.j = a; this.e("ClosedRef"); } } WebExpansionPanelDescription.$t = markType(WebExpansionPanelDescription, 'WebExpansionPanelDescription', Description.$); return WebExpansionPanelDescription; })();