@syncfusion/ej2-vue-diagrams 20.2.39 → 20.2.40

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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-vue-diagrams@*",
3
- "_id": "@syncfusion/ej2-vue-diagrams@20.2.38",
3
+ "_id": "@syncfusion/ej2-vue-diagrams@20.2.39",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-tMqz/kealhSxAnswgXem+2UIXOQk3un08aa58mmNHqKUi2oM2JTjyPZrZQeMEVANUGFI9TotyhrUqYMBBpgHcQ==",
5
+ "_integrity": "sha512-2CU71OelqWfalFAmSsKapWemMsw+3/Vaq4EyDo41HdRRh7788Fudzi3A4DVPVCcnsZuliZt/6+XhjwrV0Xg0Pw==",
6
6
  "_location": "/@syncfusion/ej2-vue-diagrams",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-diagrams/-/ej2-vue-diagrams-20.2.38.tgz",
23
- "_shasum": "d9aae9959b2c418ca11efb663250287b6d994c6a",
22
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-diagrams/-/ej2-vue-diagrams-20.2.39.tgz",
23
+ "_shasum": "ad7fee9877a2fd481a12b4aa909c3eb4f6b94b4c",
24
24
  "_spec": "@syncfusion/ej2-vue-diagrams@*",
25
25
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
26
26
  "author": {
@@ -31,8 +31,8 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~20.2.38",
35
- "@syncfusion/ej2-diagrams": "20.2.39",
34
+ "@syncfusion/ej2-base": "~20.2.39",
35
+ "@syncfusion/ej2-diagrams": "20.2.40",
36
36
  "@syncfusion/ej2-vue-base": "~20.2.38"
37
37
  },
38
38
  "deprecated": false,
@@ -57,6 +57,6 @@
57
57
  "type": "git",
58
58
  "url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
59
59
  },
60
- "version": "20.2.39",
60
+ "version": "20.2.40",
61
61
  "sideEffects": false
62
62
  }
@@ -89,7 +89,7 @@ export declare class DiagramComponent extends ComponentBase {
89
89
  moveObjects(objects: string[], targetLayer?: string): void;
90
90
  moveObjectsUp(node: Object | Object, currentLayer: Object): void;
91
91
  nudge(direction: Object, x?: number, y?: number): void;
92
- pan(horizontalOffset: number, verticalOffset: number, focusedPoint?: Object): void;
92
+ pan(horizontalOffset: number, verticalOffset: number, focusedPoint?: Object, isInteractiveZoomPan?: boolean): void;
93
93
  paste(obj?: undefined[]): void;
94
94
  print(options: Object): void;
95
95
  printImage(image: string, options: Object): void;
@@ -306,8 +306,8 @@ var DiagramComponent = /** @class */ (function (_super) {
306
306
  DiagramComponent.prototype.nudge = function (direction, x, y) {
307
307
  return this.ej2Instances.nudge(direction, x, y);
308
308
  };
309
- DiagramComponent.prototype.pan = function (horizontalOffset, verticalOffset, focusedPoint) {
310
- return this.ej2Instances.pan(horizontalOffset, verticalOffset, focusedPoint);
309
+ DiagramComponent.prototype.pan = function (horizontalOffset, verticalOffset, focusedPoint, isInteractiveZoomPan) {
310
+ return this.ej2Instances.pan(horizontalOffset, verticalOffset, focusedPoint, isInteractiveZoomPan);
311
311
  };
312
312
  DiagramComponent.prototype.paste = function (obj) {
313
313
  return this.ej2Instances.paste(obj);