UNPKG

igniteui-react-core

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