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.k = 0; this.l = 0; this.q = null; this.j = 0; this.g = false; this.f = false; this.p = null; } get_type() { return "WebProgressBase"; } get type() { return this.get_type(); } get max() { return this.k; } set max(a) { this.k = a; this.e("Max"); } get value() { return this.l; } set value(a) { this.l = a; this.e("Value"); } get variant() { return this.q; } set variant(a) { this.q = a; this.e("Variant"); } get animationDuration() { return this.j; } set animationDuration(a) { this.j = a; this.e("AnimationDuration"); } get indeterminate() { return this.g; } set indeterminate(a) { this.g = a; this.e("Indeterminate"); } get hideLabel() { return this.f; } set hideLabel(a) { this.f = a; this.e("HideLabel"); } get labelFormat() { return this.p; } set labelFormat(a) { this.p = a; this.e("LabelFormat"); } } WebProgressBaseDescription.$t = markType(WebProgressBaseDescription, 'WebProgressBaseDescription', Description.$); return WebProgressBaseDescription; })();