@balkangraph/orgchart.js 8.2.55 → 8.2.58
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 +10 -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,10 @@ 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;
|
|
761
|
+
static attr: any;
|
|
756
762
|
|
|
757
763
|
}
|
|
758
764
|
|
|
@@ -957,7 +963,9 @@ declare namespace OrgChart {
|
|
|
957
963
|
format?: "A1" | "A2" | "A3" | "A4" | "A5" | "A4" | "Letter" | "Legal",
|
|
958
964
|
header?: string,
|
|
959
965
|
footer?: string,
|
|
960
|
-
openInNewTab?: boolean
|
|
966
|
+
openInNewTab?: boolean,
|
|
967
|
+
expandChildren?: boolean,
|
|
968
|
+
nodeId? : number | string
|
|
961
969
|
}
|
|
962
970
|
|
|
963
971
|
interface linkTemplate {
|
|
@@ -1567,7 +1575,7 @@ declare namespace OrgChart {
|
|
|
1567
1575
|
* });
|
|
1568
1576
|
* ```
|
|
1569
1577
|
*/
|
|
1570
|
-
|
|
1578
|
+
nodes?: Array<Object>,
|
|
1571
1579
|
/**
|
|
1572
1580
|
* Adds curved link.
|
|
1573
1581
|
* ```typescript
|