Skip to content

Commit e8cf8ed

Browse files
Merge pull request #8634 from IgniteUI/ibarakov/fix-8604-9.1.x
fix(grid): move components to grid common module
2 parents 31cd703 + 25e22bf commit e8cf8ed

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
@@ -29,6 +29,12 @@ import { IgxGridColumnModule } from './columns/column.module';
2929
import { IgxGridHeadersModule } from './headers/headers.module';
3030
import { IgxGridFilteringModule } from './filtering/base/filtering.module';
3131
import { IgxRowDirective } from './row.directive';
32+
import {
33+
IgxHeaderCollapseIndicatorDirective,
34+
IgxHeaderExpandIndicatorDirective,
35+
IgxRowCollapsedIndicatorDirective,
36+
IgxRowExpandedIndicatorDirective
37+
} from './grid/grid.directives';
3238
/**
3339
* @hidden
3440
*/
@@ -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
@@ -71,7 +81,11 @@ import { IgxRowDirective } from './row.directive';
7181
IgxGridSummaryModule,
7282
IgxGridToolbarModule,
7383
IgxAdvancedFilteringDialogComponent,
74-
IgxGridSharedModules
84+
IgxGridSharedModules,
85+
IgxRowExpandedIndicatorDirective,
86+
IgxRowCollapsedIndicatorDirective,
87+
IgxHeaderExpandIndicatorDirective,
88+
IgxHeaderCollapseIndicatorDirective,
7589
],
7690
imports: [
7791
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)