-
Notifications
You must be signed in to change notification settings - Fork 66
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
1 parent
a684f58
commit 079876b
Showing
12 changed files
with
41,833 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,56 @@ | ||
# Change Log | ||
|
||
## [0.3.0] 2019-07-24 | ||
|
||
## Updates | ||
|
||
- Removed `services` and `data` folders, each component has its own data | ||
- Implemented a custom Route component to wrap views in layouts | ||
- Updated the layout to match with the PRO version | ||
- Replaced custom cumponents (Portlet) with Material-UI built-in components | ||
- Ajusted theme colors | ||
- Implemented `useStyle` hook instead of `withStyles` HOC | ||
- Moved from Class Components to Functional Components | ||
- Replaced dependency `classnames` with `clsx` | ||
- Replaced `.jsx` with `.js` | ||
- Removed unused `.scss` files from `assets` folder | ||
- Updated dependencies | ||
|
||
## Contributors | ||
|
||
- [Christopher Escalon](https://github.com/escalonc) - Updating packages and fixing deprecated for spacing | ||
|
||
## [0.2.0] 2019-05-13 | ||
|
||
## Updates | ||
|
||
- [#5](https://github.com/devias-io/react-material-dashboard/issues/5) Updated to @material-ui to `4.0.0-beta` | ||
- Updated few icons to match @material-ui v4 updates | ||
- Updated React version to `16.8.6` to support React Hooks | ||
- Implemented `jsconfig.json` file and removed `.env` to match React v16.8.6 absolute paths | ||
- Updated Dashboard view top widgets styles and structure | ||
- Updated chart styles and options | ||
|
||
## [0.1.1] 2019-05-11 | ||
|
||
### Updates | ||
|
||
- Updated README.md | ||
- Added docs for IE11 polyfill | ||
- Removed unused scss from assets | ||
- Removed unused components from shared components | ||
- Removed `authGuard` since it won't be used in this version | ||
- Removed `auth` service folder since it won't be implemented for this version | ||
- Removed "status" from `ProductCard` component since it was not part of released design | ||
- Changed icon in `Users` widget (ArrowDropDown with ArrowDropUp) | ||
|
||
### Fixed bugs | ||
|
||
- Fixed charts responsiveness | ||
- Fixed `DisplayMode` component size, when used as a flex child it could grow/shrink | ||
- Fixed `Typography` view responsiveness for small devices | ||
- [#2](https://github.com/devias-io/react-material-dashboard/pull/2) Fixed `ProductCard` component description height | ||
|
||
## [0.1.0] 2019-05-02 | ||
|
||
### Initial commit |
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2019 Devias | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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,12 @@ | ||
{ | ||
"hosting": { | ||
"public": "build", | ||
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"], | ||
"rewrites": [ | ||
{ | ||
"source": "**", | ||
"destination": "/index.html" | ||
} | ||
] | ||
} | ||
} |
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,6 @@ | ||
{ | ||
"compilerOptions": { | ||
"baseUrl": "src" | ||
}, | ||
"include": ["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,12 @@ | ||
module.exports = { | ||
networks: { | ||
development: { | ||
protocol: 'http', | ||
host: 'localhost', | ||
port: 8545, | ||
gas: 5000000, | ||
gasPrice: 5e9, | ||
networkId: '*', | ||
}, | ||
}, | ||
}; |
Oops, something went wrong.