Minimal, light-weight Angular ratings.
Installation
Install it with npm
npm install --save ng2-bar-rating
SystemJS
If you are using SystemJS, you should also adjust your configuration to point to the UMD bundle.
In your systemjs config file, map needs to tell the System loader where to look for ng2-bar-rating:
map: {
'ng2-bar-rating': 'node_modules/ng2-bar-rating/bundles/ngx-bar-rating.umd.js',
}
Predefined themes
Add the rating theme either in index.html
<link rel="stylesheet" href="../node_modules/ng2-bar-rating/themes/br-default-theme.css"/>
Or in the global style style.scss
(recommended)
- Pure css stars (default)
[theme]="'default'"
@import '~ngx-bar-rating/themes/br-default-theme'
- Bootstrap stars
[theme]="'bootstrap'"
@import '~ngx-bar-rating/themes/br-bootstrap-theme';
- Fontawesome stars
[theme]="'fontawesome'"
@import '~ngx-bar-rating/themes/br-fontawesome-theme';
- Fontawesome-o stars
[theme]="'fontawesome-o'"
@import '~ngx-bar-rating/themes/br-fontawesome-o-theme';
- Horizontal bars
[theme]="'horizontal'"
@import '~ngx-bar-rating/themes/br-horizontal-theme';
- Vertical bars
[theme]="'vertical'"
@import '~ngx-bar-rating/themes/br-vertical-theme';
- Custom stars
[theme]="'stars'"
@import '~ngx-bar-rating/themes/br-stars-theme';
- Movie rating
[theme]="'movie'"
@import '~ngx-bar-rating/themes/br-movie-theme';
- Square rating
[theme]="'square'"
@import '~ngx-bar-rating/themes/br-square-theme';
Rating style can be easily customized, check the classes used in any theme and add your own css.
You can also do the same for forms classes such as untouched, touched, dirty, invalid, valid ...etc
If you have a nice rating style you would like to share, prupose your theme and I will include it in the package.
Issues