forked from creativetimofficial/material-dashboard-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 656e101
Showing
375 changed files
with
21,263 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es2021": true | ||
}, | ||
"extends": ["plugin:react/recommended", "airbnb", "prettier"], | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
}, | ||
"ecmaVersion": 12, | ||
"sourceType": "module" | ||
}, | ||
"plugins": ["react", "prettier"], | ||
"rules": { | ||
"prettier/prettier": [ | ||
"error", | ||
{ | ||
"endOfLine": "auto" | ||
} | ||
], | ||
"react/react-in-jsx-scope": "off", | ||
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], | ||
"react/jsx-props-no-spreading": [ | ||
1, | ||
{ | ||
"custom": "ignore" | ||
} | ||
], | ||
"react/jsx-curly-spacing": [2, "never"] | ||
}, | ||
"settings": { "import/resolver": { "node": { "paths": ["src"] } } } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
.DS_Store | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
package-lock.json | ||
yarn.lock | ||
|
||
commit.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"printWidth": 100, | ||
"trailingComma": "es5", | ||
"tabWidth": 2, | ||
"semi": true, | ||
"singleQuote": false, | ||
"endOfLine": "auto" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
# Change Log | ||
|
||
## [3.0.0] 2021-11-23 | ||
|
||
### Bug fixing | ||
|
||
### Major style changes | ||
|
||
- Migration from JSS to MUI `styled` api, emotion and `sx` prop. | ||
- The `box-shadow`, `border-radius` and `typography` `regular` size renamed to `md` for theme | ||
- The `backgroundColor` prop renamed to `bgColor` for components | ||
- The `boxShadow` prop renamed to `shadow` for components | ||
- SuiBox `backgroundGradient` prop replaced with `variant: ["contained", "gradient"]` | ||
- SuiButton `buttonColor` prop renamed to `color` | ||
- SuiSocialButton `buttonColor` prop renamed to `color` | ||
- SuiBadge `size` prop updated to ["xs", "sm", "md", "lg"] | ||
- SuiBadgeDot `size` prop updated to ["xs", "sm", "md", "lg"] | ||
- SuiBadgeDot `gradient` prop replaced with `variant: ["contained", "gradient"]` | ||
- SuiInput `withIcon` prop renamed to `icon` | ||
- SuiProgress `gradient` prop replaced with `variant: ["contained", "gradient"]` | ||
- SuiTypography `textColor` prop renamed to `color` | ||
- SuiSnackbar `type` prop renamed to `color` | ||
- New prop `bgWhite` added for SuiSnackbar | ||
- WheatherCard renamed to WeatherCard | ||
- WheatherCard `wheather` prop renamed to `weather` | ||
- PageRoutes renamed to page.routes.js | ||
- Sidenav is more dynamic now, color, brand, brandName props are added | ||
|
||
### Deleted components | ||
|
||
### Added components | ||
|
||
- src/examples/Cards/BlogCards/SimpleBlogCard | ||
- src/examples/Cards/BlogCards/WavedBlogCard | ||
- src/examples/Cards/TeamCards/DefaultTeamCard | ||
- src/examples/Cards/TeamCards/ComplexTeamCard | ||
- src/examples/Cards/PricingCards/OutlinedPricingCard | ||
- src/examples/Cards/PricingCards/WavedPricingCard | ||
- src/examples/Cards/ProfileCards/SimpleProfileCard | ||
- src/examples/Cards/ProfileCards/DefaultProfileCard | ||
- src/examples/Cards/ProfileCards/ComplexProfileCard | ||
- src/examples/Cards/BackgroundCards/DefaultBackgroundCard | ||
- src/examples/Cards/BackgroundCards/SimpleBackgroundCard | ||
|
||
### Deleted dependencies | ||
|
||
``` | ||
- jss | ||
- jss-rtl | ||
- @mui/styles | ||
``` | ||
|
||
### Added dependencies | ||
|
||
``` | ||
@three-ts/orbit-controls | ||
``` | ||
|
||
### Updated dependencies | ||
|
||
``` | ||
@mui/icons-material 5.0.0-rc.1 → 5.1.1 | ||
@mui/material 5.0.0-rc.1 → 5.1.1 | ||
@mui/styled-engine 5.0.0-rc.1 → 5.1.1 | ||
react-quill 2.0.0-beta.2 → 1.3.5 | ||
``` | ||
|
||
### Warning | ||
|
||
## [2.0.0] 2021-09-20 | ||
|
||
### Bug fixing | ||
|
||
### Major style changes | ||
|
||
- Migration from Material-UI v4 to Material-UI v5. | ||
- Customizing Autocomplete component based on the Soft Design. | ||
- Customizing the TextField component based on the Soft Design. | ||
|
||
### Deleted components | ||
|
||
### Added components | ||
|
||
### Deleted dependencies | ||
|
||
``` | ||
- @material-ui/core | ||
- @material-ui/icons | ||
- @material-ui/styles | ||
``` | ||
|
||
### Added dependencies | ||
|
||
``` | ||
- @emotion/cache | ||
- @emotion/react | ||
- @emotion/react | ||
- @emotion/styled | ||
- @mui/icons-material | ||
- @mui/material | ||
- @mui/styled-engine | ||
- @mui/styles | ||
- stylis | ||
- stylis-plugin-rtl | ||
``` | ||
|
||
### Updated dependencies | ||
|
||
### Warning | ||
|
||
The soft-ui-dashboard-pro-react/pages/rtl is chaning the route slowly in development mode its a problem with @emotion/cache `prepend` and we will fix it on our future updates. | ||
|
||
## [1.0.0] 2021-09-02 | ||
|
||
### Original Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!-- | ||
IMPORTANT: Please use the following link to create a new issue: | ||
https://www.creative-tim.com/new-issue/soft-ui-dashboard-pro-react | ||
**If your issue was not created using the app above, it will be closed immediately.** | ||
--> | ||
|
||
<!-- | ||
Love Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit: | ||
👉 https://www.creative-tim.com/bundles | ||
👉 https://www.creative-tim.com | ||
--> |
Oops, something went wrong.