UNPKG

ng-ytl-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

25 lines (23 loc) 1.59 kB
import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { NzLocaleModule } from '../locale/index'; import { NzPaginationModule } from '../pagination/nz-pagination.module'; import { NzSpinModule } from '../spin/nz-spin.module'; import { NzRowExpandIconComponent } from './nz-row-expand-icon.component'; import { NzRowIndentComponent } from './nz-row-indent.component'; import { NzTableDividerDirective } from './nz-table-divider.directive'; import { NzTableFilterComponent } from './nz-table-filter.component'; import { NzTableSortComponent } from './nz-table-sort.component'; import { NzTableComponent } from './nz-table.component'; import { NzTbodyTrDirective } from './nz-tbody-tr.directive'; import { NzTbodyDirective } from './nz-tbody.directive'; import { NzTdDirective } from './nz-td.directive'; import { NzThDirective } from './nz-th.directive'; import { NzTheadDirective } from './nz-thead.directive'; @NgModule({ declarations: [ NzRowIndentComponent, NzRowExpandIconComponent, NzTableFilterComponent, NzTableComponent, NzThDirective, NzTdDirective, NzTheadDirective, NzTbodyDirective, NzTbodyTrDirective, NzTableDividerDirective, NzTableSortComponent ], exports : [ NzRowIndentComponent, NzRowExpandIconComponent, NzTableFilterComponent, NzTableComponent, NzThDirective, NzTdDirective, NzTheadDirective, NzTbodyDirective, NzTbodyTrDirective, NzTableDividerDirective, NzTableSortComponent ], imports : [ CommonModule, NzPaginationModule, NzSpinModule, NzLocaleModule ] }) export class NzTableModule { }