12 lines
511 B
HTML
12 lines
511 B
HTML
<ng-container *ngIf="progressNumber >= 0">
|
|
<progress max="100" [value]="progressNumber" role="progressbar" [attr.aria-valuenow]="progressNumber"
|
|
[attr.aria-valuetext]="progressBarValueText" [attr.aria-describedby]="ariaDescribedBy">
|
|
</progress>
|
|
<div class="core-progress-text">
|
|
<span class="sr-only" *ngIf="a11yText">{{ a11yText | translate }}</span>
|
|
{{ text }}
|
|
</div>
|
|
</ng-container>
|
|
|
|
<ion-progress-bar *ngIf="progressNumber < 0" [color]="color" type="indeterminate" />
|