Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
10f2ced
update to v20
freesbi Dec 22, 2025
4589eee
update to material deps to v20 and styles
freesbi Dec 22, 2025
ce2de93
update to other deps
freesbi Dec 22, 2025
7ab74c6
update to other deps
freesbi Dec 22, 2025
476d42f
update to other deps
freesbi Dec 22, 2025
2cece81
update to other deps
freesbi Dec 22, 2025
54c3a64
update to other deps
freesbi Dec 22, 2025
f5ed47a
update to other deps
freesbi Dec 22, 2025
41b0cdf
update to other deps
freesbi Dec 22, 2025
586e09b
update to other deps
freesbi Dec 22, 2025
d8510f7
update to other deps
freesbi Dec 22, 2025
4f3e1da
update to other deps
freesbi Dec 22, 2025
d2acca2
update to other deps
freesbi Dec 22, 2025
74c333b
fix several components after update
freesbi Jan 7, 2026
d5bda80
update to v21 and migrate components
freesbi Jan 7, 2026
28bb108
update to v21 and migrate components
freesbi Jan 7, 2026
c6add95
update other deps
freesbi Jan 7, 2026
6fa2816
fixes
freesbi Jan 7, 2026
3d1fb5f
fixes for tests configs and update deps
freesbi Jan 8, 2026
420c36f
fixes for tests configs and update deps
freesbi Jan 8, 2026
7642560
fix tests
Jan 12, 2026
0a5747f
update MAD version
Jan 12, 2026
3fad498
update README
Jan 12, 2026
849d0eb
fix formatting
Jan 12, 2026
3a8ad7e
fix formatting
Jan 12, 2026
bc91369
fixes for tests configs
freesbi Jan 12, 2026
164a796
fixes for tests configs
freesbi Jan 12, 2026
d360a02
adjustments for github verify workflow
freesbi Jan 12, 2026
7d56ed2
adjustments for github verify workflow
freesbi Jan 12, 2026
7c5caaf
adjustments for github verify workflow
freesbi Jan 12, 2026
54cc3d9
adjustments for github verify workflow
freesbi Jan 12, 2026
20e4a15
adjustments for github verify workflow
freesbi Jan 12, 2026
1c3877e
adjustments for jest configs
freesbi Jan 12, 2026
caab8fd
adjustments for github verify workflow
freesbi Jan 12, 2026
343496e
adjustments for github verify workflow
freesbi Jan 12, 2026
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
6 changes: 3 additions & 3 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 20
- name: Use Node.js 24
uses: actions/setup-node@v2
with:
node-version: '20'
node-version: '24'
- run: npm install
- run: npm run test
- run: npm run build:mat-add
- run: npm run prettier
- run: npm run eslint
- run: npm run test
- run: npm run build:demo
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ The versioning of material-addons is based on the Angular version. The Angular v

| Angular Version | Material Addons Version |
|-----------------|-------------------------|
| Angular 21 | 21.x.x |
| Angular 19 | 19.x.x |
| Angular 18 | 18.x.x |
| Angular 17 | 17.x.x |
Expand All @@ -32,6 +33,10 @@ The versioning of material-addons is based on the Angular version. The Angular v
_Hint: Changes marked as **visible change** directly affect your application during version upgrade. **Breaking**
requires your attention during upgrade._

- **21.0.1**: Upgrade to Angular 21

<details><summary>View older changelogs</summary>

- **19.0.13**: Add an input to make data-table expandable rows conditional
- **19.0.12**: CARCATDEV-13967 add templating for title in sidebar layout
- **19.0.11**: Updated fonts (remove arial and helvetica)
Expand All @@ -45,9 +50,6 @@ requires your attention during upgrade._
- **19.0.3**: Fix Endless Loop in Readonly FormField [#223](https://github.com/porscheinformatik/material-addons/pull/223)
- **19.0.2**: bugfix for version: fix dist output
- **19.0.0**: Upgrade to Angular 19

<details><summary>View older changelogs</summary>

- **18.0.8**: Major: fix cdkObserveContent deadlock in Chromium >= 135 version
- **18.0.7**: Fix Endless Loop in Readonly FormField [#223](https://github.com/porscheinformatik/material-addons/pull/223)
- **18.0.5**: FileUpload: Added additional param as 'removable' which allows user to remove file from fileList [#212](https://github.com/porscheinformatik/material-addons/pull/212)
Expand Down
26 changes: 26 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,31 @@
"cache": {
"enabled": false
}
},
"schematics": {
"@schematics/angular:component": {
"type": "component"
},
"@schematics/angular:directive": {
"type": "directive"
},
"@schematics/angular:service": {
"type": "service"
},
"@schematics/angular:guard": {
"typeSeparator": "."
},
"@schematics/angular:interceptor": {
"typeSeparator": "."
},
"@schematics/angular:module": {
"typeSeparator": "."
},
"@schematics/angular:pipe": {
"typeSeparator": "."
},
"@schematics/angular:resolver": {
"typeSeparator": "."
}
}
}
5 changes: 3 additions & 2 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type { Config } from 'jest';
import presets from 'jest-preset-angular/presets';
import { createCjsPreset } from 'jest-preset-angular/presets/index.js';

export default {
...presets.createCjsPreset(),
...createCjsPreset({ tsconfig: '<rootDir>/tsconfig.jest.json' }),
setupFilesAfterEnv: ['<rootDir>/setup-jest.ts'],
modulePathIgnorePatterns: ['<rootDir>/dist/'],
} satisfies Config;
Loading