@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/CHANGELOG.md +25 -0
- package/dist/ej2-vue-diagrams.umd.min.js +1 -1
- package/dist/es6/ej2-vue-diagrams.es2015.js +5 -2
- package/dist/es6/ej2-vue-diagrams.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-diagrams.es5.js +5 -2
- package/dist/es6/ej2-vue-diagrams.es5.js.map +1 -1
- package/dist/global/ej2-vue-diagrams.min.js +2 -2
- package/package.json +8 -8
- package/src/diagram/diagram.component.d.ts +1 -1
- package/src/diagram/diagram.component.js +2 -2
- package/src/symbol-palette/symbolpalette.component.d.ts +1 -0
- package/src/symbol-palette/symbolpalette.component.js +3 -0
- package/styles/diagram/fluent-dark.css +2 -2
- package/styles/fluent-dark.css +2 -2
|
@@ -1263,8 +1263,8 @@ var DiagramComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1263
1263
|
DiagramComponent.prototype.nudge = function (direction, x, y) {
|
|
1264
1264
|
return this.ej2Instances.nudge(direction, x, y);
|
|
1265
1265
|
};
|
|
1266
|
-
DiagramComponent.prototype.pan = function (horizontalOffset, verticalOffset, focusedPoint) {
|
|
1267
|
-
return this.ej2Instances.pan(horizontalOffset, verticalOffset, focusedPoint);
|
|
1266
|
+
DiagramComponent.prototype.pan = function (horizontalOffset, verticalOffset, focusedPoint, isInteractiveZoomPan) {
|
|
1267
|
+
return this.ej2Instances.pan(horizontalOffset, verticalOffset, focusedPoint, isInteractiveZoomPan);
|
|
1268
1268
|
};
|
|
1269
1269
|
DiagramComponent.prototype.paste = function (obj) {
|
|
1270
1270
|
return this.ej2Instances.paste(obj);
|
|
@@ -1638,6 +1638,9 @@ var SymbolPaletteComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1638
1638
|
SymbolPaletteComponent.prototype.addPalettes = function (palettes) {
|
|
1639
1639
|
return this.ej2Instances.addPalettes(palettes);
|
|
1640
1640
|
};
|
|
1641
|
+
SymbolPaletteComponent.prototype.defaultLocale = function () {
|
|
1642
|
+
return this.ej2Instances.defaultLocale();
|
|
1643
|
+
};
|
|
1641
1644
|
SymbolPaletteComponent.prototype.removePaletteItem = function (paletteName, symbolId) {
|
|
1642
1645
|
return this.ej2Instances.removePaletteItem(paletteName, symbolId);
|
|
1643
1646
|
};
|