Skip to content

Commit

Permalink
Merge branch 'pr/51'
Browse files Browse the repository at this point in the history
  • Loading branch information
simmmpleweb committed Mar 10, 2022
2 parents 247b2d7 + e5ec002 commit bc2fee2
Show file tree
Hide file tree
Showing 47 changed files with 3,111 additions and 3,502 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
2 changes: 1 addition & 1 deletion src/components/Navbars/AdminNavbarLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import avatar3 from "assets/img/avatars/avatar3.png";
import { ProfileIcon, SettingsIcon } from "components/Icons/Icons";
// Custom Components
import { ItemContent } from "components/Menu/ItemContent";
import { SidebarResponsive } from "components/Sidebar/Sidebar";
import SidebarResponsive from "components/Sidebar/SidebarResponsive";
import PropTypes from "prop-types";
import React from "react";
import { NavLink } from "react-router-dom";
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navbars/AuthNavbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
PersonIcon,
RocketIcon,
} from "components/Icons/Icons";
import { SidebarResponsive } from "components/Sidebar/Sidebar";
import SidebarResponsive from "components/Sidebar/SidebarResponsive";
import PropTypes from "prop-types";
import React from "react";
import { NavLink } from "react-router-dom";
Expand Down
Loading

0 comments on commit bc2fee2

Please sign in to comment.