@balkangraph/orgchart.js 8.13.36 → 8.14.0
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 -1
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -1481,7 +1481,8 @@ declare namespace OrgChart {
|
|
|
1481
1481
|
treeLeftOffset,
|
|
1482
1482
|
treeRightOffset,
|
|
1483
1483
|
treeLeft,
|
|
1484
|
-
treeRight
|
|
1484
|
+
treeRight,
|
|
1485
|
+
grid
|
|
1485
1486
|
}
|
|
1486
1487
|
|
|
1487
1488
|
enum align {
|
|
@@ -2137,6 +2138,11 @@ declare namespace OrgChart {
|
|
|
2137
2138
|
* ```
|
|
2138
2139
|
*/
|
|
2139
2140
|
layout?: OrgChart.layout | number,
|
|
2141
|
+
/**
|
|
2142
|
+
* Sets the maximum number of columns in grid layout, it has to be even nymber or 'dynamic' string
|
|
2143
|
+
* The default id 'dynamic', that means that the maximum colomn numbers are dinamicly calculated
|
|
2144
|
+
*/
|
|
2145
|
+
layoutGridColumns?: string | number,
|
|
2140
2146
|
/**
|
|
2141
2147
|
* The scale factor determines what fraction of the entire scale is visible at one time.
|
|
2142
2148
|
* - OrgChart.match.height
|