UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

83 lines (82 loc) 2.44 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 WebProgressBaseDescription = /*@__PURE__*/ (() => { class WebProgressBaseDescription extends Description { constructor() { super(); this.p = 0; this.q = 0; this.v = null; this.o = 0; this.l = false; this.k = false; this.u = null; } get_type() { return "WebProgressBase"; } get type() { return this.get_type(); } get max() { return this.p; } set max(a) { this.p = a; this.j("Max"); } get value() { return this.q; } set value(a) { this.q = a; this.j("Value"); } get variant() { return this.v; } set variant(a) { this.v = a; this.j("Variant"); } get animationDuration() { return this.o; } set animationDuration(a) { this.o = a; this.j("AnimationDuration"); } get indeterminate() { return this.l; } set indeterminate(a) { this.l = a; this.j("Indeterminate"); } get hideLabel() { return this.k; } set hideLabel(a) { this.k = a; this.j("HideLabel"); } get labelFormat() { return this.u; } set labelFormat(a) { this.u = a; this.j("LabelFormat"); } } WebProgressBaseDescription.$t = markType(WebProgressBaseDescription, 'WebProgressBaseDescription', Description.$); return WebProgressBaseDescription; })();