Skip to content

Commit 3f84a51

Browse files
committed
Merge branch 'vNext' of https://github.com/IgniteUI/igniteui-angular-samples into vNext
2 parents 976828b + 0622026 commit 3f84a51

31 files changed

Lines changed: 1384 additions & 1257 deletions

.github/workflows/build-app-crm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@v2
3434

3535
- name: Install dependencies
36-
run: npm ci --force
36+
run: npm ci
3737

3838
- name: Run lint
3939
run: npm run lint

.github/workflows/build-app-lob.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v2
3939

4040
- name: Install dependencies
41-
run: npm ci --force
41+
run: npm ci
4242

4343
- name: Run lint
4444
run: npm run lint

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ steps:
1212
- script: npm config set $(igScope):_auth=$(token)
1313
displayName: 'Npm config auth'
1414

15-
- script: npm ci --force
15+
- script: npm ci
1616
displayName: 'Install dependencies'
1717
env:
1818
AZURE_PIPELINES: "true"

live-editing/configs/GridConfigGenerator.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,16 @@ export class GridConfigGenerator implements IConfigGenerator {
473473
})
474474
}));
475475

476+
configs.push(new Config({
477+
component: 'GridExcelStyleEditingComponent',
478+
additionalFiles: ['/src/app/directives/prevent-scroll.directive.ts', '/src/app/data/nwindData.ts'],
479+
appModuleConfig: new AppModuleConfig({
480+
imports: ['GridExcelStyleEditingComponent', 'IgxGridModule', 'IgxPreventDocumentScrollModule'],
481+
ngDeclarations: ['GridExcelStyleEditingComponent'],
482+
ngImports: ['IgxPreventDocumentScrollModule', 'IgxGridModule']
483+
})
484+
}));
485+
476486
configs.push(new Config({
477487
component: 'GridEditingStyleSampleComponent',
478488
additionalFiles: ['/src/app/directives/prevent-scroll.directive.ts', '/src/app/data/nwindData.ts'],

0 commit comments

Comments
 (0)