UNPKG

ionic-angular

Version:

A powerful framework for building mobile and progressive web apps with JavaScript and Angular

65 lines 1.88 kB
import { ChangeDetectionStrategy, Component, ElementRef, Renderer, ViewEncapsulation } from '@angular/core'; import { Slides } from './slides'; /** * \@name Slide * \@description * The Slide component is a child component of [Slides](../Slides). The template * should be written as `ion-slide`. Any slide content should be written * in this component and it should be used in conjunction with [Slides](../Slides). * * See the [Slides API Docs](../Slides) for more usage information. * * \@demo /docs/demos/src/slides/ * @see {\@link /docs/api/components/slides/Slides/ Slides API Docs} */ var Slide = (function () { /** * @param {?} elementRef * @param {?} renderer * @param {?} _slides */ function Slide(elementRef, renderer, _slides) { this._slides = _slides; renderer.setElementClass(elementRef.nativeElement, 'swiper-slide', true); _slides.update(10); } /** * @hidden * @return {?} */ Slide.prototype.ngOnDestroy = function () { this._slides.update(10); }; return Slide; }()); export { Slide }; Slide.decorators = [ { type: Component, args: [{ selector: 'ion-slide', template: '<div class="slide-zoom">' + '<ng-content></ng-content>' + '</div>', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, },] }, ]; /** * @nocollapse */ Slide.ctorParameters = function () { return [ { type: ElementRef, }, { type: Renderer, }, { type: Slides, }, ]; }; function Slide_tsickle_Closure_declarations() { /** @type {?} */ Slide.decorators; /** * @nocollapse * @type {?} */ Slide.ctorParameters; /** @type {?} */ Slide.prototype._slides; } //# sourceMappingURL=slide.js.map