1.0.4 • Published 6 months ago

server-table-pagination v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

server-table-pagination

A server-side pagination component for Angular applications. This component utilizes Tailwind CSS for styling, ensure you have it installed in your project.

Version

1.0.3

Dependencies

  • Angular: ^16.2.0
  • tslib: ^2.3.0
  • Tailwind CSS

Installation

npm install server-table-pagination

Ensure you have Tailwind CSS installed and configured in your project.

npm install tailwindcss

Usage

Import ServerTablePaginationModule in your app module:

import { ServerTablePaginationModule } from 'server-table-pagination';

@NgModule({
  imports: [ ServerTablePaginationModule ]
})
export class AppModule { }

Use the server-table-pagination component in your template:

<lib-server-table-pagination
  [limit]="10"
  [offset]="0"
  [count]="100"
  [inputPlaceHolderText]="'Search'"
  [showInputSearch]="true"
  (filterSearchChanged)="onFilterSearchChanged($event)">
</lib-server-table-pagination>

Events

  • filterSearchChanged: Emitted when pagination controls are interacted or search text is changed.
1.0.4

6 months ago

1.0.3

7 months ago

1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago