Skip to content

Commit 1e53a82

Browse files
committed
Release v2.0.9 - Bump UI to v4.0.0
1 parent e9e1159 commit 1e53a82

File tree

263 files changed

+18431
-9
lines changed

Some content is hidden

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

263 files changed

+18431
-9
lines changed

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
GENERATE_SOURCEMAP=false
2+
REACT_APP_BACKEND_SERVER=http://127.0.0.1:5000/

.eslintrc.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": ["prettier"],
7+
"parserOptions": {
8+
"ecmaFeatures": {
9+
"jsx": true
10+
},
11+
"ecmaVersion": 12,
12+
"sourceType": "module"
13+
},
14+
"plugins": ["prettier"],
15+
"rules": {
16+
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
17+
"react/require-default-props": "off",
18+
"no-param-reassign": "off",
19+
"jsx-a11y/alt-text": "off",
20+
"react/react-in-jsx-scope": "off",
21+
"react/display-name": "off"
22+
},
23+
"settings": {
24+
"react": {
25+
"version": "detect"
26+
},
27+
"import/resolver": { "node": { "moduleDirectory": ["node_modules", "src/"] } }
28+
},
29+
"globals": {
30+
"JSX": true
31+
}
32+
}

.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
.DS_Store
6+
7+
# testing
8+
/coverage
9+
10+
# production
11+
/build
12+
13+
# misc
14+
.DS_Store
15+
.env.local
16+
.env.development.local
17+
.env.test.local
18+
.env.production.local
19+
.env
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*
24+
25+
#package-lock.json
26+
#yarn.lock
27+
28+
commit.sh

.prettierrc.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"printWidth": 100,
3+
"trailingComma": "es5",
4+
"tabWidth": 2,
5+
"semi": true,
6+
"singleQuote": false,
7+
"endOfLine": "auto"
8+
}

CHANGELOG.md

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

3+
## [v2.0.9] 2022-11-29
4+
### Changes
5+
6+
- Bump UI: `4.0.0`
7+
- Updates for [LIVE Deployer](https://appseed.us/go-live/)
8+
39
## [v2.0.8] 2022-11-09
410
### Improvements
511

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Start your Development with an Innovative Admin Template for **Material-UI** and
99

1010
> 🚀 Built with **[React App Generator](https://appseed.us/generator/react/)**
1111
12-
- ✅ Innovative **Material-UI Design** - Creafted by [Creative-Tim](https://bit.ly/3fKQZaL)
12+
- ✅ Innovative **Soft UI Design** - Crafted by [Creative-Tim](https://bit.ly/3fKQZaL)
1313
- ✅ React, Redux, Redux-persist
1414
- ✅ Authentication: JWT Login/Register/Logout
1515
- ✅ Full-stack ready using **[Node JS API Server](https://github.com/app-generator/api-server-nodejs)** (open-source project)
@@ -19,13 +19,13 @@ Start your Development with an Innovative Admin Template for **Material-UI** and
1919

2020
## Tests
2121

22-
> `Compatibility matrix` tested with [Render API Wrapper](https://github.com/app-generator/deploy-automation-render).
22+
> `Compatibility matrix` using Ubuntu `18.04 LTS` as reference.
2323
2424
| NodeJS | NPM | YARN |
2525
| --- | --- | --- |
26-
| `v14.15.0` || |
27-
| `v16.0.0` | ||
28-
| `v18.0.0` | | |
26+
| `v14.0.0` || |
27+
| `v15.0.0` | ||
28+
| `v16.15.0` | | |
2929

3030
<br />
3131

@@ -37,10 +37,9 @@ Start your Development with an Innovative Admin Template for **Material-UI** and
3737
3838
- [Django API Server](https://github.com/app-generator/api-server-django) - open-source product
3939
- [Flask API Server](https://github.com/app-generator/api-server-flask) - open-source product
40-
- [Node JS API Server](https://github.com/app-generator/api-server-nodejs) - open-source product / Typescript / SQLite / TypeORM / Joy for validation
41-
- [Node JS API Server PRO](https://github.com/app-generator/api-server-nodejs-pro) - **commercial product**
42-
- Typescript / SQLite / TypeORM / Joy Validation / Docker
43-
- Typescript / MongoDB / Mongoose / Joy Validation / Docker (separate branch, same project)
40+
- [Node JS API Server](https://github.com/app-generator/api-server-nodejs-mongo) - `free API`
41+
- MongoDB / Mongoose
42+
- Typescript / Joy Validation / Docker
4443

4544
<br />
4645

deployer.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"api-server":"https://api-server-nodejs.appseed.us/api/",
3+
"name":"react-soft-ui-dashboard",
4+
"framework": "react",
5+
"type": "static",
6+
"build": {
7+
"npm": "v14.0.0"
8+
}
9+
}

jsconfig.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": "src",
4+
"paths": {
5+
"*": ["src/*"]
6+
}
7+
}
8+
}

package.json

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
{
2+
"name": "soft-ui-dashboard-react",
3+
"version": "4.0.0",
4+
"author": "Creative Tim",
5+
"license": "SEE LICENSE IN <https://www.creative-tim.com/license>",
6+
"description": "ReactJS version of Soft UI Dashboard by Creative Tim",
7+
"bugs": {
8+
"url": "https://github.com/app-generator/react-soft-ui-dashboard/issues"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/app-generator/react-soft-ui-dashboard.git"
13+
},
14+
"engines": {
15+
"node": "14 || 15 || 16",
16+
"npm": ">=6"
17+
},
18+
"build": {
19+
"npm": "v14.0.0"
20+
},
21+
"dependencies": {
22+
"@emotion/cache": "11.9.3",
23+
"@emotion/react": "11.9.3",
24+
"@emotion/styled": "11.9.3",
25+
"@mui/icons-material": "5.8.4",
26+
"@mui/material": "5.8.6",
27+
"@mui/styled-engine": "5.8.0",
28+
"@testing-library/jest-dom": "5.16.4",
29+
"@testing-library/react": "13.3.0",
30+
"@testing-library/user-event": "14.2.1",
31+
"axios": "^1.2.0",
32+
"chart.js": "3.4.1",
33+
"chroma-js": "2.4.2",
34+
"prop-types": "15.8.1",
35+
"react": "18.2.0",
36+
"react-bootstrap-sweetalert": "^5.2.0",
37+
"react-chartjs-2": "3.0.4",
38+
"react-countup": "6.3.0",
39+
"react-dom": "18.2.0",
40+
"react-flatpickr": "3.10.13",
41+
"react-router-dom": "6.3.0",
42+
"react-scripts": "5.0.1",
43+
"stylis": "4.1.1",
44+
"stylis-plugin-rtl": "2.1.1",
45+
"uuid": "8.3.2",
46+
"web-vitals": "2.1.4"
47+
},
48+
"scripts": {
49+
"start": "react-scripts start",
50+
"build": "react-scripts build",
51+
"test": "react-scripts test",
52+
"eject": "react-scripts eject",
53+
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start",
54+
"install:peer-deps": "npm install --legacy-peer-deps"
55+
},
56+
"eslintConfig": {
57+
"extends": [
58+
"react-app",
59+
"react-app/jest"
60+
]
61+
},
62+
"browserslist": {
63+
"production": [
64+
">0.2%",
65+
"not dead",
66+
"not op_mini all"
67+
],
68+
"development": [
69+
"last 1 chrome version",
70+
"last 1 firefox version",
71+
"last 1 safari version"
72+
]
73+
},
74+
"devDependencies": {
75+
"eslint": "8.18.0",
76+
"eslint-config-prettier": "8.5.0",
77+
"eslint-plugin-import": "2.26.0",
78+
"eslint-plugin-prettier": "4.2.1",
79+
"eslint-plugin-react": "7.30.1",
80+
"eslint-plugin-react-hooks": "4.6.0",
81+
"prettier": "2.7.1"
82+
}
83+
}

public/apple-icon.png

2.39 KB
Loading

0 commit comments

Comments
 (0)