UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

139 lines (138 loc) 4.02 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 WebCarouselDescription = /*@__PURE__*/ (() => { class WebCarouselDescription extends Description { constructor() { super(); 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; } get_type() { return "WebCarousel"; } get type() { return this.get_type(); } get disableLoop() { return this.k; } set disableLoop(a) { this.k = a; this.j("DisableLoop"); } get disablePauseOnInteraction() { return this.l; } set disablePauseOnInteraction(a) { this.l = a; this.j("DisablePauseOnInteraction"); } get hideNavigation() { return this.n; } set hideNavigation(a) { this.n = a; this.j("HideNavigation"); } get hideIndicators() { return this.m; } set hideIndicators(a) { this.m = a; this.j("HideIndicators"); } get vertical() { return this.o; } set vertical(a) { this.o = a; this.j("Vertical"); } get indicatorsOrientation() { return this.aa; } set indicatorsOrientation(a) { this.aa = a; this.j("IndicatorsOrientation"); } get indicatorsLabelFormat() { return this.z; } set indicatorsLabelFormat(a) { this.z = a; this.j("IndicatorsLabelFormat"); } get slidesLabelFormat() { return this.ae; } set slidesLabelFormat(a) { this.ae = a; this.j("SlidesLabelFormat"); } get interval() { return this.u; } set interval(a) { this.u = a; this.j("Interval"); } get maximumIndicatorsCount() { return this.v; } set maximumIndicatorsCount(a) { this.v = a; this.j("MaximumIndicatorsCount"); } get animationType() { return this.y; } set animationType(a) { this.y = a; this.j("AnimationType"); } get slideChangedRef() { return this.ad; } set slideChangedRef(a) { this.ad = a; this.j("SlideChangedRef"); } get playingRef() { return this.ac; } set playingRef(a) { this.ac = a; this.j("PlayingRef"); } get pausedRef() { return this.ab; } set pausedRef(a) { this.ab = a; this.j("PausedRef"); } } WebCarouselDescription.$t = markType(WebCarouselDescription, 'WebCarouselDescription', Description.$); return WebCarouselDescription; })();