Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
Updated components to hooks, FC and ajusted theme
Browse files Browse the repository at this point in the history
  • Loading branch information
devias-io committed Jul 24, 2019
1 parent 202314c commit 2846305
Show file tree
Hide file tree
Showing 227 changed files with 5,245 additions and 23,440 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
root = true

[*.js]
end_of_line = lf
insert_final_newline = true
charset = utf-8

[*.js]
indent_style = space
indent_size = 2

[Makefile]
indent_style = tab
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
REACT_APP_GA_MEASUREMENT_ID=
28 changes: 21 additions & 7 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,28 @@
}
],
"jsx-quotes": 1,
"linebreak-style": [2, "unix"],
"quotes": [2, "single"],
"linebreak-style": [
2,
"unix"
],
"quotes": [
2,
"single"
],
"react/display-name": 1,
"react/forbid-prop-types": 0,
"react/sort-prop-types": 1,
"react/jsx-boolean-value": 1,
"react/jsx-first-prop-new-line": [1, "multiline"],
"react/jsx-first-prop-new-line": [
1,
"multiline"
],
"react/jsx-closing-bracket-location": 1,
"react/jsx-curly-spacing": 1,
"react/jsx-indent-props": [2, 2],
"react/jsx-indent-props": [
2,
2
],
"react/jsx-max-props-per-line": 1,
"react/jsx-no-duplicate-props": 1,
"react/jsx-no-literals": 0,
Expand All @@ -32,7 +44,7 @@
"react/no-did-update-set-state": 1,
"react/no-direct-mutation-state": 1,
"react/no-multi-comp": 1,
"react/no-set-state": 0,
"react/no-set-state": 1,
"react/no-unknown-property": 1,
"react/prefer-es6-class": 1,
"react/prop-types": 1,
Expand All @@ -50,5 +62,7 @@
"jsx": true,
"experimentalObjectRestSpread": true
},
"plugins": ["react"]
}
"plugins": [
"react"
]
}
11 changes: 6 additions & 5 deletions .gitignore
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
/.env
/.env.local
/.env.development.local
/.env.test.local
/.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
yarn-error.log*
Empty file added .prettierignore
Empty file.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## [0.3.0] 2019-07-24

- Replaced dependency `classnames` with `clsx`
- Replaced `.jsx` with `.js`
- Removed unused `.scss` files from `assets` folder
- Updated dependencies

## [0.2.0] 2019-05-13

## Updates
Expand Down
30 changes: 0 additions & 30 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,40 +65,11 @@ material-react-dashboard
├── docs
└── src
├── assets
│ └── scss
├── common
│ ├── colors
│ ├── validators
│ └── serviceWorker.js
├── components
│ ├── DisplayMode
│ ├── Paper
│ ├── Portlet
│ ├── PortletContent
│ ├── PortletFooter
│ ├── PortletHeader
│ ├── DisplayMode
│ ├── PortletLabel
│ ├── PortletToolbar
│ ├── SearchInput
│ ├── Status
│ └── SearchInput
├── data
├── helpers
├── icons
│ ├── Facebook
│ └── Google
├── layouts
│ ├── Dashboard
│ │ └── components
│ │ ├── Footer
│ │ ├── Sidebar
│ │ └── Topbar
├── services
│ ├── notification
│ ├── order
│ ├── product
│ ├── user
├── theme
│ ├── overrides
│ ├── pallete.js
Expand All @@ -113,7 +84,6 @@ material-react-dashboard
│ ├── SignIn
│ ├── SignUp
│ ├── Typography
│ ├── UnderDevelopment
│ └── UserList
├── App.jsx
├── index.jsx
Expand Down
34 changes: 0 additions & 34 deletions docs/Polyfill-IE11.md

This file was deleted.

Loading

0 comments on commit 2846305

Please sign in to comment.