@balkangraph/orgchart.js 8.2.13 → 8.2.17
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 +3 -7
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
1
3
|
declare class OrgChart extends OrgChartBase {
|
|
2
4
|
nodes: { [key: string | number]: OrgChart.node };
|
|
3
5
|
isVisible: boolean;
|
|
@@ -588,16 +590,10 @@ 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
|
|
|
@@ -1934,7 +1930,6 @@ declare namespace OrgChart {
|
|
|
1934
1930
|
}
|
|
1935
1931
|
}
|
|
1936
1932
|
}
|
|
1937
|
-
/// <reference path="OrgChart.d.ts" />
|
|
1938
1933
|
|
|
1939
1934
|
declare class OrgChartBase {
|
|
1940
1935
|
|
|
@@ -2125,3 +2120,4 @@ declare namespace OrgChart {
|
|
|
2125
2120
|
enableDragDrop?: boolean,
|
|
2126
2121
|
}
|
|
2127
2122
|
}
|
|
2123
|
+
export default OrgChart
|