@balkangraph/orgchart.js 8.14.101 → 8.14.102

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 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 search.
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