@balkangraph/orgchart.js 8.15.10 → 8.15.12
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 +13 -0
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -3232,6 +3232,19 @@ declare namespace OrgChart {
|
|
|
3232
3232
|
collapse,
|
|
3233
3233
|
exporting,
|
|
3234
3234
|
init,
|
|
3235
|
+
|
|
3236
|
+
/**
|
|
3237
|
+
* OrgChart.action.centerNode = 9;
|
|
3238
|
+
* ```typescript
|
|
3239
|
+
* var chart = new OrgChart('#tree', {
|
|
3240
|
+
* });
|
|
3241
|
+
* chart.onInit(() => {
|
|
3242
|
+
* chart.center(2);
|
|
3243
|
+
* console.log(chart.manager.action);
|
|
3244
|
+
* });
|
|
3245
|
+
* chart.load(nodes)
|
|
3246
|
+
* ```
|
|
3247
|
+
*/
|
|
3235
3248
|
centerNode,
|
|
3236
3249
|
insert,
|
|
3237
3250
|
maximize,
|