@roomle/embedding-lib 5.25.0-alpha.7 → 5.25.0-alpha.9
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,8 +1,6 @@
|
|
|
1
|
-
## [5.25.0-alpha.
|
|
1
|
+
## [5.25.0-alpha.9](https://github.com/roomle-dev/roomle-ui/compare/embedding-lib-v5.25.0-alpha.8...embedding-lib-v5.25.0-alpha.9) (2025-08-07)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
7
|
-
* update pos data model ([e612333](https://github.com/roomle-dev/roomle-ui/commit/e6123333b262ce72339f3059cde95128449bc849))
|
|
8
|
-
* updateAttribute API from OC ([3b4af28](https://github.com/roomle-dev/roomle-ui/commit/3b4af289a58a1669ca66e66649876d28e1bdc421))
|
|
6
|
+
* relative paths ([696388b](https://github.com/roomle-dev/roomle-ui/commit/696388b10f8d8247a293c83667cabae49efee370))
|
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { default as LATO_SUB_FILE_NAME } from '../../public/fonts/lato_regular_sub.json?
|
|
2
|
-
import { default as LATO_FILE_NAME } from '../../public/fonts/lato_regular.json?
|
|
1
|
+
import { default as LATO_SUB_FILE_NAME } from '../../public/fonts/lato_regular_sub.json?json';
|
|
2
|
+
import { default as LATO_FILE_NAME } from '../../public/fonts/lato_regular.json?json';
|
|
3
3
|
|
|
4
4
|
export { LATO_SUB_FILE_NAME, LATO_FILE_NAME };
|
|
@@ -12,7 +12,7 @@ export default class ComponentRaycastHelper {
|
|
|
12
12
|
init(object: Object3D, camera: PerspectiveCamera): void;
|
|
13
13
|
setCamera(camera: PerspectiveCamera): void;
|
|
14
14
|
setObject(object: Object3D): void;
|
|
15
|
-
changeMaterialsOnSelect(object: Object3D, component: RoomleComponent, selected?: boolean, callback?: () => void):
|
|
15
|
+
changeMaterialsOnSelect(object: Object3D, component: RoomleComponent, selected?: boolean, callback?: () => void): void;
|
|
16
16
|
private _changeMaterialsOnSelect;
|
|
17
17
|
isComponentVisible(component: RoomleComponent): boolean;
|
|
18
18
|
checkComponentAndPreviewVisibility(sceneEventHandler: ConfiguratorSceneEventHandler, configuratorViewModel: ConfiguratorViewModel): void;
|