@balkangraph/orgchart.js 8.13.1 → 8.13.8
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/orgchart.d.ts +20 -1
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -1045,7 +1045,15 @@ declare namespace OrgChart {
|
|
|
1045
1045
|
/**
|
|
1046
1046
|
* indicates if the node is child of partner node
|
|
1047
1047
|
*/
|
|
1048
|
-
isChildOfPartner?: boolean
|
|
1048
|
+
isChildOfPartner?: boolean,
|
|
1049
|
+
/**
|
|
1050
|
+
* move the the node on x axis
|
|
1051
|
+
*/
|
|
1052
|
+
movex?: number | undefined,
|
|
1053
|
+
/**
|
|
1054
|
+
* move the the node on y axis
|
|
1055
|
+
*/
|
|
1056
|
+
movey?: number | undefined
|
|
1049
1057
|
}
|
|
1050
1058
|
|
|
1051
1059
|
|
|
@@ -1476,6 +1484,13 @@ declare namespace OrgChart {
|
|
|
1476
1484
|
none
|
|
1477
1485
|
}
|
|
1478
1486
|
|
|
1487
|
+
|
|
1488
|
+
|
|
1489
|
+
enum draggable {
|
|
1490
|
+
node
|
|
1491
|
+
//tree
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1479
1494
|
|
|
1480
1495
|
|
|
1481
1496
|
interface options {
|
|
@@ -1710,6 +1725,10 @@ declare namespace OrgChart {
|
|
|
1710
1725
|
* ```
|
|
1711
1726
|
*/
|
|
1712
1727
|
showXScroll?: boolean ,
|
|
1728
|
+
/**
|
|
1729
|
+
* Draggable node, drag the node anywhere on the canvas
|
|
1730
|
+
*/
|
|
1731
|
+
draggable?: OrgChart.draggable,
|
|
1713
1732
|
/**
|
|
1714
1733
|
* Shows vertical scrollbar. Default value - *false*.
|
|
1715
1734
|
* ```typescript
|