@roomle/embedding-lib 5.17.0-alpha.4 → 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,12 +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
|
-
*
|
|
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))
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
*
|
|
12
|
-
* remove animation while switching from desktop to mobile and vice versa ([c721d13](https://github.com/roomle-dev/roomle-ui/commit/c721d13d79ad43dbb096713b8d7f62a8c03f580d))
|
|
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
|
@@ -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;
|