UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

165 lines (164 loc) 5.14 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 { __extends } from "tslib"; import { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var WebStepperDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebStepperDescription, _super); function WebStepperDescription() { var _this = _super.call(this) || this; _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; return _this; } WebStepperDescription.prototype.get_type = function () { return "WebStepper"; }; Object.defineProperty(WebStepperDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebStepperDescription.prototype, "steps", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("Steps"); }, enumerable: false, configurable: true }); Object.defineProperty(WebStepperDescription.prototype, "orientation", { get: function () { return this.v; }, set: function (a) { this.v = a; this.j("Orientation"); }, enumerable: false, configurable: true }); Object.defineProperty(WebStepperDescription.prototype, "stepType", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("StepType"); }, enumerable: false, configurable: true }); Object.defineProperty(WebStepperDescription.prototype, "linear", { get: function () { return this.n; }, set: function (a) { this.n = a; this.j("Linear"); }, enumerable: false, configurable: true }); Object.defineProperty(WebStepperDescription.prototype, "contentTop", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("ContentTop"); }, enumerable: false, configurable: true }); Object.defineProperty(WebStepperDescription.prototype, "verticalAnimation", { get: function () { return this.y; }, set: function (a) { this.y = a; this.j("VerticalAnimation"); }, enumerable: false, configurable: true }); Object.defineProperty(WebStepperDescription.prototype, "horizontalAnimation", { get: function () { return this.u; }, set: function (a) { this.u = a; this.j("HorizontalAnimation"); }, enumerable: false, configurable: true }); Object.defineProperty(WebStepperDescription.prototype, "animationDuration", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("AnimationDuration"); }, enumerable: false, configurable: true }); Object.defineProperty(WebStepperDescription.prototype, "titlePosition", { get: function () { return this.x; }, set: function (a) { this.x = a; this.j("TitlePosition"); }, enumerable: false, configurable: true }); Object.defineProperty(WebStepperDescription.prototype, "activeStepChangingRef", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("ActiveStepChangingRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebStepperDescription.prototype, "activeStepChangedRef", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("ActiveStepChangedRef"); }, enumerable: false, configurable: true }); WebStepperDescription.$t = markType(WebStepperDescription, 'WebStepperDescription', Description.$); return WebStepperDescription; }(Description)); export { WebStepperDescription };