import { Component } from '@angular/core'; import { DEMOS } from './demos'; // webpack html imports let titleDoc = require('html-loader!markdown-loader!./docs/title.md'); @Component({ selector: 'carousel-section', template: `

A slideshow component for cycling through elements—images or slides of text—like a carousel. Nested carousels are not supported.

Contents

Usage

Examples

Optional captions

Add captions to your slides easily with the .carousel-caption element within any <slide>. Place just about any optional HTML within there and it will be automatically aligned and formatted.

Configuring defaults

Dynamic Slides

API Reference

` }) export class CarouselSectionComponent { public name: string = 'Carousel'; public src: string = 'https://github.com/valor-software/ngx-bootstrap/tree/development/src/carousel'; public demos: any = DEMOS; public titleDoc: string = titleDoc; }