@colijnit/homedecorator 256.1.12 → 256.1.14

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.
Files changed (46) hide show
  1. package/app/core/enum/message-type.enum.d.ts +3 -1
  2. package/app/core/interface/message-with-payload.interface.d.ts +1 -0
  3. package/app/core/interface/message-without-payload.interface.d.ts +1 -0
  4. package/app/core/model/light-preset.d.ts +1 -0
  5. package/app/core/service/homedecorator-connector-adapter.service.d.ts +3 -0
  6. package/app/core/service/integration.service.d.ts +3 -1
  7. package/app/core/utils/file.utils.d.ts +1 -0
  8. package/app/core/utils/variation-utils.d.ts +1 -0
  9. package/app/homedecorator.component.d.ts +8 -2
  10. package/app/plugins/core3d/service/item.service.d.ts +1 -0
  11. package/app/plugins/core3d/service/scene.service.d.ts +1 -0
  12. package/app/plugins/threedselector/threedselector/service/build-furniture.service.d.ts +1 -1
  13. package/app/plugins/threedselector/threedselector/service/load-furniture.service.d.ts +7 -16
  14. package/app/plugins/threedselector/threedselector/service/threedselector.service.d.ts +1 -1
  15. package/app/plugins/threedselector/threedselector/service/variation.service.d.ts +3 -3
  16. package/app/plugins/threedselector/threedselector/threedselector.component.d.ts +3 -1
  17. package/app/shared/model-dialog/model-dialog-furniture-list.component.d.ts +3 -3
  18. package/bundles/colijnit-homedecorator.umd.js +402 -278
  19. package/bundles/colijnit-homedecorator.umd.js.map +1 -1
  20. package/esm2015/app/app.version.js +3 -3
  21. package/esm2015/app/core/enum/message-type.enum.js +3 -1
  22. package/esm2015/app/core/interface/message-with-payload.interface.js +1 -1
  23. package/esm2015/app/core/interface/message-without-payload.interface.js +1 -1
  24. package/esm2015/app/core/model/light-preset.js +2 -1
  25. package/esm2015/app/core/service/homedecorator-connector-adapter.service.js +15 -2
  26. package/esm2015/app/core/service/integration.service.js +11 -5
  27. package/esm2015/app/core/utils/file.utils.js +13 -1
  28. package/esm2015/app/core/utils/variation-utils.js +13 -1
  29. package/esm2015/app/homedecorator.component.js +34 -19
  30. package/esm2015/app/plugins/core3d/service/camera.service.js +2 -2
  31. package/esm2015/app/plugins/core3d/service/item.service.js +5 -1
  32. package/esm2015/app/plugins/core3d/service/light-presets.service.js +2 -3
  33. package/esm2015/app/plugins/core3d/service/scene.service.js +4 -2
  34. package/esm2015/app/plugins/render/render-controls/render-controls.component.js +21 -26
  35. package/esm2015/app/plugins/room-planner/room-planner/room-planner.component.js +3 -2
  36. package/esm2015/app/plugins/threedselector/threedselector/service/build-furniture.service.js +18 -13
  37. package/esm2015/app/plugins/threedselector/threedselector/service/load-furniture.service.js +50 -49
  38. package/esm2015/app/plugins/threedselector/threedselector/service/threedselector.service.js +7 -3
  39. package/esm2015/app/plugins/threedselector/threedselector/service/variation.service.js +7 -7
  40. package/esm2015/app/plugins/threedselector/threedselector/threedselector.component.js +48 -31
  41. package/esm2015/app/shared/model-dialog/model-dialog-furniture-list.component.js +9 -8
  42. package/esm2015/app/shared/model-dialog/model-dialog.component.js +1 -1
  43. package/fesm2015/colijnit-homedecorator.js +279 -189
  44. package/fesm2015/colijnit-homedecorator.js.map +1 -1
  45. package/package.json +2 -2
  46. package/colijnit-homedecorator-256.1.11.tgz +0 -0
@@ -72,5 +72,7 @@ export declare enum MessageType {
72
72
  ShowFloorArticleCatalog = "ShowFloorArticleCatalog",
73
73
  BlenderRenderPreviewReady = "BlenderRenderPreviewReady",
74
74
  FloorRebuild = "FloorRebuild",
75
- FloorPlaneAvailable = "FloorPlaneAvailable"
75
+ FloorPlaneAvailable = "FloorPlaneAvailable",
76
+ RemoveAllItems = "RemoveAllItems",
77
+ RemoveItem = "RemoveItem"
76
78
  }
@@ -86,4 +86,5 @@ export interface MessagesWithPayload {
86
86
  };
87
87
  [MessageType.ShowFloorArticleCatalog]: any;
88
88
  [MessageType.BlenderRenderPreviewReady]: any;
89
+ [MessageType.RemoveItem]: Item;
89
90
  }
@@ -35,4 +35,5 @@ export interface MessagesWithoutPayload {
35
35
  [MessageType.FloorRebuild]: any;
36
36
  [MessageType.FloorPlaneAvailable]: any;
37
37
  [MessageType.ToggleDiagram]: any;
38
+ [MessageType.RemoveAllItems]: any;
38
39
  }
@@ -16,6 +16,7 @@ export declare class LightPreset {
16
16
  group: string;
17
17
  shadowMapType: ShadowMapLocalType;
18
18
  outputEncoding: OutputEncoding;
19
+ colorSpace: ColorSpace;
19
20
  shadowRadius: number;
20
21
  toneMappingExposure: number;
21
22
  physicallyCorrectLights: boolean;
@@ -27,6 +27,8 @@ import { HomedecoratorAppEventService } from './homedecorator-app-event.service'
27
27
  import { CoDomainValue } from '@colijnit/mainapi/build/model/co-domain-value.bo';
28
28
  import { ObjectConfiguration } from '@colijnit/ioneconnector/build/model/object-configuration';
29
29
  import { ArticleExtended } from '@colijnit/articleapi/build/model/article-extended.bo';
30
+ import { Metadata } from '../../plugins/core3d/items/metadata';
31
+ import { HomedecoratorSettings } from '../model/homedecorator-settings';
30
32
  import * as i0 from "@angular/core";
31
33
  export declare class ExternalConnector {
32
34
  loginResponse: LoginResponse;
@@ -58,6 +60,7 @@ export declare class HomedecoratorConnectorAdapterService {
58
60
  private _mainApi;
59
61
  private _boFactory;
60
62
  constructor(_appEventService: HomedecoratorAppEventService);
63
+ initConnectionFromMetadata(metadata: Metadata, settings: HomedecoratorSettings): Promise<void>;
61
64
  initConnector(options: Options, externalSource?: string, forceReload?: boolean, externalSourceId?: number): Promise<void>;
62
65
  logOut(): Promise<void>;
63
66
  getPublicationCodeBasedOnLogin(): number;
@@ -5,8 +5,10 @@ import * as i0 from "@angular/core";
5
5
  export declare class IntegrationService implements OnDestroy {
6
6
  private _messageBus;
7
7
  private _appEventService;
8
- private _subs;
8
+ set enabled(value: boolean);
9
+ get enabled(): boolean;
9
10
  private _enabled;
11
+ private _subs;
10
12
  constructor(_messageBus: MessageBusService, _appEventService: HomedecoratorAppEventService);
11
13
  ngOnDestroy(): void;
12
14
  private _handleMessage;
@@ -6,6 +6,7 @@ export declare class FileUtils {
6
6
  * Deprecated
7
7
  */
8
8
  static FileExists(url: string, assetPath?: string): boolean;
9
+ static DoesFileExist(url: string): Promise<boolean>;
9
10
  static CheckModelConversion(url: string, assetPath: string): any;
10
11
  static SaveTextureImage(metaData: any, fileName: string, assetPath: string): any;
11
12
  static SaveGLBFile(data: Blob, assetPath: string): Promise<any>;
@@ -2,6 +2,7 @@ import { VariationSettings } from '../../plugins/threedselector/threedselector/m
2
2
  export declare class VariationUtils {
3
3
  private static MaterialCache;
4
4
  static LoadVariation(assetPath: string, url: string, fileName: string, includeVariationFolder?: boolean): Promise<VariationSettings>;
5
+ static GetUrl(assetPath: string, url: string, fileName: string, includeVariationFolder?: boolean): string;
5
6
  static GetVariationSettingsFromFile(id: string, compressedFile: any): Promise<VariationSettings>;
6
7
  private static CreateSettingsBasedOnIndex;
7
8
  private static CreateSettingsBasedOnFileName;
@@ -9,6 +9,7 @@ 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
11
  import { FilterOrder } from '@colijnit/catalog/lib/interface/filter-order.interface';
12
+ import { IntegrationService } from './core/service/integration.service';
12
13
  import * as i0 from "@angular/core";
13
14
  export declare class HomedecoratorComponent implements OnInit, OnDestroy {
14
15
  controllerService: HomedecoratorConnectorService;
@@ -21,11 +22,14 @@ export declare class HomedecoratorComponent implements OnInit, OnDestroy {
21
22
  private _messageService;
22
23
  private _homedecoratorService;
23
24
  private _eventService;
25
+ private _integrationService;
24
26
  set settings(value: any);
25
27
  get settings(): any;
26
28
  generalFilterOrders: FilterOrder[];
27
29
  purchaseFilterOrders: FilterOrder[];
28
30
  logisticsFilterOrders: FilterOrder[];
31
+ set initCommunication(value: boolean);
32
+ get initCommunication(): boolean;
29
33
  showClass: boolean;
30
34
  loaded: boolean;
31
35
  title: string;
@@ -35,7 +39,8 @@ export declare class HomedecoratorComponent implements OnInit, OnDestroy {
35
39
  shouldShowLandscapeMessage: boolean;
36
40
  private _subs;
37
41
  private _settings;
38
- constructor(controllerService: HomedecoratorConnectorService, appState: AppStateService, presetsService: PresetsService, screenAnalysis: ScreenSizeAnalysisService, _componentFactoryResolver: ComponentFactoryResolver, _iconRegistry: MatIconRegistry, _domSanitizer: DomSanitizer, _messageService: MessageBusService, _homedecoratorService: HomedecoratorService, _eventService: HomedecoratorAppEventService);
42
+ private _initCommunication;
43
+ constructor(controllerService: HomedecoratorConnectorService, appState: AppStateService, presetsService: PresetsService, screenAnalysis: ScreenSizeAnalysisService, _componentFactoryResolver: ComponentFactoryResolver, _iconRegistry: MatIconRegistry, _domSanitizer: DomSanitizer, _messageService: MessageBusService, _homedecoratorService: HomedecoratorService, _eventService: HomedecoratorAppEventService, _integrationService: IntegrationService);
39
44
  ngOnInit(): Promise<void>;
40
45
  ngOnDestroy(): void;
41
46
  registerCustomIcons(): void;
@@ -43,6 +48,7 @@ export declare class HomedecoratorComponent implements OnInit, OnDestroy {
43
48
  private _setSettings;
44
49
  private _startWithEmptyRoom;
45
50
  private _startWithPreset;
51
+ private _setCommunication;
46
52
  static ɵfac: i0.ɵɵFactoryDeclaration<HomedecoratorComponent, never>;
47
- static ɵcmp: i0.ɵɵComponentDeclaration<HomedecoratorComponent, "co-homedecorator", never, { "settings": "settings"; "generalFilterOrders": "generalFilterOrders"; "purchaseFilterOrders": "purchaseFilterOrders"; "logisticsFilterOrders": "logisticsFilterOrders"; }, {}, never, never>;
53
+ static ɵcmp: i0.ɵɵComponentDeclaration<HomedecoratorComponent, "co-homedecorator", never, { "settings": "settings"; "generalFilterOrders": "generalFilterOrders"; "purchaseFilterOrders": "purchaseFilterOrders"; "logisticsFilterOrders": "logisticsFilterOrders"; "initCommunication": "initCommunication"; }, {}, never, never>;
48
54
  }
@@ -15,6 +15,7 @@ export declare class ItemService implements OnDestroy {
15
15
  copyItem: Subject<Item>;
16
16
  deleteItem: Subject<Item>;
17
17
  removeAllItems: Subject<void>;
18
+ private _subs;
18
19
  constructor(_sceneService: SceneService, _messageService: MessageBusService);
19
20
  ngOnDestroy(): void;
20
21
  addItem(obj: any, addToScene?: boolean): void;
@@ -31,6 +31,7 @@ export declare class SceneService implements OnDestroy {
31
31
  scene: Scene;
32
32
  renderer: WebGLRenderer;
33
33
  pathTracer: WebGLPathTracer;
34
+ standAlone: boolean;
34
35
  onBeforeRender: Subject<{
35
36
  renderer: WebGLRenderer;
36
37
  scene: Scene;
@@ -109,7 +109,7 @@ export declare class BuildFurnitureService implements OnDestroy {
109
109
  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, _floorService: FloorService, _floorPatternService: FloorPatternService, _floorTileIntersectionService: FloorTileIntersectionService, _connectorAdapterService: HomedecoratorConnectorAdapterService, _outlineService: OutlineService);
110
110
  ngOnDestroy(): void;
111
111
  build(result: CustomFloorGroupResult): Promise<CustomFloorGroupResult>;
112
- startToBuild(result?: CustomFloorGroupResult, metadata?: Metadata, shouldCopyInstance?: boolean, looseOriginalConfiguration?: boolean, standAlone?: boolean, firstBuild?: boolean, fromPreset?: boolean): Promise<CustomFloorGroupResult>;
112
+ startToBuild(result?: CustomFloorGroupResult, metadata?: Metadata, shouldCopyInstance?: boolean, looseOriginalConfiguration?: boolean, standAlone?: boolean, firstBuild?: boolean, fromPreset?: boolean, loadFromProject?: boolean): Promise<CustomFloorGroupResult>;
113
113
  getOptionsFromSelection(baseSelection: Selection): Selection[];
114
114
  downloadCurrentCustomFloorgroup(): void;
115
115
  downloadUDSZforARIOS(): void;
@@ -10,14 +10,9 @@ import { ModelsService } from '../../../core3d/service/models.service';
10
10
  import { MessageBusService } from '../../../../core/service/message-bus.service';
11
11
  import { BuildFurnitureService } from './build-furniture.service';
12
12
  import { PresetsService } from '../../../../core/service/presets.service';
13
- import { HomedecoratorDictionaryService } from '../../../../core/service/homedecorator-dictionary.service';
14
13
  import { HomedecoratorSettingsService } from '../../../../core/service/homedecorator-settings.service';
15
- import { DialogService } from '../../../../shared/dialog/service/dialog.service';
16
- import { ErrorService } from '../../../../core/service/error.service';
17
- import { ProgressService } from '../../../../core/service/progress.service';
18
- import { ItemService } from '../../../core3d/service/item.service';
19
14
  import { ThreedselectorService } from './threedselector.service';
20
- import { ToastService } from '../../../../core/service/toast.service';
15
+ import { HomedecoratorConnectorAdapterService } from '../../../../core/service/homedecorator-connector-adapter.service';
21
16
  import * as i0 from "@angular/core";
22
17
  export interface FurnitureInitialized {
23
18
  initialized: boolean;
@@ -25,18 +20,13 @@ export interface FurnitureInitialized {
25
20
  }
26
21
  export declare class LoadFurnitureService implements OnDestroy {
27
22
  private _iOne;
23
+ private _connectorAdapterService;
28
24
  private _modelService;
29
25
  private _threedSelectorService;
30
26
  private _messageBus;
31
27
  private _buildFurnitureService;
32
28
  private _presetService;
33
- private _dictionaryService;
34
29
  private _settingsService;
35
- private _dialogService;
36
- private _errorService;
37
- private _progressService;
38
- private _itemService;
39
- private _toastService;
40
30
  notLoaded: CustomFloorGroupResult[];
41
31
  notFixedObjectCache: CustomFloorGroupResult[];
42
32
  obsoleteObjectCache: CustomFloorGroupResult[];
@@ -55,10 +45,10 @@ export declare class LoadFurnitureService implements OnDestroy {
55
45
  private _subs;
56
46
  private _shouldCopyFurniture;
57
47
  private _configurationDirty;
58
- constructor(_iOne: HomedecoratorConnectorService, _modelService: ModelsService, _threedSelectorService: ThreedselectorService, _messageBus: MessageBusService, _buildFurnitureService: BuildFurnitureService, _presetService: PresetsService, _dictionaryService: HomedecoratorDictionaryService, _settingsService: HomedecoratorSettingsService, _dialogService: DialogService, _errorService: ErrorService, _progressService: ProgressService, _itemService: ItemService, _toastService: ToastService);
48
+ constructor(_iOne: HomedecoratorConnectorService, _connectorAdapterService: HomedecoratorConnectorAdapterService, _modelService: ModelsService, _threedSelectorService: ThreedselectorService, _messageBus: MessageBusService, _buildFurnitureService: BuildFurnitureService, _presetService: PresetsService, _settingsService: HomedecoratorSettingsService);
59
49
  ngOnDestroy(): void;
60
50
  loadArticle(sku: string): Promise<Article>;
61
- loadFurniture(furnitureData: Metadata, shouldCopyInstance?: boolean, looseOriginalConfiguration?: boolean, standAlone?: boolean, fromScratch?: boolean, fromPreset?: boolean): Promise<CustomFloorGroupResult>;
51
+ loadFurniture(furnitureData: Metadata, shouldCopyInstance?: boolean, looseOriginalConfiguration?: boolean, standAlone?: boolean, fromScratch?: boolean, fromPreset?: boolean, loadFromProject?: boolean): Promise<CustomFloorGroupResult>;
62
52
  switchConfiguration(furniture: any): Promise<void>;
63
53
  configureFurniture: (furniture: any) => Promise<void>;
64
54
  deleteFromObjectList(id: string, useInstanceId?: boolean): void;
@@ -70,8 +60,9 @@ export declare class LoadFurnitureService implements OnDestroy {
70
60
  private _cleanUp;
71
61
  private _needs3DModel;
72
62
  private _initFull3DObject;
73
- getFull3DObject(sku: string, assetPath: string, name?: string, assetUrl?: string, prepareProgress?: boolean): Promise<Object3D>;
74
- private _checkModelURL;
63
+ private _getAssetPathFromMetadata;
64
+ private _getAssetPathFromModelUrlAndSchema;
65
+ getFull3DObject(sku: string, assetPath: string, name: string, assetUrl: string, prepareProgress?: boolean): Promise<Object3D>;
75
66
  static ɵfac: i0.ɵɵFactoryDeclaration<LoadFurnitureService, never>;
76
67
  static ɵprov: i0.ɵɵInjectableDeclaration<LoadFurnitureService>;
77
68
  }
@@ -16,7 +16,7 @@ export declare class ThreedselectorService {
16
16
  private _presetService;
17
17
  constructor(_variationCacheService: VariationCacheService, _settingsService: HomedecoratorSettingsService, _ione: HomedecoratorConnectorService, _utilsService: UtilsService, _progressService: ProgressService, _presetService: PresetsService);
18
18
  downloadAssetsAndReturn(fileName: string, assetPath: string, prepareProgress?: boolean): Promise<THREE.Object3D>;
19
- loadVariation(id: string, schema: string): Promise<VariationSettings>;
19
+ loadVariation(assetPath: string, id: string, schema: string): Promise<VariationSettings>;
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<ThreedselectorService, never>;
21
21
  static ɵprov: i0.ɵɵInjectableDeclaration<ThreedselectorService>;
22
22
  }
@@ -9,10 +9,10 @@ export declare class VariationService {
9
9
  private _lastKnownVariations;
10
10
  constructor(_threedSelectorService: ThreedselectorService, _itemService: ItemService);
11
11
  clearCache(): void;
12
- loadPart(parts: any[], instanceId: string, obj: Item, usePbr?: boolean): Promise<void>;
13
- loadVariation(parts: any[], instanceId: string, obj: Item, usePbr?: boolean): Promise<void>;
12
+ loadPart(assetPath: string, parts: any[], instanceId: string, obj: Item, usePbr?: boolean): Promise<void>;
13
+ loadVariation(assetPath: string, parts: any[], instanceId: string, obj: Item, usePbr?: boolean): Promise<void>;
14
14
  loadVariationFromLocalFile(id: string, file: any, obj: Object3D): Promise<void>;
15
- loadVariationForMaterial(gameObject: string, schema: string): Promise<void>;
15
+ loadVariationForMaterial(assetPath: string, gameObject: string, schema: string): Promise<void>;
16
16
  private _applyMaterialPart;
17
17
  private _applyVariations;
18
18
  private _applyMaterial;
@@ -45,6 +45,7 @@ import { RenderService } from '../../render/service/render.service';
45
45
  import { NewRenderService } from '../../render/service/new-render.service';
46
46
  import { HomedecoratorConnectorAdapterService } from '../../../core/service/homedecorator-connector-adapter.service';
47
47
  import { LightPresetsService } from '../../core3d/service/light-presets.service';
48
+ import { ViewModeService } from '../../../core/service/view-mode.service';
48
49
  import * as i0 from "@angular/core";
49
50
  export declare class ThreedselectorComponent implements OnInit, OnDestroy {
50
51
  screenSizeService: ScreenSizeAnalysisService;
@@ -86,6 +87,7 @@ export declare class ThreedselectorComponent implements OnInit, OnDestroy {
86
87
  private _newRenderService;
87
88
  private _connectorAdapterService;
88
89
  private _lightPresetService;
90
+ private _viewModeService;
89
91
  readonly iconName: typeof IconName;
90
92
  toolbarIconModels: TemplateRef<any>;
91
93
  selectedThreedObjectCustomizationSidebar: TemplateRef<any>;
@@ -121,7 +123,7 @@ export declare class ThreedselectorComponent implements OnInit, OnDestroy {
121
123
  private _subs;
122
124
  private _loadingFromPreset;
123
125
  private _callBackFnWhenBuildFinished;
124
- constructor(screenSizeService: ScreenSizeAnalysisService, _dialog: MatDialog, _appService: HomedecoratorAppService, _iOne: HomedecoratorConnectorService, _messageBus: MessageBusService, _loadFurnitureService: LoadFurnitureService, _buildFurnitureService: BuildFurnitureService, _integrationService: IntegrationService, _dictionaryService: HomedecoratorDictionaryService, _toastService: ToastService, _messageService: MessageBusService, _sceneService: SceneService, _dialogService: DialogService, _cameraService: CameraService, _presetsService: PresetsService, _itemService: ItemService, _settingsService: HomedecoratorSettingsService, _sceneOptionsService: SceneOptionsService, _dimensionsService: DimensionsService, _appEventService: HomedecoratorAppEventService, _floorplanService: FloorplanService, _floorService: FloorService, _iconCacheService: HomedecoratorIconCacheService, _arService: ArService, _googleTagManager: GoogleTagManagerService, _errorService: ErrorService, _rotationService: RotationService, _roomService: RoomService, _appStateService: AppStateService, _progressService: ProgressService, _animationService: AnimationService, _resizeService: ResizeService, _customizerService: CustomizerService, _dynamicCameraService: DynamicCameraService, _threedInPhotoInitializerService: ThreedInPhotoInitializerService, _renderService: RenderService, _newRenderService: NewRenderService, _connectorAdapterService: HomedecoratorConnectorAdapterService, _lightPresetService: LightPresetsService);
126
+ constructor(screenSizeService: ScreenSizeAnalysisService, _dialog: MatDialog, _appService: HomedecoratorAppService, _iOne: HomedecoratorConnectorService, _messageBus: MessageBusService, _loadFurnitureService: LoadFurnitureService, _buildFurnitureService: BuildFurnitureService, _integrationService: IntegrationService, _dictionaryService: HomedecoratorDictionaryService, _toastService: ToastService, _messageService: MessageBusService, _sceneService: SceneService, _dialogService: DialogService, _cameraService: CameraService, _presetsService: PresetsService, _itemService: ItemService, _settingsService: HomedecoratorSettingsService, _sceneOptionsService: SceneOptionsService, _dimensionsService: DimensionsService, _appEventService: HomedecoratorAppEventService, _floorplanService: FloorplanService, _floorService: FloorService, _iconCacheService: HomedecoratorIconCacheService, _arService: ArService, _googleTagManager: GoogleTagManagerService, _errorService: ErrorService, _rotationService: RotationService, _roomService: RoomService, _appStateService: AppStateService, _progressService: ProgressService, _animationService: AnimationService, _resizeService: ResizeService, _customizerService: CustomizerService, _dynamicCameraService: DynamicCameraService, _threedInPhotoInitializerService: ThreedInPhotoInitializerService, _renderService: RenderService, _newRenderService: NewRenderService, _connectorAdapterService: HomedecoratorConnectorAdapterService, _lightPresetService: LightPresetsService, _viewModeService: ViewModeService);
125
127
  ngOnInit(): void;
126
128
  ngOnDestroy(): void;
127
129
  copySceneInstance(saveAs: boolean): Promise<void>;
@@ -2,15 +2,15 @@ import { OnInit } from '@angular/core';
2
2
  import { IconEnum } from '../../core/enum/icon.enum';
3
3
  import { CustomFloorGroupResult } from '../../plugins/core3d/model/custom-floor-group-result';
4
4
  import { HomedecoratorIconCacheService } from '../../core/service/homedecorator-icon-cache.service';
5
- import { ItemService } from '../../plugins/core3d/service/item.service';
6
5
  import { GoogleTagManagerService } from '../../service/google-tag-manager.service';
7
6
  import { HomedecoratorSettingsService } from '../../core/service/homedecorator-settings.service';
7
+ import { MessageBusService } from '../../core/service/message-bus.service';
8
8
  import * as i0 from "@angular/core";
9
9
  export declare class ModelDialogFurnitureListComponent implements OnInit {
10
10
  iconService: HomedecoratorIconCacheService;
11
11
  settingsService: HomedecoratorSettingsService;
12
- private _itemService;
13
12
  private _googleTagManagerService;
13
+ private _messagesService;
14
14
  readonly icon: typeof IconEnum;
15
15
  list: CustomFloorGroupResult[];
16
16
  label: string;
@@ -20,7 +20,7 @@ export declare class ModelDialogFurnitureListComponent implements OnInit {
20
20
  showTotals: boolean;
21
21
  totalPrice: string;
22
22
  totalEventSubmitted: boolean;
23
- constructor(iconService: HomedecoratorIconCacheService, settingsService: HomedecoratorSettingsService, _itemService: ItemService, _googleTagManagerService: GoogleTagManagerService);
23
+ constructor(iconService: HomedecoratorIconCacheService, settingsService: HomedecoratorSettingsService, _googleTagManagerService: GoogleTagManagerService, _messagesService: MessageBusService);
24
24
  ngOnInit(): void;
25
25
  removeFurniture(item: CustomFloorGroupResult): void;
26
26
  copyFurnitureName(item: CustomFloorGroupResult): void;