-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TSK-1657: Angular 12 preworks TSK-1657: Updated core and cli to 12 TSK-1657: Updated material to 12 TSK-1657: Updated tests, but huge testfailures TSK-1657: Huge testfails fixed, now only small ones remain (A lot of them) TSK-1657: Beatiful test fixes :) TSK-1657: Prettiered the files TSK-1657: fixed cache hash file due to introduction of yarn TSK-1657: checked all dependencies and reupdated them
- Loading branch information
1 parent
a269c9d
commit 1554212
Showing
21 changed files
with
3,546 additions
and
3,740 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,7 +92,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
path: web/node_modules | ||
key: ${{ runner.OS }}-${{ env.CACHE_WEB_NAME }}-${{ hashFiles('**/package-lock.json') }} | ||
key: ${{ runner.OS }}-${{ env.CACHE_WEB_NAME }}-${{ hashFiles('**/yarn-lock.json') }} | ||
restore-keys: ${{ runner.OS }}-${{ env.CACHE_WEB_NAME }} | ||
- name: Cache maven dependencies (for web) | ||
uses: actions/[email protected] | ||
|
@@ -177,7 +177,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
path: web/node_modules | ||
key: ${{ runner.OS }}-${{ env.CACHE_WEB_NAME }}-${{ hashFiles('**/package-lock.json') }} | ||
key: ${{ runner.OS }}-${{ env.CACHE_WEB_NAME }}-${{ hashFiles('**/yarn-lock.json') }} | ||
restore-keys: ${{ runner.OS }}-${{ env.CACHE_WEB_NAME }} | ||
# Theoretically this is not necessary because we reuse the cache from the 'compile_frontend' job. | ||
# Sometimes the cache is not created, therefore this is a fallback. | ||
|
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
1 change: 0 additions & 1 deletion
1
.../administration/components/workbasket-access-items/workbasket-access-items.component.scss
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
@import '~@angular/material/theming'; | ||
@include mat-core(); | ||
@use '~@angular/material' as mat; | ||
@include mat.core(); | ||
|
||
$my-app-primary: mat-palette($mat-blue-grey); | ||
$my-app-accent: mat-palette($mat-teal, 500, 900, A100); | ||
$my-app-warn: mat-palette($mat-red, 600); | ||
$my-app-theme: mat-light-theme($my-app-primary, $my-app-accent, $my-app-warn); | ||
@include angular-material-theme($my-app-theme); | ||
$my-app-primary: mat.define-palette(mat.$blue-grey-palette); | ||
$my-app-accent: mat.define-palette(mat.$teal-palette, 500, 900, A100); | ||
$my-app-warn: mat.define-palette(mat.$red-palette, 600); | ||
$my-app-theme: mat.define-light-theme($my-app-primary, $my-app-accent, $my-app-warn); | ||
@include mat.all-component-themes($my-app-theme); |
Oops, something went wrong.