@balkangraph/orgchart.js 8.14.105 → 8.14.107
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 +25 -4
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -1882,26 +1882,47 @@ declare class OrgChart {
|
|
|
1882
1882
|
static FIXED_POSITION_ON_CLICK: boolean;
|
|
1883
1883
|
/**
|
|
1884
1884
|
* Render links before nodes, default is false
|
|
1885
|
+
* ```typescript
|
|
1886
|
+
* OrgChart.RENDER_LINKS_BEFORE_NODES = true;
|
|
1887
|
+
* ```
|
|
1885
1888
|
*/
|
|
1886
1889
|
static RENDER_LINKS_BEFORE_NODES: boolean;
|
|
1887
1890
|
/**
|
|
1888
1891
|
* Render clinks before nodes, default is false
|
|
1892
|
+
* ```typescript
|
|
1893
|
+
* OrgChart.RENDER_CLINKS_BEFORE_NODES = true;
|
|
1894
|
+
* ```
|
|
1889
1895
|
*/
|
|
1890
1896
|
static RENDER_CLINKS_BEFORE_NODES: boolean;
|
|
1891
1897
|
/**
|
|
1892
|
-
*
|
|
1898
|
+
* If false arrange vertically the nodes wothout children
|
|
1899
|
+
* Default value: true
|
|
1900
|
+
* ```typescript
|
|
1901
|
+
* OrgChart.MIXED_LAYOUT_ALL_NODES = false;
|
|
1902
|
+
* ```
|
|
1893
1903
|
*/
|
|
1894
1904
|
static MIXED_LAYOUT_ALL_NODES: boolean;
|
|
1895
1905
|
/**
|
|
1896
|
-
*
|
|
1906
|
+
* Set mixed layout if there are collapsed children
|
|
1907
|
+
* Defaul value: false
|
|
1908
|
+
* ```typescript
|
|
1909
|
+
* OrgChart.MIXED_LAYOUT_FOR_NODES_WITH_COLLAPSED_CHILDREN = true;
|
|
1910
|
+
* ```
|
|
1897
1911
|
*/
|
|
1898
1912
|
static MIXED_LAYOUT_FOR_NODES_WITH_COLLAPSED_CHILDREN: boolean;
|
|
1899
1913
|
/**
|
|
1900
1914
|
* Use mixed layout for example tree or treeLeftOffset if number of children is more then specified value
|
|
1915
|
+
* Default value: 1
|
|
1916
|
+
* ```typescript
|
|
1917
|
+
* OrgChart.MIXED_LAYOUT_IF_NUMBER_OF_CHILDREN_IS_MORE_THEN = 0;
|
|
1918
|
+
* ```
|
|
1901
1919
|
*/
|
|
1902
|
-
static MIXED_LAYOUT_IF_NUMBER_OF_CHILDREN_IS_MORE_THEN:
|
|
1920
|
+
static MIXED_LAYOUT_IF_NUMBER_OF_CHILDREN_IS_MORE_THEN: number;
|
|
1903
1921
|
/**
|
|
1904
|
-
*
|
|
1922
|
+
* Set the radius of the roundet links
|
|
1923
|
+
* ```typescript
|
|
1924
|
+
* OrgChart.LINK_ROUNDED_CORNERS = 20;
|
|
1925
|
+
* ```
|
|
1905
1926
|
*/
|
|
1906
1927
|
static LINK_ROUNDED_CORNERS: number;
|
|
1907
1928
|
/**
|