Skip to content

Commit

Permalink
- v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
einazare committed Aug 26, 2019
1 parent 98673e5 commit dd972f3
Show file tree
Hide file tree
Showing 2 changed files with 133 additions and 85 deletions.
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# Change Log

## [1.8.0] 2019-08-26
### Warning
- Wizard and Wizard Steps were not changed to hooks since we need to be able to call the isValidated function (this can only be achieved with classes - withStyles function is still being used)
- Sidebar Component could not be changed to hooks due to the dynamic nature of this component (the collapses states are done dynamically, and you do not have anyway of knowing the amount of collapses this component will have to create static states - withStyles function is still being used)
### Bug fixing
- Rewrote the ISSUE_TEMPLATE
- Deleted the copyright comments from all files, we only need to keep them inside our index.js and index.html
- Added script that adds copyrights to the built app
- Renamed all the files from `.jsx` to `.js`
- Changed the `withStyles` function from Material-UI with the `makeStyles` function (integration with other frameworks should now be easy)
- React Hooks is now supported (Please read the above warnings)
### Major style changes
- `src/assets/jss/material-dashboard-pro-react/components/customDropdownStyle.js`
- `src/assets/jss/material-kit-pro-react/components/cardBodyStyle.js`
- `src/assets/scss/plugins/_plugin-nouislider.scss`
### Deleted components

### Added components

### Deleted dependencies

### Added dependencies
+ [email protected]
+ [email protected]
### Updated dependencies
```
@material-ui/core 4.1.0 → 4.3.2
@material-ui/icons 4.1.0 → 4.2.1
nouislider 13.1.5 → 14.0.2
react 16.8.6 → 16.9.0
react-big-calendar 0.21.0 → 0.22.0
react-dom 16.8.6 → 16.9.0
react-scripts 3.0.1 → 3.1.0
eslint-config-prettier 4.3.0 → 6.0.0
@types/googlemaps 3.36.4 → 3.37.3
ajv 6.10.0 → 6.10.2
typescript 3.5.1 → 3.5.3
```

## [1.7.0] 2019-06-19
### Warning
**We've skipped version 1.6.0 so that all React Material products would be on the same version.**
Expand Down
179 changes: 94 additions & 85 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@



![version](https://img.shields.io/badge/version-1.7.0-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/creativetimofficial/ct-material-dashboard-pro-react.svg?maxAge=2592000)](https://github.com/creativetimofficial/ct-material-dashboard-pro-react/issues?q=is%3Aopen+is%3Aissue) [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/creativetimofficial/ct-material-dashboard-pro-react.svg?maxAge=2592000)](https://github.com/creativetimofficial/ct-material-dashboard-pro/issues-react?q=is%3Aissue+is%3Aclosed) [![Join the chat at https://gitter.im/NIT-dgp/General](https://badges.gitter.im/NIT-dgp/General.svg)](https://gitter.im/creative-tim/material-dashboard) [![Chat](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://discord.gg/E4aHAQy)
![version](https://img.shields.io/badge/version-1.8.0-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/creativetimofficial/ct-material-dashboard-pro-react.svg?maxAge=2592000)](https://github.com/creativetimofficial/ct-material-dashboard-pro-react/issues?q=is%3Aopen+is%3Aissue) [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/creativetimofficial/ct-material-dashboard-pro-react.svg?maxAge=2592000)](https://github.com/creativetimofficial/ct-material-dashboard-pro/issues-react?q=is%3Aissue+is%3Aclosed) [![Join the chat at https://gitter.im/NIT-dgp/General](https://badges.gitter.im/NIT-dgp/General.svg)](https://gitter.im/creative-tim/material-dashboard) [![Chat](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://discord.gg/E4aHAQy)

![Product Gif](./material-dashboard-pro-react.gif)

Expand Down Expand Up @@ -84,157 +84,166 @@ Within the download you'll find the following directories and files:

```
material-dashboard-pro-react
.
├── CHANGELOG.md
├── ISSUE_TEMPLATE.md
├── README.md
├── gulpfile.js
├── jsconfig.json
├── package.json
├── documentation
│   ├── assets
│   │   ├── css
│   │   ├── img
│   │   │   └── faces
│   │   └── js
│   └── tutorial-components.html
├── public
│   ├── favicon.ico
│   ├── index.html
│   └── manifest.json
└── src
├── index.js
├── routes.js
├── assets
│   ├── github
│   │   └── material-dashboard-pro-react.gif
│   ├── img
│   │   ├── faces
│   │   ├── flags
│   │   ├── logo-white.svg
│   │   └── logo.svg
│   ├── jss
│   │   ├── material-dashboard-pro-react
│   │   │   ├── components
│   │   │   ├── layouts
│   │   │   └── views
│   │   └── material-dashboard-pro-react.jsx
│   │   └── material-dashboard-pro-react.js
│   └── scss
│   ├── material-dashboard-pro-react
│   │   ├── mixins
│   │   └── plugins
│   └── material-dashboard-pro-react.scss
├── components
│   ├── Accordion
│   │   └── Accordion.jsx
│   │   └── Accordion.js
│   ├── Badge
│   │   └── Badge.jsx
│   │   └── Badge.js
│   ├── Card
│   │   ├── Card.jsx
│   │   ├── CardAvatar.jsx
│   │   ├── CardBody.jsx
│   │   ├── CardFooter.jsx
│   │   ├── CardHeader.jsx
│   │   ├── CardIcon.jsx
│   │   └── CardText.jsx
│   │   ├── Card.js
│   │   ├── CardAvatar.js
│   │   ├── CardBody.js
│   │   ├── CardFooter.js
│   │   ├── CardHeader.js
│   │   ├── CardIcon.js
│   │   └── CardText.js
│   ├── Clearfix
│   │   └── Clearfix.jsx
│   │   └── Clearfix.js
│   ├── CustomButtons
│   │   └── Button.jsx
│   │   └── Button.js
│   ├── CustomDropdown
│   │   └── CustomDropdown.jsx
│   │   └── CustomDropdown.js
│   ├── CustomInput
│   │   └── CustomInput.jsx
│   │   └── CustomInput.js
│   ├── CustomLinearProgress
│   │   └── CustomLinearProgress.jsx
│   │   └── CustomLinearProgress.js
│   ├── CustomTabs
│   │   └── CustomTabs.jsx
│   │   └── CustomTabs.js
│   ├── CustomUpload
│   │   ├── ImageUpload.jsx
│   │   └── PictureUpload.jsx
│   │   ├── ImageUpload.js
│   │   └── PictureUpload.js
│   ├── FixedPlugin
│   │   └── FixedPlugin.jsx
│   │   └── FixedPlugin.js
│   ├── Footer
│   │   └── Footer.jsx
│   │   └── Footer.js
│   ├── Grid
│   │   ├── GridContainer.jsx
│   │   └── GridItem.jsx
│   │   ├── GridContainer.js
│   │   └── GridItem.js
│   ├── Heading
│   │   └── Heading.jsx
│   │   └── Heading.js
│   ├── InfoArea
│   │   └── InfoArea.jsx
│   │   └── InfoArea.js
│   ├── Instruction
│   │   └── Instruction.jsx
│   │   └── Instruction.js
│   ├── NavPills
│   │   └── NavPills.jsx
│   │   └── NavPills.js
│   ├── Navbars
│   │   ├── AdminNavbar.jsx
│   │   ├── AdminNavbarLinks.jsx
│   │   └── AuthNavbar.jsx
│   │   ├── AdminNavbar.js
│   │   ├── AdminNavbarLinks.js
│   │   └── AuthNavbar.js
│   ├── Pagination
│   │   └── Pagination.jsx
│   │   └── Pagination.js
│   ├── Sidebar
│   │   └── Sidebar.jsx
│   │   └── Sidebar.js
│   ├── Snackbar
│   │   ├── Snackbar.jsx
│   │   └── SnackbarContent.jsx
│   │   ├── Snackbar.js
│   │   └── SnackbarContent.js
│   ├── Table
│   │   └── Table.jsx
│   │   └── Table.js
│   ├── Tasks
│   │   └── Tasks.jsx
│   │   └── Tasks.js
│   ├── Timeline
│   │   └── Timeline.jsx
│   │   └── Timeline.js
│   ├── Typography
│   │   ├── Danger.jsx
│   │   ├── Info.jsx
│   │   ├── Muted.jsx
│   │   ├── Primary.jsx
│   │   ├── Quote.jsx
│   │   ├── Success.jsx
│   │   └── Warning.jsx
│   │   ├── Danger.js
│   │   ├── Info.js
│   │   ├── Muted.js
│   │   ├── Primary.js
│   │   ├── Quote.js
│   │   ├── Success.js
│   │   └── Warning.js
│   └── Wizard
│   └── Wizard.jsx
│   └── Wizard.js
├── index.js
├── layouts
│   ├── Admin.jsx
│   ├── Auth.jsx
│   └── RTL.jsx
│   ├── Admin.js
│   ├── Auth.js
│   └── RTL.js
├── routes.js
├── variables
│   ├── charts.jsx
│   └── general.jsx
│   ├── charts.js
│   └── general.js
└── views
├── Calendar
│   └── Calendar.jsx
│   └── Calendar.js
├── Charts
│   └── Charts.jsx
│   └── Charts.js
├── Components
│   ├── Buttons.jsx
│   ├── GridSystem.jsx
│   ├── Icons.jsx
│   ├── Notifications.jsx
│   ├── Panels.jsx
│   ├── SweetAlert.jsx
│   └── Typography.jsx
│   ├── Buttons.js
│   ├── GridSystem.js
│   ├── Icons.js
│   ├── Notifications.js
│   ├── Panels.js
│   ├── SweetAlert.js
│   └── Typography.js
├── Dashboard
│   └── Dashboard.jsx
│   └── Dashboard.js
├── Forms
│   ├── ExtendedForms.jsx
│   ├── RegularForms.jsx
│   ├── ValidationForms.jsx
│   ├── Wizard.jsx
│   ├── ExtendedForms.js
│   ├── RegularForms.js
│   ├── ValidationForms.js
│   ├── Wizard.js
│   └── WizardSteps
│   ├── Step1.jsx
│   ├── Step2.jsx
│   └── Step3.jsx
│   ├── Step1.js
│   ├── Step2.js
│   └── Step3.js
├── Maps
│   ├── FullScreenMap.jsx
│   ├── GoogleMaps.jsx
│   └── VectorMap.jsx
│   ├── FullScreenMap.js
│   ├── GoogleMaps.js
│   └── VectorMap.js
├── Pages
│   ├── ErrorPage.jsx
│   ├── LockScreenPage.jsx
│   ├── LoginPage.jsx
│   ├── PricingPage.jsx
│   ├── RTLSupport.jsx
│   ├── RegisterPage.jsx
│   ├── Timeline.jsx
│   └── UserProfile.jsx
│   ├── ErrorPage.js
│   ├── LockScreenPage.js
│   ├── LoginPage.js
│   ├── PricingPage.js
│   ├── RTLSupport.js
│   ├── RegisterPage.js
│   ├── Timeline.js
│   └── UserProfile.js
├── Tables
│   ├── ExtendedTables.jsx
│   ├── ReactTables.jsx
│   └── RegularTables.jsx
│   ├── ExtendedTables.js
│   ├── ReactTables.js
│   └── RegularTables.js
└── Widgets
└── Widgets.jsx
└── Widgets.js
```

## Browser Support
Expand Down

0 comments on commit dd972f3

Please sign in to comment.