ng2-bootstrap-base-modified
Version:
Native Angular Bootstrap Components Typeahead modified
24 lines (21 loc) • 646 B
text/typescript
import { Component, ViewEncapsulation } from '@angular/core';
({
selector: 'demo-pagination-styling',
// encapsulation: ViewEncapsulation.None,
templateUrl: './styling-global.html',
/* tslint:disable no-unused-css*/
styles: [`
.btn-custom a {
background: #31b0d5;
}
`]
})
export class DemoPaginationStylingComponent {
public totalItems: number = 64;
public currentPage: number = 4;
public smallnumPages:number = 0;
public pageChanged(event: any): void {
console.log('Page changed to: ' + event.page);
console.log('Number items per page: ' + event.itemsPerPage);
}
}