valor-software/ng2-bootstrap

View on GitHub
src/progressbar/progressbar.component.html

Summary

Maintainability
Test Coverage
<bar [type]="type" [value]="_value" *ngIf="!isStacked">
  <ng-content></ng-content>
</bar>
<ng-template [ngIf]="isStacked">
  <bar *ngFor="let item of _value" [type]="item.type" [value]="item.value">{{ item.label }}</bar>
</ng-template>