@balkangraph/orgchart.js 8.14.97 → 8.14.99
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 +20 -1
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -1770,6 +1770,12 @@ declare class OrgChart {
|
|
|
1770
1770
|
* @ignore
|
|
1771
1771
|
*/
|
|
1772
1772
|
static IT_IS_LONELY_HERE: string;
|
|
1773
|
+
/**
|
|
1774
|
+
* The text that we have if the chart is empty.
|
|
1775
|
+
* ```TypeScript
|
|
1776
|
+
* OrgChart.IT_IS_LONELY_HERE_LINK = "Click here to add your first node"
|
|
1777
|
+
* ```
|
|
1778
|
+
*/
|
|
1773
1779
|
static IT_IS_LONELY_HERE_LINK: string;
|
|
1774
1780
|
/**
|
|
1775
1781
|
* @ignore
|
|
@@ -1792,15 +1798,24 @@ declare class OrgChart {
|
|
|
1792
1798
|
static STRING_TAGS: boolean;
|
|
1793
1799
|
/**
|
|
1794
1800
|
* Search placeholder
|
|
1801
|
+
* ```TypeScript
|
|
1802
|
+
* OrgChart.SEARCH_PLACEHOLDER = "Chercher"; // the default value is "Search"
|
|
1803
|
+
* ```
|
|
1795
1804
|
*/
|
|
1796
1805
|
static SEARCH_PLACEHOLDER: string;
|
|
1797
1806
|
/**
|
|
1798
1807
|
* Search help symbol.
|
|
1808
|
+
* ```TypeScript
|
|
1809
|
+
* OrgChart.SEARCH_HELP_SYMBOL = "help";
|
|
1810
|
+
* ```
|
|
1799
1811
|
*/
|
|
1800
1812
|
static SEARCH_HELP_SYMBOL: string;
|
|
1801
1813
|
|
|
1802
1814
|
/**
|
|
1803
1815
|
* Close search result list by click outside list and clean search input
|
|
1816
|
+
* ```TypeScript
|
|
1817
|
+
* OrgChart.SEARCH_CLOSE_RESULT_ON_ESCAPE_OR_CLICKOUTSIDE = true; // default value is false
|
|
1818
|
+
* ```
|
|
1804
1819
|
*/
|
|
1805
1820
|
static SEARCH_CLOSE_RESULT_ON_ESCAPE_OR_CLICKOUTSIDE: boolean;
|
|
1806
1821
|
/**
|
|
@@ -1856,9 +1871,10 @@ declare class OrgChart {
|
|
|
1856
1871
|
*/
|
|
1857
1872
|
static SCALE_FACTOR: number;
|
|
1858
1873
|
/**
|
|
1874
|
+
* default auto
|
|
1859
1875
|
* @ignore
|
|
1860
1876
|
*/
|
|
1861
|
-
static LAZY_LOADING_FACTOR: number;
|
|
1877
|
+
static LAZY_LOADING_FACTOR: number | string;
|
|
1862
1878
|
/**
|
|
1863
1879
|
* Can be used to instruct the browser to defer loading of OrgChart that are off-screen until the user scrolls near them.
|
|
1864
1880
|
* The init event listener will be called as soon as the OrgChart become visible.
|
|
@@ -1872,6 +1888,9 @@ declare class OrgChart {
|
|
|
1872
1888
|
|
|
1873
1889
|
/**
|
|
1874
1890
|
* Hides the Edit Form when the chart is moved with pan
|
|
1891
|
+
* ```typescript
|
|
1892
|
+
* OrgChart.HIDE_EDIT_FORM_ON_PAN = false; // the default value is true
|
|
1893
|
+
* ```
|
|
1875
1894
|
*/
|
|
1876
1895
|
static HIDE_EDIT_FORM_ON_PAN: boolean;
|
|
1877
1896
|
|