2019-06-14 03:58:30 +00:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
|
|
|
|
import {TableListComponent} from './table-list/table-list.component';
|
|
|
|
import {TableDetailComponent} from './table-detail/table-detail.component';
|
|
|
|
import {TableRoutingModule} from './tables-routing.module';
|
2019-06-13 19:02:34 +00:00
|
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
|
|
import { MatCardModule } from '@angular/material/card';
|
2019-06-14 03:58:30 +00:00
|
|
|
import { MatCheckboxModule } from '@angular/material/checkbox';
|
2019-06-13 19:02:34 +00:00
|
|
|
import { MatIconModule } from '@angular/material/icon';
|
2019-06-14 03:58:30 +00:00
|
|
|
import { MatInputModule } from '@angular/material/input';
|
|
|
|
import { MatPaginatorModule } from '@angular/material/paginator';
|
|
|
|
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
|
|
import { MatSortModule } from '@angular/material/sort';
|
|
|
|
import { MatTableModule } from '@angular/material/table';
|
|
|
|
import {CdkTableModule} from '@angular/cdk/table';
|
|
|
|
import {ReactiveFormsModule} from '@angular/forms';
|
|
|
|
import {FlexLayoutModule} from '@angular/flex-layout';
|
2019-06-13 19:02:34 +00:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
2019-06-14 03:58:30 +00:00
|
|
|
CdkTableModule,
|
|
|
|
FlexLayoutModule,
|
|
|
|
MatButtonModule,
|
2019-06-13 19:02:34 +00:00
|
|
|
MatCardModule,
|
2019-06-14 03:58:30 +00:00
|
|
|
MatCheckboxModule,
|
2019-06-13 19:02:34 +00:00
|
|
|
MatIconModule,
|
2019-06-14 03:58:30 +00:00
|
|
|
MatInputModule,
|
|
|
|
MatPaginatorModule,
|
|
|
|
MatProgressSpinnerModule,
|
|
|
|
MatSortModule,
|
|
|
|
MatTableModule,
|
|
|
|
ReactiveFormsModule,
|
|
|
|
TableRoutingModule
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
TableListComponent,
|
|
|
|
TableDetailComponent
|
2019-06-13 19:02:34 +00:00
|
|
|
]
|
|
|
|
})
|
2019-06-14 03:58:30 +00:00
|
|
|
export class TableModule {
|
|
|
|
}
|