-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed issue with ngClass for default node and value classes which was occuring in Ivy by switching to class. Added positive and negative state classes. Updated documentation. * Added ngAfterViewInit for initial positivity check * updated package version manually to be ready for publish * updated README checklist to accurately reflect todos
- Loading branch information
1 parent
f5a857d
commit c9cbcdb
Showing
4 changed files
with
64 additions
and
9 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
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,3 +1,3 @@ | ||
<div [ngClass]="stylePrefix" #valueHolder> | ||
<span [ngClass]="stylePrefix + '__value'">{{ formattedValue }}</span> | ||
<div [class]="stylePrefix" #valueHolder> | ||
<span [class]="stylePrefix + '__value'">{{ formattedValue }}</span> | ||
</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