From e5ec002520e33c8f567af4aca733bf95f690c692 Mon Sep 17 00:00:00 2001 From: simmmpleweb Date: Thu, 10 Mar 2022 12:15:15 +0200 Subject: [PATCH] Changelog + package.json dep update --- CHANGELOG.md | 54 ++++++++++++++++++- package.json | 10 ++-- .../Dashboard/Profile/components/Header.js | 4 -- 3 files changed, 58 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 220c0894b..a7dc4eb3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package.json b/package.json index 1ad7f5b2d..49821d8da 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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": { diff --git a/src/views/Dashboard/Profile/components/Header.js b/src/views/Dashboard/Profile/components/Header.js index de5e3983a..be046f7bc 100644 --- a/src/views/Dashboard/Profile/components/Header.js +++ b/src/views/Dashboard/Profile/components/Header.js @@ -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)"