@balkangraph/orgchart.js 8.2.55 → 8.2.56

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