@balkangraph/orgchart.js 8.4.9 → 8.4.12
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 -0
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -628,6 +628,7 @@ declare class OrgChart extends OrgChartBase {
|
|
|
628
628
|
*/
|
|
629
629
|
static childrenCount(chart: OrgChart, node: OrgChart.node, count?: number): number;
|
|
630
630
|
static collapsedChildrenCount(chart: OrgChart, node: OrgChart.node, count?: number): number;
|
|
631
|
+
static collapsedChildrenTotalCount(chart: OrgChart, node: OrgChart.node, count?: number): number;
|
|
631
632
|
static getRootOf(node: OrgChart.node): OrgChart.node;
|
|
632
633
|
|
|
633
634
|
/**
|
|
@@ -793,6 +794,16 @@ declare class OrgChart extends OrgChartBase {
|
|
|
793
794
|
static HIDE_EDIT_FORM_ON_PAN: boolean;
|
|
794
795
|
static ARRAY_FIELDS: Array<string>;
|
|
795
796
|
|
|
797
|
+
/**
|
|
798
|
+
* Csv import and export delimiter/separator
|
|
799
|
+
*/
|
|
800
|
+
static CSV_DELIMITER: string;
|
|
801
|
+
|
|
802
|
+
/**
|
|
803
|
+
*
|
|
804
|
+
*/
|
|
805
|
+
static EDITFORM_CLOSE_BTN: string;
|
|
806
|
+
|
|
796
807
|
/**
|
|
797
808
|
* @ignore
|
|
798
809
|
*/
|