Skip to content

Commit 7abb8c0

Browse files
Packages updated
1 parent 470aca7 commit 7abb8c0

File tree

9 files changed

+18812
-3046
lines changed

9 files changed

+18812
-3046
lines changed

.eslintcache

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Built with [React](https://facebook.github.io/react/), [Material-UI](https://material-ui.com), [React Router](https://reacttraining.com/react-router/).
44
**No jQuery and Bootstrap!**
55

6-
**This version uses React 16.8.6, React Router v5, MaterialUI v4, built with React Hooks and React Context (No Redux)**
6+
**This version uses React 16.14.2, React Router v5, MaterialUI v4, built with React Hooks and React Context (No Redux)**
77

88
[Demo](https://flatlogic.com/admin-dashboards/react-material-admin/demo). Use any credentials to log in.
99

@@ -15,7 +15,7 @@ This is a limited version of [**Full React Material Admin**](https://flatlogic.c
1515

1616
## Features
1717

18-
- React (**16.8.6**)
18+
- React (**16.14.2**)
1919
- React Hooks
2020
- React Context
2121
- **No jQuery and Bootstrap!**

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
# [1.3.2]
4+
5+
### Updated
6+
- Packages updated
7+
- Edited README.md
38

49
# [1.3.1]
510

package-lock.json

Lines changed: 14808 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@
99
"node-fetch": "^2.6.1"
1010
},
1111
"dependencies": {
12-
"@material-ui/core": "^4.11.0",
13-
"@material-ui/icons": "^4.2.1",
14-
"@material-ui/styles": "^4.10.0",
15-
"@mdi/js": "^5.8.55",
12+
"@material-ui/core": "^4.11.3",
13+
"@material-ui/icons": "^4.11.2",
14+
"@material-ui/styles": "^4.11.3",
15+
"@mdi/js": "^5.9.55",
1616
"@mdi/react": "^1.4.0",
17-
"apexcharts": "^3.20.0",
17+
"apexcharts": "^3.24.0",
1818
"classnames": "^2.2.6",
1919
"font-awesome": "^4.7.0",
20-
"mui-datatables": "^3.4.1",
21-
"react": "^16.13.1",
20+
"mui-datatables": "^3.7.4",
21+
"react": "^16.14.0",
2222
"react-apexcharts": "^1.3.7",
23-
"react-dom": "^16.13.1",
23+
"react-dom": "^16.14.0",
2424
"react-google-maps": "^9.4.5",
2525
"react-router-dom": "^5.2.0",
26-
"react-scripts": "3.4.3",
27-
"react-syntax-highlighter": "^13.5.3",
28-
"react-toastify": "^6.0.8",
29-
"recharts": "^1.6.2",
30-
"tinycolor2": "^1.4.1"
26+
"react-scripts": "4.0.1",
27+
"react-syntax-highlighter": "^15.4.3",
28+
"react-toastify": "^7.0.3",
29+
"recharts": "^2.0.4",
30+
"tinycolor2": "^1.4.2"
3131
},
3232
"scripts": {
3333
"start": "react-scripts start",
@@ -54,4 +54,4 @@
5454
"@babel/helper-call-delegate": "^7.11.4",
5555
"prettier": "^2.1.1"
5656
}
57-
}
57+
}

src/pages/dashboard/mock.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export default {
1+
const mock = {
22
tasks: [
33
{
44
id: 0,
@@ -180,3 +180,5 @@ export default {
180180
}
181181
]
182182
};
183+
184+
export default mock;

src/themes/default.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const info = "#9013FE";
99
const lightenRate = 7.5;
1010
const darkenRate = 15;
1111

12-
export default {
12+
const defaultTheme = {
1313
palette: {
1414
primary: {
1515
main: primary,
@@ -136,3 +136,5 @@ export default {
136136
}
137137
},
138138
};
139+
140+
export default defaultTheme;

src/themes/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ const overrides = {
2525
},
2626
};
2727

28-
export default {
28+
const themes = {
2929
default: createMuiTheme({ ...defaultTheme, ...overrides }),
3030
};
31+
32+
export default themes;

0 commit comments

Comments
 (0)