@balkangraph/orgchart.js 8.19.17 → 8.19.19
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 +42 -1
- package/orgchart.js +1 -1
- package/package.json +1 -1
package/orgchart.d.ts
CHANGED
|
@@ -1041,6 +1041,7 @@ declare class OrgChart {
|
|
|
1041
1041
|
exportToPowerPoint(options?: OrgChart.exportPowerPontOptions, callback?: () => void): void;
|
|
1042
1042
|
exportToPDF(options?: OrgChart.exportPDFOptions, callback?: () => void): void;
|
|
1043
1043
|
exportToPNG(options?: OrgChart.exportPNGOptions, callback?: () => void): void;
|
|
1044
|
+
exportToSVG(options?: OrgChart.exportSVGOptions, callback?: () => void): void;
|
|
1044
1045
|
|
|
1045
1046
|
/**
|
|
1046
1047
|
* Imports CSV file.
|
|
@@ -1540,6 +1541,7 @@ declare class OrgChart {
|
|
|
1540
1541
|
powerPointPreviewUI: OrgChart.powerPointPreviewUI;
|
|
1541
1542
|
|
|
1542
1543
|
pdfPreviewUI: OrgChart.pdfPreviewUI;
|
|
1544
|
+
svgPreviewUI: OrgChart.svgfPreviewUI;
|
|
1543
1545
|
pngPreviewUI: OrgChart.pngPreviewUI;
|
|
1544
1546
|
|
|
1545
1547
|
/**
|
|
@@ -3184,6 +3186,15 @@ declare namespace OrgChart {
|
|
|
3184
3186
|
get width(): number;
|
|
3185
3187
|
get instance(): OrgChart;
|
|
3186
3188
|
get options(): OrgChart.exportPowerPontOptions;
|
|
3189
|
+
|
|
3190
|
+
locExport: string;
|
|
3191
|
+
locCancel: string;
|
|
3192
|
+
locParentLevels: string;
|
|
3193
|
+
locChildLevels: string;
|
|
3194
|
+
locClickToAdd: string;
|
|
3195
|
+
locAddNew: string;
|
|
3196
|
+
locRemove: string;
|
|
3197
|
+
|
|
3187
3198
|
init(obj: OrgChart): void;
|
|
3188
3199
|
isVisible(): boolean;
|
|
3189
3200
|
hide(): void;
|
|
@@ -3197,12 +3208,23 @@ declare namespace OrgChart {
|
|
|
3197
3208
|
get width(): number;
|
|
3198
3209
|
get instance(): OrgChart;
|
|
3199
3210
|
get options(): OrgChart.exportPDFOptions;
|
|
3211
|
+
|
|
3212
|
+
locExport: string;
|
|
3213
|
+
locCancel: string;
|
|
3214
|
+
locParentLevels: string;
|
|
3215
|
+
locChildLevels: string;
|
|
3216
|
+
locClickToAdd: string;
|
|
3217
|
+
locAddNew: string;
|
|
3218
|
+
locRemove: string;
|
|
3219
|
+
|
|
3200
3220
|
init(obj: OrgChart): void;
|
|
3201
3221
|
isVisible(): boolean;
|
|
3202
3222
|
hide(): void;
|
|
3203
3223
|
show(options: OrgChart.exportPDFOptions): void;
|
|
3224
|
+
|
|
3204
3225
|
}
|
|
3205
3226
|
|
|
3227
|
+
|
|
3206
3228
|
interface pngPreviewUI {
|
|
3207
3229
|
/**
|
|
3208
3230
|
* The width of the EXPORT UI
|
|
@@ -3210,12 +3232,25 @@ declare namespace OrgChart {
|
|
|
3210
3232
|
get width(): number;
|
|
3211
3233
|
get instance(): OrgChart;
|
|
3212
3234
|
get options(): OrgChart.exportPNGOptions;
|
|
3235
|
+
|
|
3236
|
+
|
|
3237
|
+
locExport: string;
|
|
3238
|
+
locCancel: string;
|
|
3239
|
+
locParentLevels: string;
|
|
3240
|
+
locChildLevels: string;
|
|
3241
|
+
locClickToAdd: string;
|
|
3242
|
+
locAddNew: string;
|
|
3243
|
+
locRemove: string;
|
|
3244
|
+
|
|
3213
3245
|
init(obj: OrgChart): void;
|
|
3214
3246
|
isVisible(): boolean;
|
|
3215
3247
|
hide(): void;
|
|
3216
3248
|
show(options: OrgChart.exportPNGOptions): void;
|
|
3217
3249
|
}
|
|
3218
3250
|
|
|
3251
|
+
|
|
3252
|
+
interface svgPreviewUI extends OrgChart.pngPreviewUI {}
|
|
3253
|
+
|
|
3219
3254
|
/**
|
|
3220
3255
|
* Circle Menu UI
|
|
3221
3256
|
* ```typescript
|
|
@@ -3804,7 +3839,8 @@ declare namespace OrgChart {
|
|
|
3804
3839
|
childLevels?: boolean,
|
|
3805
3840
|
parentLevels?: boolean,
|
|
3806
3841
|
min?: boolean,
|
|
3807
|
-
pages?: Array<{
|
|
3842
|
+
pages?: Array<{
|
|
3843
|
+
isProfile?: boolean,
|
|
3808
3844
|
chartInstance?: OrgChart,
|
|
3809
3845
|
nodeId?: number | string,
|
|
3810
3846
|
expandChildren?: boolean,
|
|
@@ -5377,6 +5413,11 @@ declare namespace OrgChart {
|
|
|
5377
5413
|
*/
|
|
5378
5414
|
pdfPreviewUI?: OrgChart.pdfPreviewUI,
|
|
5379
5415
|
|
|
5416
|
+
/**
|
|
5417
|
+
* @ignore
|
|
5418
|
+
*/
|
|
5419
|
+
svgPreviewUI?: OrgChart.svgPreviewUI,
|
|
5420
|
+
|
|
5380
5421
|
/**
|
|
5381
5422
|
* @ignore
|
|
5382
5423
|
*/
|
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.19"}
|