Skip to content

Commit 7840d41

Browse files
authored
chore(deps): Fix updates devdeps (#754)
chore(deps): update commitlint chore(deps): minor deps
1 parent 7f1222f commit 7840d41

File tree

3 files changed

+182
-170
lines changed

3 files changed

+182
-170
lines changed

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@
9090
"cov:report": "open ./coverage/lcov-report/index.html"
9191
},
9292
"devDependencies": {
93-
"@commitlint/cli": "19.8.1",
94-
"@commitlint/config-conventional": "19.8.1",
95-
"@commitlint/types": "^19.0.0",
93+
"@commitlint/cli": "20.0.0",
94+
"@commitlint/config-conventional": "20.0.0",
95+
"@commitlint/types": "20.0.0",
9696
"@cypress/code-coverage": "3.14.5",
9797
"@eslint/compat": "^1.2.0",
9898
"@eslint/eslintrc": "3.3.1",
@@ -108,24 +108,24 @@
108108
"@types/lodash.shuffle": "^4.2.9",
109109
"@types/node": "22.18.6",
110110
"@types/papaparse": "^5",
111-
"@types/react": "^19.0.0",
112-
"@types/react-dom": "^19.0.0",
111+
"@types/react": "~19.1.15",
112+
"@types/react-dom": "~19.1.9",
113113
"@types/react-plotly.js": "^2.6.3",
114114
"@typescript-eslint/eslint-plugin": "8.44.1",
115115
"@typescript-eslint/parser": "8.44.1",
116116
"@vitejs/plugin-react": "^4.2.1",
117117
"@vitest/browser": "^3.0.0",
118-
"concurrently": "9.2.0",
118+
"concurrently": "~9.2.1",
119119
"cypress": "13.17.0",
120120
"env-cmd": "10.1.0",
121121
"eslint": "9.36.0",
122122
"eslint-config-airbnb": "19.0.4",
123-
"eslint-config-prettier": "10.1.5",
123+
"eslint-config-prettier": "10.1.8",
124124
"eslint-import-resolver-typescript": "^3.6.1",
125125
"eslint-plugin-cypress": "4.3.0",
126126
"eslint-plugin-import": "2.32.0",
127127
"eslint-plugin-jsx-a11y": "6.10.2",
128-
"eslint-plugin-prettier": "5.5.1",
128+
"eslint-plugin-prettier": "5.5.4",
129129
"eslint-plugin-react": "^7.33.2",
130130
"eslint-plugin-react-hooks": "5.2.0",
131131
"husky": "9.1.7",
@@ -137,7 +137,7 @@
137137
"pretty-quick": "4.2.2",
138138
"stylis-plugin-rtl": "^2.1.1",
139139
"uuid": "^11.0.0",
140-
"vite": "^6.0.0",
140+
"vite": "~6.3.6",
141141
"vite-plugin-checker": "^0.10.0",
142142
"vite-plugin-istanbul": "^6.0.0",
143143
"vite-plugin-top-level-await": "^1.4.4",

src/modules/common/response/visualization/indicators/LinearIndicator.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,13 @@ const CustomTickLabel = ({
2626
<text
2727
x={p.x}
2828
y={p.y}
29-
dominantBaseline={p.textBaseline}
29+
dominantBaseline={
30+
p.textBaseline as React.SVGAttributes<SVGTextElement>['dominantBaseline']
31+
}
3032
opacity={p.opacity}
31-
textAnchor={p.textAnchor}
33+
textAnchor={
34+
p.textAnchor as 'start' | 'middle' | 'end' | 'inherit' | undefined
35+
}
3236
style={{
3337
fontFamily: 'sans-serif',
3438
fontSize: '11px',

0 commit comments

Comments
 (0)