@visns-studio/visns-components 1.5.6 → 1.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/crm/visns-navigation.jsx +10 -0
- package/package.json +53 -53
|
@@ -3,19 +3,24 @@ import { Link, useLocation, useNavigate } from "react-router-dom";
|
|
|
3
3
|
import {
|
|
4
4
|
ArrowCycle,
|
|
5
5
|
BookClose,
|
|
6
|
+
Briefcase,
|
|
6
7
|
Bug,
|
|
7
8
|
Calendar,
|
|
8
9
|
Clipboard,
|
|
9
10
|
DoubleSword,
|
|
10
11
|
Draft,
|
|
11
12
|
Grid,
|
|
13
|
+
Home,
|
|
12
14
|
LightBulb,
|
|
13
15
|
PeopleGroup,
|
|
16
|
+
PeopleMultiple,
|
|
14
17
|
Person,
|
|
15
18
|
SettingsVertical,
|
|
16
19
|
SignOut,
|
|
17
20
|
Shield,
|
|
21
|
+
StatisticUp,
|
|
18
22
|
Ticket,
|
|
23
|
+
Utensils,
|
|
19
24
|
} from "akar-icons";
|
|
20
25
|
|
|
21
26
|
import CustomFetch from "./visns-fetch";
|
|
@@ -88,15 +93,20 @@ function Navigation({ logo, logout, navConfig, setSystemAuth, userProfile }) {
|
|
|
88
93
|
const iconComponents = {
|
|
89
94
|
arrowCycle: ArrowCycle,
|
|
90
95
|
bookClose: BookClose,
|
|
96
|
+
briefCase: Briefcase,
|
|
91
97
|
calendar: Calendar,
|
|
92
98
|
clipboard: Clipboard,
|
|
93
99
|
doubleSword: DoubleSword,
|
|
94
100
|
draft: Draft,
|
|
95
101
|
grid: Grid,
|
|
102
|
+
home: Home,
|
|
96
103
|
lightBulb: LightBulb,
|
|
97
104
|
peopleGroup: PeopleGroup,
|
|
105
|
+
peopleMultiple: PeopleMultiple,
|
|
98
106
|
settingsVertical: SettingsVertical,
|
|
107
|
+
statisticUp: StatisticUp,
|
|
99
108
|
ticket: Ticket,
|
|
109
|
+
utensils: Utensils,
|
|
100
110
|
};
|
|
101
111
|
|
|
102
112
|
const IconComponent = iconComponents[n.icon];
|
package/package.json
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
2
|
+
"dependencies": {
|
|
3
|
+
"@inovua/reactdatagrid-community": "^5.9.4",
|
|
4
|
+
"@inovua/reactdatagrid-enterprise": "^5.9.4",
|
|
5
|
+
"akar-icons": "^1.9.28",
|
|
6
|
+
"awesome-debounce-promise": "^2.1.0",
|
|
7
|
+
"axios": "^1.4.0",
|
|
8
|
+
"framer-motion": "^10.12.16",
|
|
9
|
+
"html-react-parser": "^4.0.0",
|
|
10
|
+
"lodash": "^4.17.21",
|
|
11
|
+
"moment": "^2.29.4",
|
|
12
|
+
"numeral": "^2.0.6",
|
|
13
|
+
"quill-image-uploader": "^1.3.0",
|
|
14
|
+
"react-confirm-alert": "^3.0.6",
|
|
15
|
+
"react-datepicker": "^4.14.0",
|
|
16
|
+
"react-dropzone": "^14.2.3",
|
|
17
|
+
"react-number-format": "^5.2.2",
|
|
18
|
+
"react-promise-tracker": "^2.1.1",
|
|
19
|
+
"react-quill": "^2.0.0",
|
|
20
|
+
"react-select": "^5.7.3",
|
|
21
|
+
"react-slugify": "^3.0.2",
|
|
22
|
+
"react-sortable-hoc": "^2.0.0",
|
|
23
|
+
"react-toastify": "^9.1.3",
|
|
24
|
+
"react-toggle": "^4.1.3",
|
|
25
|
+
"react-tooltip": "^5.14.0",
|
|
26
|
+
"react-window": "^1.8.9",
|
|
27
|
+
"reactjs-popup": "^2.0.5"
|
|
28
|
+
},
|
|
29
|
+
"devDependecies": {
|
|
30
|
+
"react": "^18.2.0",
|
|
31
|
+
"react-dom": "^18.2.0"
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"react": "^17.0.1",
|
|
35
|
+
"react-dom": "^17.0.1"
|
|
36
|
+
},
|
|
37
|
+
"name": "@visns-studio/visns-components",
|
|
38
|
+
"version": "1.5.7",
|
|
39
|
+
"description": "Various packages to assist in the development of our Custom Applications.",
|
|
40
|
+
"main": "index.js",
|
|
41
|
+
"devDependencies": {},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
44
|
+
},
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "git+https://github.com/visnsstudio/visns-components.git"
|
|
48
|
+
},
|
|
49
|
+
"author": "Visns Studio",
|
|
50
|
+
"license": "ISC",
|
|
51
|
+
"bugs": {
|
|
52
|
+
"url": "https://github.com/visnsstudio/visns-components/issues"
|
|
53
|
+
},
|
|
54
|
+
"homepage": "https://github.com/visnsstudio/visns-components#readme"
|
|
55
55
|
}
|