@balkangraph/orgchart.js 8.3.5 → 8.3.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 +3 -2
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -1522,7 +1522,7 @@ declare namespace OrgChart {
|
|
|
1522
1522
|
* ```
|
|
1523
1523
|
* {@link https://balkan.app/OrgChartJS/Docs/MinMax | See doc...}
|
|
1524
1524
|
*/
|
|
1525
|
-
min?:
|
|
1525
|
+
min?: boolean,
|
|
1526
1526
|
/**
|
|
1527
1527
|
* Node binding in Org Chart JS maps node data to node template parameters.
|
|
1528
1528
|
* ```typescript
|
|
@@ -2157,7 +2157,8 @@ declare class OrgChartBase {
|
|
|
2157
2157
|
/**
|
|
2158
2158
|
* dragged node id
|
|
2159
2159
|
*/
|
|
2160
|
-
dragId: string | number
|
|
2160
|
+
dragId: string | number,
|
|
2161
|
+
event: MouseEvent
|
|
2161
2162
|
}) => void): OrgChart;
|
|
2162
2163
|
/**
|
|
2163
2164
|
* The onDrop event occurs when a node is dropped. *enableDragDrop* option has to be turned on.
|