Skip to content

Commit

Permalink
Changelog + package.json dep update
Browse files Browse the repository at this point in the history
  • Loading branch information
simmmpleweb committed Mar 10, 2022
1 parent 5d6fa6c commit e5ec002
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 10 deletions.
54 changes: 53 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,63 @@
# Change Log

## [2.0.0] 2022-03-09

### Update v2.0.0

### Added components

- Each page now has a folder of its own, containing `index.js` (for the page itself) and a folder in which all cards have been made as a separate component which take props.
- Added sidebar content which is used for both the standard sidebar and the responsive sidebar drawer.
- Inside `Sidebar` folder in `components`, there is `index.js`, which is the actual sidebar, and `SidebarResponsive.js` which is a button that opens the sidebar drawer.

### Updated dependencies

```
@emotion/cache 11.4.0 → 11.7.1
@emotion/react 11.4.1 → 11.8.1
@emotion/styled 11.3.0 → 11.8.1
react-router-dom 5.2.0 → 6.2.1
stylis 4.0.10 → 4.0.13
```

### Warning

There is a warnings related to the stylis-plugin-rtl dependency that won't affect on the behavior of the product its something with the library itself.

## [1.0.2] 2021-09-13

### Update v1.0.2

### Bug fixing

- Removed console errors

### Updated dependencies

```
node-sass 5.0.0 → 7.0.1
react-scripts 4.0.3 → 5.0.0
```

## [1.0.1] 2021-09-13

### Update v1.0.1

- Added RTL Page
- Bug Fixing

### Added dependencies

```
@emotion/cache 11.4.0
react-github-btn 1.2.1
```

### Updated dependencies

```
stylis 4.0.10 → 4.0.13
stylis-plugin-rtl 2.1.0 → 2.1.14
```

## [1.0.0] 2021-08-20

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"@chakra-ui/icons": "^1.0.14",
"@chakra-ui/react": "^1.6.5",
"@chakra-ui/theme-tools": "^1.1.9",
"@emotion/cache": "^11.4.0",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@fontsource/open-sans": "^4.5.0",
"@fontsource/raleway": "^4.5.0",
"@fontsource/roboto": "^4.5.0",
Expand All @@ -29,12 +29,12 @@
"react-github-btn": "^1.2.1",
"react-icons": "^4.2.0",
"react-jvectormap": "0.0.16",
"react-router-dom": "5.2.0",
"react-router-dom": "6.2.1",
"react-scripts": "5.0.0",
"react-swipeable-views": "0.13.9",
"react-table": "7.7.0",
"react-tagsinput": "3.19.0",
"stylis": "^4.0.10",
"stylis": "^4.0.13",
"stylis-plugin-rtl": "^2.1.0"
},
"resolutions": {
Expand Down
4 changes: 0 additions & 4 deletions src/views/Dashboard/Profile/components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ const Header = ({
}) => {
// Chakra color mode
const textColor = useColorModeValue("gray.700", "white");
const bgProfile = useColorModeValue(
"hsla(0,0%,100%,.8)",
"linear-gradient(112.83deg, rgba(255, 255, 255, 0.21) 0%, rgba(255, 255, 255, 0) 110.84%)"
);
const borderProfileColor = useColorModeValue(
"white",
"rgba(255, 255, 255, 0.31)"
Expand Down

0 comments on commit e5ec002

Please sign in to comment.