@balkangraph/orgchart.js 8.14.75 → 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 +10 -0
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -1029,36 +1029,46 @@ declare class OrgChart extends OrgChartBase {
|
|
|
1029
1029
|
|
|
1030
1030
|
/**
|
|
1031
1031
|
* The tree div element.
|
|
1032
|
+
* ```typescript
|
|
1032
1033
|
* let chart = new OrgChart('#tree', {});
|
|
1033
1034
|
* let element = chart.element;
|
|
1035
|
+
* ```
|
|
1034
1036
|
*/
|
|
1035
1037
|
element: HTMLElement;
|
|
1036
1038
|
|
|
1037
1039
|
/**
|
|
1038
1040
|
* The chart editUI object.
|
|
1041
|
+
* ```typescript
|
|
1039
1042
|
* let chart = new OrgChart('#tree', {});
|
|
1040
1043
|
* let editUI = chart.editUI;
|
|
1044
|
+
* ```
|
|
1041
1045
|
*/
|
|
1042
1046
|
editUI: OrgChart.editUI;
|
|
1043
1047
|
|
|
1044
1048
|
/**
|
|
1045
1049
|
* The chart searchUI object.
|
|
1050
|
+
* ```typescript
|
|
1046
1051
|
* let chart = new OrgChart('#tree', {});
|
|
1047
1052
|
* let searchUI = chart.searchUI;
|
|
1053
|
+
* ```
|
|
1048
1054
|
*/
|
|
1049
1055
|
searchUI: OrgChart.searchUI;
|
|
1050
1056
|
|
|
1051
1057
|
/**
|
|
1052
1058
|
* The chart nodeMenuUI object.
|
|
1059
|
+
* ```typescript
|
|
1053
1060
|
* let chart = new OrgChart('#tree', {});
|
|
1054
1061
|
* let nodeMenuUI = chart.nodeMenuUI;
|
|
1062
|
+
* ```
|
|
1055
1063
|
*/
|
|
1056
1064
|
nodeMenuUI: OrgChart.menuUI;
|
|
1057
1065
|
|
|
1058
1066
|
/**
|
|
1059
1067
|
* The chart filterUI object.
|
|
1068
|
+
* ```typescript
|
|
1060
1069
|
* let chart = new OrgChart('#tree', {});
|
|
1061
1070
|
* let filterUI = chart.filterUI;
|
|
1071
|
+
* ```
|
|
1062
1072
|
*/
|
|
1063
1073
|
filterUI: OrgChart.filterUI;
|
|
1064
1074
|
|