@balkangraph/orgchart.js 8.4.8 → 8.4.11
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 +11 -1
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -793,6 +793,16 @@ declare class OrgChart extends OrgChartBase {
|
|
|
793
793
|
static HIDE_EDIT_FORM_ON_PAN: boolean;
|
|
794
794
|
static ARRAY_FIELDS: Array<string>;
|
|
795
795
|
|
|
796
|
+
/**
|
|
797
|
+
* Csv import and export delimiter/separator
|
|
798
|
+
*/
|
|
799
|
+
static CSV_DELIMITER: string;
|
|
800
|
+
|
|
801
|
+
/**
|
|
802
|
+
*
|
|
803
|
+
*/
|
|
804
|
+
static EDITFORM_CLOSE_BTN: string;
|
|
805
|
+
|
|
796
806
|
/**
|
|
797
807
|
* @ignore
|
|
798
808
|
*/
|
|
@@ -1085,7 +1095,7 @@ declare namespace OrgChart {
|
|
|
1085
1095
|
* @param nodeId
|
|
1086
1096
|
* @param menu
|
|
1087
1097
|
*/
|
|
1088
|
-
show(nodeId: string | number, menu
|
|
1098
|
+
show(nodeId: string | number, menu?: { [key: string]: menu }): void;
|
|
1089
1099
|
/**
|
|
1090
1100
|
* Hides circle menu
|
|
1091
1101
|
*/
|