@balkangraph/orgchart.js 8.2.54 → 8.2.57
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 +9 -2
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -648,6 +648,8 @@ declare class OrgChart extends OrgChartBase {
|
|
|
648
648
|
};
|
|
649
649
|
static state: { clear(stateName: string): void };
|
|
650
650
|
|
|
651
|
+
static animate(element: Object, attrStart?: Object, attrEnd?: Object, duration?: number, func?: OrgChart.anim, callback?: Function, tick?: boolean): void;
|
|
652
|
+
|
|
651
653
|
static VERSION: string;
|
|
652
654
|
/**
|
|
653
655
|
* @ignore
|
|
@@ -753,6 +755,9 @@ declare class OrgChart extends OrgChartBase {
|
|
|
753
755
|
*/
|
|
754
756
|
static HIDE_EDIT_FORM_ON_PAN: boolean;
|
|
755
757
|
|
|
758
|
+
static pdfPrevUI: any;
|
|
759
|
+
static randomId(): any;
|
|
760
|
+
static searchUI: any;
|
|
756
761
|
|
|
757
762
|
}
|
|
758
763
|
|
|
@@ -957,7 +962,9 @@ declare namespace OrgChart {
|
|
|
957
962
|
format?: "A1" | "A2" | "A3" | "A4" | "A5" | "A4" | "Letter" | "Legal",
|
|
958
963
|
header?: string,
|
|
959
964
|
footer?: string,
|
|
960
|
-
openInNewTab?: boolean
|
|
965
|
+
openInNewTab?: boolean,
|
|
966
|
+
expandChildren?: boolean,
|
|
967
|
+
nodeId? : number | string
|
|
961
968
|
}
|
|
962
969
|
|
|
963
970
|
interface linkTemplate {
|
|
@@ -1567,7 +1574,7 @@ declare namespace OrgChart {
|
|
|
1567
1574
|
* });
|
|
1568
1575
|
* ```
|
|
1569
1576
|
*/
|
|
1570
|
-
|
|
1577
|
+
nodes?: Array<Object>,
|
|
1571
1578
|
/**
|
|
1572
1579
|
* Adds curved link.
|
|
1573
1580
|
* ```typescript
|