@balkangraph/orgchart.js 8.8.7 → 8.8.10
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 +2 -1
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -638,7 +638,8 @@ declare class OrgChart extends OrgChartBase {
|
|
|
638
638
|
*/
|
|
639
639
|
static isNEU(val: any): boolean;
|
|
640
640
|
static gradientCircleForDefs(id: string | number, colors: Array<string> | string, r: number, strokeWidth: number): string;
|
|
641
|
-
static convertCsvToNodes(text: string) : Array<
|
|
641
|
+
static convertCsvToNodes(text: string) : Array<Object>;
|
|
642
|
+
static convertNodesToCsv(nodes: Array<Object>) : string;
|
|
642
643
|
static wrapText(text: string, field: Object): string;
|
|
643
644
|
/**
|
|
644
645
|
* Shows/hides lloading image. Usefull when export large data to pdf. You can override and show your own loading image.
|