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

Provide up-to-date feedback on the progress of a workflow or action with simple yet flexible progress bars.

Contents

Usage

Examples

Static

Dynamic

Stacked

Configuring defaults


In bootstrap 4 progress has a different concept, no inner text, no default transition animation


Static

Dynamic

Stacked

API Reference

` }) export class ProgressbarSectionComponent { public name: string = 'Progressbar'; public src: string = 'https://github.com/valor-software/ngx-bootstrap/tree/development/src/progressbar'; public get isBs3(): boolean { return isBs3(); } public demos: any = DEMOS; public titleDoc: string = titleDoc; }