@roomle/embedding-lib 5.27.0-alpha.3 → 5.27.0-alpha.4

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.
@@ -1,7 +1,13 @@
1
- ## [5.27.0-alpha.3](https://github.com/roomle-dev/roomle-ui/compare/embedding-lib-v5.27.0-alpha.2...embedding-lib-v5.27.0-alpha.3) (2025-09-03)
1
+ ## [5.27.0-alpha.4](https://github.com/roomle-dev/roomle-ui/compare/embedding-lib-v5.27.0-alpha.3...embedding-lib-v5.27.0-alpha.4) (2025-09-03)
2
2
 
3
3
 
4
4
  ### Features
5
5
 
6
- * extend swap object to also take planElement id ([8959345](https://github.com/roomle-dev/roomle-ui/commit/89593451ce7225fdeadf319cc64e797f2c620ee8))
7
- * **core:** upgrade to version 2.59.0-alpha.7 ([9b51309](https://github.com/roomle-dev/roomle-ui/commit/9b51309fe283b0f6f9adcdf25f3a30a9357bab14))
6
+ * **core:** upgrade to version 2.59.0-alpha.8 ([e8646e4](https://github.com/roomle-dev/roomle-ui/commit/e8646e43d24db4b5553de5d82d99e1d10663cd48))
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * check if camera target is zero before using saved camera position ([8c8f535](https://github.com/roomle-dev/roomle-ui/commit/8c8f5358de4fa7af201e7eb6aa48bf2f0e9f5818))
12
+ * drag construction objects in 2D ([ea23601](https://github.com/roomle-dev/roomle-ui/commit/ea23601b979a4547b9ce394b65b2b2352fb4b394))
13
+ * update position of remaining root modules when deleting a root module ([9e71f46](https://github.com/roomle-dev/roomle-ui/commit/9e71f469ef992b43fc4f90995595cf620f7acba9))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roomle/embedding-lib",
3
- "version": "5.27.0-alpha.3",
3
+ "version": "5.27.0-alpha.4",
4
4
  "description": "This is a small library which can be used to communicate with the Roomle Configurator",
5
5
  "type": "module",
6
6
  "main": "./roomle-embedding-lib.umd.js",
@@ -15,7 +15,7 @@ export default class Planner3dCameraBehaviour extends PlannerCameraBehaviour {
15
15
  updateCameraOnPlanElementDraggedOutsidePlanBounds(bounds: Box3): void;
16
16
  updateCameraOnPlanElementInsertedInsideCurrentCameraView(bounds: Box3): void;
17
17
  updateCameraOnPlanElementRemoved(bounds: Box3): void;
18
- updateCameraOnBackToPlanner(_bounds: Box3, startCameraParams: CameraParameter, endCameraParams: CameraParameter): Promise<void>;
18
+ updateCameraOnBackToPlanner(bounds: Box3, startCameraParams: CameraParameter, endCameraParams: CameraParameter): Promise<void>;
19
19
  resetCameraOnEnableWallDrawing(bounds: Box3): void;
20
20
  externalApiMoveCamera(cameraParameter: CameraParameter): Promise<void>;
21
21
  }