balkan-orgchart-react-community 9.1.82
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/index.es.d.ts +6055 -0
- package/index.es.js +5980 -0
- package/index.umd.js +287 -0
- package/package.json +58 -0
- package/readme.md +81 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "balkan-orgchart-react-community",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"types": "./index.es.d.ts",
|
|
5
|
+
"main": "./index.umd.js",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./index.es.d.ts",
|
|
9
|
+
"import": "./index.es.js",
|
|
10
|
+
"require": "./index.umd.js"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"peerDependencies": {
|
|
14
|
+
"react": ">=17",
|
|
15
|
+
"react-dom": ">=17"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"index.es.js",
|
|
19
|
+
"index.umd.js",
|
|
20
|
+
"index.es.d.ts",
|
|
21
|
+
"package.json",
|
|
22
|
+
"readme.md"
|
|
23
|
+
],
|
|
24
|
+
"author": {
|
|
25
|
+
"name": "BALKAN App <support@balkan.app> (https://balkan.app)"
|
|
26
|
+
},
|
|
27
|
+
"sideEffects": false,
|
|
28
|
+
"bugs": {
|
|
29
|
+
"email": "support@balkan.app",
|
|
30
|
+
"url": "https://github.com/BALKANGraph/OrgChartReact/issues"
|
|
31
|
+
},
|
|
32
|
+
"deprecated": false,
|
|
33
|
+
"description": "React organizational chart library for visualizing hierarchy, company structure, and team relationships with interactive diagrams.",
|
|
34
|
+
"homepage": "https://balkan.app/",
|
|
35
|
+
"keywords": [
|
|
36
|
+
"react-organizational-chart",
|
|
37
|
+
"react-orgchart",
|
|
38
|
+
"reactorgchart",
|
|
39
|
+
"react-org-chart",
|
|
40
|
+
"react-hierarchy",
|
|
41
|
+
"react-tree",
|
|
42
|
+
"react-hierarchical-data",
|
|
43
|
+
"react-tree-visualization",
|
|
44
|
+
"react-data-visualization",
|
|
45
|
+
"react-diagram",
|
|
46
|
+
"react-employee-chart",
|
|
47
|
+
"react-company-structure",
|
|
48
|
+
"react-hierarchy-chart",
|
|
49
|
+
"react-chart-library"
|
|
50
|
+
],
|
|
51
|
+
"license": "Community",
|
|
52
|
+
"repository": {
|
|
53
|
+
"type": "git",
|
|
54
|
+
"url": "git+https://github.com/BALKANGraph/OrgChartReact-Community.git"
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {},
|
|
57
|
+
"version": "9.1.82"
|
|
58
|
+
}
|
package/readme.md
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
#  OrgChart JS Community
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
**BALKAN OrgChart React Community** is a powerful **JavaScript library** for building **interactive organizational charts and hierarchy diagrams**. Create responsive org charts for **company structures, HR systems, dashboards, and internal tools** with minimal code and full customization.
|
|
6
|
+
|
|
7
|
+

|
|
8
|
+
|
|
9
|
+
## [Docs](https://balkan.app/OrgChartReact/Docs/GettingStarted) [Support](https://balkan.app/OrgChartReact/Support)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
<br>
|
|
13
|
+
|
|
14
|
+
## Overview
|
|
15
|
+
|
|
16
|
+
**OrgChart React Community** is free and comes with all of the core features expected from a React Organizational chart, including [Expand/Collapse](https://balkan.app/OrgChartReact/Docs/ExpandCollapse), [Custom Template](https://balkan.app/OrgChartReact/Docs/CreatingCustomTemplate), [Minimize/Maximize](https://balkan.app/OrgChartReact/Docs/MinMax), [CSS Customization](https://balkan.app/OrgChartReact/Docs/CSSCustomization) and more.
|
|
17
|
+
|
|
18
|
+
<br>
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
## Installation
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npm install balkan-orgchart-react
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
or with yarn:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
yarn add balkan-orgchart-react
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
## Declarative Usage
|
|
36
|
+
|
|
37
|
+
```js
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
import {OrgChart, Employee} from "balkan-orgchart-react";
|
|
41
|
+
|
|
42
|
+
function App() {
|
|
43
|
+
return (
|
|
44
|
+
<>
|
|
45
|
+
<OrgChart nodeBinding={{ field_0: 'name', field_1: 'title' }} >
|
|
46
|
+
<Employee name='Denny Curtis' title='CEO'>
|
|
47
|
+
<Employee name='Lexie Cole' title='QA Lead'></Employee>
|
|
48
|
+
<Employee name='Janae Barrett' title='Technical Director'></Employee>
|
|
49
|
+
<Employee name='Aaliyah Webb' title='Assistant' assistant={true}></Employee>
|
|
50
|
+
</Employee>
|
|
51
|
+
</OrgChart>
|
|
52
|
+
</>
|
|
53
|
+
)
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export default App
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
<br>
|
|
64
|
+
|
|
65
|
+
<br>
|
|
66
|
+
|
|
67
|
+
## Other Framework-Specific OrgChart JS Libraries
|
|
68
|
+
- Community
|
|
69
|
+
- [balkan-orgchart-js-community](https://www.npmjs.com/package/balkan-orgchart-js-community)
|
|
70
|
+
- [balkan-orgchart-react-community](https://www.npmjs.com/package/balkan-orgchart-react-community)
|
|
71
|
+
- [balkan-orgchart-vue-community](https://www.npmjs.com/package/balkan-orgchart-vue-community)
|
|
72
|
+
- [balkan-orgchart-angular-community](https://www.npmjs.com/package/balkan-orgchart-angular-community)
|
|
73
|
+
- Commercial - FREE Trial License
|
|
74
|
+
- [balkan-orgchart-js](https://www.npmjs.com/package/balkan-orgchart-js)
|
|
75
|
+
- [balkan-orgchart-react](https://www.npmjs.com/package/balkan-orgchart-react)
|
|
76
|
+
- [balkan-orgchart-vue](https://www.npmjs.com/package/balkan-orgchart-vue)
|
|
77
|
+
- [balkan-orgchart-angular](https://www.npmjs.com/package/balkan-orgchart-angular)
|
|
78
|
+
|
|
79
|
+
<br>
|
|
80
|
+
|
|
81
|
+
## [Docs](https://balkan.app/OrgChartReact/Docs/GettingStarted) [Support](https://balkan.app/OrgChartReact/Support)
|