-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE: Following progress theme variables were renamed: progress-bar-height-xlg -> progress-bar-giant-height progress-bar-height-lg -> progress-bar-large-height progress-bar-height -> progress-bar-medium-height progress-bar-height-sm -> progress-bar-small-height progress-bar-height-xs -> progress-bar-tiny-height progress-bar-font-size-xlg -> progress-bar-giant-text-font-size progress-bar-font-size-lg -> progress-bar-large-text-font-size progress-bar-font-size -> progress-bar-medium-text-font-size progress-bar-font-size-sm -> progress-bar-small-text-font-size progress-bar-font-size-xs -> progress-bar-tiny-text-font-size progress-bar-radius -> progress-bar-border-radius progress-bar-bg -> progress-bar-[status]-background-color progress-bar-font-color -> progress-bar-[status]-background-color progress-bar-font-weight -> progress-bar-[size]-text-font-weight progress-bar-primary-bg -> progress-bar-[status]-background-color progress-bar-success-bg -> progress-bar-[status]-background-color progress-bar-info-bg -> progress-bar-[status]-background-color progress-bar-warning-bg -> progress-bar-[status]-background-color progress-bar-danger-bg -> progress-bar-[status]-background-color 'progress-bar-default-bg' removed. Size values changed from 'xs', 'sm', 'lg', 'xlg' changed to 'tiny', 'small', 'medium', 'large', 'giant'. Size classes now set on nb-progress-bar element. Also class naming changed to 'size-[size-name]', 'status-[status-name]'.
- Loading branch information
Showing
5 changed files
with
177 additions
and
114 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
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
10 changes: 5 additions & 5 deletions
10
src/playground/with-layout/progress-bar/progress-bar-size.component.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,9 +1,9 @@ | ||
<nb-card> | ||
<nb-card-body> | ||
<nb-progress-bar [value]="20" size="xs">xs</nb-progress-bar> | ||
<nb-progress-bar [value]="40" size="sm">sm</nb-progress-bar> | ||
<nb-progress-bar [value]="60">none</nb-progress-bar> | ||
<nb-progress-bar [value]="80" size="lg">lg</nb-progress-bar> | ||
<nb-progress-bar [value]="100" size="xlg">xlg</nb-progress-bar> | ||
<nb-progress-bar [value]="20" size="tiny">tiny</nb-progress-bar> | ||
<nb-progress-bar [value]="40" size="small">small</nb-progress-bar> | ||
<nb-progress-bar [value]="60">medium</nb-progress-bar> | ||
<nb-progress-bar [value]="80" size="large">large</nb-progress-bar> | ||
<nb-progress-bar [value]="100" size="giant">giant</nb-progress-bar> | ||
</nb-card-body> | ||
</nb-card> |