@balkangraph/orgchart.js 8.14.95 → 8.14.97

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
@@ -1897,6 +1897,9 @@ declare class OrgChart {
1897
1897
  static EDITFORM_CLOSE_BTN: string;
1898
1898
  /**
1899
1899
  * Escape HTML to prevent Cross-site scripting (also known as XSS) attacks
1900
+ * ```typescript
1901
+ * OrgChart.ESCAPE_HTML = true; // the default value is false
1902
+ * ```
1900
1903
  */
1901
1904
  static ESCAPE_HTML: boolean;
1902
1905
 
@@ -1918,6 +1921,10 @@ declare class OrgChart {
1918
1921
 
1919
1922
  /**
1920
1923
  * Reset movable nodes to its original position when expand or collapse
1924
+ * Works with *movable nodes* functionality
1925
+ * ```typescript
1926
+ * OrgChart.RESET_MOVABLE_ONEXPANDCOLLAPSE = true;
1927
+ * ```
1921
1928
  */
1922
1929
  static RESET_MOVABLE_ONEXPANDCOLLAPSE: boolean;
1923
1930