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