-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(demo): fix template bindings (#2863)
- Loading branch information
1 parent
e625faa
commit 5632902
Showing
16 changed files
with
23 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<div *ngFor="let alert of alerts"> | ||
<alert [type]="alert.type" dismissible="true">{{ alert.msg }}</alert> | ||
<alert [type]="alert.type" [dismissible]="true">{{ alert.msg }}</alert> | ||
</div> | ||
<button type="button" class="btn btn-primary" (click)="reset()">Reset</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
demo/src/app/components/+progressbar/demos/bs3/config/config.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<progressbar class="progress-striped active" value="136" type="danger"><i>136 / 150</i></progressbar> | ||
<progressbar class="progress-striped active" [value]="136" type="danger"><i>136 / 150</i></progressbar> |
2 changes: 1 addition & 1 deletion
2
demo/src/app/components/+progressbar/demos/bs3/stacked/stacked.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
demo/src/app/components/+progressbar/demos/bs3/static/static.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<div class="row"> | ||
<div class="col-sm-4"> | ||
<progressbar value="55"></progressbar> | ||
<progressbar [value]="55"></progressbar> | ||
</div> | ||
<div class="col-sm-4"> | ||
<progressbar class="progress-striped" value="22" type="warning">22%</progressbar> | ||
<progressbar class="progress-striped" [value]="22" type="warning">22%</progressbar> | ||
</div> | ||
<div class="col-sm-4"> | ||
<progressbar class="progress-striped active" max="200" value="166" type="danger"><i>166 / 200</i></progressbar> | ||
<progressbar class="progress-striped active" max="200" [value]="166" type="danger"><i>166 / 200</i></progressbar> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
demo/src/app/components/+progressbar/demos/bs4/stacked/stacked.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
demo/src/app/components/+progressbar/demos/bs4/static/static.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<div class="row"> | ||
<div class="col-sm-4"> | ||
<progressbar class="progress" value="55" max="100"></progressbar> | ||
<progressbar class="progress" [value]="55" [max]="100"></progressbar> | ||
</div> | ||
<div class="col-sm-4"> | ||
<progressbar class="progress progress-striped" value="22" max="100" type="warning">22%</progressbar> | ||
<progressbar class="progress progress-striped" [value]="22" [max]="100" type="warning">22%</progressbar> | ||
</div> | ||
<div class="col-sm-4"> | ||
<progressbar class="progress progress-striped active" max="200" value="166" type="danger"><i>166 / 200</i></progressbar> | ||
<progressbar class="progress progress-striped active" [max]="200" [value]="166" type="danger"><i>166 / 200</i></progressbar> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters