@balkangraph/orgchart.js 8.4.10 → 8.4.13
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 +7 -0
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -627,7 +627,9 @@ declare class OrgChart extends OrgChartBase {
|
|
|
627
627
|
* @param count
|
|
628
628
|
*/
|
|
629
629
|
static childrenCount(chart: OrgChart, node: OrgChart.node, count?: number): number;
|
|
630
|
+
static childrenTotalCount(chart: OrgChart, node: OrgChart.node, count?: number): number;
|
|
630
631
|
static collapsedChildrenCount(chart: OrgChart, node: OrgChart.node, count?: number): number;
|
|
632
|
+
static collapsedChildrenTotalCount(chart: OrgChart, node: OrgChart.node, count?: number): number;
|
|
631
633
|
static getRootOf(node: OrgChart.node): OrgChart.node;
|
|
632
634
|
|
|
633
635
|
/**
|
|
@@ -798,6 +800,11 @@ declare class OrgChart extends OrgChartBase {
|
|
|
798
800
|
*/
|
|
799
801
|
static CSV_DELIMITER: string;
|
|
800
802
|
|
|
803
|
+
/**
|
|
804
|
+
*
|
|
805
|
+
*/
|
|
806
|
+
static EDITFORM_CLOSE_BTN: string;
|
|
807
|
+
|
|
801
808
|
/**
|
|
802
809
|
* @ignore
|
|
803
810
|
*/
|