@roomle/embedding-lib 5.22.0-alpha.3 → 5.22.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,6 +1,7 @@
1
- ## [5.22.0-alpha.3](https://github.com/roomle-dev/roomle-ui/compare/embedding-lib-v5.22.0-alpha.2...embedding-lib-v5.22.0-alpha.3) (2025-06-17)
1
+ ## [5.22.0-alpha.5](https://github.com/roomle-dev/roomle-ui/compare/embedding-lib-v5.22.0-alpha.4...embedding-lib-v5.22.0-alpha.5) (2025-06-17)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * update SDK to hotfixed core ([c1b04b4](https://github.com/roomle-dev/roomle-ui/commit/c1b04b42f44561594993262c3762f8090496a0cb))
6
+ * update comment ([561c708](https://github.com/roomle-dev/roomle-ui/commit/561c7085a3950c10eb7308b70b484b11263b4c28))
7
+ * value check ([78dbf77](https://github.com/roomle-dev/roomle-ui/commit/78dbf770a52b8c10add9844389ad4338c8d2b5f7))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roomle/embedding-lib",
3
- "version": "5.22.0-alpha.3",
3
+ "version": "5.22.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",
@@ -22,5 +22,8 @@ export interface PlannerSidebarLayerState {
22
22
  export declare const PLANNER_SIDEBAR_STATE_KEYS: {
23
23
  readonly LAYER_STATE: "planner_sidebar_layer_state";
24
24
  };
25
+ export declare const CONFIGURATOR_SIDEBAR_STATE_KEYS: {
26
+ readonly SHOULD_SHOW_COLLECTION_VIEW_ELEMENT: "configurator_sidebar_show_collection_view_element";
27
+ };
25
28
  export declare const matchProductListAndQuantity: (productList: UiPlanObject[]) => ProductListItem[];
26
29
  export declare const fillPartList: (data: RapiItem | RapiConfiguration, partList: KernelPartList, hash: string, plannerApi: RoomlePlannerWithExtObjs, store: Store<StoreState>) => Promise<void>;