@balkangraph/orgchart.js 8.14.101 → 8.14.103
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 +9 -2
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -1932,11 +1932,18 @@ declare class OrgChart {
|
|
|
1932
1932
|
/**
|
|
1933
1933
|
* Can be used to instruct the browser to defer loading of OrgChart that are off-screen until the user scrolls near them.
|
|
1934
1934
|
* The init event listener will be called as soon as the OrgChart become visible.
|
|
1935
|
+
* Default value: true
|
|
1936
|
+
* ```typescript
|
|
1937
|
+
* OrgChart.LAZY_LOADING = false;
|
|
1938
|
+
* ```
|
|
1935
1939
|
*/
|
|
1936
1940
|
static LAZY_LOADING: boolean;
|
|
1937
1941
|
|
|
1938
1942
|
/**
|
|
1939
|
-
* Minimum in search input before triggering the
|
|
1943
|
+
* Minimum in search input before triggering the search.
|
|
1944
|
+
* ```typescript
|
|
1945
|
+
* OrgChart.MINIMUM_SYMBOLS_IN_SEARCH_INPUT = 3;
|
|
1946
|
+
* ```
|
|
1940
1947
|
*/
|
|
1941
1948
|
static MINIMUM_SYMBOLS_IN_SEARCH_INPUT: number;
|
|
1942
1949
|
|
|
@@ -2748,7 +2755,7 @@ declare namespace OrgChart {
|
|
|
2748
2755
|
*/
|
|
2749
2756
|
mode?: "dark" | "light",
|
|
2750
2757
|
/**
|
|
2751
|
-
* Lazy loading is technique that defers loading of non-critical nodes at page load time. Instead, these non-critical nodes are loaded at the moment of need. Default value - *
|
|
2758
|
+
* Lazy loading is technique that defers loading of non-critical nodes at page load time. Instead, these non-critical nodes are loaded at the moment of need. Default value - *auto*.
|
|
2752
2759
|
* ```typescript
|
|
2753
2760
|
* var chart = new OrgChart('#tree', {
|
|
2754
2761
|
* lazyLoading: false
|