@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.4](https://github.com/roomle-dev/roomle-ui/compare/embedding-lib-v5.17.0-alpha.3...embedding-lib-v5.17.0-alpha.4) (2025-04-29)
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
- * update SDK version ([9af0a93](https://github.com/roomle-dev/roomle-ui/commit/9af0a93d3ce4561cb64cceca0bd125c6fb03f358))
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
- * [Planner] Rotation value overflow ([2af9638](https://github.com/roomle-dev/roomle-ui/commit/2af96389f27cd141e3cc1037c5abfdcbb8fc3c32))
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roomle/embedding-lib",
3
- "version": "5.17.0-alpha.4",
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",
@@ -1,6 +1,8 @@
1
1
  export interface SelectDropdownOptions {
2
2
  label: string;
3
3
  value: string;
4
+ dividerAfter?: boolean;
5
+ dividerBefore?: boolean;
4
6
  }
5
7
  declare const _default: import('vue').DefineComponent<{
6
8
  options: SelectDropdownOptions[];
@@ -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;