@balkangraph/orgchart.js 8.14.76 → 8.14.77

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 CHANGED
@@ -1081,12 +1081,72 @@ declare class OrgChart extends OrgChartBase {
1081
1081
  * @ignore
1082
1082
  */
1083
1083
  yScrollUI: OrgChart.yScrollUI;
1084
+
1085
+ /**
1086
+ * The chart undoRedoUI object.
1087
+ * ```typescript
1088
+ * let chart = new OrgChart('#tree', {});
1089
+ * let undoRedoUI = chart.undoRedoUI;
1090
+ * ```
1091
+ */
1084
1092
  undoRedoUI: OrgChart.undoRedoUI;
1093
+
1094
+ /**
1095
+ * The chart nodeCircleMenuUI object.
1096
+ * ```typescript
1097
+ * let chart = new OrgChart('#tree', {});
1098
+ * let nodeCircleMenuUI = chart.nodeCircleMenuUI;
1099
+ * ```
1100
+ */
1085
1101
  nodeCircleMenuUI: OrgChart.circleMenuUI;
1102
+
1103
+ /**
1104
+ * The chart nodeContextMenuUI object.
1105
+ * ```typescript
1106
+ * let chart = new OrgChart('#tree', {});
1107
+ * let nodeContextMenuUI = chart.nodeContextMenuUI;
1108
+ * ```
1109
+ */
1086
1110
  nodeContextMenuUI: OrgChart.menuUI;
1111
+
1112
+ /**
1113
+ * The chart menuUI object.
1114
+ * ```typescript
1115
+ * let chart = new OrgChart('#tree', {});
1116
+ * let menuUI = chart.menuUI;
1117
+ * ```
1118
+ */
1087
1119
  menuUI: OrgChart.menuUI;
1088
- toolbarUI: OrgChart.toolbarUI;
1120
+
1121
+ /**
1122
+ * The chart toolbarUI object.
1123
+ * ```typescript
1124
+ * let chart = new OrgChart('#tree', {});
1125
+ * let toolbarUI = chart.toolbarUI;
1126
+ * ```
1127
+ */
1128
+ toolbarUI: OrgChart.toolbarUI;
1129
+
1130
+ /**
1131
+ * The chart config object.
1132
+ * ```typescript
1133
+ * let chart = new OrgChart('#tree', {});
1134
+ * let config = chart.config;
1135
+ * ```
1136
+ */
1089
1137
  config: OrgChart.options;
1138
+
1139
+ /**
1140
+ * All root nodes in the chart
1141
+ * ```typescript
1142
+ * let chart = new OrgChart('#tree', {});
1143
+ * chart.onInit(() => {
1144
+ * let roots = chart.roots
1145
+ * });
1146
+ * chart.load(nodes)
1147
+ * ```
1148
+ */
1149
+
1090
1150
  roots: Array<OrgChart.node>;
1091
1151
 
1092
1152
  static fileUploadDialog(callback: (file: any) => void): void;