@balkangraph/orgchart.js 8.11.18 → 8.11.20
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 +6 -1
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -854,6 +854,7 @@ declare class OrgChart extends OrgChartBase {
|
|
|
854
854
|
static randomId(): any;
|
|
855
855
|
static searchUI: any;
|
|
856
856
|
static editUI: any;
|
|
857
|
+
static pdfPrevUI: any;
|
|
857
858
|
static attr: any;
|
|
858
859
|
static toolbarUI: any;
|
|
859
860
|
static elements: any;
|
|
@@ -2401,7 +2402,11 @@ declare class OrgChartBase {
|
|
|
2401
2402
|
/**
|
|
2402
2403
|
* draging element
|
|
2403
2404
|
*/
|
|
2404
|
-
dragNodeElement: HTMLElement
|
|
2405
|
+
dragNodeElement: HTMLElement,
|
|
2406
|
+
/**
|
|
2407
|
+
* Mouse event
|
|
2408
|
+
*/
|
|
2409
|
+
event: MouseEvent
|
|
2405
2410
|
}) => void): OrgChart;
|
|
2406
2411
|
}
|
|
2407
2412
|
|