ng2-bootstrap-base-modified
Version:
Native Angular Bootstrap Components Typeahead modified
19 lines (16 loc) • 541 B
text/typescript
import { Component } from '@angular/core';
({
selector: 'demo-rating-custom',
templateUrl: './custom.html'
})
export class DemoRatingCustomComponent {
public x: number = 5;
public y: number = 2;
public ratingStates: any = [
{stateOn: 'glyphicon-ok-sign', stateOff: 'glyphicon-ok-circle'},
{stateOn: 'glyphicon-star', stateOff: 'glyphicon-star-empty'},
{stateOn: 'glyphicon-heart', stateOff: 'glyphicon-ban-circle'},
{stateOn: 'glyphicon-heart'},
{stateOff: 'glyphicon-off'}
];
}