@balkangraph/orgchart.js 8.2.58 → 8.2.61

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
@@ -755,6 +755,11 @@ declare class OrgChart extends OrgChartBase {
755
755
  */
756
756
  static HIDE_EDIT_FORM_ON_PAN: boolean;
757
757
 
758
+ /**
759
+ * @ignore
760
+ */
761
+ static element: HTMLElement;
762
+
758
763
  static pdfPrevUI: any;
759
764
  static randomId(): any;
760
765
  static searchUI: any;
@@ -1961,9 +1966,10 @@ declare namespace OrgChart {
1961
1966
  text?: string,
1962
1967
  hideIfEditMode?: boolean,
1963
1968
  hideIfDetailsMode?: boolean
1964
- }
1969
+ } | null
1965
1970
  },
1966
- elements?: { [key: string]: OrgChart.editFormElement | Array<OrgChart.editFormElement> }
1971
+ // elements?: { [key: string]: OrgChart.editFormElement | Array<OrgChart.editFormElement> }
1972
+ elements?: Array<OrgChart.editFormElement | Array<OrgChart.editFormElement>>
1967
1973
  }
1968
1974
  }
1969
1975
  }