-
Notifications
You must be signed in to change notification settings - Fork 380
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
Improved Angular compatibility #2229
Merged
lucas-koehler
merged 19 commits into
eclipsesource:master
from
JBBianchi:angular-v15-no-flex-layout
Jan 3, 2024
Merged
Changes from 8 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
430fbec
fix(angular-material): improved compatibility by removing angular fle…
JBBianchi 71533e8
fix(angular-test): added broader compatibility with angular
JBBianchi acf87c7
Merge branch 'master' into angular-v15-no-flex-layout
JBBianchi e343b9d
fix(angular-material): fixed @angular-devkit/build-angular version
JBBianchi a875f74
fix(pnpm): forced usage of angular v15
JBBianchi 2d4599a
fix(angular-material): fixed tests by removing empty component styles.
JBBianchi d7ff134
fix(angular): updated to Angular 16
JBBianchi ed3b902
fix(angular-material): fixed linting
JBBianchi 3ebb626
fix(angular-material): PR review fixes
JBBianchi 6ec6c9d
Merge branch 'master' into angular-v15-no-flex-layout
JBBianchi 19af601
fix(angular-material): added padding on "mat cards"
JBBianchi ca30fa0
Merge branch 'master' into angular-v15-no-flex-layout
lucas-koehler 47ff208
fix(angular): dropper support for angular v15 & range control event b…
JBBianchi 8eacb77
fix(angular): dropper support for angular v15 & range control event b…
JBBianchi 38d5960
Merge branch 'angular-v15-no-flex-layout' of https://github.com/JBBia…
JBBianchi fe5f906
Update pnpm lock file
lucas-koehler d23996f
Revert "Update pnpm lock file"
lucas-koehler 878fbe3
fix(angular): removed pnpm overrides in favor of dev deps
JBBianchi 44244a0
Update dependencies and restrict vue via pnpm override to ~3.3.13
lucas-koehler File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we still need these overrides now that we removed Angular 15 compatibility?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not 100% sure. If I'm not mistaken, as the packages declare a compatibility with Angular 16 and 17 (and maybe 18 in the future), pnpm will install the highest version compatible by default, so v17. So we need the overrides to say "build with v16 even if the lib is compatible with v17".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we use Angular
16
in thedevDependencies
and not16 || 17
? As we don't bundle Angular thepeerDependencies
version is the important one for the consumer and could still be16 || 17
even if thedevDependencies
only declare16
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sdirix thanks for your input, that's better indeed.