UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

75 lines (74 loc) 2.33 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 ResponsiveStateDescription = /*@__PURE__*/ (() => { class ResponsiveStateDescription extends Description { constructor() { super(); this.n = 0; this.m = 0; this.k = false; this.r = null; this.q = null; this.s = null; } get_type() { return "ResponsiveState"; } get type() { return this.get_type(); } get minimumWidth() { return this.n; } set minimumWidth(a) { this.n = a; this.j("MinimumWidth"); } get maximumWidth() { return this.m; } set maximumWidth(a) { this.m = a; this.j("MaximumWidth"); } get isManualState() { return this.k; } set isManualState(a) { this.k = a; this.j("IsManualState"); } get stateEnteringRef() { return this.r; } set stateEnteringRef(a) { this.r = a; this.j("StateEnteringRef"); } get stateEnteredRef() { return this.q; } set stateEnteredRef(a) { this.q = a; this.j("StateEnteredRef"); } get stateExitedRef() { return this.s; } set stateExitedRef(a) { this.s = a; this.j("StateExitedRef"); } } ResponsiveStateDescription.$t = markType(ResponsiveStateDescription, 'ResponsiveStateDescription', Description.$); return ResponsiveStateDescription; })();