Skip to content

Commit

Permalink
Removed unused componentes and updated styles
Browse files Browse the repository at this point in the history
  • Loading branch information
devias-io committed May 10, 2019
1 parent 565d71d commit 8236249
Show file tree
Hide file tree
Showing 36 changed files with 394 additions and 872 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Change Log

## [0.1.1] 2019-05-10

### Updates

- 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 `DisplayMode` component size, when used as a flex child it could grow/shrink
- Fixed `Typography` view responsiveness for small devices
- Fixed `ProductCard` component description height
https://github.com/devias-io/react-material-dashboard/pull/2

## [0.1.0] 2019-05-02

### Initial commit
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-material-dashboard",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"dependencies": {
"@material-ui/core": "^3.9.2",
Expand Down
10 changes: 9 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,28 @@ import React, { Component } from 'react';
import { Router } from 'react-router-dom';
import { createBrowserHistory } from 'history';

// Externals
import { Chart } from 'react-chartjs-2';

// Material helpers
import { MuiThemeProvider } from '@material-ui/core/styles';

// ChartJS helpers
import { draw } from './helpers/chartjs';

// Theme
import theme from './theme';
import './assets/scss/index.scss';
import 'react-perfect-scrollbar/dist/css/styles.css';
import './assets/scss/index.scss';

// Routes
import Routes from './Routes';

// Browser history
const browserHistory = createBrowserHistory();

Chart.helpers.extend(Chart.elements.Rectangle.prototype, { draw });

export default class App extends Component {
render() {
return (
Expand Down
23 changes: 0 additions & 23 deletions src/HOCs/authGuard/index.jsx

This file was deleted.

1 change: 0 additions & 1 deletion src/assets/scss/_misc.scss
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
@import './misc/perfect-scroll';
@import './misc/react-calendar';
57 changes: 0 additions & 57 deletions src/assets/scss/misc/_react-calendar.scss

This file was deleted.

117 changes: 0 additions & 117 deletions src/components/Alert/index.jsx

This file was deleted.

52 changes: 0 additions & 52 deletions src/components/Alert/styles.jsx

This file was deleted.

31 changes: 0 additions & 31 deletions src/components/CodeBlock/index.jsx

This file was deleted.

Loading

0 comments on commit 8236249

Please sign in to comment.