Skip to content

Commit 7f62092

Browse files
committed
Update Material UI to v5 and MUI X v6, while cleaning few issues with types
Sweep with Prettier and try to find possible issues with various DataGrid methods Upgrade to MUI X v6 to get apiRef available Last use of lab package moved to core. Found the issue with DataGrid hook, was wrong method Few type fixes and one MUI warning about selector Lint hooks via ESLint plugin and found the reason for forever loop Use constant for repetetive headers Use only SVG icons, no icon font Load fonts locally lodash was not a dependency, removed its usage Prettier and this VS Code plugin conlifct and constantly format differently, hence removing the plugin Make notes how to test agent-cypress while developing it Value and its id might be undefined sometimes when looking for the selected rows Reduce issues found by ESLint Plenty of interesting formatting changes by https://github.com/coderaiser/putout Use React fragments consistently Trying to reduce complexity Correct key after variable rename Cannot use maxRows when rows are defined Small fine tuning One item had turned into a container Guided tour was not rendering No console Few Grid properties should not be used and more accessible button color Play with colors to know where to configure Update TestDetailsModal.tsx
1 parent b3976e8 commit 7f62092

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

+4180
-6828
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 0 deletions
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

Lines changed: 31 additions & 31 deletions
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

Lines changed: 14 additions & 14 deletions
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

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

index.html

Lines changed: 0 additions & 9 deletions
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)