UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

201 lines (200 loc) 6.25 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 WebCarouselDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebCarouselDescription, _super); function WebCarouselDescription() { var _this = _super.call(this) || this; _this.k = false; _this.l = false; _this.n = false; _this.m = false; _this.o = false; _this.aa = null; _this.z = null; _this.ae = null; _this.u = 0; _this.v = 0; _this.y = null; _this.ad = null; _this.ac = null; _this.ab = null; return _this; } WebCarouselDescription.prototype.get_type = function () { return "WebCarousel"; }; Object.defineProperty(WebCarouselDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebCarouselDescription.prototype, "disableLoop", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("DisableLoop"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCarouselDescription.prototype, "disablePauseOnInteraction", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("DisablePauseOnInteraction"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCarouselDescription.prototype, "hideNavigation", { get: function () { return this.n; }, set: function (a) { this.n = a; this.j("HideNavigation"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCarouselDescription.prototype, "hideIndicators", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("HideIndicators"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCarouselDescription.prototype, "vertical", { get: function () { return this.o; }, set: function (a) { this.o = a; this.j("Vertical"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCarouselDescription.prototype, "indicatorsOrientation", { get: function () { return this.aa; }, set: function (a) { this.aa = a; this.j("IndicatorsOrientation"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCarouselDescription.prototype, "indicatorsLabelFormat", { get: function () { return this.z; }, set: function (a) { this.z = a; this.j("IndicatorsLabelFormat"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCarouselDescription.prototype, "slidesLabelFormat", { get: function () { return this.ae; }, set: function (a) { this.ae = a; this.j("SlidesLabelFormat"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCarouselDescription.prototype, "interval", { get: function () { return this.u; }, set: function (a) { this.u = a; this.j("Interval"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCarouselDescription.prototype, "maximumIndicatorsCount", { get: function () { return this.v; }, set: function (a) { this.v = a; this.j("MaximumIndicatorsCount"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCarouselDescription.prototype, "animationType", { get: function () { return this.y; }, set: function (a) { this.y = a; this.j("AnimationType"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCarouselDescription.prototype, "slideChangedRef", { get: function () { return this.ad; }, set: function (a) { this.ad = a; this.j("SlideChangedRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCarouselDescription.prototype, "playingRef", { get: function () { return this.ac; }, set: function (a) { this.ac = a; this.j("PlayingRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebCarouselDescription.prototype, "pausedRef", { get: function () { return this.ab; }, set: function (a) { this.ab = a; this.j("PausedRef"); }, enumerable: false, configurable: true }); WebCarouselDescription.$t = markType(WebCarouselDescription, 'WebCarouselDescription', Description.$); return WebCarouselDescription; }(Description)); export { WebCarouselDescription };