@syncfusion/ej2-vue-diagrams 20.2.36 → 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@19.8.0",
3
+ "_id": "@syncfusion/ej2-vue-diagrams@20.2.39",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-b+hurBQjHijQXlWzLdGiDqlTv8n/gijB0X6MeWBA04Mw8iwlUPzDGi8lg4JbW0zQ8DfkgEvf5BCF+tBQ7J8Edg==",
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-release/@syncfusion/ej2-vue-diagrams/-/ej2-vue-diagrams-19.8.0.tgz",
23
- "_shasum": "9cf3ef592f62207ed159ec1148410ac517eda14c",
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,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~20.2.36",
35
- "@syncfusion/ej2-diagrams": "20.2.36",
36
- "@syncfusion/ej2-vue-base": "~20.2.36"
34
+ "@syncfusion/ej2-base": "~20.2.39",
35
+ "@syncfusion/ej2-diagrams": "20.2.40",
36
+ "@syncfusion/ej2-vue-base": "~20.2.38"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts. for Vue",
@@ -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.36",
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);
@@ -31,6 +31,7 @@ export declare class SymbolPaletteComponent extends ComponentBase {
31
31
  custom(): void;
32
32
  addPaletteItem(paletteName: string, paletteSymbol: Object | Object, isChild?: boolean): void;
33
33
  addPalettes(palettes: Object[]): void;
34
+ defaultLocale(): Object;
34
35
  removePaletteItem(paletteName: string, symbolId: string): void;
35
36
  removePalettes(palettes: string[]): void;
36
37
  }
@@ -124,6 +124,9 @@ var SymbolPaletteComponent = /** @class */ (function (_super) {
124
124
  SymbolPaletteComponent.prototype.addPalettes = function (palettes) {
125
125
  return this.ej2Instances.addPalettes(palettes);
126
126
  };
127
+ SymbolPaletteComponent.prototype.defaultLocale = function () {
128
+ return this.ej2Instances.defaultLocale();
129
+ };
127
130
  SymbolPaletteComponent.prototype.removePaletteItem = function (paletteName, symbolId) {
128
131
  return this.ej2Instances.removePaletteItem(paletteName, symbolId);
129
132
  };
@@ -308,7 +308,7 @@
308
308
  }
309
309
 
310
310
  .e-diagram .e-diagram-text-edit {
311
- background: #fff;
311
+ background: #1b1a19;
312
312
  border-color: #0078d4;
313
313
  border-style: dashed;
314
314
  border-width: 1px;
@@ -319,7 +319,7 @@
319
319
 
320
320
  .e-diagram-text-edit::selection {
321
321
  background: #0078d4;
322
- color: #fff;
322
+ color: #1b1a19;
323
323
  }
324
324
 
325
325
  .e-ruler-tick-label {
@@ -308,7 +308,7 @@
308
308
  }
309
309
 
310
310
  .e-diagram .e-diagram-text-edit {
311
- background: #fff;
311
+ background: #1b1a19;
312
312
  border-color: #0078d4;
313
313
  border-style: dashed;
314
314
  border-width: 1px;
@@ -319,7 +319,7 @@
319
319
 
320
320
  .e-diagram-text-edit::selection {
321
321
  background: #0078d4;
322
- color: #fff;
322
+ color: #1b1a19;
323
323
  }
324
324
 
325
325
  .e-ruler-tick-label {