UNPKG

ngx-bootstrap-fix-datepicker

Version:
1,253 lines 89.1 kB
/** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc */ import * as tslib_1 from "tslib"; // tslint:disable:max-file-line-count /*** * pause (not yet supported) (?string='hover') - event group name which pauses * the cycling of the carousel, if hover pauses on mouseenter and resumes on * mouseleave keyboard (not yet supported) (?boolean=true) - if false * carousel will not react to keyboard events * note: swiping not yet supported */ /**** * Problems: * 1) if we set an active slide via model changes, .active class remains on a * current slide. * 2) if we have only one slide, we shouldn't show prev/next nav buttons * 3) if first or last slide is active and noWrap is true, there should be * "disabled" class on the nav buttons. * 4) default interval should be equal 5000 */ import { Component, EventEmitter, Input, NgZone, Output } from '@angular/core'; import { isBs3, LinkedList } from 'ngx-bootstrap/utils'; import { CarouselConfig } from './carousel.config'; import { findLastIndex, chunkByNumber } from './utils'; /** @enum {number} */ var Direction = { UNKNOWN: 0, NEXT: 1, PREV: 2, }; export { Direction }; Direction[Direction.UNKNOWN] = 'UNKNOWN'; Direction[Direction.NEXT] = 'NEXT'; Direction[Direction.PREV] = 'PREV'; /** * Base element to create carousel */ var CarouselComponent = /** @class */ (function () { function CarouselComponent(config, ngZone) { this.ngZone = ngZone; /* If `true` - carousel indicators indicate slides chunks works ONLY if singleSlideOffset = FALSE */ this.indicatorsByChunk = false; /* If value more then 1 — carousel works in multilist mode */ this.itemsPerSlide = 1; /* If `true` — carousel shifts by one element. By default carousel shifts by number of visible elements (itemsPerSlide field) */ this.singleSlideOffset = false; /** * Turn on/off animation. Animation doesn't work for multilist carousel */ this.isAnimated = false; /** * Will be emitted when active slide has been changed. Part of two-way-bindable [(activeSlide)] property */ this.activeSlideChange = new EventEmitter(false); /** * Will be emitted when active slides has been changed in multilist mode */ this.slideRangeChange = new EventEmitter(); /* Index to start display slides from it */ this.startFromIndex = 0; this._slides = new LinkedList(); this._currentVisibleSlidesIndex = 0; this.destroyed = false; this.getActive = (/** * @param {?} slide * @return {?} */ function (slide) { return slide.active; }); this.makeSlidesConsistent = (/** * @param {?} slides * @return {?} */ function (slides) { slides.forEach((/** * @param {?} slide * @param {?} index * @return {?} */ function (slide, index) { return slide.item.order = index; })); }); Object.assign(this, config); } Object.defineProperty(CarouselComponent.prototype, "activeSlide", { get: /** * @return {?} */ function () { return this._currentActiveSlide; }, /** Index of currently displayed slide(started for 0) */ set: /** * Index of currently displayed slide(started for 0) * @param {?} index * @return {?} */ function (index) { if (this.multilist) { return; } if (this._slides.length && index !== this._currentActiveSlide) { this._select(index); } }, enumerable: true, configurable: true }); Object.defineProperty(CarouselComponent.prototype, "interval", { /** * Delay of item cycling in milliseconds. If false, carousel won't cycle * automatically. */ get: /** * Delay of item cycling in milliseconds. If false, carousel won't cycle * automatically. * @return {?} */ function () { return this._interval; }, set: /** * @param {?} value * @return {?} */ function (value) { this._interval = value; this.restartTimer(); }, enumerable: true, configurable: true }); Object.defineProperty(CarouselComponent.prototype, "slides", { get: /** * @return {?} */ function () { return this._slides.toArray(); }, enumerable: true, configurable: true }); Object.defineProperty(CarouselComponent.prototype, "isBs4", { get: /** * @return {?} */ function () { return !isBs3(); }, enumerable: true, configurable: true }); /** * @return {?} */ CarouselComponent.prototype.ngAfterViewInit = /** * @return {?} */ function () { var _this = this; setTimeout((/** * @return {?} */ function () { if (_this.singleSlideOffset) { _this.indicatorsByChunk = false; } if (_this.multilist) { _this._chunkedSlides = chunkByNumber(_this.mapSlidesAndIndexes(), _this.itemsPerSlide); _this.selectInitialSlides(); } }), 0); }; /** * @return {?} */ CarouselComponent.prototype.ngOnDestroy = /** * @return {?} */ function () { this.destroyed = true; }; /** * Adds new slide. If this slide is first in collection - set it as active * and starts auto changing * @param slide */ /** * Adds new slide. If this slide is first in collection - set it as active * and starts auto changing * @param {?} slide * @return {?} */ CarouselComponent.prototype.addSlide = /** * Adds new slide. If this slide is first in collection - set it as active * and starts auto changing * @param {?} slide * @return {?} */ function (slide) { this._slides.add(slide); if (this.multilist && this._slides.length <= this.itemsPerSlide) { slide.active = true; } if (!this.multilist && this.isAnimated) { slide.isAnimated = true; } if (!this.multilist && this._slides.length === 1) { this._currentActiveSlide = undefined; this.activeSlide = 0; this.play(); } if (this.multilist && this._slides.length > this.itemsPerSlide) { this.play(); } }; /** * Removes specified slide. If this slide is active - will roll to another * slide * @param slide */ /** * Removes specified slide. If this slide is active - will roll to another * slide * @param {?} slide * @return {?} */ CarouselComponent.prototype.removeSlide = /** * Removes specified slide. If this slide is active - will roll to another * slide * @param {?} slide * @return {?} */ function (slide) { var _this = this; /** @type {?} */ var remIndex = this._slides.indexOf(slide); if (this._currentActiveSlide === remIndex) { // removing of active slide /** @type {?} */ var nextSlideIndex_1 = void 0; if (this._slides.length > 1) { // if this slide last - will roll to first slide, if noWrap flag is // FALSE or to previous, if noWrap is TRUE in case, if this slide in // middle of collection, index of next slide is same to removed nextSlideIndex_1 = !this.isLast(remIndex) ? remIndex : this.noWrap ? remIndex - 1 : 0; } this._slides.remove(remIndex); // prevents exception with changing some value after checking setTimeout((/** * @return {?} */ function () { _this._select(nextSlideIndex_1); }), 0); } else { this._slides.remove(remIndex); /** @type {?} */ var currentSlideIndex_1 = this.getCurrentSlideIndex(); setTimeout((/** * @return {?} */ function () { // after removing, need to actualize index of current active slide _this._currentActiveSlide = currentSlideIndex_1; _this.activeSlideChange.emit(_this._currentActiveSlide); }), 0); } }; /** * @param {?=} force * @return {?} */ CarouselComponent.prototype.nextSlideFromInterval = /** * @param {?=} force * @return {?} */ function (force) { if (force === void 0) { force = false; } this.move(Direction.NEXT, force); }; /** * Rolling to next slide * @param force: {boolean} if true - will ignore noWrap flag */ /** * Rolling to next slide * @param {?=} force * @return {?} */ CarouselComponent.prototype.nextSlide = /** * Rolling to next slide * @param {?=} force * @return {?} */ function (force) { if (force === void 0) { force = false; } if (this.isPlaying) { this.restartTimer(); } this.move(Direction.NEXT, force); }; /** * Rolling to previous slide * @param force: {boolean} if true - will ignore noWrap flag */ /** * Rolling to previous slide * @param {?=} force * @return {?} */ CarouselComponent.prototype.previousSlide = /** * Rolling to previous slide * @param {?=} force * @return {?} */ function (force) { if (force === void 0) { force = false; } if (this.isPlaying) { this.restartTimer(); } this.move(Direction.PREV, force); }; /** * @return {?} */ CarouselComponent.prototype.getFirstVisibleIndex = /** * @return {?} */ function () { return this.slides.findIndex(this.getActive); }; /** * @return {?} */ CarouselComponent.prototype.getLastVisibleIndex = /** * @return {?} */ function () { return findLastIndex(this.slides, this.getActive); }; /** * @param {?} direction * @param {?=} force * @return {?} */ CarouselComponent.prototype.move = /** * @param {?} direction * @param {?=} force * @return {?} */ function (direction, force) { if (force === void 0) { force = false; } /** @type {?} */ var firstVisibleIndex = this.getFirstVisibleIndex(); /** @type {?} */ var lastVisibleIndex = this.getLastVisibleIndex(); if (this.noWrap) { if (direction === Direction.NEXT && this.isLast(lastVisibleIndex) || direction === Direction.PREV && firstVisibleIndex === 0) { return; } } if (!this.multilist) { this.activeSlide = this.findNextSlideIndex(direction, force); } else { this.moveMultilist(direction); } }; /** * Swith slides by enter, space and arrows keys * @internal */ /** * Swith slides by enter, space and arrows keys * \@internal * @param {?} event * @return {?} */ CarouselComponent.prototype.keydownPress = /** * Swith slides by enter, space and arrows keys * \@internal * @param {?} event * @return {?} */ function (event) { // tslint:disable-next-line:deprecation if (event.keyCode === 13 || event.key === 'Enter' || event.keyCode === 32 || event.key === 'Space') { this.nextSlide(); event.preventDefault(); return; } // tslint:disable-next-line:deprecation if (event.keyCode === 37 || event.key === 'LeftArrow') { this.previousSlide(); return; } // tslint:disable-next-line:deprecation if (event.keyCode === 39 || event.key === 'RightArrow') { this.nextSlide(); return; } }; /** * Play on mouse leave * @internal */ /** * Play on mouse leave * \@internal * @return {?} */ CarouselComponent.prototype.onMouseLeave = /** * Play on mouse leave * \@internal * @return {?} */ function () { if (!this.pauseOnFocus) { this.play(); } }; /** * Play on mouse up * @internal */ /** * Play on mouse up * \@internal * @return {?} */ CarouselComponent.prototype.onMouseUp = /** * Play on mouse up * \@internal * @return {?} */ function () { if (!this.pauseOnFocus) { this.play(); } }; /** * When slides on focus autoplay is stopped(optional) * @internal */ /** * When slides on focus autoplay is stopped(optional) * \@internal * @return {?} */ CarouselComponent.prototype.pauseFocusIn = /** * When slides on focus autoplay is stopped(optional) * \@internal * @return {?} */ function () { if (this.pauseOnFocus) { this.isPlaying = false; this.resetTimer(); } }; /** * When slides out of focus autoplay is started * @internal */ /** * When slides out of focus autoplay is started * \@internal * @return {?} */ CarouselComponent.prototype.pauseFocusOut = /** * When slides out of focus autoplay is started * \@internal * @return {?} */ function () { this.play(); }; /** * Rolling to specified slide * @param index: {number} index of slide, which must be shown */ /** * Rolling to specified slide * @param {?} index * @return {?} */ CarouselComponent.prototype.selectSlide = /** * Rolling to specified slide * @param {?} index * @return {?} */ function (index) { if (this.isPlaying) { this.restartTimer(); } if (!this.multilist) { this.activeSlide = this.indicatorsByChunk ? index * this.itemsPerSlide : index; } else { this.selectSlideRange(this.indicatorsByChunk ? index * this.itemsPerSlide : index); } }; /** * Starts a auto changing of slides */ /** * Starts a auto changing of slides * @return {?} */ CarouselComponent.prototype.play = /** * Starts a auto changing of slides * @return {?} */ function () { if (!this.isPlaying) { this.isPlaying = true; this.restartTimer(); } }; /** * Stops a auto changing of slides */ /** * Stops a auto changing of slides * @return {?} */ CarouselComponent.prototype.pause = /** * Stops a auto changing of slides * @return {?} */ function () { if (!this.noPause) { this.isPlaying = false; this.resetTimer(); } }; /** * Finds and returns index of currently displayed slide */ /** * Finds and returns index of currently displayed slide * @return {?} */ CarouselComponent.prototype.getCurrentSlideIndex = /** * Finds and returns index of currently displayed slide * @return {?} */ function () { return this._slides.findIndex(this.getActive); }; /** * Defines, whether the specified index is last in collection * @param index */ /** * Defines, whether the specified index is last in collection * @param {?} index * @return {?} */ CarouselComponent.prototype.isLast = /** * Defines, whether the specified index is last in collection * @param {?} index * @return {?} */ function (index) { return index + 1 >= this._slides.length; }; /** * Defines, whether the specified index is first in collection * @param index */ /** * Defines, whether the specified index is first in collection * @param {?} index * @return {?} */ CarouselComponent.prototype.isFirst = /** * Defines, whether the specified index is first in collection * @param {?} index * @return {?} */ function (index) { return index === 0; }; /** * @return {?} */ CarouselComponent.prototype.indicatorsSlides = /** * @return {?} */ function () { var _this = this; return this.slides.filter((/** * @param {?} slide * @param {?} index * @return {?} */ function (slide, index) { return !_this.indicatorsByChunk || index % _this.itemsPerSlide === 0; })); }; /** * @private * @return {?} */ CarouselComponent.prototype.selectInitialSlides = /** * @private * @return {?} */ function () { /** @type {?} */ var startIndex = this.startFromIndex <= this._slides.length ? this.startFromIndex : 0; this.hideSlides(); if (this.singleSlideOffset) { this._slidesWithIndexes = this.mapSlidesAndIndexes(); if (this._slides.length - startIndex < this.itemsPerSlide) { /** @type {?} */ var slidesToAppend = this._slidesWithIndexes.slice(0, startIndex); this._slidesWithIndexes = tslib_1.__spread(this._slidesWithIndexes, slidesToAppend).slice(slidesToAppend.length) .slice(0, this.itemsPerSlide); } else { this._slidesWithIndexes = this._slidesWithIndexes.slice(startIndex, startIndex + this.itemsPerSlide); } this._slidesWithIndexes.forEach((/** * @param {?} slide * @return {?} */ function (slide) { return slide.item.active = true; })); this.makeSlidesConsistent(this._slidesWithIndexes); } else { this.selectRangeByNestedIndex(startIndex); } this.slideRangeChange.emit(this.getVisibleIndexes()); }; /** * Defines next slide index, depending of direction * @param direction: Direction(UNKNOWN|PREV|NEXT) * @param force: {boolean} if TRUE - will ignore noWrap flag, else will * return undefined if next slide require wrapping */ /** * Defines next slide index, depending of direction * @private * @param {?} direction * @param {?} force * @return {?} */ CarouselComponent.prototype.findNextSlideIndex = /** * Defines next slide index, depending of direction * @private * @param {?} direction * @param {?} force * @return {?} */ function (direction, force) { /** @type {?} */ var nextSlideIndex = 0; if (!force && (this.isLast(this.activeSlide) && direction !== Direction.PREV && this.noWrap)) { return undefined; } switch (direction) { case Direction.NEXT: // if this is last slide, not force, looping is disabled // and need to going forward - select current slide, as a next nextSlideIndex = !this.isLast(this._currentActiveSlide) ? this._currentActiveSlide + 1 : !force && this.noWrap ? this._currentActiveSlide : 0; break; case Direction.PREV: // if this is first slide, not force, looping is disabled // and need to going backward - select current slide, as a next nextSlideIndex = this._currentActiveSlide > 0 ? this._currentActiveSlide - 1 : !force && this.noWrap ? this._currentActiveSlide : this._slides.length - 1; break; default: throw new Error('Unknown direction'); } return nextSlideIndex; }; /** * @private * @return {?} */ CarouselComponent.prototype.mapSlidesAndIndexes = /** * @private * @return {?} */ function () { return this.slides .slice() .map((/** * @param {?} slide * @param {?} index * @return {?} */ function (slide, index) { return { index: index, item: slide }; })); }; /** * @private * @param {?} index * @return {?} */ CarouselComponent.prototype.selectSlideRange = /** * @private * @param {?} index * @return {?} */ function (index) { if (this.isIndexInRange(index)) { return; } this.hideSlides(); if (!this.singleSlideOffset) { this.selectRangeByNestedIndex(index); } else { /** @type {?} */ var startIndex = this.isIndexOnTheEdges(index) ? index : index - this.itemsPerSlide + 1; /** @type {?} */ var endIndex = this.isIndexOnTheEdges(index) ? index + this.itemsPerSlide : index + 1; this._slidesWithIndexes = this.mapSlidesAndIndexes().slice(startIndex, endIndex); this.makeSlidesConsistent(this._slidesWithIndexes); this._slidesWithIndexes.forEach((/** * @param {?} slide * @return {?} */ function (slide) { return slide.item.active = true; })); } this.slideRangeChange.emit(this.getVisibleIndexes()); }; /** * @private * @param {?} index * @return {?} */ CarouselComponent.prototype.selectRangeByNestedIndex = /** * @private * @param {?} index * @return {?} */ function (index) { /** @type {?} */ var selectedRange = this._chunkedSlides .map((/** * @param {?} slidesList * @param {?} i * @return {?} */ function (slidesList, i) { return { index: i, list: slidesList }; })) .find((/** * @param {?} slidesList * @return {?} */ function (slidesList) { return slidesList.list.find((/** * @param {?} slide * @return {?} */ function (slide) { return slide.index === index; })) !== undefined; })); this._currentVisibleSlidesIndex = selectedRange.index; this._chunkedSlides[selectedRange.index].forEach((/** * @param {?} slide * @return {?} */ function (slide) { slide.item.active = true; })); }; /** * @private * @param {?} index * @return {?} */ CarouselComponent.prototype.isIndexOnTheEdges = /** * @private * @param {?} index * @return {?} */ function (index) { return (index + 1 - this.itemsPerSlide <= 0 || index + this.itemsPerSlide <= this._slides.length); }; /** * @private * @param {?} index * @return {?} */ CarouselComponent.prototype.isIndexInRange = /** * @private * @param {?} index * @return {?} */ function (index) { if (this.singleSlideOffset) { /** @type {?} */ var visibleIndexes = this._slidesWithIndexes.map((/** * @param {?} slide * @return {?} */ function (slide) { return slide.index; })); return visibleIndexes.indexOf(index) >= 0; } return (index <= this.getLastVisibleIndex() && index >= this.getFirstVisibleIndex()); }; /** * @private * @return {?} */ CarouselComponent.prototype.hideSlides = /** * @private * @return {?} */ function () { this.slides.forEach((/** * @param {?} slide * @return {?} */ function (slide) { return slide.active = false; })); }; /** * @private * @return {?} */ CarouselComponent.prototype.isVisibleSlideListLast = /** * @private * @return {?} */ function () { return this._currentVisibleSlidesIndex === this._chunkedSlides.length - 1; }; /** * @private * @return {?} */ CarouselComponent.prototype.isVisibleSlideListFirst = /** * @private * @return {?} */ function () { return this._currentVisibleSlidesIndex === 0; }; /** * @private * @param {?} direction * @return {?} */ CarouselComponent.prototype.moveSliderByOneItem = /** * @private * @param {?} direction * @return {?} */ function (direction) { /** @type {?} */ var firstVisibleIndex; /** @type {?} */ var lastVisibleIndex; /** @type {?} */ var indexToHide; /** @type {?} */ var indexToShow; if (this.noWrap) { firstVisibleIndex = this.getFirstVisibleIndex(); lastVisibleIndex = this.getLastVisibleIndex(); indexToHide = direction === Direction.NEXT ? firstVisibleIndex : lastVisibleIndex; indexToShow = direction !== Direction.NEXT ? firstVisibleIndex - 1 : !this.isLast(lastVisibleIndex) ? lastVisibleIndex + 1 : 0; this._slides.get(indexToHide).active = false; this._slides.get(indexToShow).active = true; /** @type {?} */ var slidesToReorder = this.mapSlidesAndIndexes().filter((/** * @param {?} slide * @return {?} */ function (slide) { return slide.item.active; })); this.makeSlidesConsistent(slidesToReorder); this.slideRangeChange.emit(this.getVisibleIndexes()); } else { /** @type {?} */ var displayedIndex = void 0; firstVisibleIndex = this._slidesWithIndexes[0].index; lastVisibleIndex = this._slidesWithIndexes[this._slidesWithIndexes.length - 1].index; if (direction === Direction.NEXT) { this._slidesWithIndexes.shift(); displayedIndex = this.isLast(lastVisibleIndex) ? 0 : lastVisibleIndex + 1; this._slidesWithIndexes.push({ index: displayedIndex, item: this._slides.get(displayedIndex) }); } else { this._slidesWithIndexes.pop(); displayedIndex = this.isFirst(firstVisibleIndex) ? this._slides.length - 1 : firstVisibleIndex - 1; this._slidesWithIndexes = tslib_1.__spread([{ index: displayedIndex, item: this._slides.get(displayedIndex) }], this._slidesWithIndexes); } this.hideSlides(); this._slidesWithIndexes.forEach((/** * @param {?} slide * @return {?} */ function (slide) { return slide.item.active = true; })); this.makeSlidesConsistent(this._slidesWithIndexes); this.slideRangeChange.emit(this._slidesWithIndexes.map((/** * @param {?} slide * @return {?} */ function (slide) { return slide.index; }))); } }; /** * @private * @param {?} direction * @return {?} */ CarouselComponent.prototype.moveMultilist = /** * @private * @param {?} direction * @return {?} */ function (direction) { if (this.singleSlideOffset) { this.moveSliderByOneItem(direction); } else { this.hideSlides(); if (this.noWrap) { this._currentVisibleSlidesIndex = direction === Direction.NEXT ? this._currentVisibleSlidesIndex + 1 : this._currentVisibleSlidesIndex - 1; } else { if (direction === Direction.NEXT) { this._currentVisibleSlidesIndex = this.isVisibleSlideListLast() ? 0 : this._currentVisibleSlidesIndex + 1; } else { this._currentVisibleSlidesIndex = this.isVisibleSlideListFirst() ? this._chunkedSlides.length - 1 : this._currentVisibleSlidesIndex - 1; } } this._chunkedSlides[this._currentVisibleSlidesIndex].forEach((/** * @param {?} slide * @return {?} */ function (slide) { return slide.item.active = true; })); this.slideRangeChange.emit(this.getVisibleIndexes()); } }; /** * @private * @return {?} */ CarouselComponent.prototype.getVisibleIndexes = /** * @private * @return {?} */ function () { if (!this.singleSlideOffset) { return this._chunkedSlides[this._currentVisibleSlidesIndex] .map((/** * @param {?} slide * @return {?} */ function (slide) { return slide.index; })); } else { return this._slidesWithIndexes.map((/** * @param {?} slide * @return {?} */ function (slide) { return slide.index; })); } }; /** * Sets a slide, which specified through index, as active * @param index */ /** * Sets a slide, which specified through index, as active * @private * @param {?} index * @return {?} */ CarouselComponent.prototype._select = /** * Sets a slide, which specified through index, as active * @private * @param {?} index * @return {?} */ function (index) { if (isNaN(index)) { this.pause(); return; } if (!this.multilist) { /** @type {?} */ var currentSlide = this._slides.get(this._currentActiveSlide); if (currentSlide) { currentSlide.active = false; } } /** @type {?} */ var nextSlide = this._slides.get(index); if (nextSlide) { this._currentActiveSlide = index; nextSlide.active = true; this.activeSlide = index; this.activeSlideChange.emit(index); } }; /** * Starts loop of auto changing of slides */ /** * Starts loop of auto changing of slides * @private * @return {?} */ CarouselComponent.prototype.restartTimer = /** * Starts loop of auto changing of slides * @private * @return {?} */ function () { var _this = this; this.resetTimer(); /** @type {?} */ var interval = +this.interval; if (!isNaN(interval) && interval > 0) { this.currentInterval = this.ngZone.runOutsideAngular((/** * @return {?} */ function () { return setInterval((/** * @return {?} */ function () { /** @type {?} */ var nInterval = +_this.interval; _this.ngZone.run((/** * @return {?} */ function () { if (_this.isPlaying && !isNaN(_this.interval) && nInterval > 0 && _this.slides.length) { _this.nextSlideFromInterval(); } else { _this.pause(); } })); }), interval); })); } }; Object.defineProperty(CarouselComponent.prototype, "multilist", { get: /** * @return {?} */ function () { return this.itemsPerSlide > 1; }, enumerable: true, configurable: true }); /** * Stops loop of auto changing of slides */ /** * Stops loop of auto changing of slides * @private * @return {?} */ CarouselComponent.prototype.resetTimer = /** * Stops loop of auto changing of slides * @private * @return {?} */ function () { if (this.currentInterval) { clearInterval(this.currentInterval); this.currentInterval = void 0; } }; CarouselComponent.decorators = [ { type: Component, args: [{ selector: 'carousel', template: "<div (mouseenter)=\"pause()\"\n (mouseleave)=\"onMouseLeave()\"\n (mouseup)=\"onMouseUp()\"\n (keydown)=\"keydownPress($event)\"\n (focusin)=\"pauseFocusIn()\"\n (focusout)=\"pauseFocusOut()\"\n class=\"carousel slide\" tabindex=\"0\">\n <ol class=\"carousel-indicators\" *ngIf=\"showIndicators && slides.length > 1\">\n <li *ngFor=\"let slide of indicatorsSlides(); let i = index;\"\n [class.active]=\"slide.active === true\"\n (click)=\"selectSlide(i)\">\n </li>\n </ol>\n <div class=\"carousel-inner\" [ngStyle]=\"{'display': multilist ? 'flex' : 'block'}\">\n <ng-content></ng-content>\n </div>\n <a class=\"left carousel-control carousel-control-prev\"\n [class.disabled]=\"activeSlide === 0 && noWrap\"\n (click)=\"previousSlide()\" *ngIf=\"slides.length > 1\"\n tabindex=\"0\" role=\"button\">\n <span class=\"icon-prev carousel-control-prev-icon\" aria-hidden=\"true\"></span>\n <span *ngIf=\"isBs4\" class=\"sr-only\">Previous</span>\n </a>\n <a class=\"right carousel-control carousel-control-next\"\n [class.disabled]=\"isLast(activeSlide) && noWrap\"\n (click)=\"nextSlide()\" *ngIf=\"slides.length > 1\"\n tabindex=\"0\" role=\"button\">\n <span class=\"icon-next carousel-control-next-icon\" aria-hidden=\"true\"></span>\n <span class=\"sr-only\">Next</span>\n </a>\n</div>\n" }] } ]; /** @nocollapse */ CarouselComponent.ctorParameters = function () { return [ { type: CarouselConfig }, { type: NgZone } ]; }; CarouselComponent.propDecorators = { noWrap: [{ type: Input }], noPause: [{ type: Input }], showIndicators: [{ type: Input }], pauseOnFocus: [{ type: Input }], indicatorsByChunk: [{ type: Input }], itemsPerSlide: [{ type: Input }], singleSlideOffset: [{ type: Input }], isAnimated: [{ type: Input }], activeSlideChange: [{ type: Output }], slideRangeChange: [{ type: Output }], activeSlide: [{ type: Input }], startFromIndex: [{ type: Input }], interval: [{ type: Input }] }; return CarouselComponent; }()); export { CarouselComponent }; if (false) { /** @type {?} */ CarouselComponent.prototype.noWrap; /** @type {?} */ CarouselComponent.prototype.noPause; /** @type {?} */ CarouselComponent.prototype.showIndicators; /** @type {?} */ CarouselComponent.prototype.pauseOnFocus; /** @type {?} */ CarouselComponent.prototype.indicatorsByChunk; /** @type {?} */ CarouselComponent.prototype.itemsPerSlide; /** @type {?} */ CarouselComponent.prototype.singleSlideOffset; /** * Turn on/off animation. Animation doesn't work for multilist carousel * @type {?} */ CarouselComponent.prototype.isAnimated; /** * Will be emitted when active slide has been changed. Part of two-way-bindable [(activeSlide)] property * @type {?} */ CarouselComponent.prototype.activeSlideChange; /** * Will be emitted when active slides has been changed in multilist mode * @type {?} */ CarouselComponent.prototype.slideRangeChange; /** @type {?} */ CarouselComponent.prototype.startFromIndex; /** * @type {?} * @protected */ CarouselComponent.prototype.currentInterval; /** * @type {?} * @protected */ CarouselComponent.prototype._currentActiveSlide; /** * @type {?} * @protected */ CarouselComponent.prototype._interval; /** * @type {?} * @protected */ CarouselComponent.prototype._slides; /** * @type {?} * @protected */ CarouselComponent.prototype._chunkedSlides; /** * @type {?} * @protected */ CarouselComponent.prototype._slidesWithIndexes; /** * @type {?} * @protected */ CarouselComponent.prototype._currentVisibleSlidesIndex; /** * @type {?} * @protected */ CarouselComponent.prototype.isPlaying; /** * @type {?} * @protected */ CarouselComponent.prototype.destroyed; /** @type {?} */ CarouselComponent.prototype.getActive; /** * @type {?} * @private */ CarouselComponent.prototype.makeSlidesConsistent; /** * @type {?} * @private */ CarouselComponent.prototype.ngZone; } //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2Fyb3VzZWwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vbmd4LWJvb3RzdHJhcC9jYXJvdXNlbC8iLCJzb3VyY2VzIjpbImNhcm91c2VsLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBa0JBLE9BQU8sRUFDTCxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQWEsTUFBTSxFQUMxRCxNQUFNLGVBQWUsQ0FBQztBQUV2QixPQUFPLEVBQUUsS0FBSyxFQUFFLFVBQVUsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBRXhELE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUNuRCxPQUFPLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBRSxNQUFNLFNBQVMsQ0FBQzs7O0lBSXJELFVBQU87SUFDUCxPQUFJO0lBQ0osT0FBSTs7Ozs7Ozs7O0FBTU47SUFvRkUsMkJBQVksTUFBc0IsRUFBVSxNQUFjO1FBQWQsV0FBTSxHQUFOLE1BQU0sQ0FBUTs7O1FBckVqRCxzQkFBaUIsR0FBRyxLQUFLLENBQUM7O1FBRTFCLGtCQUFhLEdBQUcsQ0FBQyxDQUFDOzs7UUFHbEIsc0JBQWlCLEdBQUcsS0FBSyxDQUFDOzs7O1FBRTFCLGVBQVUsR0FBRyxLQUFLLENBQUM7Ozs7UUFJNUIsc0JBQWlCLEdBQXlCLElBQUksWUFBWSxDQUFTLEtBQUssQ0FBQyxDQUFDOzs7O1FBSTFFLHFCQUFnQixHQUEyQixJQUFJLFlBQVksRUFBWSxDQUFDOztRQW1CeEUsbUJBQWMsR0FBRyxDQUFDLENBQUM7UUF3QlQsWUFBTyxHQUErQixJQUFJLFVBQVUsRUFBa0IsQ0FBQztRQUd2RSwrQkFBMEIsR0FBRyxDQUFDLENBQUM7UUFFL0IsY0FBUyxHQUFHLEtBQUssQ0FBQztRQThINUIsY0FBUzs7OztRQUFHLFVBQUMsS0FBcUIsSUFBSyxPQUFBLEtBQUssQ0FBQyxNQUFNLEVBQVosQ0FBWSxFQUFD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