Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 18.1 #3519

Merged
merged 28 commits into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
e3a652a
fix(cascading-combos): bind cell value, ngIf for progress bars
ddaribo Jun 20, 2024
bf0f12e
fix(cascading-combos): assign valueKeys, more changes
ddaribo Jun 25, 2024
cad7973
fix(Hgrid): Fixed sample data issue #3487 (#3502)
MarielaTihova Jun 28, 2024
22455c0
Merge branch 'vnext' into bpachilova/grid-cascading-combos-fix-3499
ddaribo Jun 28, 2024
6f72683
Merge pull request #3500 from IgniteUI/bpachilova/grid-cascading-comb…
kacheshmarova Jun 28, 2024
a03b45f
fix(treeGrid): Fixed sample #3440
MarielaTihova Jun 28, 2024
0827e7f
fix(mask): ensure single % appended on blur and removed on focus
georgianastasov Jul 1, 2024
2a573eb
Merge pull request #3504 from IgniteUI/ganastasov/fix-3493-vnext
kacheshmarova Jul 2, 2024
db3a8e3
fix(TGrid): Fixed tree-grid-multi-row-drag sample related to issue #3439
MarielaTihova Jul 3, 2024
d697f5a
refactor(calendar): migrate theme properties
simeonoff Jul 4, 2024
f3687dd
feat(icons): add service sample
simeonoff Jul 5, 2024
c69248d
chore(*): updating samples underlying ng version
ChronosSF Jul 5, 2024
2efaa07
Merge pull request #3506 from IgniteUI/mtihova/fix-issue-3439
dkamburov Jul 10, 2024
d675c93
Merge branch 'vnext' into simeonoff/samples-18.1.x
simeonoff Jul 10, 2024
dd8b89d
Merge branch 'vnext' into mtihova/fix-issue-3440
kdinev Jul 12, 2024
afacaff
Merge pull request #3503 from IgniteUI/mtihova/fix-issue-3440
kdinev Jul 12, 2024
b121464
Merge branch 'vnext' into simeonoff/samples-18.1.x
ChronosSF Jul 17, 2024
66d1514
Merge pull request #3508 from IgniteUI/simeonoff/samples-18.1.x
ChronosSF Jul 17, 2024
b0bf394
Updating to igniteui-angular 18.1 rc (#3510)
ChronosSF Jul 18, 2024
62dc19d
docs(pivotGrid): added layout sample
tishko0 Jul 4, 2024
2d5d31f
docs(pivotGrid): fixed property typo
tishko0 Jul 4, 2024
ca63ecf
docs(pivotGrid): Enable summaries, mentioned in docs
Jul 19, 2024
69fbefb
feat(pivot): Add toggles for various new pivotUI configurations.
skrustev Jul 19, 2024
2697fcb
Merge pull request #3507 from IgniteUI/ttonev/pgrid-layout-sample
Lipata Jul 19, 2024
6224bee
chore(*): ng update igniteui-angular
Lipata Jul 22, 2024
6e058b6
chore(*): remove --legacy-peer-deps
Lipata Jul 22, 2024
ccf7407
chore(*): ng update @igniteui/angular-schematics
Lipata Jul 22, 2024
49a8fb4
Merge pull request #3518 from IgniteUI/nalipiev/update-18-1
Lipata Jul 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading