@leapfrog/interactive-canvas 1.0.6 → 1.0.7
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.
|
@@ -2411,7 +2411,7 @@ var AbstractInteractiveCanvas = /** @class */ (function () {
|
|
|
2411
2411
|
top: Math.max(current.top, next.top),
|
|
2412
2412
|
right: Math.max(current.right, next.right),
|
|
2413
2413
|
bottom: Math.max(current.bottom, next.bottom),
|
|
2414
|
-
left: Math.max(current.
|
|
2414
|
+
left: Math.max(current.left, next.left)
|
|
2415
2415
|
};
|
|
2416
2416
|
}, { top: 0, right: 0, bottom: 0, left: 0 });
|
|
2417
2417
|
var cutoffWidth = this.getObjectsByTypeInternal(ObjectType.CUTOFF)
|
|
@@ -2411,7 +2411,7 @@ var AbstractInteractiveCanvas = /** @class */ (function () {
|
|
|
2411
2411
|
top: Math.max(current.top, next.top),
|
|
2412
2412
|
right: Math.max(current.right, next.right),
|
|
2413
2413
|
bottom: Math.max(current.bottom, next.bottom),
|
|
2414
|
-
left: Math.max(current.
|
|
2414
|
+
left: Math.max(current.left, next.left)
|
|
2415
2415
|
};
|
|
2416
2416
|
}, { top: 0, right: 0, bottom: 0, left: 0 });
|
|
2417
2417
|
var cutoffWidth = this.getObjectsByTypeInternal(exports.ObjectType.CUTOFF)
|