@balkangraph/orgchart.js 8.13.32 → 8.13.34
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 +12 -1
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -917,6 +917,11 @@ declare class OrgChart extends OrgChartBase {
|
|
|
917
917
|
*/
|
|
918
918
|
static VERTICAL_CHILDREN_ASSISTANT: boolean;
|
|
919
919
|
|
|
920
|
+
/**
|
|
921
|
+
* Cut nodes when export with pages, dafault is false
|
|
922
|
+
*/
|
|
923
|
+
static EXPORT_PAGES_CUT_NODES: boolean;
|
|
924
|
+
|
|
920
925
|
/**
|
|
921
926
|
* @ignore
|
|
922
927
|
*/
|
|
@@ -924,7 +929,7 @@ declare class OrgChart extends OrgChartBase {
|
|
|
924
929
|
static randomId(): any;
|
|
925
930
|
static searchUI: any;
|
|
926
931
|
static editUI: any;
|
|
927
|
-
static pdfPrevUI:
|
|
932
|
+
static pdfPrevUI: OrgChart.pdfPrevUI;
|
|
928
933
|
// static menuUI: any;
|
|
929
934
|
static attr: any;
|
|
930
935
|
static toolbarUI: any;
|
|
@@ -1327,6 +1332,12 @@ declare namespace OrgChart {
|
|
|
1327
1332
|
instance: OrgChart;
|
|
1328
1333
|
}
|
|
1329
1334
|
|
|
1335
|
+
interface pdfPrevUI {
|
|
1336
|
+
show(chart: OrgChart, options: exportOptions): pdfPrevUI;
|
|
1337
|
+
hide(chart: OrgChart): void;
|
|
1338
|
+
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1330
1341
|
interface keyNavigation {
|
|
1331
1342
|
/**
|
|
1332
1343
|
* Set focus to specified id on initial load
|