@balkangraph/orgchart.js 8.2.52 → 8.2.53
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 -2
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -755,6 +755,8 @@ declare class OrgChart extends OrgChartBase {
|
|
|
755
755
|
*/
|
|
756
756
|
static HIDE_EDIT_FORM_ON_PAN: boolean;
|
|
757
757
|
|
|
758
|
+
static pdfPrevUI: any;
|
|
759
|
+
static randomId(): any;
|
|
758
760
|
|
|
759
761
|
}
|
|
760
762
|
|
|
@@ -959,7 +961,9 @@ declare namespace OrgChart {
|
|
|
959
961
|
format?: "A1" | "A2" | "A3" | "A4" | "A5" | "A4" | "Letter" | "Legal",
|
|
960
962
|
header?: string,
|
|
961
963
|
footer?: string,
|
|
962
|
-
openInNewTab?: boolean
|
|
964
|
+
openInNewTab?: boolean,
|
|
965
|
+
expandChildren?: boolean,
|
|
966
|
+
nodeId? : number | string
|
|
963
967
|
}
|
|
964
968
|
|
|
965
969
|
interface linkTemplate {
|
|
@@ -1569,7 +1573,7 @@ declare namespace OrgChart {
|
|
|
1569
1573
|
* });
|
|
1570
1574
|
* ```
|
|
1571
1575
|
*/
|
|
1572
|
-
|
|
1576
|
+
nodes?: Array<Object>,
|
|
1573
1577
|
/**
|
|
1574
1578
|
* Adds curved link.
|
|
1575
1579
|
* ```typescript
|