devexpress-diagram 2.2.18 → 2.2.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/dist/dx-diagram.css +2 -2
- package/dist/dx-diagram.js +4 -3
- package/dist/dx-diagram.min.css +2 -2
- package/dist/dx-diagram.min.js +1 -1
- package/dist/dx-diagram.min.js.LICENSE.txt +2 -2
- package/dist/lib/package.json +1 -1
- package/dist/lib/src/Render/CanvasViewManager.ts +2 -1
- package/package.json +1 -1
package/dist/dx-diagram.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* DevExpress Diagram (dx-diagram)
|
|
3
|
-
* Version: 2.2.
|
|
4
|
-
* Build date:
|
|
3
|
+
* Version: 2.2.19
|
|
4
|
+
* Build date: Mon Jun 30 2025
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
|
7
7
|
* Read about DevExpress licensing here: https://www.devexpress.com/Support/EULAs
|
package/dist/dx-diagram.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* DevExpress Diagram (dx-diagram)
|
|
3
|
-
* Version: 2.2.
|
|
4
|
-
* Build date:
|
|
3
|
+
* Version: 2.2.19
|
|
4
|
+
* Build date: Mon Jun 30 2025
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
|
7
7
|
* Read about DevExpress licensing here: https://www.devexpress.com/Support/EULAs
|
|
@@ -35275,11 +35275,12 @@ var CanvasViewManager = (function (_super) {
|
|
|
35275
35275
|
this.setScroll(scroll);
|
|
35276
35276
|
};
|
|
35277
35277
|
CanvasViewManager.prototype.scrollIntoView = function (rectangle) {
|
|
35278
|
+
var shift = this.getVisibileAreaAbsShift(true);
|
|
35278
35279
|
rectangle = rectangle
|
|
35279
35280
|
.clone()
|
|
35280
35281
|
.applyConverter(unit_converter_1.UnitConverter.twipsToPixelsF)
|
|
35281
35282
|
.multiply(this.actualZoom, this.actualZoom)
|
|
35282
|
-
.moveRectangle(
|
|
35283
|
+
.moveRectangle(shift.x, shift.y);
|
|
35283
35284
|
var scroll = this.scroll;
|
|
35284
35285
|
var container = this.containerSize;
|
|
35285
35286
|
if (rectangle.x >= scroll.x && rectangle.y >= scroll.y && rectangle.right <= scroll.x + container.width && rectangle.bottom <= scroll.y + container.height)
|
package/dist/dx-diagram.min.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* DevExpress Diagram (dx-diagram.min)
|
|
3
|
-
* Version: 2.2.
|
|
4
|
-
* Build date:
|
|
3
|
+
* Version: 2.2.19
|
|
4
|
+
* Build date: Mon Jun 30 2025
|
|
5
5
|
*
|
|
6
6
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
|
7
7
|
* Read about DevExpress licensing here: https://www.devexpress.com/Support/EULAs
|