UNPKG

nggridify2

Version:

ng-gridify reimagined for Angular2+. Generic grid for angularJS with paging, sorting, the ability to export CSV and configurable content.

16 lines (14 loc) 583 B
import { NgModule } from '@angular/core'; import { ngGridifyComponent } from './ng-gridify.component'; import { CommonModule } from '@angular/common'; import { PagePipe } from './pipes/ng-gridify.page.pipe' import { SortPipe } from './pipes/ng-gridify.sort.pipe' import { NgGridifyService } from './services/ng-gridify.service' @NgModule({ declarations: [ngGridifyComponent, PagePipe, SortPipe], providers: [NgGridifyService], exports: [ngGridifyComponent], imports: [CommonModule] // Used for ngFor }) export class ngGridifyModule {} export { ngGridifyComponent };