@balkangraph/orgchart.js 8.2.33 → 8.2.34
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 +38 -35
- 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]: object} ;
|
|
633
633
|
|
|
634
634
|
|
|
635
635
|
static scroll: {
|
|
@@ -752,6 +752,8 @@ declare class OrgChart extends OrgChartBase {
|
|
|
752
752
|
* Hides the Edit Form when the chart is moved with pan
|
|
753
753
|
*/
|
|
754
754
|
static HIDE_EDIT_FORM_ON_PAN: boolean;
|
|
755
|
+
|
|
756
|
+
|
|
755
757
|
}
|
|
756
758
|
|
|
757
759
|
declare namespace OrgChart {
|
|
@@ -772,40 +774,41 @@ declare namespace OrgChart {
|
|
|
772
774
|
const COLLAPSE_SUB_CHILDRENS: number;
|
|
773
775
|
|
|
774
776
|
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
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
|
-
|
|
777
|
+
var template: object;
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
|
|
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
|
+
// }
|
|
809
812
|
|
|
810
813
|
interface editUI {
|
|
811
814
|
/**
|