@roomle/embedding-lib 5.17.0-alpha.6 → 5.17.0-alpha.8
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/docs/md/web/embedding/CHANGELOG.md +7 -3
- package/package.json +2 -2
- package/packages/embedding-lib/src/examples/activate-deactivate-rd.d.ts +8 -0
- package/src/configurator/embedding/exposed-api.d.ts +3 -0
- package/src/configurator/embedding/types.d.ts +5 -0
- package/src/viewer/components/ViewerMain.vue.d.ts +1 -0
|
@@ -1,11 +1,15 @@
|
|
|
1
|
-
## [5.17.0-alpha.
|
|
1
|
+
## [5.17.0-alpha.8](https://github.com/roomle-dev/roomle-ui/compare/embedding-lib-v5.17.0-alpha.7...embedding-lib-v5.17.0-alpha.8) (2025-05-07)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* make RD activate/deactivate able ([6d8a746](https://github.com/roomle-dev/roomle-ui/commit/6d8a7466446dd77462d5d9e709184355560f039f))
|
|
7
|
+
* **SDK:** upgrade to version 2.100.0 ([#1667](https://github.com/roomle-dev/roomle-ui/issues/1667)) ([53febd5](https://github.com/roomle-dev/roomle-ui/commit/53febd51be549eee23530b45ae81ef9149a6b3c2))
|
|
8
|
+
* **SDK:** upgrade to version 2.101.0-alpha.1 ([#1669](https://github.com/roomle-dev/roomle-ui/issues/1669)) ([867949f](https://github.com/roomle-dev/roomle-ui/commit/867949f407c89d561f20611d687ba137c85d79f7))
|
|
9
|
+
* **SDK:** upgrade to version 2.101.0-alpha.2 ([#1671](https://github.com/roomle-dev/roomle-ui/issues/1671)) ([b458e99](https://github.com/roomle-dev/roomle-ui/commit/b458e99f76ebafdec2c7cef71a7e0906e7d2ecf5))
|
|
10
|
+
* **SDK:** upgrade to version 2.99.0-alpha.12 ([#1668](https://github.com/roomle-dev/roomle-ui/issues/1668)) ([24390af](https://github.com/roomle-dev/roomle-ui/commit/24390af7a235b66a2a2949b9a003869c181c97f3))
|
|
7
11
|
|
|
8
12
|
|
|
9
13
|
### Bug Fixes
|
|
10
14
|
|
|
11
|
-
*
|
|
15
|
+
* adjust little max width to room label ([8c14e23](https://github.com/roomle-dev/roomle-ui/commit/8c14e235ccb0650d99edba9731e7be165dbf2e8b))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@roomle/embedding-lib",
|
|
3
|
-
"version": "5.17.0-alpha.
|
|
3
|
+
"version": "5.17.0-alpha.8",
|
|
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",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"npm": "8.3.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@roomle/web-sdk": "2.
|
|
32
|
+
"@roomle/web-sdk": "2.101.0-alpha.2"
|
|
33
33
|
},
|
|
34
34
|
"repository": {
|
|
35
35
|
"type": "git",
|
|
@@ -171,6 +171,9 @@ export declare class ExposedApi {
|
|
|
171
171
|
toggleDrawer(): void;
|
|
172
172
|
activateCustomView(viewName: PossibleCustomViews, options: CustomViewSettingsForIframe<any>): void;
|
|
173
173
|
deactivateCustomView(viewName: PossibleCustomViews, options: CustomViewSettingsForIframe<any>): void;
|
|
174
|
+
private _setRoomDesignerActive;
|
|
175
|
+
deactivateRoomDesigner(): void;
|
|
176
|
+
activateRoomDesigner(): void;
|
|
174
177
|
private _websiteReady;
|
|
175
178
|
private _handleMessage;
|
|
176
179
|
private _forwardSdkCallbacks;
|
|
@@ -465,6 +465,11 @@ export interface UiInitData extends InitDataDefinition, GlobalInitDataDefinition
|
|
|
465
465
|
* @description specify an url which can be used as src for an iframe
|
|
466
466
|
*/
|
|
467
467
|
customView?: CustomViews;
|
|
468
|
+
/**
|
|
469
|
+
* @internal
|
|
470
|
+
* @description specify if Room Designer functionality should be active
|
|
471
|
+
*/
|
|
472
|
+
roomDesignerActive?: boolean;
|
|
468
473
|
}
|
|
469
474
|
export interface UiState {
|
|
470
475
|
/**
|
|
@@ -10,6 +10,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
10
10
|
isOnOverview(): boolean;
|
|
11
11
|
isViewer(): boolean;
|
|
12
12
|
isMoc(): boolean;
|
|
13
|
+
showStopConfiguringButton(): boolean;
|
|
13
14
|
}, {
|
|
14
15
|
resetScroll(): void;
|
|
15
16
|
onClose(action: Nullable<BUTTON_ACTIONS>): Promise<void>;
|