ng2-bootstrap-base-modified
Version:
Native Angular Bootstrap Components Typeahead modified
27 lines (25 loc) • 608 B
text/typescript
// todo: split
import { Injectable } from '@angular/core';
/** Provides default values for Pagination and pager components */
()
export class PaginationConfig {
public main: any = {
maxSize: void 0,
itemsPerPage: 10,
boundaryLinks: false,
directionLinks: true,
firstText: 'First',
previousText: 'Previous',
nextText: 'Next',
lastText: 'Last',
pageBtnClass: '',
rotate: true
};
public pager: any = {
itemsPerPage: 15,
previousText: '« Previous',
nextText: 'Next »',
pageBtnClass: '',
align: true
};
}