Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
simmmpleweb committed Jun 8, 2022
1 parent 7b454e9 commit d8f0375
Show file tree
Hide file tree
Showing 13 changed files with 5 additions and 928 deletions.
19 changes: 3 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,11 @@
## [1.1.1] 2022-06-02

🐛 Errors fixed:

- Solved the warnings regarding stylis-plugin-rtl

## [1.1.0] 2022-05-26

### New cards added + bugs solved

🟢 Added new cards to main dashboard screen:

- Course CTA card
- Team members list card
- Safety control CTA card
- Cashback company card
## [1.1.0] 2022-06-08

🐛 Bugs solved:

- Calendar card - Card border bug on dark mode
- Development Table - Missing content bug
- Solved the warnings regarding stylis-plugin-rtl
- Fixed console warnings

## [1.0.1] 2022-04-25

Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"name": "horizon-ui-chakra",
"version": "1.0.1",
"private": true,
"dependencies": {
"@asseinfo/react-kanban": "^2.2.0",
"dependencies": {
"@chakra-ui/icons": "^1.1.5",
"@chakra-ui/react": "1.8.8",
"@chakra-ui/system": "^1.12.1",
Expand Down
21 changes: 0 additions & 21 deletions src/assets/css/Plugins.css

This file was deleted.

Binary file removed src/assets/img/applications/kanban1.png
Binary file not shown.
Binary file removed src/assets/img/applications/kanban2.png
Binary file not shown.
103 changes: 0 additions & 103 deletions src/components/card/Limited.js

This file was deleted.

29 changes: 1 addition & 28 deletions src/components/scrollbar/Scrollbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,31 +35,4 @@ export const renderView = ({ style, ...props }) => {
{...props}
/>
);
};

export const kanbanRenderTrack = ({ style, ...props }) => {
const trackStyle = {
width: 6,
transition: "opacity 200ms ease 0s",
opacity: 0,
bottom: 2,
top: 2,
borderRadius: 3,
right: 0,
};
return <div style={{ ...style, ...trackStyle }} {...props} />;
};
export const kanbanRenderThumb = ({ style, ...props }) => {
const thumbStyle = {
borderRadius: 15,
background: "rgba(222, 222, 222, .1)",
};
return <div style={{ ...style, ...thumbStyle }} {...props} />;
};
export const kanbanRenderView = ({ style, ...props }) => {
const viewStyle = {
position: "relative",
marginRight: -15,
};
return <div style={{ ...style, ...viewStyle }} {...props} />;
};
};
9 changes: 0 additions & 9 deletions src/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import React from "react";
import { Icon } from "@chakra-ui/react";
import {
MdBarChart,
MdDashboard,
MdPerson,
MdHome,
MdLock,
Expand All @@ -14,7 +13,6 @@ import {
import MainDashboard from "views/admin/default";
import NFTMarketplace from "views/admin/marketplace";
import Profile from "views/admin/profile";
import Kanban from "views/admin/kanban";
import DataTables from "views/admin/dataTables";
import RTL from "views/admin/rtl";

Expand Down Expand Up @@ -51,13 +49,6 @@ const routes = [
path: "/data-tables",
component: DataTables,
},
{
name: "Kanban",
layout: "/admin",
icon: <Icon as={MdDashboard} width='20px' height='20px' color='inherit' />,
path: "/kanban",
component: Kanban,
},
{
name: "Profile",
layout: "/admin",
Expand Down
Loading

0 comments on commit d8f0375

Please sign in to comment.