@roomle/embedding-lib 5.17.0-alpha.3 → 5.17.0-alpha.5
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,15 +1,11 @@
|
|
|
1
|
-
## [5.17.0-alpha.
|
|
1
|
+
## [5.17.0-alpha.5](https://github.com/roomle-dev/roomle-ui/compare/embedding-lib-v5.17.0-alpha.4...embedding-lib-v5.17.0-alpha.5) (2025-04-29)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
*
|
|
7
|
-
* expose rapi access via embedding ([05f1b5a](https://github.com/roomle-dev/roomle-ui/commit/05f1b5aafeb5d8a94a2585b3303f3177910724d2))
|
|
6
|
+
* add no label entry to the room labels list and handle all the cases after that ([d703f6c](https://github.com/roomle-dev/roomle-ui/commit/d703f6ca337f9ca20f593b4ddaf4f0cd5a2cbdaa))
|
|
8
7
|
|
|
9
8
|
|
|
10
9
|
### Bug Fixes
|
|
11
10
|
|
|
12
|
-
*
|
|
13
|
-
* failing tests ([ebf1b99](https://github.com/roomle-dev/roomle-ui/commit/ebf1b99f767abd42e385f596a2883a11fc9f535a))
|
|
14
|
-
* **planner:** not call switch camera when mounting planner ([3473808](https://github.com/roomle-dev/roomle-ui/commit/3473808b18b6d51b3dafe17ef8ff33fe89a0fa6b))
|
|
15
|
-
* remove wrong font family from room label ([188ac5a](https://github.com/roomle-dev/roomle-ui/commit/188ac5a9319a4b6ea1a8deb274d7b71b6a2f2037))
|
|
11
|
+
* send flag if it was switch between mobile and desktop ([048c663](https://github.com/roomle-dev/roomle-ui/commit/048c6636d8e5d0c573085577945df2af7ebc668d))
|
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.5",
|
|
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.99.0-alpha.
|
|
32
|
+
"@roomle/web-sdk": "2.99.0-alpha.10"
|
|
33
33
|
},
|
|
34
34
|
"repository": {
|
|
35
35
|
"type": "git",
|
|
@@ -84,8 +84,8 @@ export declare class ExposedCallbacks {
|
|
|
84
84
|
onSaveDraft: (id: string, image: string, url: string, data: SaveDraftPayload) => void;
|
|
85
85
|
onShowCustomView: (...[viewName, data]: CustomViewCallbackInfo) => Promise<Nullable<boolean>> | Nullable<boolean>;
|
|
86
86
|
onHideCustomView: (...[viewName, data]: CustomViewCallbackInfo) => void;
|
|
87
|
-
onCollapseDrawer: () => void;
|
|
88
|
-
onExpandDrawer: () => void;
|
|
87
|
+
onCollapseDrawer: (_wasChangeBetweenDesktopAndMobile: boolean) => void;
|
|
88
|
+
onExpandDrawer: (_wasChangeBetweenDesktopAndMobile: boolean) => void;
|
|
89
89
|
onSidebarEvent: (...[type, params]: SidebarEventCallbackInfo) => void;
|
|
90
90
|
onShowPopUp: () => void;
|
|
91
91
|
onHidePopUp: () => void;
|