@colijnit/homedecorator 255.1.18 → 255.1.20
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/app/core/enum/message-type.enum.d.ts +2 -1
- package/app/core/interface/message-without-payload.interface.d.ts +1 -0
- package/app/core/model/homedecorator-settings-options.d.ts +1 -0
- package/app/core/service/utils.service.d.ts +1 -1
- package/app/homedecorator.component.d.ts +5 -1
- package/app/plugins/core3d/core3d/core3d.component.d.ts +2 -0
- package/app/plugins/core3d/items/base-item.d.ts +1 -0
- package/app/plugins/core3d/items/custom-objects.d.ts +1 -0
- package/app/plugins/product-catalog/own-collection-catalog/product-own-collection.component.d.ts +7 -7
- package/app/plugins/product-catalog/product-catalog/product-catalog.component.d.ts +6 -4
- package/app/plugins/render/render-controls/render-controls.component.scss +85 -1
- package/app/plugins/room-planner/components/floorplanner/floorplanner.component.d.ts +1 -0
- package/app/plugins/room-planner/components/floorplanner/service/floorplan.service.d.ts +3 -0
- package/app/plugins/room-planner/room-planner/room-planner.component.d.ts +2 -0
- package/app/plugins/threedselector/threedselector/service/third-party-model.service.d.ts +3 -1
- package/app/plugins/toolbar/draw-dialog/draw-dialog.component.scss +20 -0
- package/bundles/colijnit-homedecorator.umd.js +735 -726
- package/bundles/colijnit-homedecorator.umd.js.map +1 -1
- package/esm2015/app/core/enum/message-type.enum.js +2 -1
- package/esm2015/app/core/interface/message-without-payload.interface.js +1 -1
- package/esm2015/app/core/model/homedecorator-settings-options.js +2 -1
- package/esm2015/app/core/service/presets.service.js +5 -1
- package/esm2015/app/core/service/utils.service.js +43 -43
- package/esm2015/app/homedecorator.component.js +32 -5
- package/esm2015/app/plugins/core3d/core3d/core3d.component.js +12 -3
- package/esm2015/app/plugins/core3d/items/base-item.js +3 -1
- package/esm2015/app/plugins/core3d/items/custom-objects.js +18 -2
- package/esm2015/app/plugins/core3d/items/wall-objects.js +20 -2
- package/esm2015/app/plugins/core3d/service/floor.service.js +3 -1
- package/esm2015/app/plugins/core3d/service/hud.service.js +4 -2
- package/esm2015/app/plugins/product-catalog/own-collection-catalog/product-own-collection.component.js +27 -38
- package/esm2015/app/plugins/product-catalog/product-catalog/product-catalog.component.js +42 -40
- package/esm2015/app/plugins/product-catalog/product-catalog.module.js +3 -12
- package/esm2015/app/plugins/render/render-controls/render-controls.component.js +70 -26
- package/esm2015/app/plugins/room-planner/components/floorplanner/floorplanner.component.js +17 -5
- package/esm2015/app/plugins/room-planner/components/floorplanner/service/floorplan.service.js +11 -1
- package/esm2015/app/plugins/room-planner/components/texture-picker/texture-picker.component.js +1 -1
- package/esm2015/app/plugins/room-planner/room-planner/room-planner.component.js +8 -5
- package/esm2015/app/plugins/threedselector/threedselector/service/third-party-model.service.js +11 -8
- package/esm2015/app/plugins/threedselector/threedselector/threedselector.component.js +7 -1
- package/esm2015/app/plugins/toolbar/draw-dialog/draw-dialog.component.js +3 -3
- package/esm2015/app/plugins/toolbar/save-dialog/save-dialog.component.js +10 -2
- package/esm2015/app/shared/category-library/category-library.component.js +1 -1
- package/fesm2015/colijnit-homedecorator.js +754 -656
- package/fesm2015/colijnit-homedecorator.js.map +1 -1
- package/package.json +1 -1
- package/styles.scss +0 -1
- package/app/plugins/product-catalog/service/catalog-base-module.service.d.ts +0 -7
- package/app/plugins/product-catalog/service/catalog-screen-configuration.service.d.ts +0 -15
- package/colijnit-homedecorator-255.1.17.tgz +0 -0
- package/esm2015/app/plugins/product-catalog/service/catalog-base-module.service.js +0 -18
- package/esm2015/app/plugins/product-catalog/service/catalog-screen-configuration.service.js +0 -50
|
@@ -69,5 +69,6 @@ export declare enum MessageType {
|
|
|
69
69
|
ChangeTexture = "ChangeTexture",
|
|
70
70
|
RenderError = "RenderError",
|
|
71
71
|
ShowFloorArticleCatalog = "ShowFloorArticleCatalog",
|
|
72
|
-
BlenderRenderPreviewReady = "BlenderRenderPreviewReady"
|
|
72
|
+
BlenderRenderPreviewReady = "BlenderRenderPreviewReady",
|
|
73
|
+
FloorPlaneAvailable = "FloorPlaneAvailable"
|
|
73
74
|
}
|
|
@@ -60,11 +60,11 @@ export declare class UtilsService implements OnDestroy {
|
|
|
60
60
|
forceChangeDetection(cd: ChangeDetectorRef, component: any, propName: string): void;
|
|
61
61
|
getKTX2Loader(): KTX2Loader;
|
|
62
62
|
downloadUSDZforARIOS(object: Object3D): Promise<void>;
|
|
63
|
+
cleanedUpObjects(object: Object3D, cleanUp?: boolean): Object3D;
|
|
63
64
|
private _download3DModelAsGLB;
|
|
64
65
|
private _download3DModelAsUSDZ;
|
|
65
66
|
private _downloadFile;
|
|
66
67
|
private _loadGroup;
|
|
67
|
-
private _cleanedUpObjects;
|
|
68
68
|
private _addGroupChildrenToObject;
|
|
69
69
|
private _iterateChildren;
|
|
70
70
|
private _includeBaseUrl;
|
|
@@ -8,6 +8,7 @@ import { ScreenSizeAnalysisService } from './shared/screen-size-analysis/screen-
|
|
|
8
8
|
import { MessageBusService } from './core/service/message-bus.service';
|
|
9
9
|
import { HomedecoratorService } from './core/service/homedecorator.service';
|
|
10
10
|
import { HomedecoratorAppEventService } from './core/service/homedecorator-app-event.service';
|
|
11
|
+
import { FilterOrder } from '@colijnit/catalog/lib/interface/filter-order.interface';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
export declare class HomedecoratorComponent implements OnInit, OnDestroy {
|
|
13
14
|
controllerService: HomedecoratorConnectorService;
|
|
@@ -22,6 +23,9 @@ export declare class HomedecoratorComponent implements OnInit, OnDestroy {
|
|
|
22
23
|
private _eventService;
|
|
23
24
|
set settings(value: any);
|
|
24
25
|
get settings(): any;
|
|
26
|
+
generalFilterOrders: FilterOrder[];
|
|
27
|
+
purchaseFilterOrders: FilterOrder[];
|
|
28
|
+
logisticsFilterOrders: FilterOrder[];
|
|
25
29
|
showClass: boolean;
|
|
26
30
|
loaded: boolean;
|
|
27
31
|
title: string;
|
|
@@ -40,5 +44,5 @@ export declare class HomedecoratorComponent implements OnInit, OnDestroy {
|
|
|
40
44
|
private _startWithEmptyRoom;
|
|
41
45
|
private _startWithPreset;
|
|
42
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<HomedecoratorComponent, never>;
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HomedecoratorComponent, "co-homedecorator", never, { "settings": "settings"; }, {}, never, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HomedecoratorComponent, "co-homedecorator", never, { "settings": "settings"; "generalFilterOrders": "generalFilterOrders"; "purchaseFilterOrders": "purchaseFilterOrders"; "logisticsFilterOrders": "logisticsFilterOrders"; }, {}, never, never>;
|
|
44
48
|
}
|
|
@@ -49,6 +49,7 @@ export declare class Core3dComponent implements OnInit, OnDestroy, PluginInterfa
|
|
|
49
49
|
showLightplan: boolean;
|
|
50
50
|
showCameraControlButtons: boolean;
|
|
51
51
|
show3DWaterMark: boolean;
|
|
52
|
+
threedOptionsAvailable: boolean;
|
|
52
53
|
private _subs;
|
|
53
54
|
constructor(viewModeService: ViewModeService, settingsService: HomedecoratorSettingsService, xrService: XrService, _vrService: VrService, _presetService: PresetsService, _messageService: MessageBusService, _configurationService: ConfigurationService, _cameraService: CameraService, _floorplanService: FloorplanService, _itemService: ItemService, _dialog: MatDialog, iconService: HomedecoratorIconCacheService, _screenSizeService: ScreenSizeAnalysisService, _wallMeasurementsService: WallMeasurementsService);
|
|
54
55
|
ngOnInit(): void;
|
|
@@ -71,6 +72,7 @@ export declare class Core3dComponent implements OnInit, OnDestroy, PluginInterfa
|
|
|
71
72
|
};
|
|
72
73
|
copySceneInstance(saveAs: boolean): Promise<void>;
|
|
73
74
|
loadObjects(data: any): Promise<any>;
|
|
75
|
+
private _viewModeChanged;
|
|
74
76
|
static ɵfac: i0.ɵɵFactoryDeclaration<Core3dComponent, never>;
|
|
75
77
|
static ɵcmp: i0.ɵɵComponentDeclaration<Core3dComponent, "rp-core3d", never, {}, {}, never, never>;
|
|
76
78
|
}
|
package/app/plugins/product-catalog/own-collection-catalog/product-own-collection.component.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import { EventEmitter
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { HomedecoratorExternalSettingsInterface } from '../../../core/interface/homedecorator-external-settings.interface';
|
|
3
3
|
import { ArticleListObjectExtended } from '@colijnit/articleapi/build/model/article-list-object-extended.bo';
|
|
4
|
-
import {
|
|
4
|
+
import { FilterOrder } from '@colijnit/catalog/lib/interface/filter-order.interface';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class ProductOwnCollectionComponent
|
|
7
|
-
private _screenConfigService;
|
|
6
|
+
export declare class ProductOwnCollectionComponent {
|
|
8
7
|
settings: any;
|
|
8
|
+
generalFilterOrders: FilterOrder[];
|
|
9
|
+
purchaseFilterOrders: FilterOrder[];
|
|
10
|
+
logisticsFilterOrders: FilterOrder[];
|
|
9
11
|
articleClick: EventEmitter<{
|
|
10
12
|
article: ArticleListObjectExtended;
|
|
11
13
|
settings?: HomedecoratorExternalSettingsInterface;
|
|
@@ -14,10 +16,8 @@ export declare class ProductOwnCollectionComponent implements OnInit {
|
|
|
14
16
|
article: ArticleListObjectExtended;
|
|
15
17
|
settings?: HomedecoratorExternalSettingsInterface;
|
|
16
18
|
}>;
|
|
17
|
-
constructor(_screenConfigService: CatalogScreenConfigurationService);
|
|
18
|
-
ngOnInit(): Promise<void>;
|
|
19
19
|
handleArticleClick(article: ArticleListObjectExtended): void;
|
|
20
20
|
handleArButtonClick(article: ArticleListObjectExtended): void;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProductOwnCollectionComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProductOwnCollectionComponent, "rp-product-own-collection", never, { "settings": "settings"; }, { "articleClick": "articleClick"; "arButtonClick": "arButtonClick"; }, never, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProductOwnCollectionComponent, "rp-product-own-collection", never, { "settings": "settings"; "generalFilterOrders": "generalFilterOrders"; "purchaseFilterOrders": "purchaseFilterOrders"; "logisticsFilterOrders": "logisticsFilterOrders"; }, { "articleClick": "articleClick"; "arButtonClick": "arButtonClick"; }, never, never>;
|
|
23
23
|
}
|
|
@@ -18,7 +18,7 @@ import { HomedecoratorExternalSettingsInterface } from '../../../core/interface/
|
|
|
18
18
|
import { ThirdPartyModelService } from '../../threedselector/threedselector/service/third-party-model.service';
|
|
19
19
|
import { ExternalSourceArticleClickInterface } from '@colijnit/articleapi/build/interface/external-source-article-click.interface';
|
|
20
20
|
import { ArticleListObjectExtended } from '@colijnit/articleapi/build/model/article-list-object-extended.bo';
|
|
21
|
-
import {
|
|
21
|
+
import { FilterOrder } from '@colijnit/catalog/lib/interface/filter-order.interface';
|
|
22
22
|
import * as i0 from "@angular/core";
|
|
23
23
|
export declare class ProductCatalogComponent implements OnInit, OnDestroy {
|
|
24
24
|
settingsService: HomedecoratorSettingsService;
|
|
@@ -33,7 +33,9 @@ export declare class ProductCatalogComponent implements OnInit, OnDestroy {
|
|
|
33
33
|
private _adapterService;
|
|
34
34
|
private _buildFurnitureService;
|
|
35
35
|
private _thirdPartyModelService;
|
|
36
|
-
|
|
36
|
+
generalFilterOrders: FilterOrder[];
|
|
37
|
+
purchaseFilterOrders: FilterOrder[];
|
|
38
|
+
logisticsFilterOrders: FilterOrder[];
|
|
37
39
|
get shown(): boolean;
|
|
38
40
|
loaded: boolean;
|
|
39
41
|
settings: HomedecoratorSettings;
|
|
@@ -49,7 +51,7 @@ export declare class ProductCatalogComponent implements OnInit, OnDestroy {
|
|
|
49
51
|
private _showCatalog;
|
|
50
52
|
private _subs;
|
|
51
53
|
private _source;
|
|
52
|
-
constructor(settingsService: HomedecoratorSettingsService, _messageBus: MessageBusService, _ioneController: HomedecoratorConnectorService, _screenSizeService: ScreenSizeAnalysisService, _sceneService: SceneService, _floorPlanService: FloorplanService, _injector: Injector, _catalogService: CatalogService, _dynamicScriptService: DynamicScriptService, _adapterService: HomedecoratorConnectorAdapterService, _buildFurnitureService: BuildFurnitureService, _thirdPartyModelService: ThirdPartyModelService
|
|
54
|
+
constructor(settingsService: HomedecoratorSettingsService, _messageBus: MessageBusService, _ioneController: HomedecoratorConnectorService, _screenSizeService: ScreenSizeAnalysisService, _sceneService: SceneService, _floorPlanService: FloorplanService, _injector: Injector, _catalogService: CatalogService, _dynamicScriptService: DynamicScriptService, _adapterService: HomedecoratorConnectorAdapterService, _buildFurnitureService: BuildFurnitureService, _thirdPartyModelService: ThirdPartyModelService);
|
|
53
55
|
ngOnInit(): Promise<void>;
|
|
54
56
|
ngOnDestroy(): void;
|
|
55
57
|
hideCatalog(): void;
|
|
@@ -67,5 +69,5 @@ export declare class ProductCatalogComponent implements OnInit, OnDestroy {
|
|
|
67
69
|
private _buildExternalCatalogRequest;
|
|
68
70
|
private _handleShowProductCatalogMessageReceived;
|
|
69
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProductCatalogComponent, never>;
|
|
70
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProductCatalogComponent, "rp-product-catalog", never, {}, {}, never, never>;
|
|
72
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProductCatalogComponent, "rp-product-catalog", never, { "generalFilterOrders": "generalFilterOrders"; "purchaseFilterOrders": "purchaseFilterOrders"; "logisticsFilterOrders": "logisticsFilterOrders"; }, {}, never, never>;
|
|
71
73
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
$border-radius: 20px;
|
|
2
2
|
$border-width: 10px;
|
|
3
|
-
$border-color:
|
|
3
|
+
$border-color: #dda73f;
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
.render-container {
|
|
@@ -47,10 +47,12 @@ $border-color: #dda73f;
|
|
|
47
47
|
height: 40px;
|
|
48
48
|
align-items: center;
|
|
49
49
|
justify-content: space-evenly;
|
|
50
|
+
|
|
50
51
|
::ng-deep co-icon {
|
|
51
52
|
display: inline-block;
|
|
52
53
|
height: 18px;
|
|
53
54
|
width: 18px;
|
|
55
|
+
|
|
54
56
|
svg {
|
|
55
57
|
path {
|
|
56
58
|
fill: #fff;
|
|
@@ -63,6 +65,7 @@ $border-color: #dda73f;
|
|
|
63
65
|
color: #fff;
|
|
64
66
|
background-color: #dda73f;
|
|
65
67
|
}
|
|
68
|
+
|
|
66
69
|
.cancel-button {
|
|
67
70
|
color: #fff;
|
|
68
71
|
background-color: #5b6875;
|
|
@@ -75,6 +78,7 @@ $border-color: #dda73f;
|
|
|
75
78
|
min-width: 275px;
|
|
76
79
|
margin: 5px 0;
|
|
77
80
|
position: relative;
|
|
81
|
+
|
|
78
82
|
.render-popup-preview-placeholder {
|
|
79
83
|
background-color: #fff;
|
|
80
84
|
display: flex;
|
|
@@ -86,6 +90,7 @@ $border-color: #dda73f;
|
|
|
86
90
|
color: #ddd;
|
|
87
91
|
font-size: 14px;
|
|
88
92
|
}
|
|
93
|
+
|
|
89
94
|
.render-popup-refresh-preview {
|
|
90
95
|
position: absolute;
|
|
91
96
|
bottom: 0;
|
|
@@ -97,6 +102,7 @@ $border-color: #dda73f;
|
|
|
97
102
|
width: 30px;
|
|
98
103
|
background-color: #dda73f;
|
|
99
104
|
color: #fff;
|
|
105
|
+
|
|
100
106
|
::ng-deep co-icon {
|
|
101
107
|
svg {
|
|
102
108
|
path {
|
|
@@ -165,6 +171,7 @@ $border-color: #dda73f;
|
|
|
165
171
|
position: relative;
|
|
166
172
|
z-index: 2;
|
|
167
173
|
margin-bottom: 10px;
|
|
174
|
+
|
|
168
175
|
&.active {
|
|
169
176
|
background: #74B77F;
|
|
170
177
|
color: #fff;
|
|
@@ -234,3 +241,80 @@ $border-color: #dda73f;
|
|
|
234
241
|
border-bottom-right-radius: $border-radius;
|
|
235
242
|
}
|
|
236
243
|
}
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
.render-warning {
|
|
247
|
+
width: 500px;
|
|
248
|
+
position: fixed;
|
|
249
|
+
top: 20%;
|
|
250
|
+
left: calc(50% - 250px);
|
|
251
|
+
border-radius: 15px;
|
|
252
|
+
box-sizing: border-box;
|
|
253
|
+
background-color: #fff;
|
|
254
|
+
box-shadow: 1px 0 20px rgba(0, 0, 0, 0.12);
|
|
255
|
+
|
|
256
|
+
.render-warming-header {
|
|
257
|
+
display: flex;
|
|
258
|
+
justify-content: space-between;
|
|
259
|
+
border-bottom: 1px solid #c5c3c6;
|
|
260
|
+
padding: 20px 20px 10px;
|
|
261
|
+
align-items: center;
|
|
262
|
+
|
|
263
|
+
h2 {
|
|
264
|
+
padding: 0;
|
|
265
|
+
margin: 0;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.render-warning-close {
|
|
269
|
+
mat-icon {
|
|
270
|
+
fill: #c5c3c6;
|
|
271
|
+
color: #c5c3c6;
|
|
272
|
+
cursor: pointer;
|
|
273
|
+
transition: all 0.2s ease;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
&:hover {
|
|
277
|
+
mat-icon {
|
|
278
|
+
fill: #46494c;
|
|
279
|
+
color: #46494c;
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.render-warning-body {
|
|
286
|
+
padding: 10px 20px;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.render-warning-footer {
|
|
290
|
+
display: flex;
|
|
291
|
+
justify-content: center;
|
|
292
|
+
padding: 0 20px 10px;
|
|
293
|
+
|
|
294
|
+
.render-popup-button {
|
|
295
|
+
float: none;
|
|
296
|
+
width: 110px;
|
|
297
|
+
border-radius: 3px;
|
|
298
|
+
cursor: pointer;
|
|
299
|
+
border: none;
|
|
300
|
+
display: flex;
|
|
301
|
+
height: 40px;
|
|
302
|
+
align-items: center;
|
|
303
|
+
justify-content: space-evenly;
|
|
304
|
+
color: #fff;
|
|
305
|
+
background-color: #5b6875;
|
|
306
|
+
|
|
307
|
+
::ng-deep co-icon {
|
|
308
|
+
display: inline-block;
|
|
309
|
+
height: 18px;
|
|
310
|
+
width: 18px;
|
|
311
|
+
|
|
312
|
+
svg {
|
|
313
|
+
path {
|
|
314
|
+
fill: #fff;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
}
|
|
@@ -70,6 +70,7 @@ export declare class FloorplannerComponent implements AfterViewInit, OnDestroy {
|
|
|
70
70
|
private _diagramBackgroundHeight;
|
|
71
71
|
private _diagramBackgroundWidth;
|
|
72
72
|
private _diagramBackgroundActiveZoom;
|
|
73
|
+
private _diagramBackgroundAlpha;
|
|
73
74
|
private _diagramScale;
|
|
74
75
|
private _cameraZoom;
|
|
75
76
|
private _lastTouchPoint;
|
|
@@ -11,6 +11,9 @@ export declare class FloorplanService {
|
|
|
11
11
|
roomsUpdated: Subject<void>;
|
|
12
12
|
roomLoaded: Subject<void>;
|
|
13
13
|
redraw: Subject<void>;
|
|
14
|
+
get defaultFloorPlanTolerance(): number;
|
|
15
|
+
get defaultCornerSnapTolerance(): number;
|
|
16
|
+
get defaultWallSnapTolerance(): number;
|
|
14
17
|
/** */
|
|
15
18
|
private _corners;
|
|
16
19
|
/** */
|
|
@@ -131,6 +131,7 @@ export declare class RoomPlannerComponent implements OnInit, OnDestroy, PluginIn
|
|
|
131
131
|
showConversionButton: boolean;
|
|
132
132
|
addSelectedClass: boolean;
|
|
133
133
|
salableObject: boolean;
|
|
134
|
+
threedIconAvailable: boolean;
|
|
134
135
|
private _subs;
|
|
135
136
|
private _activeCategorySidebarTemplate;
|
|
136
137
|
private _mode;
|
|
@@ -231,6 +232,7 @@ export declare class RoomPlannerComponent implements OnInit, OnDestroy, PluginIn
|
|
|
231
232
|
private _reattachToItemGroup;
|
|
232
233
|
private handleKeyDown;
|
|
233
234
|
private _textInputActive;
|
|
235
|
+
private _setThreedAvailable;
|
|
234
236
|
static ɵfac: i0.ɵɵFactoryDeclaration<RoomPlannerComponent, never>;
|
|
235
237
|
static ɵcmp: i0.ɵɵComponentDeclaration<RoomPlannerComponent, "rp-room-planner", never, { "isLoading": "isLoading"; }, { "done": "done"; "showPlugin": "showPlugin"; "focusControls": "focusControls"; }, never, never>;
|
|
236
238
|
}
|
|
@@ -27,6 +27,7 @@ import { ResizeService } from './resize.service';
|
|
|
27
27
|
import { ViewModeService } from '../../../../core/service/view-mode.service';
|
|
28
28
|
import { Metadata } from '../../../core3d/items/metadata';
|
|
29
29
|
import { CustomFloorGroupResult } from '../../../core3d/model/custom-floor-group-result';
|
|
30
|
+
import { BuildFurnitureService } from './build-furniture.service';
|
|
30
31
|
import * as i0 from "@angular/core";
|
|
31
32
|
export declare class ThirdPartyModelService implements OnDestroy {
|
|
32
33
|
private _dialog;
|
|
@@ -54,7 +55,8 @@ export declare class ThirdPartyModelService implements OnDestroy {
|
|
|
54
55
|
private _variationCacheService;
|
|
55
56
|
private _resizeService;
|
|
56
57
|
private _viewModeService;
|
|
57
|
-
|
|
58
|
+
private _buildFurniture;
|
|
59
|
+
constructor(_dialog: MatDialog, _iOne: HomedecoratorConnectorService, _threedSelectorService: ThreedselectorService, _collisionManager: CollisionManagerService, _messageBus: MessageBusService, _dictionaryService: HomedecoratorDictionaryService, _hudService: HudService, _sceneService: SceneService, _cameraService: CameraService, _sceneEventService: SceneEventService, _appEventService: HomedecoratorAppEventService, _presetService: PresetsService, _itemService: ItemService, _elementService: ElementService, _permanentStoreService: PermanentStoreService, _googleTagManager: GoogleTagManagerService, _settingsService: HomedecoratorSettingsService, _utilsService: UtilsService, _variationService: VariationService, _appStateService: AppStateService, _errorService: ErrorService, _itemGroupService: ItemGroupService, _variationCacheService: VariationCacheService, _resizeService: ResizeService, _viewModeService: ViewModeService, _buildFurniture: BuildFurnitureService);
|
|
58
60
|
ngOnDestroy(): void;
|
|
59
61
|
downloadModel(urlToFetch: string): Promise<Response>;
|
|
60
62
|
createThirdParty3dModel(result: Object3D, hash: string, metaData: Metadata): CustomFloorGroupResult;
|
|
@@ -17,6 +17,7 @@ button {
|
|
|
17
17
|
&:hover {
|
|
18
18
|
background: #da9803;
|
|
19
19
|
color: #fff;
|
|
20
|
+
|
|
20
21
|
}
|
|
21
22
|
}
|
|
22
23
|
|
|
@@ -31,6 +32,25 @@ button {
|
|
|
31
32
|
}
|
|
32
33
|
}
|
|
33
34
|
|
|
35
|
+
.model-header {
|
|
36
|
+
display: flex;
|
|
37
|
+
justify-content: space-between;
|
|
38
|
+
align-items: start;
|
|
39
|
+
.close-button{
|
|
40
|
+
background: none;
|
|
41
|
+
color: #333;
|
|
42
|
+
border: none;
|
|
43
|
+
padding: 0;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.modal-footer {
|
|
48
|
+
display: flex;
|
|
49
|
+
justify-content: space-between;
|
|
50
|
+
align-items: end;
|
|
51
|
+
margin-top: 30px;
|
|
52
|
+
}
|
|
53
|
+
|
|
34
54
|
.reference-input-container {
|
|
35
55
|
.input-button-container {
|
|
36
56
|
display: flex;
|