@inditextech/weave-sdk 0.74.2 → 0.74.3
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/sdk.cjs +2 -2
- package/dist/sdk.js +2 -2
- package/dist/sdk.js.map +1 -1
- package/package.json +2 -2
package/dist/sdk.cjs
CHANGED
|
@@ -18325,7 +18325,7 @@ const getPositionRelativeToContainerOnPosition = (instance) => {
|
|
|
18325
18325
|
let position = instance.getStage().getRelativePointerPosition();
|
|
18326
18326
|
if (!position) return position;
|
|
18327
18327
|
const container = containerOverCursor(instance, [], position);
|
|
18328
|
-
position = container?.getRelativePointerPosition();
|
|
18328
|
+
if (container) position = container?.getRelativePointerPosition();
|
|
18329
18329
|
if (!position) return position;
|
|
18330
18330
|
return position;
|
|
18331
18331
|
};
|
|
@@ -22076,7 +22076,7 @@ var WeaveRegisterManager = class {
|
|
|
22076
22076
|
|
|
22077
22077
|
//#endregion
|
|
22078
22078
|
//#region package.json
|
|
22079
|
-
var version = "0.74.
|
|
22079
|
+
var version = "0.74.3";
|
|
22080
22080
|
|
|
22081
22081
|
//#endregion
|
|
22082
22082
|
//#region src/managers/setup.ts
|
package/dist/sdk.js
CHANGED
|
@@ -18325,7 +18325,7 @@ const getPositionRelativeToContainerOnPosition = (instance) => {
|
|
|
18325
18325
|
let position = instance.getStage().getRelativePointerPosition();
|
|
18326
18326
|
if (!position) return position;
|
|
18327
18327
|
const container = containerOverCursor(instance, [], position);
|
|
18328
|
-
position = container?.getRelativePointerPosition();
|
|
18328
|
+
if (container) position = container?.getRelativePointerPosition();
|
|
18329
18329
|
if (!position) return position;
|
|
18330
18330
|
return position;
|
|
18331
18331
|
};
|
|
@@ -22076,7 +22076,7 @@ var WeaveRegisterManager = class {
|
|
|
22076
22076
|
|
|
22077
22077
|
//#endregion
|
|
22078
22078
|
//#region package.json
|
|
22079
|
-
var version = "0.74.
|
|
22079
|
+
var version = "0.74.3";
|
|
22080
22080
|
|
|
22081
22081
|
//#endregion
|
|
22082
22082
|
//#region src/managers/setup.ts
|