@balkangraph/orgchart.js 8.13.34 → 8.13.36
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 +4 -4
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -1514,7 +1514,7 @@ declare namespace OrgChart {
|
|
|
1514
1514
|
boundary
|
|
1515
1515
|
}
|
|
1516
1516
|
|
|
1517
|
-
enum
|
|
1517
|
+
enum movable {
|
|
1518
1518
|
node,
|
|
1519
1519
|
tree
|
|
1520
1520
|
}
|
|
@@ -1780,9 +1780,9 @@ declare namespace OrgChart {
|
|
|
1780
1780
|
*/
|
|
1781
1781
|
showXScroll?: boolean ,
|
|
1782
1782
|
/**
|
|
1783
|
-
*
|
|
1783
|
+
* movable node, move the node anywhere on the canvas
|
|
1784
1784
|
*/
|
|
1785
|
-
|
|
1785
|
+
movable?: OrgChart.movable,
|
|
1786
1786
|
/**
|
|
1787
1787
|
* Shows vertical scrollbar. Default value - *false*.
|
|
1788
1788
|
* ```typescript
|
|
@@ -2590,7 +2590,7 @@ declare class OrgChartBase {
|
|
|
2590
2590
|
/**
|
|
2591
2591
|
* array of node ids
|
|
2592
2592
|
*
|
|
2593
|
-
* this property is initialized only if
|
|
2593
|
+
* this property is initialized only if movable option is set
|
|
2594
2594
|
*/
|
|
2595
2595
|
nodeIds: Array<string | number>
|
|
2596
2596
|
}) => void): OrgChart;
|