@balkangraph/orgchart.js 8.2.14 → 8.2.18

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
@@ -1,4 +1,6 @@
1
- export declare class OrgChart extends OrgChartBase {
1
+
2
+
3
+ declare class OrgChart extends OrgChartBase {
2
4
  nodes: { [key: string | number]: OrgChart.node };
3
5
  isVisible: boolean;
4
6
 
@@ -588,16 +590,10 @@ export declare class OrgChart extends OrgChartBase {
588
590
  }
589
591
 
590
592
  static clinkTemplates: {
591
- orange?: OrgChart.linkTemplate,
592
- blue?: OrgChart.linkTemplate,
593
- yellow?: OrgChart.linkTemplate,
594
593
  [key: string]: OrgChart.linkTemplate
595
594
  }
596
595
 
597
596
  static slinkTemplates: {
598
- orange?: OrgChart.linkTemplate,
599
- blue?: OrgChart.linkTemplate,
600
- yellow?: OrgChart.linkTemplate,
601
597
  [key: string]: OrgChart.linkTemplate
602
598
  }
603
599
 
@@ -747,7 +743,7 @@ export declare class OrgChart extends OrgChartBase {
747
743
 
748
744
  }
749
745
 
750
- export declare namespace OrgChart {
746
+ declare namespace OrgChart {
751
747
  /**
752
748
  * deprecated
753
749
  * @ignore
@@ -1934,9 +1930,8 @@ export declare namespace OrgChart {
1934
1930
  }
1935
1931
  }
1936
1932
  }
1937
- /// <reference path="OrgChart.d.ts" />
1938
1933
 
1939
- export declare class OrgChartBase {
1934
+ declare class OrgChartBase {
1940
1935
 
1941
1936
  /**
1942
1937
  * Removes specified node from nodes collection, redraws the chart and fires remove event.
@@ -2073,7 +2068,7 @@ export declare class OrgChartBase {
2073
2068
  }) => void): OrgChart;
2074
2069
  }
2075
2070
 
2076
- export declare namespace OrgChart {
2071
+ declare namespace OrgChart {
2077
2072
  /**
2078
2073
  * deprecated, use OrgChart.align.center isntead
2079
2074
  * @ignore
@@ -2125,3 +2120,4 @@ export declare namespace OrgChart {
2125
2120
  enableDragDrop?: boolean,
2126
2121
  }
2127
2122
  }
2123
+ export default OrgChart