Skip to content

Commit d8f0375

Browse files
committed
Release 1.1.0
1 parent 7b454e9 commit d8f0375

File tree

13 files changed

+5
-928
lines changed

13 files changed

+5
-928
lines changed

CHANGELOG.md

+3-16
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,11 @@
1-
## [1.1.1] 2022-06-02
2-
3-
🐛 Errors fixed:
4-
5-
- Solved the warnings regarding stylis-plugin-rtl
6-
7-
## [1.1.0] 2022-05-26
8-
9-
### New cards added + bugs solved
10-
11-
🟢 Added new cards to main dashboard screen:
12-
13-
- Course CTA card
14-
- Team members list card
15-
- Safety control CTA card
16-
- Cashback company card
1+
## [1.1.0] 2022-06-08
172

183
🐛 Bugs solved:
194

205
- Calendar card - Card border bug on dark mode
216
- Development Table - Missing content bug
7+
- Solved the warnings regarding stylis-plugin-rtl
8+
- Fixed console warnings
229

2310
## [1.0.1] 2022-04-25
2411

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"name": "horizon-ui-chakra",
44
"version": "1.0.1",
55
"private": true,
6-
"dependencies": {
7-
"@asseinfo/react-kanban": "^2.2.0",
6+
"dependencies": {
87
"@chakra-ui/icons": "^1.1.5",
98
"@chakra-ui/react": "1.8.8",
109
"@chakra-ui/system": "^1.12.1",

src/assets/css/Plugins.css

-21
This file was deleted.
-91.3 KB
Binary file not shown.
-37.6 KB
Binary file not shown.

src/components/card/Limited.js

-103
This file was deleted.

src/components/scrollbar/Scrollbar.js

+1-28
Original file line numberDiff line numberDiff line change
@@ -35,31 +35,4 @@ export const renderView = ({ style, ...props }) => {
3535
{...props}
3636
/>
3737
);
38-
};
39-
40-
export const kanbanRenderTrack = ({ style, ...props }) => {
41-
const trackStyle = {
42-
width: 6,
43-
transition: "opacity 200ms ease 0s",
44-
opacity: 0,
45-
bottom: 2,
46-
top: 2,
47-
borderRadius: 3,
48-
right: 0,
49-
};
50-
return <div style={{ ...style, ...trackStyle }} {...props} />;
51-
};
52-
export const kanbanRenderThumb = ({ style, ...props }) => {
53-
const thumbStyle = {
54-
borderRadius: 15,
55-
background: "rgba(222, 222, 222, .1)",
56-
};
57-
return <div style={{ ...style, ...thumbStyle }} {...props} />;
58-
};
59-
export const kanbanRenderView = ({ style, ...props }) => {
60-
const viewStyle = {
61-
position: "relative",
62-
marginRight: -15,
63-
};
64-
return <div style={{ ...style, ...viewStyle }} {...props} />;
65-
};
38+
};

src/routes.js

-9
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import React from "react";
33
import { Icon } from "@chakra-ui/react";
44
import {
55
MdBarChart,
6-
MdDashboard,
76
MdPerson,
87
MdHome,
98
MdLock,
@@ -14,7 +13,6 @@ import {
1413
import MainDashboard from "views/admin/default";
1514
import NFTMarketplace from "views/admin/marketplace";
1615
import Profile from "views/admin/profile";
17-
import Kanban from "views/admin/kanban";
1816
import DataTables from "views/admin/dataTables";
1917
import RTL from "views/admin/rtl";
2018

@@ -51,13 +49,6 @@ const routes = [
5149
path: "/data-tables",
5250
component: DataTables,
5351
},
54-
{
55-
name: "Kanban",
56-
layout: "/admin",
57-
icon: <Icon as={MdDashboard} width='20px' height='20px' color='inherit' />,
58-
path: "/kanban",
59-
component: Kanban,
60-
},
6152
{
6253
name: "Profile",
6354
layout: "/admin",

0 commit comments

Comments
 (0)