@balkangraph/orgchart.js 8.14.74 → 8.14.75
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 +35 -4
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -1028,17 +1028,48 @@ declare class OrgChart extends OrgChartBase {
|
|
|
1028
1028
|
}) => void): OrgChart;
|
|
1029
1029
|
|
|
1030
1030
|
/**
|
|
1031
|
-
*
|
|
1031
|
+
* The tree div element.
|
|
1032
|
+
* let chart = new OrgChart('#tree', {});
|
|
1033
|
+
* let element = chart.element;
|
|
1032
1034
|
*/
|
|
1033
1035
|
element: HTMLElement;
|
|
1034
1036
|
|
|
1035
|
-
|
|
1037
|
+
/**
|
|
1038
|
+
* The chart editUI object.
|
|
1039
|
+
* let chart = new OrgChart('#tree', {});
|
|
1040
|
+
* let editUI = chart.editUI;
|
|
1041
|
+
*/
|
|
1036
1042
|
editUI: OrgChart.editUI;
|
|
1037
|
-
|
|
1043
|
+
|
|
1044
|
+
/**
|
|
1045
|
+
* The chart searchUI object.
|
|
1046
|
+
* let chart = new OrgChart('#tree', {});
|
|
1047
|
+
* let searchUI = chart.searchUI;
|
|
1048
|
+
*/
|
|
1038
1049
|
searchUI: OrgChart.searchUI;
|
|
1050
|
+
|
|
1051
|
+
/**
|
|
1052
|
+
* The chart nodeMenuUI object.
|
|
1053
|
+
* let chart = new OrgChart('#tree', {});
|
|
1054
|
+
* let nodeMenuUI = chart.nodeMenuUI;
|
|
1055
|
+
*/
|
|
1039
1056
|
nodeMenuUI: OrgChart.menuUI;
|
|
1057
|
+
|
|
1058
|
+
/**
|
|
1059
|
+
* The chart filterUI object.
|
|
1060
|
+
* let chart = new OrgChart('#tree', {});
|
|
1061
|
+
* let filterUI = chart.filterUI;
|
|
1062
|
+
*/
|
|
1040
1063
|
filterUI: OrgChart.filterUI;
|
|
1064
|
+
|
|
1065
|
+
/**
|
|
1066
|
+
* @ignore
|
|
1067
|
+
*/
|
|
1041
1068
|
xScrollUI: OrgChart.xScrollUI;
|
|
1069
|
+
|
|
1070
|
+
/**
|
|
1071
|
+
* @ignore
|
|
1072
|
+
*/
|
|
1042
1073
|
yScrollUI: OrgChart.yScrollUI;
|
|
1043
1074
|
undoRedoUI: OrgChart.undoRedoUI;
|
|
1044
1075
|
nodeCircleMenuUI: OrgChart.circleMenuUI;
|
|
@@ -2819,7 +2850,7 @@ declare namespace OrgChart {
|
|
|
2819
2850
|
* ```
|
|
2820
2851
|
*/
|
|
2821
2852
|
undoRedoStorageName?: string,
|
|
2822
|
-
|
|
2853
|
+
|
|
2823
2854
|
/**
|
|
2824
2855
|
* Configure the buildin edit form.
|
|
2825
2856
|
* ```typescript
|