Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
tyugfhdfasf authored Nov 26, 2024
1 parent a684f58 commit 079876b
Show file tree
Hide file tree
Showing 12 changed files with 41,833 additions and 0 deletions.
56 changes: 56 additions & 0 deletions CHANGELOG.md
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
21 changes: 21 additions & 0 deletions LICENSE.md
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.
12 changes: 12 additions & 0 deletions firebase.json
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"
}
]
}
}
6 changes: 6 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"compilerOptions": {
"baseUrl": "src"
},
"include": ["src"]
}
12 changes: 12 additions & 0 deletions networks.js
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: '*',
},
},
};
Loading

0 comments on commit 079876b

Please sign in to comment.