Releases: ssuperczynski/ngx-easy-table
11.1.0
feature - Column reorder
feature - Column header additional actions
feature - Custom pagination
more tests
11.0.0
Table refactor. It brings table header refactor for the next release, which will add custom table headers templates.
Breaking changes.
If you were using CSV export from additional actions menu, now you need to implement it like described on: https://ngx-easy-table.eu/#/additional-actions-template
- feature - API getNumberOfRowsPerPage fixes #259
- feature - loading template
- feature - additional actions template
- demo - Angular update to 8.2
- demo - mobile responsiveness
- demo - menu search
- bug - [context menu, additionalActions] - click outside should close menu
10.1.2
Fixes "Cannot read property 'nativeElement' of undefined" for PaginationComponent
10.1.1
Fixes wrong config caching
10.1.0
- API supports now row toggling. See https://ngx-easy-table.eu/#/template
- Angular8 documentation says that Core-js is not needed anymore so I removed this requirements from the library too.
10.0.0
This release is compiled using new ng-packagr and has additional features to work under Angular 8.
9.4.0
- feature - pinned column https://ngx-easy-table.eu/#/pinned
- feature - column class https://ngx-easy-table.eu/#/column-class
9.3.0
- you can now use global search by many items using
,
comma separator - fixed issue when No results message hasn't appeared in the table
- other small rendering issues
9.2.2
- This release fix issue with disappeared pagination when amount of the rows was lower than selected range.
9.2.1
Features
-
added option in the config to enable 3-way sort
threeWaySort: true;
see https://ngx-easy-table.eu/#/sort -
added option to define table id (useful when you write e2e tests), see https://ngx-easy-table.eu/#/many-tables
<ngx-table
[configuration]="configuration"
[id]="'table1'"
[data]="data"
[columns]="columns">
</ngx-table>
- packages update