Skip to content

Commit

Permalink
Merge pull request #3519 from IgniteUI/vnext
Browse files Browse the repository at this point in the history
release 18.1
  • Loading branch information
ChronosSF authored Jul 23, 2024
2 parents 2ace00a + 49a8fb4 commit bcaaaff
Show file tree
Hide file tree
Showing 38 changed files with 4,516 additions and 19,585 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-app-crm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: npm config set ${{secrets.IG_SCOPE}}:_auth=${{secrets.IG_TOKEN}}

- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci

- name: Run lint
run: npm run lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-app-lob.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: npm config set ${{secrets.IG_SCOPE}}:_auth=${{secrets.IG_TOKEN}}

- name: Install dependencies
run: npm ci --legacy-peer-deps
run: npm ci

- name: Run lint
run: npm run lint
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ steps:
- task: Npm@1
inputs:
command: 'custom'
customCommand: 'install --legacy-peer-deps'
customCommand: 'install'
customEndpoint: 'public proget'
env:
AZURE_PIPELINES: "true"
Expand Down
13 changes: 13 additions & 0 deletions live-editing/configs/IconConfigGenerator.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { HttpClientModule } from '@angular/common/http';
import {IgxIconModule,
IgxAvatarModule,
IgxInputGroupModule,
IgxButtonModule,
IgxCardModule,
IgxSelectModule} from 'igniteui-angular';
import {AppModuleConfig, Config, IConfigGenerator} from 'igniteui-live-editing'
export class IconConfigGenerator implements IConfigGenerator {
Expand Down Expand Up @@ -45,6 +47,17 @@ export class IconConfigGenerator implements IConfigGenerator {
shortenComponentPathBy: "/data-display/icon/"
}));

// Icon Service Sample
configs.push(new Config({
component: 'IconServiceSampleComponent',
appModuleConfig: new AppModuleConfig({
imports: ['IgxAvatarModule', 'IgxButtonModule', 'IgxCardModule', 'IgxIconModule', 'IconServiceSampleComponent'],
ngDeclarations: ['IconStylingSampleComponent'],
ngImports: ['IgxAvatarModule', 'IgxButtonModule', 'IgxCardModule', 'IgxIconModule']
}),
shortenComponentPathBy: "/data-display/icon/"
}));

// Material Symbols Sample
configs.push(new Config({
component: 'MaterialSymbolsComponent',
Expand Down
Loading

0 comments on commit bcaaaff

Please sign in to comment.