@balkangraph/orgchart.js 8.14.1 → 8.14.3
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 +4 -0
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -730,6 +730,9 @@ declare class OrgChart extends OrgChartBase {
|
|
|
730
730
|
static roundPathCorners(commands: string | Array<Array<any>>, radius: number, useFractionalRadius: boolean) : string;
|
|
731
731
|
static convertNodesToCsv(nodes: Array<Object>) : string;
|
|
732
732
|
static wrapText(text: string, field: Object): string;
|
|
733
|
+
|
|
734
|
+
static filterUI: OrgChart.filterUI;
|
|
735
|
+
|
|
733
736
|
/**
|
|
734
737
|
* Shows/hides lloading image. Usefull when export large data to pdf. You can override and show your own loading image.
|
|
735
738
|
*/
|
|
@@ -1210,6 +1213,7 @@ declare namespace OrgChart {
|
|
|
1210
1213
|
filterBy?: any;
|
|
1211
1214
|
element: HTMLElement;
|
|
1212
1215
|
instance: OrgChart;
|
|
1216
|
+
static filterBy: string;
|
|
1213
1217
|
}
|
|
1214
1218
|
|
|
1215
1219
|
|