@roomle/embedding-lib 5.25.0-alpha.5 → 5.25.0-alpha.6

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,14 +1,6 @@
1
- ## [5.25.0-alpha.5](https://github.com/roomle-dev/roomle-ui/compare/embedding-lib-v5.25.0-alpha.4...embedding-lib-v5.25.0-alpha.5) (2025-08-06)
2
-
3
-
4
- ### Features
5
-
6
- * show custom component dimensions when click on measurements icon ([134a2df](https://github.com/roomle-dev/roomle-ui/commit/134a2dfda3186fa3a6c07d5d65d52ff6701511f3))
1
+ ## [5.25.0-alpha.6](https://github.com/roomle-dev/roomle-ui/compare/embedding-lib-v5.25.0-alpha.5...embedding-lib-v5.25.0-alpha.6) (2025-08-06)
7
2
 
8
3
 
9
4
  ### Bug Fixes
10
5
 
11
- * another dev dep ([89a67e4](https://github.com/roomle-dev/roomle-ui/commit/89a67e41fd02ae7f83eff2c06be84af3980fb6b8))
12
- * development builds loading envmaps ([3983d81](https://github.com/roomle-dev/roomle-ui/commit/3983d81ef3466816ff8310c0d759583537e068b6))
13
- * message handler return ([1d6afc7](https://github.com/roomle-dev/roomle-ui/commit/1d6afc747416de5840b22216831c443cee473954))
14
- * sw paths ([c2d7ffd](https://github.com/roomle-dev/roomle-ui/commit/c2d7ffda8b8d539d25c592681c63c43aee4fd27d))
6
+ * more tests passing under vite ([705ade6](https://github.com/roomle-dev/roomle-ui/commit/705ade69485bc15410345109f2b265c39bd4ab97))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roomle/embedding-lib",
3
- "version": "5.25.0-alpha.5",
3
+ "version": "5.25.0-alpha.6",
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,4 +1,4 @@
1
1
  export declare function cleanRapiUrl(url: string): string;
2
- export declare const spyOnModuleMethod: (jest: any, module: any, methodName: string) => any;
3
- export declare const makeModuleSpyable: (jest: any, module: any) => any;
2
+ export declare const spyOnModuleMethod: (vi: any, module: any, methodName: string) => any;
3
+ export declare const makeModuleSpyable: (vi: any, module: any) => any;
4
4
  export declare const removePrivateProperties: (array: any[]) => any[];
@@ -1 +1 @@
1
- export {};
1
+
@@ -1,3 +0,0 @@
1
- import { default as Main } from '../../../common-core/src/main';
2
-
3
- export default function (appInstance: Main, testname: string, test: (reject: (error: Error) => void) => void): Promise<void>;