@balkangraph/orgchart.js 8.14.52 → 8.14.53
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 +6 -1
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -899,6 +899,11 @@ declare class OrgChart extends OrgChartBase {
|
|
|
899
899
|
* The init event listener will be called as soon as the OrgChart become visible.
|
|
900
900
|
*/
|
|
901
901
|
static LAZY_LOADING: boolean;
|
|
902
|
+
|
|
903
|
+
/**
|
|
904
|
+
* Minimum in search input before triggering the search.
|
|
905
|
+
*/
|
|
906
|
+
static MINIMUM_SYMBOLS_IN_SEARCH_INPUT: number;
|
|
902
907
|
|
|
903
908
|
/**
|
|
904
909
|
* Hides the Edit Form when the chart is moved with pan
|
|
@@ -1201,7 +1206,7 @@ declare namespace OrgChart {
|
|
|
1201
1206
|
/**
|
|
1202
1207
|
* Search in field with abbreviation.
|
|
1203
1208
|
*/
|
|
1204
|
-
searchFieldsAbbreviation: {[key: string]: string};
|
|
1209
|
+
searchFieldsAbbreviation: {[key: string]: string};
|
|
1205
1210
|
}
|
|
1206
1211
|
|
|
1207
1212
|
|