@balkangraph/orgchart.js 8.2.59 → 8.2.62
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 -4
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -258,6 +258,7 @@ declare class OrgChart extends OrgChartBase {
|
|
|
258
258
|
* {@link https://balkan.app/OrgChartJS/Docs/Exporting | See doc...}
|
|
259
259
|
*/
|
|
260
260
|
exportPDFProfile(options: OrgChart.exportOptions, callback?: () => void): void;
|
|
261
|
+
exportPDFPreview(options: OrgChart.exportOptions): void;
|
|
261
262
|
/**
|
|
262
263
|
* Exports the details form to PDF.
|
|
263
264
|
* @param options export options
|
|
@@ -760,11 +761,9 @@ declare class OrgChart extends OrgChartBase {
|
|
|
760
761
|
*/
|
|
761
762
|
static element: HTMLElement;
|
|
762
763
|
|
|
763
|
-
static pdfPrevUI: any;
|
|
764
764
|
static randomId(): any;
|
|
765
765
|
static searchUI: any;
|
|
766
766
|
static attr: any;
|
|
767
|
-
|
|
768
767
|
}
|
|
769
768
|
|
|
770
769
|
declare namespace OrgChart {
|
|
@@ -1966,9 +1965,10 @@ declare namespace OrgChart {
|
|
|
1966
1965
|
text?: string,
|
|
1967
1966
|
hideIfEditMode?: boolean,
|
|
1968
1967
|
hideIfDetailsMode?: boolean
|
|
1969
|
-
}
|
|
1968
|
+
} | null
|
|
1970
1969
|
},
|
|
1971
|
-
|
|
1970
|
+
// elements?: { [key: string]: OrgChart.editFormElement | Array<OrgChart.editFormElement> }
|
|
1971
|
+
elements?: Array<OrgChart.editFormElement | Array<OrgChart.editFormElement>>
|
|
1972
1972
|
}
|
|
1973
1973
|
}
|
|
1974
1974
|
}
|