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

Angular 15 Upgrade using MDC Components #131

Merged
merged 27 commits into from
Jul 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
593e3c9
Angular 15 Upgrade using "ng update" only (uses legacy material compo…
Laess3r Mar 13, 2023
093d414
Angular 15 Upgrade
Laess3r Mar 13, 2023
128d93d
Merge remote-tracking branch 'origin/master' into angular-15
Laess3r Mar 30, 2023
48740a8
Show tooltips in toolbar burger menu (fix)
Laess3r Mar 30, 2023
b47bcfe
Added rotobo font and material icons
Laess3r Apr 3, 2023
7012cea
Angular 15
Laess3r May 10, 2023
1d412f9
Material 15: Fix readonly form field
Laess3r May 11, 2023
17b5709
Material 15: Fix readonly form field
Laess3r May 11, 2023
fb2466f
Material 15: Fix readonly form field
Laess3r May 11, 2023
8a15950
Material 15: Fix navigation (part 1)
Laess3r May 11, 2023
f7dcd0d
Material 15: Fix navigation (part 2)
Laess3r May 11, 2023
0de0990
Material 15: Fix navigation (part 2)
Laess3r May 11, 2023
df59c7b
remove mad-card css
Laess3r May 14, 2023
71fbf05
fix styling issues
stefan-isakovic Jun 7, 2023
6651644
restore read-only, fix error message overlapping other field, fix mat…
stefan-isakovic Jul 18, 2023
7d10dba
Fix styling for mat-card
Wagei Jul 20, 2023
cf14c5b
Update dependencies.
Laess3r Jul 24, 2023
0753ec1
Update readme
Laess3r Jul 24, 2023
b2ab899
Update readme
Laess3r Jul 24, 2023
f8be2a4
Update readme
Laess3r Jul 24, 2023
01c763b
Merge remote-tracking branch 'origin/master' into angular-15
Laess3r Jul 24, 2023
2e2dc07
Update nodejs to 18
Laess3r Jul 24, 2023
80baf27
Fix github build pipelines
Laess3r Jul 24, 2023
ed76d2a
Replace angular FlexLayout
Laess3r Jul 24, 2023
93799f5
Remove stylesheets for mat chip
Laess3r Jun 26, 2023
77e3184
Fix chips
Laess3r Jul 25, 2023
45c7c29
Error color in POA theme
Laess3r Jul 25, 2023
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
16 changes: 0 additions & 16 deletions .browserslistrc

This file was deleted.

6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '18'
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm run publish:mat-add
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- run: npm run build:mat-add
- run: npm install --no-optional
- run: npm install
- run: npm run publish:demo-ci
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
5 changes: 3 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '18'
- run: npm install
- run: npm run build:mat-add
- run: npm install --no-optional
- run: npm install
- run: npm run build:demo
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,15 @@ found in the [src directory](https://github.com/porscheinformatik/material-addon
_Hint: Changes marked as **visible change** directly affect your application during version upgrade. **Breaking**
requires your attention during upgrade._

- **v15.0.0**: **MAJOR ANGULAR 15 RELEASE**
- **breaking changes** - [#131 Upgrade to Angular 15 with MDC Components](https://github.com/porscheinformatik/material-addons/pull/131)
- This version requires your application to use Angular 15
- The framework is now based on Angular Material components using MDC (Material Design Components)

<details><summary>View older changelogs</summary>
- **v14.1.6**: Show tooltips in toolbar action burger menu
- **v14.1.4**: data-table fixes: action button became too small for tables with a lot of colums
- **v14.1.x**: Fix Button Styling for Stepper and Quicklist: change "add" button in Quicklist to "Outline" Styling and "next" and "done" button in MatStepper to "Primary" Styling

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

- **v14.1.2**: minor fixes in datatable
- **v14.1.1**: minor fixes: datatable paging bug and action column maxwidth
- **v14.1.0**: **BREAKING** - Upgraded library to Angular 14, enabled Ivy builds, updated lib to esm2020
Expand Down
2 changes: 2 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
"src/app/example-components"
],
"styles": [
"node_modules/roboto-fontface/css/roboto/roboto-fontface.css",
"node_modules/material-icons/iconfont/filled.css",
"src/styles.scss"
],
"stylePreprocessorOptions": {
Expand Down
Loading