Skip to content

Commit 95ee668

Browse files
committed
fix(grid): move components to grid common module
1 parent c717bcc commit 95ee668

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

projects/igniteui-angular/src/lib/grids/grid-common.module.ts

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ import { IgxGridColumnModule } from './columns/column.module';
3030
import { IgxGridHeadersModule } from './headers/headers.module';
3131
import { IgxGridFilteringModule } from './filtering/base/filtering.module';
3232
import { IgxRowDirective } from './row.directive';
33+
import {
34+
IgxHeaderCollapseIndicatorDirective,
35+
IgxHeaderExpandIndicatorDirective,
36+
IgxRowCollapsedIndicatorDirective,
37+
IgxRowExpandedIndicatorDirective
38+
} from './grid/grid.directives';
3339
/**
3440
* @hidden
3541
*/
@@ -43,7 +49,11 @@ import { IgxRowDirective } from './row.directive';
4349
IgxRowEditTabStopDirective,
4450
IgxGridBodyDirective,
4551
IgxGridFooterComponent,
46-
IgxAdvancedFilteringDialogComponent
52+
IgxAdvancedFilteringDialogComponent,
53+
IgxRowExpandedIndicatorDirective,
54+
IgxRowCollapsedIndicatorDirective,
55+
IgxHeaderExpandIndicatorDirective,
56+
IgxHeaderCollapseIndicatorDirective,
4757
],
4858
entryComponents: [
4959
IgxAdvancedFilteringDialogComponent
@@ -72,7 +82,11 @@ import { IgxRowDirective } from './row.directive';
7282
IgxGridSummaryModule,
7383
IgxGridToolbarModule,
7484
IgxAdvancedFilteringDialogComponent,
75-
IgxGridSharedModules
85+
IgxGridSharedModules,
86+
IgxRowExpandedIndicatorDirective,
87+
IgxRowCollapsedIndicatorDirective,
88+
IgxHeaderExpandIndicatorDirective,
89+
IgxHeaderCollapseIndicatorDirective,
7690
],
7791
imports: [
7892
IgxGridColumnModule,

projects/igniteui-angular/src/lib/grids/grid/grid.module.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
22
import {
33
IgxGroupAreaDropDirective,
44
IgxGroupByRowTemplateDirective,
5-
IgxRowExpandedIndicatorDirective,
6-
IgxRowCollapsedIndicatorDirective,
7-
IgxHeaderExpandIndicatorDirective,
8-
IgxHeaderCollapseIndicatorDirective,
95
IgxGridDetailTemplateDirective
106
} from './grid.directives';
117
import { IgxGridComponent } from './grid.component';
@@ -31,10 +27,6 @@ import { IgxGridExpandableCellComponent } from './expandable-cell.component';
3127
IgxGridGroupByRowComponent,
3228
IgxGroupByRowTemplateDirective,
3329
IgxGridDetailTemplateDirective,
34-
IgxRowExpandedIndicatorDirective,
35-
IgxRowCollapsedIndicatorDirective,
36-
IgxHeaderExpandIndicatorDirective,
37-
IgxHeaderCollapseIndicatorDirective,
3830
IgxGroupAreaDropDirective,
3931
IgxGridGroupingPipe,
4032
IgxGridPagingPipe,
@@ -51,10 +43,6 @@ import { IgxGridExpandableCellComponent } from './expandable-cell.component';
5143
IgxGridRowComponent,
5244
IgxGroupByRowTemplateDirective,
5345
IgxGridDetailTemplateDirective,
54-
IgxRowExpandedIndicatorDirective,
55-
IgxRowCollapsedIndicatorDirective,
56-
IgxHeaderExpandIndicatorDirective,
57-
IgxHeaderCollapseIndicatorDirective,
5846
IgxGroupAreaDropDirective,
5947
IgxGridGroupingPipe,
6048
IgxGridPagingPipe,

0 commit comments

Comments
 (0)