balkan-orgchart-js 9.1.39 → 9.1.40
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/README.md +4 -4
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,25 +22,25 @@
|
|
|
22
22
|
### Step 1 - Installation
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
npm install balkan
|
|
25
|
+
npm install balkan-orgchart-js
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
or with yarn:
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
|
-
yarn add balkan
|
|
31
|
+
yarn add balkan-orgchart-js
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
### Step 2 - Import it in your code
|
|
35
35
|
|
|
36
36
|
```javascript
|
|
37
|
-
import OrgChart from "balkan
|
|
37
|
+
import OrgChart from "balkan-orgchart-js";
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
or with CommonJS:
|
|
41
41
|
|
|
42
42
|
```javascript
|
|
43
|
-
const { OrgChart } = require("balkan
|
|
43
|
+
const { OrgChart } = require("balkan-orgchart-js");
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
### Step 3 - Usage
|
package/orgchart.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
1
|
+
/* eslint-disable */
|
package/package.json
CHANGED