@balkangraph/orgchart.js 8.9.40 → 8.9.42
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 +1 -2
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -830,7 +830,6 @@ declare class OrgChart extends OrgChartBase {
|
|
|
830
830
|
/**
|
|
831
831
|
* @ignore
|
|
832
832
|
*/
|
|
833
|
-
static element: HTMLElement;
|
|
834
833
|
|
|
835
834
|
static randomId(): any;
|
|
836
835
|
static searchUI: any;
|
|
@@ -2215,7 +2214,7 @@ declare class OrgChartBase {
|
|
|
2215
2214
|
* @param type A case-sensitive string representing the event type to listen for.
|
|
2216
2215
|
* @param listener The object that receives a notification when an event of the specified type occurs. This must be a JavaScript function.
|
|
2217
2216
|
*/
|
|
2218
|
-
on(type: "init" | "field" | "update" | "add" | "remove" | "renderbuttons" | "label" | "render-link" | "drag" | "drop" | "redraw" | "expcollclick" | "exportstart" | "exportend" | "click" | "dbclick" | "slink-click" | "clink-click" | "up-click" | "searchclick" | "import" | "adding" | "added" | "updated" | "key-down" | "visibility-change" | "renderdefs" | "render" | "prerender" | "screen-reader-text" | "removed" | "ready" | "ripple" | "node-initialized" | "node-layout", listener: (sender: OrgChart, args?: any, args1?: any, args2?: any) => void | boolean): OrgChart;
|
|
2217
|
+
on(type: "init" | "field" | "update" | "add" | "remove" | "renderbuttons" | "label" | "render-link" | "drag" | "drop" | "redraw" | "expcollclick" | "exportstart" | "exportend" | "click" | "dbclick" | "slink-click" | "clink-click" | "up-click" | "searchclick" | "import" | "adding" | "added" | "updated" | "key-down" | "visibility-change" | "renderdefs" | "render" | "prerender" | "screen-reader-text" | "removed" | "ready" | "ripple" | "node-initialized" | "nodes-initialized" | "node-layout", listener: (sender: OrgChart, args?: any, args1?: any, args2?: any) => void | boolean): OrgChart;
|
|
2219
2218
|
|
|
2220
2219
|
/**
|
|
2221
2220
|
* Occurs when the node data has been updated by updateNode method.
|