Skip to content

Commit 89fed0a

Browse files
paazmayapashidlos
andauthored
Update Material UI to v5 and others (#318)
* Update Material UI to v5 and MUI X v6, while cleaning few issues with types --------- Co-authored-by: Pavel Strunkin <pashidlos@gmail.com>
1 parent b3976e8 commit 89fed0a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+4258
-6725
lines changed

.eslintrc.cjs

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module.exports = {
33
// By extending from a plugin config, we can get recommended rules without having to add them manually.
44
"eslint:recommended",
55
"plugin:react/recommended",
6+
"plugin:react-hooks/recommended",
67
"plugin:import/recommended",
78
"plugin:jsx-a11y/recommended",
89
"plugin:@typescript-eslint/recommended",

.github/dependabot.yml

+31-31
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
version: 2
22
updates:
3-
- package-ecosystem: npm
4-
directory: "/"
5-
schedule:
6-
interval: daily
7-
open-pull-requests-limit: 2
8-
ignore:
9-
- dependency-name: "@types/node"
10-
versions:
11-
- 14.14.22
12-
- 14.14.24
13-
- 14.14.25
14-
- 14.14.26
15-
- 14.14.28
16-
- 14.14.30
17-
- 14.14.31
18-
- 14.14.32
19-
- 14.14.33
20-
- 14.14.34
21-
- 14.14.35
22-
- 14.14.37
23-
- 14.14.39
24-
- 14.14.41
25-
- dependency-name: y18n
26-
versions:
27-
- 4.0.1
28-
- 4.0.2
29-
- dependency-name: material-ui-popup-state
30-
versions:
31-
- 1.7.1
32-
- 1.7.2
33-
- 1.8.0
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
open-pull-requests-limit: 2
8+
ignore:
9+
- dependency-name: "@types/node"
10+
versions:
11+
- 14.14.22
12+
- 14.14.24
13+
- 14.14.25
14+
- 14.14.26
15+
- 14.14.28
16+
- 14.14.30
17+
- 14.14.31
18+
- 14.14.32
19+
- 14.14.33
20+
- 14.14.34
21+
- 14.14.35
22+
- 14.14.37
23+
- 14.14.39
24+
- 14.14.41
25+
- dependency-name: y18n
26+
versions:
27+
- 4.0.1
28+
- 4.0.2
29+
- dependency-name: material-ui-popup-state
30+
versions:
31+
- 1.7.1
32+
- 1.7.2
33+
- 1.8.0

.vscode/launch.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
// Use IntelliSense to learn about possible attributes.
3-
// Hover to view descriptions of existing attributes.
4-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5-
"version": "0.2.0",
6-
"configurations": [
7-
{
8-
"type": "chrome",
9-
"request": "launch",
10-
"name": "Launch Chrome against localhost",
11-
"url": "http://localhost:8080",
12-
"webRoot": "${workspaceFolder}"
13-
}
14-
]
15-
}
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "chrome",
9+
"request": "launch",
10+
"name": "Launch Chrome against localhost",
11+
"url": "http://localhost:8080",
12+
"webRoot": "${workspaceFolder}"
13+
}
14+
]
15+
}

.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"cSpell.words": ["Konva"]
2+
"cSpell.words": ["Konva"]
33
}

index.html

-9
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,6 @@
33
<head>
44
<meta charset="utf-8" />
55
<link rel="icon" href="/favicon.png" />
6-
<link
7-
rel="stylesheet"
8-
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
9-
/>
10-
<link
11-
rel="stylesheet"
12-
href="https://fonts.googleapis.com/icon?family=Material+Icons"
13-
/>
14-
156
<meta name="viewport" content="width=device-width, initial-scale=1" />
167
<meta name="theme-color" content="#000000" />
178

0 commit comments

Comments
 (0)