UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

115 lines (114 loc) 3.32 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 WebStepperDescription = /*@__PURE__*/ (() => { class WebStepperDescription extends Description { constructor() { super(); this.k = null; this.v = null; this.w = null; this.n = false; this.m = false; this.y = null; this.u = null; this.q = 0; this.x = null; this.t = null; this.s = null; } get_type() { return "WebStepper"; } get type() { return this.get_type(); } get steps() { return this.k; } set steps(a) { this.k = a; this.j("Steps"); } get orientation() { return this.v; } set orientation(a) { this.v = a; this.j("Orientation"); } get stepType() { return this.w; } set stepType(a) { this.w = a; this.j("StepType"); } get linear() { return this.n; } set linear(a) { this.n = a; this.j("Linear"); } get contentTop() { return this.m; } set contentTop(a) { this.m = a; this.j("ContentTop"); } get verticalAnimation() { return this.y; } set verticalAnimation(a) { this.y = a; this.j("VerticalAnimation"); } get horizontalAnimation() { return this.u; } set horizontalAnimation(a) { this.u = a; this.j("HorizontalAnimation"); } get animationDuration() { return this.q; } set animationDuration(a) { this.q = a; this.j("AnimationDuration"); } get titlePosition() { return this.x; } set titlePosition(a) { this.x = a; this.j("TitlePosition"); } get activeStepChangingRef() { return this.t; } set activeStepChangingRef(a) { this.t = a; this.j("ActiveStepChangingRef"); } get activeStepChangedRef() { return this.s; } set activeStepChangedRef(a) { this.s = a; this.j("ActiveStepChangedRef"); } } WebStepperDescription.$t = markType(WebStepperDescription, 'WebStepperDescription', Description.$); return WebStepperDescription; })();