@colijnit/homedecorator 261.20.2 → 262.1.0
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.
package/index.d.ts
CHANGED
|
@@ -2707,7 +2707,7 @@ declare class UtilsService implements OnDestroy {
|
|
|
2707
2707
|
downloadFile(fileName: string, blob: Blob): void;
|
|
2708
2708
|
createCanvasImage(object: Object3D): string;
|
|
2709
2709
|
createThumbnailImage(object: Object3D): string;
|
|
2710
|
-
|
|
2710
|
+
downloadImage(fileName: string, imageData: string): void;
|
|
2711
2711
|
private _loadGroup;
|
|
2712
2712
|
private _addGroupChildrenToObject;
|
|
2713
2713
|
private _iterateChildren;
|
|
@@ -6284,7 +6284,7 @@ declare class NewRenderService implements OnDestroy {
|
|
|
6284
6284
|
private _dictionaryService;
|
|
6285
6285
|
renderImageChanged: BehaviorSubject<string>;
|
|
6286
6286
|
renderImageError: BehaviorSubject<string>;
|
|
6287
|
-
blenderRenderStarted: Subject<
|
|
6287
|
+
blenderRenderStarted: Subject<boolean>;
|
|
6288
6288
|
renderUpdateImageChanged: BehaviorSubject<{
|
|
6289
6289
|
image: string;
|
|
6290
6290
|
progress: number;
|
|
@@ -7171,7 +7171,7 @@ declare class TextureEditorComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
7171
7171
|
dampSetTexture: any;
|
|
7172
7172
|
createDampener: (emitter: any) => {
|
|
7173
7173
|
emit: (value: any) => void;
|
|
7174
|
-
release: () =>
|
|
7174
|
+
release: () => void;
|
|
7175
7175
|
};
|
|
7176
7176
|
constructor(messageService: MessageBusService, _settingsService: HomedecoratorSettingsService);
|
|
7177
7177
|
ngOnInit(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/homedecorator",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "262.1.0",
|
|
4
4
|
"description": "Homedecorator application based on 261 version of iOne backend",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -9,15 +9,15 @@
|
|
|
9
9
|
"peerDependencies": {
|
|
10
10
|
"@angular/common": ">=20.0.0",
|
|
11
11
|
"@angular/core": ">=20.0.0",
|
|
12
|
-
"@colijnit/catalog": ">=
|
|
13
|
-
"@colijnit/articleapi": ">=
|
|
14
|
-
"@colijnit/configurator": ">=
|
|
15
|
-
"@colijnit/configuratorapi": ">=
|
|
16
|
-
"@colijnit/corecomponents_v12": ">=
|
|
17
|
-
"@colijnit/ioneconnector": ">=
|
|
18
|
-
"@colijnit/mainapi": ">=
|
|
19
|
-
"@colijnit/relationapi": ">=
|
|
20
|
-
"@colijnit/transactionapi": ">=
|
|
12
|
+
"@colijnit/catalog": ">=262.1.0",
|
|
13
|
+
"@colijnit/articleapi": ">=262.1.0",
|
|
14
|
+
"@colijnit/configurator": ">=262.1.0",
|
|
15
|
+
"@colijnit/configuratorapi": ">=262.1.0",
|
|
16
|
+
"@colijnit/corecomponents_v12": ">=262.1.0",
|
|
17
|
+
"@colijnit/ioneconnector": ">=262.1.0",
|
|
18
|
+
"@colijnit/mainapi": ">=262.1.1",
|
|
19
|
+
"@colijnit/relationapi": ">=262.1.0",
|
|
20
|
+
"@colijnit/transactionapi": ">=262.1.0"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@tweenjs/tween.js": "^25.0.0",
|