File tree 4 files changed +16
-18
lines changed 4 files changed +16
-18
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import { TableExpansionExampleComponent } from './table-expansion-example.compon
16
16
import { TableGroupExampleComponent } from './table-group-example.component' ;
17
17
import { TableViewExampleComponent } from './table-view-example.component' ;
18
18
import { DemoComponentsModule } from '../../../../demo/components/demo-components.module' ;
19
- import { TableModule } from '../../ table.module' ;
19
+ import { TableModule } from '../table.module' ;
20
20
import { ToolbarModule } from '../../../toolbar/toolbar.module' ;
21
21
22
22
@NgModule ( {
Original file line number Diff line number Diff line change
1
+ export { NgxDataTableConfig } from './ngx-datatable-config' ;
2
+ export { NgxDataTableDndDirective } from './ngx-datatable-dnd.directive' ;
3
+ export { TableComponent } from './table.component' ;
4
+ export { TableConfig } from './table-config' ;
5
+ export { TableModule } from './table.module' ;
Original file line number Diff line number Diff line change @@ -5,22 +5,18 @@ import { FormsModule } from '@angular/forms';
5
5
import { DragulaModule , DragulaService } from 'ng2-dragula' ;
6
6
import { NgxDatatableModule } from '@swimlane/ngx-datatable' ;
7
7
8
- import { PaginationModule } from '../pagination/pagination.module' ;
9
- import { EmptyStateModule } from '../empty-state/empty-state.module' ;
10
- import { NgxDataTableConfig } from './basic-table/ngx-datatable-config' ;
11
- import { NgxDataTableDndDirective } from './basic-table/ngx-datatable-dnd.directive' ;
12
- import { TableBase } from './table-base' ;
13
- import { TableComponent } from './basic-table/table.component' ;
14
- import { TableConfig } from './basic-table/table-config' ;
15
- import { TableConfigBase } from './table-config-base' ;
16
- import { TableEvent } from './table-event' ;
17
- import { ToolbarModule } from '../toolbar/toolbar.module' ;
8
+ import { PaginationModule } from '../../pagination/pagination.module' ;
9
+ import { EmptyStateModule } from '../../empty-state/empty-state.module' ;
10
+ import { NgxDataTableConfig } from './ngx-datatable-config' ;
11
+ import { NgxDataTableDndDirective } from './ngx-datatable-dnd.directive' ;
12
+ import { TableComponent } from './table.component' ;
13
+ import { TableConfig } from './table-config' ;
14
+ import { TableEvent } from '../table-event' ;
15
+ import { ToolbarModule } from '../../toolbar/toolbar.module' ;
18
16
19
17
export {
20
18
NgxDataTableConfig ,
21
- TableBase ,
22
19
TableConfig ,
23
- TableConfigBase ,
24
20
TableEvent
25
21
} ;
26
22
Original file line number Diff line number Diff line change 1
- export { NgxDataTableConfig } from './basic-table/ngx-datatable-config' ;
2
- export { NgxDataTableDndDirective } from './basic-table/ngx-datatable-dnd.directive' ;
3
1
export { TableBase } from './table-base' ;
4
- export { TableComponent } from './basic-table/table.component' ;
5
- export { TableConfig } from './basic-table/table-config' ;
6
2
export { TableConfigBase } from './table-config-base' ;
7
3
export { TableEvent } from './table-event' ;
8
- export { TableModule } from './table.module' ;
4
+
5
+ export * from './basic-table/index' ;
You can’t perform that action at this time.
0 commit comments