@balkangraph/orgchart.js 8.11.6 → 8.11.8
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 +6 -2
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -785,7 +785,7 @@ declare class OrgChart extends OrgChartBase {
|
|
|
785
785
|
*/
|
|
786
786
|
static MIXED_LAYOUT_FOR_NODES_WITH_COLLAPSED_CHILDREN: boolean;
|
|
787
787
|
/**
|
|
788
|
-
* Use mixed layout for example tree or treeLeftOffset if
|
|
788
|
+
* Use mixed layout for example tree or treeLeftOffset if number of children is more then specified value
|
|
789
789
|
*/
|
|
790
790
|
static MIXED_LAYOUT_IF_NUMBER_OF_CHILDREN_IS_MORE_THEN: boolean;
|
|
791
791
|
/**
|
|
@@ -1314,7 +1314,9 @@ declare namespace OrgChart {
|
|
|
1314
1314
|
mixed,
|
|
1315
1315
|
tree,
|
|
1316
1316
|
treeLeftOffset,
|
|
1317
|
-
treeRightOffset
|
|
1317
|
+
treeRightOffset,
|
|
1318
|
+
treeLeft,
|
|
1319
|
+
treeRight
|
|
1318
1320
|
}
|
|
1319
1321
|
|
|
1320
1322
|
enum align {
|
|
@@ -1947,6 +1949,8 @@ declare namespace OrgChart {
|
|
|
1947
1949
|
* - OrgChart.layout.tree
|
|
1948
1950
|
* - OrgChart.layout.treeLeftOffset
|
|
1949
1951
|
* - OrgChart.layout.treeRightOffset
|
|
1952
|
+
* - OrgChart.layout.treeLeft
|
|
1953
|
+
* - OrgChart.layout.treeRight
|
|
1950
1954
|
*
|
|
1951
1955
|
* Default value - *OrgChart.layout.normal*
|
|
1952
1956
|
* ```typescript
|