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

Collapse component allows you to toggle content on your pages with a bit of JavaScript and some classes. Flexible component that utilizes a handful of classes (from the required transitions component(not yet implemented)) for easy toggle behavior.

Contents

Usage

Examples

API Reference

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