@balkangraph/orgchart.js 8.2.34 → 8.2.35
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 +33 -32
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -629,7 +629,7 @@ declare class OrgChart extends OrgChartBase {
|
|
|
629
629
|
|
|
630
630
|
|
|
631
631
|
|
|
632
|
-
static templates :{ [key: string]:
|
|
632
|
+
static templates :{ [key: string]: OrgChart.template} ;
|
|
633
633
|
|
|
634
634
|
|
|
635
635
|
static scroll: {
|
|
@@ -778,37 +778,38 @@ declare namespace OrgChart {
|
|
|
778
778
|
|
|
779
779
|
|
|
780
780
|
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
781
|
+
interface template
|
|
782
|
+
{
|
|
783
|
+
defs?: string,
|
|
784
|
+
size?: Array<number>,
|
|
785
|
+
expandCollapseSize?: number,
|
|
786
|
+
linkAdjuster?: {
|
|
787
|
+
fromX?: number,
|
|
788
|
+
fromY?: number,
|
|
789
|
+
toX?: number,
|
|
790
|
+
toY?: number
|
|
791
|
+
},
|
|
792
|
+
ripple?: {
|
|
793
|
+
radius?: number,
|
|
794
|
+
color?: string,
|
|
795
|
+
rect?: Array<number>
|
|
796
|
+
},
|
|
797
|
+
assistanseLink?: string,
|
|
798
|
+
svg?: string,
|
|
799
|
+
link?: string,
|
|
800
|
+
pointer?: string,
|
|
801
|
+
node?: string,
|
|
802
|
+
plus?: string,
|
|
803
|
+
minus?: string,
|
|
804
|
+
nodeMenuButton?: string,
|
|
805
|
+
menuButton?: string,
|
|
806
|
+
img_0?: string,
|
|
807
|
+
link_field_0?: string,
|
|
808
|
+
editFormHeaderColor?: string,
|
|
809
|
+
nodeCircleMenuButton?: string,
|
|
810
|
+
min?: template,
|
|
811
|
+
[name: string]: any
|
|
812
|
+
}
|
|
812
813
|
|
|
813
814
|
interface editUI {
|
|
814
815
|
/**
|