Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ng-paginable) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
PaginableTableComponent This component represents a table that can be paginated and sorted, with an optional search bar and batch actions.
Inputs
id?: string (optional) - the id of the component.
showSearchInput: boolean = true - whether to show the search input.
options: PaginableTableOptions (optional) - options for the table. cursor is set to 'default' and hoverableRows is set to false by default.
headers: Array<PaginableTableHeader | string> - an array of table headers. The headers can be provided as an array of PaginableTableHeader objects or an array of strings. If an array of strings is provided, the headers will be mapped to PaginableTableHeader objects with the title and property set to the same string. The buttons, wrapping, onlyButtons, and align properties can also be set for each header.
pagination: PaginableTablePagination | Observable