@balkangraph/orgchart.js 8.13.32 → 8.13.33
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 -1
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -924,7 +924,7 @@ declare class OrgChart extends OrgChartBase {
|
|
|
924
924
|
static randomId(): any;
|
|
925
925
|
static searchUI: any;
|
|
926
926
|
static editUI: any;
|
|
927
|
-
static pdfPrevUI:
|
|
927
|
+
static pdfPrevUI: OrgChart.pdfPrevUI;
|
|
928
928
|
// static menuUI: any;
|
|
929
929
|
static attr: any;
|
|
930
930
|
static toolbarUI: any;
|
|
@@ -1327,6 +1327,12 @@ declare namespace OrgChart {
|
|
|
1327
1327
|
instance: OrgChart;
|
|
1328
1328
|
}
|
|
1329
1329
|
|
|
1330
|
+
interface pdfPrevUI {
|
|
1331
|
+
show(chart: OrgChart, options: exportOptions): pdfPrevUI;
|
|
1332
|
+
hide(chart: OrgChart): void;
|
|
1333
|
+
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1330
1336
|
interface keyNavigation {
|
|
1331
1337
|
/**
|
|
1332
1338
|
* Set focus to specified id on initial load
|