Skip to content

Commit 6f8549b

Browse files
committed
chore(*): add missing config modules
1 parent 2390037 commit 6f8549b

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

live-editing/configs/GridConfigGenerator.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export class GridConfigGenerator implements IConfigGenerator {
115115
additionalFiles: ['/src/app/directives/prevent-scroll.directive.ts', '/src/app/data/invoiceData.ts'],
116116
appModuleConfig: new AppModuleConfig({
117117
imports: ['IgxButtonModule', 'IgxButtonGroupModule', 'IgxGridModule',
118-
'IgxSwitchModule', 'GridGroupBySummarySampleComponent', 'IgxIconModule', 'IgxBadgeModule', 'IgxPreventDocumentScrollModule', 'IgxSwitchModule'],
118+
'IgxSwitchModule', 'GridGroupBySummarySampleComponent', 'IgxIconModule', 'IgxBadgeModule', 'IgxPreventDocumentScrollModule'],
119119
ngDeclarations: ['GridGroupBySummarySampleComponent'],
120120
ngImports: ['IgxPreventDocumentScrollModule', 'IgxButtonModule', 'IgxButtonGroupModule', 'IgxGridModule',
121121
'IgxIconModule', 'IgxBadgeModule', 'IgxSwitchModule']
@@ -203,10 +203,10 @@ export class GridConfigGenerator implements IConfigGenerator {
203203
appModuleConfig: new AppModuleConfig({
204204
imports: ['HttpClientModule', 'IgxAvatarModule', 'IgxBadgeModule', 'IgxButtonModule', 'IgxSnackbarModule',
205205
'IgxGridModule', 'IgxIconModule', 'IgxInputGroupModule', 'IgxSwitchModule', 'GridSelectionSampleComponent', 'IgxPreventDocumentScrollModule',
206-
'FinancialDataService'],
206+
'FinancialDataService', 'IgxButtonGroupModule'],
207207
ngDeclarations: ['GridSelectionSampleComponent'],
208208
ngImports: ['IgxPreventDocumentScrollModule', 'IgxAvatarModule', 'IgxBadgeModule', 'IgxButtonModule', 'IgxGridModule', 'IgxSnackbarModule',
209-
'IgxIconModule', 'IgxInputGroupModule', 'IgxSwitchModule', 'HttpClientModule'],
209+
'IgxIconModule', 'IgxInputGroupModule', 'IgxSwitchModule', 'IgxButtonGroupModule', 'HttpClientModule'],
210210
ngProviders: ['FinancialDataService']
211211
})
212212
}));
@@ -1095,9 +1095,9 @@ export class GridConfigGenerator implements IConfigGenerator {
10951095
'/src/app/data/customers.ts'
10961096
],
10971097
appModuleConfig: new AppModuleConfig({
1098-
imports: ['GridColumnSelectionComponent', 'IgxGridModule'],
1098+
imports: ['GridColumnSelectionComponent', 'IgxGridModule', 'IgxSelectModule'],
10991099
ngDeclarations: ['GridColumnSelectionComponent'],
1100-
ngImports: ['IgxGridModule'],
1100+
ngImports: ['IgxGridModule', 'IgxSelectModule'],
11011101
ngProviders: []
11021102
})
11031103
}));
@@ -1427,10 +1427,10 @@ export class GridConfigGenerator implements IConfigGenerator {
14271427
component: 'GridStatePersistenceSampleComponent',
14281428
additionalFiles: ['/src/app/directives/prevent-scroll.directive.ts', '/src/app/data/financialData.ts', '/src/app/services/financial.service.ts'],
14291429
appModuleConfig: new AppModuleConfig({
1430-
imports: ['GridStatePersistenceSampleComponent', 'IgxAvatarModule', 'IgxGridModule', 'IgxSwitchModule',
1430+
imports: ['GridStatePersistenceSampleComponent', 'IgxAvatarModule', 'IgxGridModule', 'IgxSwitchModule', 'IgxIconModule', 'IgxButtonModule',
14311431
'IgxExcelExporterService', 'IgxCsvExporterService', 'IgxPreventDocumentScrollModule', 'FinancialDataService'],
14321432
ngDeclarations: ['GridStatePersistenceSampleComponent'],
1433-
ngImports: ['IgxPreventDocumentScrollModule', 'IgxAvatarModule', 'IgxGridModule', 'IgxSwitchModule'],
1433+
ngImports: ['IgxPreventDocumentScrollModule', 'IgxAvatarModule', 'IgxGridModule', 'IgxSwitchModule', 'IgxIconModule', 'IgxButtonModule'],
14341434
ngProviders: ['FinancialDataService']
14351435
})
14361436
}));

live-editing/configs/TreeGridConfigGenerator.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -936,6 +936,7 @@ export class TreeGridConfigGenerator implements IConfigGenerator {
936936
configs.push(new Config({
937937
component: 'TreeGridColumnGroupSelectionComponent',
938938
additionalFiles: [
939+
'/src/app/directives/prevent-scroll.directive.ts',
939940
'/src/app/tree-grid/data/employees-flat-detailed.ts'
940941
],
941942
appModuleConfig: new AppModuleConfig({
@@ -1047,10 +1048,10 @@ export class TreeGridConfigGenerator implements IConfigGenerator {
10471048
configs.push(new Config({
10481049
additionalFiles: ['/src/app/directives/prevent-scroll.directive.ts', '/src/app/tree-grid/data/orders.ts'],
10491050
appModuleConfig: new AppModuleConfig({
1050-
imports: ['IgxPreventDocumentScrollModule', 'IgxTreeGridModule', 'TreeGridExportVisualizationComponent', 'IgxToggleModule',
1051+
imports: ['IgxPreventDocumentScrollModule', 'IgxTreeGridModule', 'TreeGridExportVisualizationComponent', 'IgxToggleModule' , 'IgxButtonModule',
10511052
'IgxExcelExporterService', 'IgxCsvExporterService'],
10521053
ngDeclarations: ['TreeGridExportVisualizationComponent'],
1053-
ngImports: ['IgxPreventDocumentScrollModule', 'IgxTreeGridModule', 'IgxToggleModule'],
1054+
ngImports: ['IgxPreventDocumentScrollModule', 'IgxTreeGridModule', 'IgxToggleModule', 'IgxButtonModule'],
10541055
ngProviders: ['IgxExcelExporterService', 'IgxCsvExporterService']
10551056
}),
10561057
component: 'TreeGridExportVisualizationComponent',

0 commit comments

Comments
 (0)