Skip to content

Commit

Permalink
fix(bar service): not disappear after complete
Browse files Browse the repository at this point in the history
  • Loading branch information
kKen94 committed Aug 3, 2020
1 parent 5a985ef commit 19e498e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
11 changes: 6 additions & 5 deletions projects/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kken94/ngx-progress",
"version": "1.5.0",
"version": "1.5.1",
"description": "The most powerful and customizable progress bar for Angular ✨",
"license": "MIT",
"homepage": "https://kken94.github.io/ngx-progress/",
Expand Down Expand Up @@ -38,8 +38,9 @@
"peerDependencies": {
"@angular/core": "~9.1.2",
"rxjs": "~6.5.5"
},
"dependencies": {
"tslib": "^2.0.0"
}
}
,
"dependencies": {
"tslib": "^2.0.0"
}
}
3 changes: 2 additions & 1 deletion projects/lib/src/lib/ngx-progress.component.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<ng-container *ngIf="progressService.isEnable">
<div class="overlay" *ngIf="progressService.isStarted && overlay"></div>
<div class="progress-overlay" *ngIf="progressService.isStarted && overlay"></div>
<ngx-vendor-bar
*ngIf="progressService.isStarted"
[includeSpinner]="showSpinner"
[includeBar]="showBar"
[barHeight]="barHeight"
Expand Down

0 comments on commit 19e498e

Please sign in to comment.