Skip to content

Commit 1de560d

Browse files
committed
Upgrade frontend dependencies
Signed-off-by: Cintia Sanchez Garcia <[email protected]>
1 parent d80fba1 commit 1de560d

File tree

4 files changed

+535
-587
lines changed

4 files changed

+535
-587
lines changed

web/package.json

+17-17
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,38 @@
44
"description": "CLOWarden",
55
"license": "Apache-2.0",
66
"dependencies": {
7-
"classnames": "^2.3.2",
8-
"clo-ui": "https://github.com/cncf/clo-ui.git#0.1.20",
7+
"classnames": "^2.5.1",
8+
"clo-ui": "https://github.com/cncf/clo-ui.git#0.1.21",
99
"lodash": "^4.17.21",
10-
"moment": "^2.29.4",
10+
"moment": "^2.30.1",
1111
"react": "^18.2.0",
1212
"react-dom": "^18.2.0",
1313
"react-icons": "^4.12.0",
14-
"react-router-dom": "^6.19.0",
14+
"react-router-dom": "^6.21.1",
1515
"source-map-explorer": "^2.5.3"
1616
},
1717
"devDependencies": {
1818
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
19-
"@testing-library/jest-dom": "^6.1.4",
19+
"@testing-library/jest-dom": "^6.1.6",
2020
"@testing-library/react": "^14.1.2",
21-
"@testing-library/user-event": "^14.5.1",
22-
"@types/jest": "^29.5.7",
21+
"@testing-library/user-event": "^14.5.2",
22+
"@types/jest": "^29.5.11",
2323
"@types/lodash": "^4.14.200",
24-
"@types/node": "^20.9.2",
25-
"@types/react": "^18.2.36",
26-
"@types/react-dom": "^18.2.14",
27-
"eslint-config-prettier": "^9.0.0",
28-
"eslint-plugin-prettier": "^5.0.1",
24+
"@types/node": "^20.10.6",
25+
"@types/react": "^18.2.46",
26+
"@types/react-dom": "^18.2.18",
27+
"eslint-config-prettier": "^9.1.0",
28+
"eslint-plugin-prettier": "^5.1.2",
2929
"eslint-plugin-simple-import-sort": "^10.0.0",
30-
"postcss": "^8.4.31",
31-
"prettier": "^3.1.0",
30+
"postcss": "^8.4.32",
31+
"prettier": "^3.1.1",
3232
"react-scripts": "5.0.1",
33-
"sass": "^1.69.5",
33+
"sass": "^1.69.6",
3434
"shx": "^0.3.4",
35-
"typescript": "^5.3.2"
35+
"typescript": "^5.3.3"
3636
},
3737
"resolutions": {
38-
"react-scripts/**/core-js-pure": "3.33.3"
38+
"react-scripts/**/core-js-pure": "3.35.0"
3939
},
4040
"scripts": {
4141
"copy:static": "shx rm -rf src/static && shx mkdir src/static && shx cp -r public/static/* src",

web/src/layout/audit/Audit.module.css

+4
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,10 @@ label {
141141
max-width: 130px;
142142
}
143143

144+
.arrow {
145+
margin-top: 7px;
146+
}
147+
144148
.tooltip {
145149
font-size: 0.8rem;
146150
}

web/src/layout/audit/index.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,7 @@ const Audit = () => {
453453
<div className="d-none d-md-inline-block">
454454
<ElementWithTooltip
455455
className="position-relative ms-1 ps-1"
456+
tooltipArrowClassName={styles.arrow}
456457
element={<MdInfoOutline />}
457458
tooltipWidth={250}
458459
tooltipMessage={
@@ -544,6 +545,7 @@ const Audit = () => {
544545
<div className="d-none d-md-inline-block">
545546
<ElementWithTooltip
546547
className="position-relative ms-1 ps-1"
548+
tooltipArrowClassName={styles.arrow}
547549
element={<MdInfoOutline />}
548550
tooltipWidth={250}
549551
tooltipMessage={
@@ -736,6 +738,7 @@ const Audit = () => {
736738
{isUndefined(change.error) ? (
737739
<ElementWithTooltip
738740
className="position-relative"
741+
tooltipArrowClassName={styles.arrow}
739742
tooltipClassName={styles.tooltipWrapper}
740743
element={<AiFillCheckCircle className="text-success" />}
741744
tooltipWidth={230}

0 commit comments

Comments
 (0)