- Fix PaginatePipe bug when itemsPerPage is passed as a string (#61)
- Update codebase to Angular 2 rc.4.
- Fix default template showing up when using custom templates (#45)
- Fix buggy autoHide behaviour (#57)
- Fix infinite loop in PaginatePipe when used with other impure pipes.
- (build) Remove postinstall script which caused errors when using npm install. (moved to Travis file)
- Fix issue with custom templates still showing default template initially.
- Use OnPush change detection strategy for big efficiency gains (PR #40)
- Occasional flickering of active page link when changing pages also handled by the above.
- (build) Update Typings to 1.x
- Fix broken change detechtion when replacing collection items with new values (PR #36).
- Various small fixes and added a test (PR #33).
- Update to Angular 2 rc.1
- Note: This version is only compatible with Angular 2 beta.17 and above!
- Update
*ngFor
syntax to align with beta.17. - Update PaginatePipe to use new pipe API from beta.16 (PR #24).
- Update tests to reflect changes to async / inject API in beta.16
- Add missing devDependiencies to package.json
- Compatible with Angular 2 beta.15 and below.
- Fix bindings of the
directionLinks
andautoHide
attributes when used with literal values. (fixes #20) - Remove the styles which cause the links to truncate on small screens.
- Change the default ul class name from
.pagination
to.ng2-pagination
to avoid conflicts with existing CSS frameworks. (fixes #18)
- Fixed PaginationControlsCmp.outOfBoundCorrection() to prevent it returning
0
when the collection is empty (f7f9bd9). - Added System.register bundle build (
dist/ng2-pagination-bundle.js
)
- Fixed minificaton of demo app
- Use Sass for demo styles
- Removed
PaginationControlsDirective
, and simplified the way custom templates are specified (just put your template inside the<pagination-controls>
tags and use a local variable to access the API (see Readme). - Removed
PAGINATION_DIRECTIVES
exported constant, since there is only 1 component to export now.
Hello world! First beta release, starting changelog from here.