Skip to content

Commit bcaaaff

Browse files
authored
Merge pull request #3519 from IgniteUI/vnext
release 18.1
2 parents 2ace00a + 49a8fb4 commit bcaaaff

File tree

38 files changed

+4516
-19585
lines changed

38 files changed

+4516
-19585
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: npm config set ${{secrets.IG_SCOPE}}:_auth=${{secrets.IG_TOKEN}}
5050

5151
- name: Install dependencies
52-
run: npm ci --legacy-peer-deps
52+
run: npm ci
5353

5454
- name: Run lint
5555
run: npm run lint

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: npm config set ${{secrets.IG_SCOPE}}:_auth=${{secrets.IG_TOKEN}}
5555

5656
- name: Install dependencies
57-
run: npm ci --legacy-peer-deps
57+
run: npm ci
5858

5959
- name: Run lint
6060
run: npm run lint

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ steps:
1717
- task: Npm@1
1818
inputs:
1919
command: 'custom'
20-
customCommand: 'install --legacy-peer-deps'
20+
customCommand: 'install'
2121
customEndpoint: 'public proget'
2222
env:
2323
AZURE_PIPELINES: "true"

live-editing/configs/IconConfigGenerator.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import { HttpClientModule } from '@angular/common/http';
22
import {IgxIconModule,
3+
IgxAvatarModule,
34
IgxInputGroupModule,
45
IgxButtonModule,
6+
IgxCardModule,
57
IgxSelectModule} from 'igniteui-angular';
68
import {AppModuleConfig, Config, IConfigGenerator} from 'igniteui-live-editing'
79
export class IconConfigGenerator implements IConfigGenerator {
@@ -45,6 +47,17 @@ export class IconConfigGenerator implements IConfigGenerator {
4547
shortenComponentPathBy: "/data-display/icon/"
4648
}));
4749

50+
// Icon Service Sample
51+
configs.push(new Config({
52+
component: 'IconServiceSampleComponent',
53+
appModuleConfig: new AppModuleConfig({
54+
imports: ['IgxAvatarModule', 'IgxButtonModule', 'IgxCardModule', 'IgxIconModule', 'IconServiceSampleComponent'],
55+
ngDeclarations: ['IconStylingSampleComponent'],
56+
ngImports: ['IgxAvatarModule', 'IgxButtonModule', 'IgxCardModule', 'IgxIconModule']
57+
}),
58+
shortenComponentPathBy: "/data-display/icon/"
59+
}));
60+
4861
// Material Symbols Sample
4962
configs.push(new Config({
5063
component: 'MaterialSymbolsComponent',

0 commit comments

Comments
 (0)