@balkangraph/orgchart.js 8.14.97 → 8.14.98
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 +18 -0
- 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
|
/**
|
|
@@ -1872,6 +1887,9 @@ declare class OrgChart {
|
|
|
1872
1887
|
|
|
1873
1888
|
/**
|
|
1874
1889
|
* Hides the Edit Form when the chart is moved with pan
|
|
1890
|
+
* ```typescript
|
|
1891
|
+
* OrgChart.HIDE_EDIT_FORM_ON_PAN = false; // the default value is true
|
|
1892
|
+
* ```
|
|
1875
1893
|
*/
|
|
1876
1894
|
static HIDE_EDIT_FORM_ON_PAN: boolean;
|
|
1877
1895
|
|