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

Update to Angular 17 #228

Merged
merged 41 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
91159d0
Update ts version
Oct 22, 2024
a715915
Update angular version
Oct 22, 2024
fb0cc67
Update clarity version
Oct 22, 2024
6411f6a
Refactor markdown component
Oct 25, 2024
0e36956
Update cds core and add style sheets
Oct 25, 2024
9526918
Add theme settings
Oct 25, 2024
c325771
Update @angular/cdk
Oct 29, 2024
9fca846
Fix markdown rendering
Oct 29, 2024
e791f1b
Set background color via variable to consider theme changes
Oct 29, 2024
4621ac3
Implement custom text tooltip component
Nov 6, 2024
7065709
Add prettier as dev dependency
Nov 6, 2024
7a9fc32
Merge branch 'master' into ng-17
Nov 6, 2024
ac60884
Add lint-staged as dev dependency
Nov 7, 2024
b484fb9
Migrate code to new @if/@for/@switch syntax
Nov 7, 2024
7b1cb2c
Update angular-split version
Nov 7, 2024
1dd068d
Migrate ngx-dynamic-hooks to v3
Nov 7, 2024
a9b9f4c
Replace deprecated xterm packages
Nov 7, 2024
1ca5f41
Fix path to xterm style sheet
Nov 7, 2024
7c50fc7
remove unused Web Components polyfills
Nov 7, 2024
2031efd
update @auth0/angular-jwt
Nov 7, 2024
2349d12
update ng2-charts
Nov 7, 2024
638b7fb
update packages
Nov 7, 2024
a7a3484
run nmp audit fix
Nov 7, 2024
1ae0130
Add authn service. Improve theme handler
Nov 8, 2024
f875dfa
Minor fix
Nov 8, 2024
64d5d4d
Ensure that note component always receives valid type
Nov 18, 2024
6fac9d2
Enable strict null checks & function types
Nov 18, 2024
0ff44df
Fix bug that steps do not load initially
Nov 19, 2024
e87604f
Remove unused component
Nov 19, 2024
d1fa750
Fix: Reference to scenario needed to correctly update steps
Nov 19, 2024
6c35418
Fix icons
Nov 19, 2024
6c31d81
Remove unused code
Nov 19, 2024
1eb1c04
Replace clr-alerts by our alert component
Nov 19, 2024
e16c533
Minor fix
Nov 19, 2024
5aefa17
Use "@else" or "@else if" where possible
Nov 20, 2024
eacf5cd
Simplify glossary component
Nov 20, 2024
e1e75a9
Fix nested md in hidden/node component
Nov 20, 2024
5dd6562
Escape code to allow double quotes etc.
Nov 20, 2024
20d06ee
Prevent removal of backslashes in ngx-dynamic-hooks inputs
Dec 3, 2024
b8c3268
Merge branch 'master' into ng-17
Dec 3, 2024
8b0e616
Clarity css vars changed ... add login padding
Dec 3, 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
10 changes: 10 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
}
18 changes: 9 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@
"src/custom.css"
],
"styles": [
"node_modules/xterm/css/xterm.css",
"node_modules/@xterm/xterm/css/xterm.css",
"src/styles.scss",
"node_modules/prismjs/themes/prism.css"
"node_modules/prismjs/themes/prism.css",
"node_modules/@cds/core/global.min.css",
"node_modules/@cds/core/styles/theme.dark.min.css",
"node_modules/@clr/ui/clr-ui.min.css"
],
"scripts": [
"node_modules/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js",
"node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js",
"node_modules/prismjs/prism.js",
"node_modules/marked/marked.min.js",
"node_modules/prismjs/components/prism-yaml.min.js",
"node_modules/prismjs/components/prism-python.min.js",
"node_modules/prismjs/components/prism-go.min.js",
Expand Down Expand Up @@ -96,21 +96,21 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "hobbyfarm-admin:build"
"buildTarget": "hobbyfarm-admin:build"
},
"configurations": {
"local": {
"browserTarget": "hobbyfarm-admin:build:local"
"buildTarget": "hobbyfarm-admin:build:local"
},
"production": {
"browserTarget": "hobbyfarm-admin:build:production"
"buildTarget": "hobbyfarm-admin:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "hobbyfarm-admin:build"
"buildTarget": "hobbyfarm-admin:build"
}
},
"test": {
Expand Down
Loading
Loading