Skip to content

Commit e358e20

Browse files
committed
Update to v2.1.0
1 parent 9330abd commit e358e20

File tree

14 files changed

+42
-111
lines changed

14 files changed

+42
-111
lines changed

.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"endOfLine": "auto"
2020
}
2121
],
22+
"default-param-last": "off",
2223
"react/react-in-jsx-scope": "off",
2324
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
2425
"react/jsx-props-no-spreading": [

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@
6767
]
6868
},
6969
"devDependencies": {
70-
"eslint": "7.30.0",
71-
"eslint-config-airbnb": "18.2.1",
70+
"eslint": "8.8.0",
71+
"eslint-config-airbnb": "19.0.4",
7272
"eslint-config-prettier": "8.3.0",
73-
"eslint-plugin-import": "2.23.4",
74-
"eslint-plugin-jsx-a11y": "6.4.1",
75-
"eslint-plugin-prettier": "3.4.0",
76-
"eslint-plugin-react": "7.24.0",
77-
"eslint-plugin-react-hooks": "4.2.0",
78-
"prettier": "2.3.2"
73+
"eslint-plugin-import": "2.25.4",
74+
"eslint-plugin-jsx-a11y": "6.5.1",
75+
"eslint-plugin-prettier": "4.0.0",
76+
"eslint-plugin-react": "7.28.0",
77+
"eslint-plugin-react-hooks": "4.3.0",
78+
"prettier": "2.5.1"
7979
}
8080
}
233 KB
Loading

src/assets/theme-dark/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ import formLabel from "assets/theme-dark/components/form/formLabel";
7272
import checkbox from "assets/theme-dark/components/form/checkbox";
7373
import radio from "assets/theme-dark/components/form/radio";
7474
import autocomplete from "assets/theme-dark/components/form/autocomplete";
75-
import flatpickr from "assets/theme-dark/components/flatpickr";
7675
import container from "assets/theme-dark/components/container";
7776
import popover from "assets/theme-dark/components/popover";
7877
import buttonBase from "assets/theme-dark/components/buttonBase";
@@ -103,7 +102,6 @@ export default createTheme({
103102
MuiCssBaseline: {
104103
styleOverrides: {
105104
...globals,
106-
...flatpickr,
107105
...container,
108106
},
109107
},

src/assets/theme-dark/theme-rtl.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ import formLabel from "assets/theme-dark/components/form/formLabel";
7272
import checkbox from "assets/theme-dark/components/form/checkbox";
7373
import radio from "assets/theme-dark/components/form/radio";
7474
import autocomplete from "assets/theme-dark/components/form/autocomplete";
75-
import flatpickr from "assets/theme-dark/components/flatpickr";
7675
import container from "assets/theme-dark/components/container";
7776
import popover from "assets/theme-dark/components/popover";
7877
import buttonBase from "assets/theme-dark/components/buttonBase";
@@ -104,7 +103,6 @@ export default createTheme({
104103
MuiCssBaseline: {
105104
styleOverrides: {
106105
...globals,
107-
...flatpickr,
108106
...container,
109107
},
110108
},

src/assets/theme/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ import formLabel from "assets/theme/components/form/formLabel";
7171
import checkbox from "assets/theme/components/form/checkbox";
7272
import radio from "assets/theme/components/form/radio";
7373
import autocomplete from "assets/theme/components/form/autocomplete";
74-
import flatpickr from "assets/theme/components/flatpickr";
7574
import container from "assets/theme/components/container";
7675
import popover from "assets/theme/components/popover";
7776
import buttonBase from "assets/theme/components/buttonBase";
@@ -102,7 +101,6 @@ export default createTheme({
102101
MuiCssBaseline: {
103102
styleOverrides: {
104103
...globals,
105-
...flatpickr,
106104
...container,
107105
},
108106
},

src/assets/theme/theme-rtl.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ import formLabel from "assets/theme/components/form/formLabel";
7272
import checkbox from "assets/theme/components/form/checkbox";
7373
import radio from "assets/theme/components/form/radio";
7474
import autocomplete from "assets/theme/components/form/autocomplete";
75-
import flatpickr from "assets/theme/components/flatpickr";
7675
import container from "assets/theme/components/container";
7776
import popover from "assets/theme/components/popover";
7877
import buttonBase from "assets/theme/components/buttonBase";
@@ -104,7 +103,6 @@ export default createTheme({
104103
MuiCssBaseline: {
105104
styleOverrides: {
106105
...globals,
107-
...flatpickr,
108106
...container,
109107
},
110108
},

src/layouts/dashboard/components/Projects/data/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/* eslint-disable react/prop-types */
2-
// @mui material components
3-
import Tooltip from "@mui/material/Tooltip";
4-
5-
// /**
2+
/**
63
=========================================================
74
* Material Dashboard 2 React - v2.1.0
85
=========================================================
@@ -15,7 +12,10 @@ Coded by www.creative-tim.com
1512
=========================================================
1613
1714
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
18-
*/ Dashboard React components
15+
*/
16+
17+
// @mui material components
18+
import Tooltip from "@mui/material/Tooltip";
1919
import MDBox from "components/MDBox";
2020
import MDTypography from "components/MDTypography";
2121
import MDAvatar from "components/MDAvatar";

src/layouts/dashboard/components/Projects/index.js

Lines changed: 2 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,11 @@
11
/**
22
=========================================================
3-
* /**
4-
=========================================================
53
* Material Dashboard 2 React - v2.1.0
64
=========================================================
75
86
* Product Page: https://www.creative-tim.com/product/material-dashboard-react
97
* Copyright 2022 Creative Tim (https://www.creative-tim.com)
108
11-
Coded by www.creative-tim.com
12-
13-
=========================================================
14-
15-
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
16-
*/ Dashboard React - v3.0.0
17-
=========================================================
18-
19-
* Product Page: https://www.creative-tim.com/product/soft-ui-dashboard-react
20-
* Copyright 2021 Creative Tim (https://www.creative-tim.com)
21-
229
Coded by www.creative-tim.com
2310
2411
=========================================================
@@ -34,37 +21,11 @@ import Icon from "@mui/material/Icon";
3421
import Menu from "@mui/material/Menu";
3522
import MenuItem from "@mui/material/MenuItem";
3623

37-
// /**
38-
=========================================================
39-
* Material Dashboard 2 React - v2.1.0
40-
=========================================================
41-
42-
* Product Page: https://www.creative-tim.com/product/material-dashboard-react
43-
* Copyright 2022 Creative Tim (https://www.creative-tim.com)
44-
45-
Coded by www.creative-tim.com
46-
47-
=========================================================
48-
49-
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
50-
*/ Dashboard React components
24+
// Material Dashboard 2 React components
5125
import MDBox from "components/MDBox";
5226
import MDTypography from "components/MDTypography";
5327

54-
// /**
55-
=========================================================
56-
* Material Dashboard 2 React - v2.1.0
57-
=========================================================
58-
59-
* Product Page: https://www.creative-tim.com/product/material-dashboard-react
60-
* Copyright 2022 Creative Tim (https://www.creative-tim.com)
61-
62-
Coded by www.creative-tim.com
63-
64-
=========================================================
65-
66-
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
67-
*/ Dashboard Materail-UI example components
28+
// Material Dashboard 2 React examples
6829
import DataTable from "examples/Tables/DataTable";
6930

7031
// Data

src/layouts/rtl/components/Projects/data/index.js

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/* eslint-disable react/prop-types */
2-
// @mui material components
3-
import Tooltip from "@mui/material/Tooltip";
4-
5-
// /**
2+
/**
63
=========================================================
74
* Material Dashboard 2 React - v2.1.0
85
=========================================================
@@ -15,7 +12,12 @@ Coded by www.creative-tim.com
1512
=========================================================
1613
1714
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
18-
*/ Dashboard React components
15+
*/
16+
17+
// @mui material components
18+
import Tooltip from "@mui/material/Tooltip";
19+
20+
// Material Dashboard 2 React components
1921
import MDBox from "components/MDBox";
2022
import MDTypography from "components/MDTypography";
2123
import MDAvatar from "components/MDAvatar";
@@ -78,7 +80,10 @@ export default function data() {
7880

7981
rows: [
8082
{
81-
المشروع: <Company image={logoXD} name="/**
83+
المشروع: (
84+
<Company
85+
image={logoXD}
86+
name="/**
8287
=========================================================
8388
* Material Dashboard 2 React - v2.1.0
8489
=========================================================
@@ -91,7 +96,9 @@ Coded by www.creative-tim.com
9196
=========================================================
9297
9398
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
94-
*/ الإصدار" />,
99+
*/ الإصدار"
100+
/>
101+
),
95102
أعضاء: (
96103
<MDBox display="flex" py={1}>
97104
{avatars([

0 commit comments

Comments
 (0)