Upgrade everything

This commit is contained in:
Gwilym Inzani 2023-07-04 23:08:16 +01:00 committed by Corwin
parent a1c1671b0b
commit 203dc0cff7
No known key found for this signature in database
3 changed files with 3888 additions and 6202 deletions

10063
website/package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -4,18 +4,21 @@
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.23",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.3",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"styled-components": "^5.3.9",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
"styled-components": "^6.0.2",
"typescript": "^5.1.6",
"web-vitals": "^3.3.2"
},
"overrides": {
"typescript": "^5.1.6"
},
"scripts": {
"start": "react-scripts start",
@ -43,6 +46,6 @@
},
"devDependencies": {
"@types/styled-components": "^5.1.26",
"prettier": "2.8.7"
"prettier": "2.8.8"
}
}
}

View file

@ -101,7 +101,7 @@ export const BindingsControl: FC<{
};
return (
<ButtonWrapper onKeyUp={(evt) => setKey(evt.key)}>
<ButtonWrapper onKeyUp={(evt: React.KeyboardEvent) => setKey(evt.key)}>
{BindingsOrder.map((x) => (
<SelectButton
onClick={() => onSelectButtonClick(x)}