@roomle/embedding-lib 5.33.0-alpha.2 → 5.33.0-alpha.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.
|
@@ -1,18 +1,6 @@
|
|
|
1
|
-
## [5.33.0-alpha.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Features
|
|
5
|
-
|
|
6
|
-
* core api - object component and permission to delete ([087aff9](https://github.com/roomle-dev/roomle-ui/commit/087aff965a24f99a9780a604af743dfdcaf99559))
|
|
7
|
-
* core api - Plan.getRotationForFrontView ([af665c7](https://github.com/roomle-dev/roomle-ui/commit/af665c7af8b2d7d8b9becbaaf7ffa142948dc525))
|
|
8
|
-
* enable undo/redo in isolation mode and remove feature flag ([cc5f059](https://github.com/roomle-dev/roomle-ui/commit/cc5f0590b79879a17eb5ef4d6c0ea67e6f4cf7ad))
|
|
9
|
-
* set rotation for perspective object image ([6d29fd1](https://github.com/roomle-dev/roomle-ui/commit/6d29fd15ddfdeee32e4de508782bf91d516db609))
|
|
10
|
-
* **core:** upgrade to version 2.65.0-alpha.6 ([bbfd2ad](https://github.com/roomle-dev/roomle-ui/commit/bbfd2ade04bf31e8d67abc910864b335ba873f63))
|
|
11
|
-
* **core:** upgrade to version 2.65.0-alpha.7 ([b2b491c](https://github.com/roomle-dev/roomle-ui/commit/b2b491c1099c62d67f42ebb05c3afb72a72c1463))
|
|
1
|
+
## [5.33.0-alpha.3](https://github.com/roomle-dev/roomle-ui/compare/embedding-lib-v5.33.0-alpha.2...embedding-lib-v5.33.0-alpha.3) (2025-11-27)
|
|
12
2
|
|
|
13
3
|
|
|
14
4
|
### Bug Fixes
|
|
15
5
|
|
|
16
|
-
*
|
|
17
|
-
* typo in comment ([3a381c1](https://github.com/roomle-dev/roomle-ui/commit/3a381c1cd9c6ac2a10657f5a7ae391f840b2a32c))
|
|
18
|
-
* **planner:** update bounding box of configurable construction items ([ccc5de1](https://github.com/roomle-dev/roomle-ui/commit/ccc5de14ca67a6e8b9c8475661b29a8fb074fce3))
|
|
6
|
+
* add flag plannerIsolationConfigurator instead of using startInDetail ([57f374e](https://github.com/roomle-dev/roomle-ui/commit/57f374e28206164e0f7f92588f16a9b6dec8ec11))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FeatureFlags, GlobalInitDataDefinition, InitDataDefinition } from '@roomle/web-sdk/common-core/src/utils/shims';
|
|
2
2
|
import { HexColorString, RapiConfiguratorSettings, RapiId } from '@roomle/web-sdk/typings/rapi-types';
|
|
3
|
-
import { Enumify,
|
|
3
|
+
import { Enumify, MEASUREMENT_SYSTEM, MEASUREMENT_UNIT, Nullable, TutorialData } from '../../common/utils/types';
|
|
4
4
|
import { ViewTypeState } from '../../common/store/sidebar-store';
|
|
5
5
|
import { KernelPartList } from '@roomle/web-sdk/typings/kernel';
|
|
6
6
|
import { INTERACTION_NOTIFICATIONS, NOTIFICATIONS } from '../../common/components/utils/-utils/notifications';
|
|
@@ -257,6 +257,11 @@ export interface UiInitData extends InitDataDefinition, GlobalInitDataDefinition
|
|
|
257
257
|
* @groups room-designer
|
|
258
258
|
*/
|
|
259
259
|
startInDetail?: boolean;
|
|
260
|
+
/**
|
|
261
|
+
* @description set this flag to true if you want to load the configurator within the planner without being able to plan
|
|
262
|
+
* @groups room-designer
|
|
263
|
+
*/
|
|
264
|
+
plannerIsolationConfigurator?: boolean;
|
|
260
265
|
/**
|
|
261
266
|
* @description use this param to initialize the configurator ui state, like opening certain views, camera modes, etc
|
|
262
267
|
* @groups room-designer
|