@balkangraph/orgchart.js 8.2.15 → 8.2.16
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 -6
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
|
|
2
|
+
/// <reference path="OrgChartBase.d.ts" />
|
|
3
|
+
|
|
1
4
|
declare class OrgChart extends OrgChartBase {
|
|
2
5
|
nodes: { [key: string | number]: OrgChart.node };
|
|
3
6
|
isVisible: boolean;
|
|
@@ -588,16 +591,10 @@ declare class OrgChart extends OrgChartBase {
|
|
|
588
591
|
}
|
|
589
592
|
|
|
590
593
|
static clinkTemplates: {
|
|
591
|
-
orange?: OrgChart.linkTemplate,
|
|
592
|
-
blue?: OrgChart.linkTemplate,
|
|
593
|
-
yellow?: OrgChart.linkTemplate,
|
|
594
594
|
[key: string]: OrgChart.linkTemplate
|
|
595
595
|
}
|
|
596
596
|
|
|
597
597
|
static slinkTemplates: {
|
|
598
|
-
orange?: OrgChart.linkTemplate,
|
|
599
|
-
blue?: OrgChart.linkTemplate,
|
|
600
|
-
yellow?: OrgChart.linkTemplate,
|
|
601
598
|
[key: string]: OrgChart.linkTemplate
|
|
602
599
|
}
|
|
603
600
|
|