Skip to content

Commit d978399

Browse files
committed
ftr: update to latest package versions
TRACEFOSS-1023
1 parent 6893c4d commit d978399

File tree

7 files changed

+800
-584
lines changed

7 files changed

+800
-584
lines changed

.github/scripts/eclipse_dash.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
java -jar org.eclipse.dash.licenses-0.0.1-20221105.055038-599.jar yarn.lock -project automotive.tractusx -summary DASH_SUMMARY
2-
grep "restricted" DASH_SUMMARY | if test $(wc -l) -gt 0; then exit 1; fi
2+
grep -E '(restricted, #)|(restricted$)' DASH_SUMMARY | if test $(wc -l) -gt 0; then exit 1; fi

DEPENDENCIES

Lines changed: 450 additions & 366 deletions
Large diffs are not rendered by default.

karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ module.exports = function (config) {
4141
clearContext: false, // leave Jasmine Spec Runner output visible in browser
4242
},
4343
jasmineHtmlReporter: {
44-
// suppressAll: true, // removes the duplicated traces
44+
suppressAll: true, // removes the duplicated traces
4545
},
4646
coverageReporter: {
4747
dir: require('path').join(__dirname, './coverage'),

package.json

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -44,22 +44,22 @@
4444
"@angular/platform-browser": "15.1.5",
4545
"@angular/platform-browser-dynamic": "15.1.5",
4646
"@angular/router": "15.1.5",
47-
"@deck.gl/core": "8.8.24",
48-
"@deck.gl/layers": "8.8.24",
49-
"@deck.gl/mapbox": "8.8.24",
50-
"@loaders.gl/core": "^3.3.0",
47+
"@deck.gl/core": "8.8.25",
48+
"@deck.gl/layers": "8.8.25",
49+
"@deck.gl/mapbox": "8.8.25",
50+
"@loaders.gl/core": "^3.3.1",
5151
"@luma.gl/core": "^8.5.18",
5252
"@mapbox/mapbox-gl-language": "^1.0.1",
5353
"@types/lodash-es": "4.17.6",
5454
"angular-i18next": "15.0.5",
5555
"autoprefixer": "10.4.13",
5656
"d3": "7.8.2",
57-
"esbuild": "^0.17.8",
58-
"i18next": "22.4.9",
57+
"esbuild": "^0.17.10",
58+
"i18next": "22.4.10",
5959
"i18next-browser-languagedetector": "7.0.1",
6060
"i18next-http-backend": "2.1.1",
6161
"keycloak-angular": "13.0.0",
62-
"keycloak-js": "20.0.3",
62+
"keycloak-js": "20.0.5",
6363
"lodash-es": "4.17.21",
6464
"mapbox-gl": "^2.12.1",
6565
"maplibre-gl": "^2.4.0",
@@ -81,21 +81,21 @@
8181
"@angular/cli": "15.1.6",
8282
"@angular/compiler-cli": "15.1.5",
8383
"@angular/language-service": "15.1.5",
84-
"@badeball/cypress-cucumber-preprocessor": "^15.1.3",
84+
"@badeball/cypress-cucumber-preprocessor": "^15.1.4",
8585
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.0",
86-
"@commitlint/cli": "17.4.3",
87-
"@commitlint/config-conventional": "17.4.3",
86+
"@commitlint/cli": "17.4.4",
87+
"@commitlint/config-conventional": "17.4.4",
8888
"@cypress/schematic": "2.5.0",
89-
"@testing-library/angular": "13.1.0",
89+
"@testing-library/angular": "13.2.1",
9090
"@testing-library/jasmine-dom": "1.3.3",
9191
"@types/d3": "7.4.0",
9292
"@types/jasmine": "4.3.1",
9393
"@types/luxon": "3.2.0",
94-
"@types/node": "^18.13.0",
94+
"@types/node": "^18.14.0",
9595
"@types/testing-library__jasmine-dom": "^1.3.0",
96-
"@typescript-eslint/eslint-plugin": "5.52.0",
97-
"@typescript-eslint/parser": "5.52.0",
98-
"cypress": "^12.5.1",
96+
"@typescript-eslint/eslint-plugin": "5.53.0",
97+
"@typescript-eslint/parser": "5.53.0",
98+
"cypress": "^12.6.0",
9999
"eslint": "8.34.0",
100100
"eslint-config-prettier": "8.6.0",
101101
"eslint-plugin-import": "2.27.5",
@@ -107,7 +107,6 @@
107107
"karma-chrome-launcher": "3.1.1",
108108
"karma-coverage": "2.2.0",
109109
"karma-jasmine": "5.1.0",
110-
"karma-jasmine-html-reporter": "2.0.0",
111110
"karma-sonarqube-reporter": "1.4.0",
112111
"lint-staged": "13.1.2",
113112
"msw": "1.0.1",
@@ -116,7 +115,7 @@
116115
"postcss-loader": "7.0.2",
117116
"postcss-scss": "4.0.6",
118117
"prettier": "2.8.4",
119-
"stylelint": "15.1.0",
118+
"stylelint": "15.2.0",
120119
"stylelint-config-standard-scss": "7.0.1",
121120
"ts-loader": "^9.4.2",
122121
"ts-node": "10.9.1",

src/app/modules/page/investigations/detail/investigation-detail.component.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
.detail--wrapper {
2828
display: flex;
29+
justify-content: space-between;
2930
height: max-content;
3031

3132
@media (max-width: 1024px) {
@@ -40,7 +41,7 @@
4041
}
4142

4243
& mat-card:nth-child(2) {
43-
width: 70%;
44+
width: 67%;
4445
}
4546
}
4647

src/app/modules/shared/components/notification-reason/notification-reason.component.scss

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -64,30 +64,29 @@
6464
}
6565

6666
.message--status {
67-
font-size: 12px;
68-
font-weight: 500;
6967
display: flex;
7068
justify-content: space-between;
71-
text-transform: uppercase;
69+
flex-flow: row-reverse;
70+
71+
@apply text-dark pt-3;
72+
73+
& > p:first-child {
74+
@apply font-semiBold;
75+
}
76+
77+
& > p {
78+
font-size: 10px;
79+
text-transform: uppercase;
80+
}
7281

73-
@apply text-dark;
7482
& > .message--text__date {
75-
margin-left: 20px;
83+
margin-right: 20px;
7684
}
7785
}
7886

7987
.message--text__right {
8088
@apply bg-createdLight text-createdDark;
8189
float: right;
82-
83-
& > .message--status {
84-
flex-flow: row-reverse;
85-
86-
& > .message--text__date {
87-
margin-right: 20px;
88-
margin-left: 0;
89-
}
90-
}
9190
}
9291

9392
.message--text-arrow__right:before {

0 commit comments

Comments
 (0)