@balkangraph/orgchart.js 8.19.41 → 8.19.43
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 +7 -7
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -928,34 +928,34 @@ declare class OrgChart {
|
|
|
928
928
|
* ```typescript
|
|
929
929
|
* let chart = new OrgChart('#tree', {});
|
|
930
930
|
* ...
|
|
931
|
-
* chart.
|
|
931
|
+
* chart.exportToCSV();
|
|
932
932
|
* ```
|
|
933
933
|
* @param filename The name of the exported file
|
|
934
934
|
* {@link https://balkan.app/OrgChartJS/Docs/ExportingOther#options | See doc...}
|
|
935
935
|
*/
|
|
936
|
-
|
|
936
|
+
exportToCSV(filename?: string | OrgChart.exportCSVXMLJSONOptions): void;
|
|
937
937
|
/**
|
|
938
938
|
* Exports to XML
|
|
939
939
|
* ```typescript
|
|
940
940
|
* let chart = new OrgChart('#tree', {});
|
|
941
941
|
* ...
|
|
942
|
-
* chart.
|
|
942
|
+
* chart.exportToXML();
|
|
943
943
|
* ```
|
|
944
944
|
* @param filename The name of the exported file
|
|
945
945
|
* {@link https://balkan.app/OrgChartJS/Docs/ExportingOther#options | See doc...}
|
|
946
946
|
*/
|
|
947
|
-
|
|
947
|
+
exportToXML(filename: string | OrgChart.exportCSVXMLJSONOptions): void;
|
|
948
948
|
/**
|
|
949
949
|
* Exports to JSON
|
|
950
950
|
* ```typescript
|
|
951
951
|
* let chart = new OrgChart('#tree', {});
|
|
952
952
|
* ...
|
|
953
|
-
* chart.
|
|
953
|
+
* chart.exportToJSON();
|
|
954
954
|
* ```
|
|
955
955
|
* @param filename The name of the exported file
|
|
956
956
|
* {@link https://balkan.app/OrgChartJS/Docs/ExportingOther#options | See doc...}
|
|
957
957
|
*/
|
|
958
|
-
|
|
958
|
+
exportToJSON(filename?: string | OrgChart.exportCSVXMLJSONOptions ): void;
|
|
959
959
|
|
|
960
960
|
/**
|
|
961
961
|
* ```typescript
|
|
@@ -3745,7 +3745,7 @@ declare namespace OrgChart {
|
|
|
3745
3745
|
* Exports to CSV, XML or JSON options
|
|
3746
3746
|
* ```typescript
|
|
3747
3747
|
* document.getElementById('export').addEventListener('click', function () {
|
|
3748
|
-
* chart.
|
|
3748
|
+
* chart.exportToCSV('My.csv');
|
|
3749
3749
|
* });
|
|
3750
3750
|
* ```
|
|
3751
3751
|
* {@link https://balkan.app/OrgChartJS/Docs/ExportingOther#options | See doc...}
|
package/orgchart.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
1
|
+
/* eslint-disable */
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"author":{"name":"BALKAN App"},"bugs":{"email":"support@balkan.app","url":"https://github.com/BALKANGraph/OrgChartJS/issues"},"deprecated":false,"description":"Ultimate Organizational Chart JavaScript library, Interactive Diagrams","files":["orgchart.js","orgchart.d.ts","package.json","README.md"],"homepage":"https://balkan.app/","keywords":["diagram","chart","tree","orgchart","graph","svg","hierarchy","family-tree","decision-tree","visualization","tree-layout","hierarchical","javascript","js","html","html5"],"license":"SEE LICENSE IN https://balkan.app","main":"orgchart.js","types":"orgchart.d.ts","name":"@balkangraph/orgchart.js","repository":{"type":"git","url":"https://github.com/BALKANGraph/OrgChartJS"},"dependencies":{},"version":"8.19.
|
|
1
|
+
{"author":{"name":"BALKAN App"},"bugs":{"email":"support@balkan.app","url":"https://github.com/BALKANGraph/OrgChartJS/issues"},"deprecated":false,"description":"Ultimate Organizational Chart JavaScript library, Interactive Diagrams","files":["orgchart.js","orgchart.d.ts","package.json","README.md"],"homepage":"https://balkan.app/","keywords":["diagram","chart","tree","orgchart","graph","svg","hierarchy","family-tree","decision-tree","visualization","tree-layout","hierarchical","javascript","js","html","html5"],"license":"SEE LICENSE IN https://balkan.app","main":"orgchart.js","types":"orgchart.d.ts","name":"@balkangraph/orgchart.js","repository":{"type":"git","url":"https://github.com/BALKANGraph/OrgChartJS"},"dependencies":{},"version":"8.19.43"}
|