@colijnit/homedecorator 257.1.8 → 257.1.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.
- package/app/homedecorator.component.d.ts +5 -3
- package/app/plugins/help/help-dialog/help-dialog.component.d.ts +10 -3
- package/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary-line.component.d.ts +2 -1
- package/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary.component.d.ts +3 -1
- package/app/plugins/lite-selector/lite-selector/component/summary-line/summary-line.component.d.ts +4 -1
- package/app/plugins/lite-selector/lite-selector/component/summary-line/summary-line.scss +10 -1
- package/app/plugins/lite-selector/lite-selector/lite-selector.component.d.ts +1 -1
- package/app/plugins/model-uploader/model-previewer/model-preview.component.d.ts +10 -6
- package/app/plugins/toolbar/load-from-cloud-dialog/load-from-cloud-dialog.component.d.ts +7 -2
- package/app/plugins/toolbar/open-dialog/open-dialog.component.d.ts +4 -0
- package/app/plugins/toolbar/pdf-crop-dialog/pdf-crop-dialog.component.d.ts +1 -5
- package/app/plugins/toolbar/save-dialog/save-dialog.component.d.ts +10 -4
- package/app/plugins/toolbar/toolbar/toolbar.component.d.ts +3 -1
- package/app/shared/camera-settings-dialog/camera-settings-dialog.component.d.ts +13 -4
- package/app/shared/model-dialog/model-dialog.component.d.ts +5 -2
- package/bundles/colijnit-homedecorator.umd.js +424 -345
- package/bundles/colijnit-homedecorator.umd.js.map +1 -1
- package/esm2015/app/core/service/homedecorator-connector.service.js +3 -2
- package/esm2015/app/homedecorator.component.js +16 -6
- package/esm2015/app/plugins/help/help-dialog/help-dialog.component.js +17 -14
- package/esm2015/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary-line.component.js +14 -3
- package/esm2015/app/plugins/lite-selector/lite-selector/component/selections-summary/selections-summary.component.js +15 -3
- package/esm2015/app/plugins/lite-selector/lite-selector/component/summary-line/summary-line.component.js +43 -33
- package/esm2015/app/plugins/lite-selector/lite-selector/lite-selector.component.js +5 -5
- package/esm2015/app/plugins/model-uploader/model-previewer/model-preview.component.js +18 -23
- package/esm2015/app/plugins/threedselector/threedselector/threedselector.component.js +9 -3
- package/esm2015/app/plugins/toolbar/load-from-cloud-dialog/load-from-cloud-dialog.component.js +23 -19
- package/esm2015/app/plugins/toolbar/open-dialog/open-dialog.component.js +7 -2
- package/esm2015/app/plugins/toolbar/pdf-crop-dialog/pdf-crop-dialog.component.js +8 -12
- package/esm2015/app/plugins/toolbar/save-dialog/save-dialog.component.js +18 -21
- package/esm2015/app/plugins/toolbar/toolbar/toolbar.component.js +40 -23
- package/esm2015/app/shared/camera-settings-dialog/camera-settings-dialog.component.js +21 -19
- package/esm2015/app/shared/model-dialog/model-dialog.component.js +20 -20
- package/fesm2015/colijnit-homedecorator.js +259 -178
- package/fesm2015/colijnit-homedecorator.js.map +1 -1
- package/package.json +1 -1
|
@@ -20,7 +20,8 @@ export declare class HomedecoratorComponent implements OnInit, OnDestroy {
|
|
|
20
20
|
private _domSanitizer;
|
|
21
21
|
private _messageService;
|
|
22
22
|
private _homedecoratorService;
|
|
23
|
-
private
|
|
23
|
+
private _parentEventService;
|
|
24
|
+
private _ownEventService;
|
|
24
25
|
private _integrationService;
|
|
25
26
|
generalFilterOrders: FilterOrder[];
|
|
26
27
|
purchaseFilterOrders: FilterOrder[];
|
|
@@ -39,7 +40,8 @@ export declare class HomedecoratorComponent implements OnInit, OnDestroy {
|
|
|
39
40
|
private _subs;
|
|
40
41
|
private _initCommunication;
|
|
41
42
|
private _settings;
|
|
42
|
-
|
|
43
|
+
private _eventService;
|
|
44
|
+
constructor(controllerService: HomedecoratorConnectorService, appState: AppStateService, presetsService: PresetsService, screenAnalysis: ScreenSizeAnalysisService, _iconRegistry: MatIconRegistry, _domSanitizer: DomSanitizer, _messageService: MessageBusService, _homedecoratorService: HomedecoratorService, _parentEventService: HomedecoratorAppEventService, _ownEventService: HomedecoratorAppEventService, _integrationService: IntegrationService);
|
|
43
45
|
ngOnInit(): Promise<void>;
|
|
44
46
|
ngOnDestroy(): void;
|
|
45
47
|
registerCustomIcons(): void;
|
|
@@ -48,6 +50,6 @@ export declare class HomedecoratorComponent implements OnInit, OnDestroy {
|
|
|
48
50
|
private _startWithPreset;
|
|
49
51
|
private _setCommunication;
|
|
50
52
|
private _initConnection;
|
|
51
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HomedecoratorComponent,
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HomedecoratorComponent, [null, null, null, null, null, null, null, null, { optional: true; skipSelf: true; }, { optional: true; self: true; }, null]>;
|
|
52
54
|
static ɵcmp: i0.ɵɵComponentDeclaration<HomedecoratorComponent, "co-homedecorator", never, { "generalFilterOrders": "generalFilterOrders"; "purchaseFilterOrders": "purchaseFilterOrders"; "logisticsFilterOrders": "logisticsFilterOrders"; "initCommunication": "initCommunication"; "settings": "settings"; }, {}, never, never>;
|
|
53
55
|
}
|
|
@@ -5,13 +5,20 @@ import { HomedecoratorSettingsService } from '../../../core/service/homedecorato
|
|
|
5
5
|
import { HomedecoratorDictionaryService } from '../../../core/service/homedecorator-dictionary.service';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class HelpDialogComponent implements OnInit, OnDestroy {
|
|
8
|
+
data: {
|
|
9
|
+
appService: HomedecoratorAppService;
|
|
10
|
+
settingsService: HomedecoratorSettingsService;
|
|
11
|
+
};
|
|
8
12
|
private _lightbox;
|
|
9
|
-
private _appService;
|
|
10
|
-
private _settingsService;
|
|
11
13
|
private _dictionaryService;
|
|
12
14
|
albums: Array<IAlbum>;
|
|
13
15
|
private _stop$;
|
|
14
|
-
|
|
16
|
+
private _appService;
|
|
17
|
+
private _settingsService;
|
|
18
|
+
constructor(data: {
|
|
19
|
+
appService: HomedecoratorAppService;
|
|
20
|
+
settingsService: HomedecoratorSettingsService;
|
|
21
|
+
}, _lightbox: Lightbox, _dictionaryService: HomedecoratorDictionaryService);
|
|
15
22
|
ngOnInit(): void;
|
|
16
23
|
ngOnDestroy(): void;
|
|
17
24
|
openLightbox(index: number): void;
|
|
@@ -17,6 +17,7 @@ export declare class SelectionsSummaryLineComponent implements OnInit, OnDestroy
|
|
|
17
17
|
answerToShowFromSelectionText: string;
|
|
18
18
|
customizeButtonClicked: EventEmitter<void>;
|
|
19
19
|
summaryLineClick: EventEmitter<void>;
|
|
20
|
+
summaryLineRepeat: EventEmitter<MouseEvent>;
|
|
20
21
|
summaryLineDelete: EventEmitter<MouseEvent>;
|
|
21
22
|
shouldBeHidden: boolean;
|
|
22
23
|
selectionDescription: string;
|
|
@@ -28,5 +29,5 @@ export declare class SelectionsSummaryLineComponent implements OnInit, OnDestroy
|
|
|
28
29
|
ngOnDestroy(): void;
|
|
29
30
|
ngOnInit(): void;
|
|
30
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectionsSummaryLineComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectionsSummaryLineComponent, "rp-selections-summary-line", never, { "selection": "selection"; "valutaSymbol": "valutaSymbol"; "answersTemplate": "answersTemplate"; "answerToShowFromSelectionText": "answerToShowFromSelectionText"; }, { "customizeButtonClicked": "customizeButtonClicked"; "summaryLineClick": "summaryLineClick"; "summaryLineDelete": "summaryLineDelete"; }, never, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectionsSummaryLineComponent, "rp-selections-summary-line", never, { "selection": "selection"; "valutaSymbol": "valutaSymbol"; "answersTemplate": "answersTemplate"; "answerToShowFromSelectionText": "answerToShowFromSelectionText"; }, { "customizeButtonClicked": "customizeButtonClicked"; "summaryLineClick": "summaryLineClick"; "summaryLineRepeat": "summaryLineRepeat"; "summaryLineDelete": "summaryLineDelete"; }, never, never>;
|
|
32
33
|
}
|
|
@@ -26,6 +26,7 @@ export declare class SelectionsSummaryComponent implements OnDestroy {
|
|
|
26
26
|
readonly closeClick: EventEmitter<void>;
|
|
27
27
|
readonly cancelAnswers: EventEmitter<void>;
|
|
28
28
|
readonly selectSelection: EventEmitter<Selection>;
|
|
29
|
+
readonly repeatSelection: EventEmitter<Selection>;
|
|
29
30
|
readonly deleteSelection: EventEmitter<Selection>;
|
|
30
31
|
selectionToCustomize: Selection;
|
|
31
32
|
valutaSymbol: string;
|
|
@@ -33,8 +34,9 @@ export declare class SelectionsSummaryComponent implements OnDestroy {
|
|
|
33
34
|
constructor(_buildFurnitureService: BuildFurnitureService, customizerService: CustomizerService, settingsService: HomedecoratorSettingsService, iOne: HomedecoratorConnectorService, iconCache: HomedecoratorIconCacheService);
|
|
34
35
|
ngOnDestroy(): void;
|
|
35
36
|
handleClick(sel: Selection): void;
|
|
37
|
+
handleRepeat(event: MouseEvent, sel: Selection): void;
|
|
36
38
|
handleDelete(event: MouseEvent, sel: Selection): void;
|
|
37
39
|
toggleElement(sel: Selection): void;
|
|
38
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectionsSummaryComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectionsSummaryComponent, "rp-selections-summary", never, { "selections": "selections"; "showLabel": "showLabel"; "canClose": "canClose"; "answersTemplate": "answersTemplate"; "answerToShowFromSelectionText": "answerToShowFromSelectionText"; "customDimensions": "customDimensions"; }, { "closeClick": "closeClick"; "cancelAnswers": "cancelAnswers"; "selectSelection": "selectSelection"; "deleteSelection": "deleteSelection"; }, never, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectionsSummaryComponent, "rp-selections-summary", never, { "selections": "selections"; "showLabel": "showLabel"; "canClose": "canClose"; "answersTemplate": "answersTemplate"; "answerToShowFromSelectionText": "answerToShowFromSelectionText"; "customDimensions": "customDimensions"; }, { "closeClick": "closeClick"; "cancelAnswers": "cancelAnswers"; "selectSelection": "selectSelection"; "repeatSelection": "repeatSelection"; "deleteSelection": "deleteSelection"; }, never, never>;
|
|
40
42
|
}
|
package/app/plugins/lite-selector/lite-selector/component/summary-line/summary-line.component.d.ts
CHANGED
|
@@ -25,8 +25,10 @@ export declare class SummaryLineComponent implements AfterViewInit {
|
|
|
25
25
|
isHighlighted: boolean;
|
|
26
26
|
showClass(): boolean;
|
|
27
27
|
isCollapsable: boolean;
|
|
28
|
+
canRepeat: boolean;
|
|
28
29
|
isDeletable: boolean;
|
|
29
30
|
showContent: boolean;
|
|
31
|
+
repeatClicked: EventEmitter<MouseEvent>;
|
|
30
32
|
deleteClicked: EventEmitter<MouseEvent>;
|
|
31
33
|
data: {
|
|
32
34
|
title: string;
|
|
@@ -40,8 +42,9 @@ export declare class SummaryLineComponent implements AfterViewInit {
|
|
|
40
42
|
ngAfterViewInit(): void;
|
|
41
43
|
collapsableCheck(): void;
|
|
42
44
|
toggleShowHideList(event: MouseEvent): void;
|
|
45
|
+
handleRepeatClick(event: MouseEvent): void;
|
|
43
46
|
handleDeleteClick(event: MouseEvent): void;
|
|
44
47
|
private _setShowList;
|
|
45
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<SummaryLineComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SummaryLineComponent, "co-summary-line", never, { "imageData": "imageData"; "title": "title"; "description": "description"; "price": "price"; "multilineData": "multilineData"; "valutaSymbol": "valutaSymbol"; "isHighlighted": "isHighlighted"; "showClass": "showClass"; "isCollapsable": "isCollapsable"; "isDeletable": "isDeletable"; "showContent": "showContent"; }, { "deleteClicked": "deleteClicked"; }, never, ["*"]>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SummaryLineComponent, "co-summary-line", never, { "imageData": "imageData"; "title": "title"; "description": "description"; "price": "price"; "multilineData": "multilineData"; "valutaSymbol": "valutaSymbol"; "isHighlighted": "isHighlighted"; "showClass": "showClass"; "isCollapsable": "isCollapsable"; "canRepeat": "canRepeat"; "isDeletable": "isDeletable"; "showContent": "showContent"; }, { "repeatClicked": "repeatClicked"; "deleteClicked": "deleteClicked"; }, never, ["*"]>;
|
|
47
50
|
}
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
justify-content: center;
|
|
27
27
|
height: auto;
|
|
28
28
|
width: 100%;
|
|
29
|
-
margin-top: 15px;
|
|
30
29
|
}
|
|
31
30
|
|
|
32
31
|
.image {
|
|
@@ -116,6 +115,7 @@
|
|
|
116
115
|
//justify-content: center;
|
|
117
116
|
&.collapse {
|
|
118
117
|
border-left: 1px solid rgba(72, 79, 96, .1);
|
|
118
|
+
margin-top: 15px;
|
|
119
119
|
> co-icon {
|
|
120
120
|
cursor: pointer;
|
|
121
121
|
transition: 0.3s ease-in-out;
|
|
@@ -142,6 +142,15 @@
|
|
|
142
142
|
height: 25px;
|
|
143
143
|
width: 25px;
|
|
144
144
|
}
|
|
145
|
+
&.repeat {
|
|
146
|
+
width: 20px;
|
|
147
|
+
}
|
|
145
148
|
}
|
|
146
149
|
}
|
|
150
|
+
.button-wrapper {
|
|
151
|
+
display: flex;
|
|
152
|
+
flex-direction: column;
|
|
153
|
+
align-items: center;
|
|
154
|
+
width: 30px;
|
|
155
|
+
}
|
|
147
156
|
}
|
|
@@ -33,7 +33,7 @@ export declare class LiteSelectorComponent implements OnDestroy {
|
|
|
33
33
|
constructor(iOne: HomedecoratorConnectorService, buildFurnitureService: BuildFurnitureService, _settingsService: HomedecoratorSettingsService);
|
|
34
34
|
ngOnDestroy(): void;
|
|
35
35
|
onCloseLiteSelectorButtonClick(): void;
|
|
36
|
-
onSelectionsSummarySelectSelection(selection: Selection): Promise<void>;
|
|
36
|
+
onSelectionsSummarySelectSelection(selection: Selection, forceBackToNode?: boolean, after?: boolean): Promise<void>;
|
|
37
37
|
onSelectionsSummaryDeleteSelection(selection: Selection): Promise<void>;
|
|
38
38
|
onAnswersSlideoutAnswerChosen(answerSelected: any): void;
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<LiteSelectorComponent, never>;
|
|
@@ -8,7 +8,6 @@ import { ThirdPartyModelService } from '../../threedselector/threedselector/serv
|
|
|
8
8
|
import { MessageBusService } from '../../../core/service/message-bus.service';
|
|
9
9
|
import { HomedecoratorConnectorAdapterService } from '../../../core/service/homedecorator-connector-adapter.service';
|
|
10
10
|
import { LightPresetsService } from '../../core3d/service/light-presets.service';
|
|
11
|
-
import { HomedecoratorDictionaryService } from '../../../core/service/homedecorator-dictionary.service';
|
|
12
11
|
import { FontService } from '../../core3d/service/font.service';
|
|
13
12
|
import { Font } from 'three/examples/jsm/loaders/FontLoader';
|
|
14
13
|
import { IconEnum } from '../../../core/enum/icon.enum';
|
|
@@ -20,20 +19,25 @@ export declare class ModelPreviewComponent implements OnInit, OnDestroy {
|
|
|
20
19
|
file: any;
|
|
21
20
|
thirdPartyModelService: ThirdPartyModelService;
|
|
22
21
|
lightPresetService: LightPresetsService;
|
|
22
|
+
settingsService: HomedecoratorSettingsService;
|
|
23
|
+
iconCache: HomedecoratorIconCacheService;
|
|
24
|
+
adapterService: HomedecoratorConnectorAdapterService;
|
|
23
25
|
};
|
|
24
|
-
settingsService: HomedecoratorSettingsService;
|
|
25
|
-
iconCache: HomedecoratorIconCacheService;
|
|
26
26
|
private _dialogRef;
|
|
27
27
|
private _messageService;
|
|
28
28
|
private _dialog;
|
|
29
|
-
private _adapterService;
|
|
30
|
-
private _dictionaryService;
|
|
31
29
|
private _fontService;
|
|
30
|
+
settingsService: HomedecoratorSettingsService;
|
|
31
|
+
iconCache: HomedecoratorIconCacheService;
|
|
32
|
+
private _adapterService;
|
|
32
33
|
constructor(data: {
|
|
33
34
|
file: any;
|
|
34
35
|
thirdPartyModelService: ThirdPartyModelService;
|
|
35
36
|
lightPresetService: LightPresetsService;
|
|
36
|
-
|
|
37
|
+
settingsService: HomedecoratorSettingsService;
|
|
38
|
+
iconCache: HomedecoratorIconCacheService;
|
|
39
|
+
adapterService: HomedecoratorConnectorAdapterService;
|
|
40
|
+
}, _dialogRef: MatDialogRef<ModelPreviewComponent>, _messageService: MessageBusService, _dialog: MatDialog, _fontService: FontService);
|
|
37
41
|
glbExportName: ElementRef;
|
|
38
42
|
heightArticle: ElementRef;
|
|
39
43
|
scenePreview: THREE.Scene;
|
|
@@ -6,10 +6,12 @@ import { PermanentStoreService } from '../../../core/service/permanent-store.ser
|
|
|
6
6
|
import { HomedecoratorDictionaryService } from '../../../core/service/homedecorator-dictionary.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class LoadFromCloudDialogComponent implements OnInit, OnDestroy {
|
|
9
|
+
data: {
|
|
10
|
+
permanentStoreService: PermanentStoreService;
|
|
11
|
+
};
|
|
9
12
|
private dialog;
|
|
10
13
|
private dialogRef;
|
|
11
14
|
private messageService;
|
|
12
|
-
private permanentStoreService;
|
|
13
15
|
private _dictionaryService;
|
|
14
16
|
set content(content: ElementRef);
|
|
15
17
|
private readonly CODE_REGEX;
|
|
@@ -18,7 +20,10 @@ export declare class LoadFromCloudDialogComponent implements OnInit, OnDestroy {
|
|
|
18
20
|
preset: Preset;
|
|
19
21
|
codeInputRef: ElementRef;
|
|
20
22
|
codeInputModel: any;
|
|
21
|
-
|
|
23
|
+
private _permanentStoreService;
|
|
24
|
+
constructor(data: {
|
|
25
|
+
permanentStoreService: PermanentStoreService;
|
|
26
|
+
}, dialog: MatDialog, dialogRef: MatDialogRef<LoadFromCloudDialogComponent>, messageService: MessageBusService, _dictionaryService: HomedecoratorDictionaryService);
|
|
22
27
|
ngOnInit(): void;
|
|
23
28
|
ngOnDestroy(): void;
|
|
24
29
|
load(): void;
|
|
@@ -4,20 +4,24 @@ import { LocalStorageService } from '../../../service/local-storage.service';
|
|
|
4
4
|
import { MessageBusService } from '../../../core/service/message-bus.service';
|
|
5
5
|
import { UtilsService } from '../../../core/service/utils.service';
|
|
6
6
|
import { PresetsService } from '../../../core/service/presets.service';
|
|
7
|
+
import { PermanentStoreService } from '../../../core/service/permanent-store.service';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class OpenDialogComponent implements OnDestroy {
|
|
9
10
|
data: {
|
|
10
11
|
utilsService: UtilsService;
|
|
11
12
|
presetService: PresetsService;
|
|
13
|
+
permanentStoreService: PermanentStoreService;
|
|
12
14
|
};
|
|
13
15
|
storageService: LocalStorageService;
|
|
14
16
|
private _dialogRef;
|
|
15
17
|
private _dialog;
|
|
16
18
|
private _messageService;
|
|
17
19
|
fileInputRef: ElementRef;
|
|
20
|
+
permanentStoreService: PermanentStoreService;
|
|
18
21
|
constructor(data: {
|
|
19
22
|
utilsService: UtilsService;
|
|
20
23
|
presetService: PresetsService;
|
|
24
|
+
permanentStoreService: PermanentStoreService;
|
|
21
25
|
}, storageService: LocalStorageService, _dialogRef: MatDialogRef<OpenDialogComponent>, _dialog: MatDialog, _messageService: MessageBusService);
|
|
22
26
|
ngOnDestroy(): void;
|
|
23
27
|
loadFromCloud(): void;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
3
3
|
import { MessageBusService } from '../../../core/service/message-bus.service';
|
|
4
|
-
import { UtilsService } from '../../../core/service/utils.service';
|
|
5
|
-
import { PresetsService } from '../../../core/service/presets.service';
|
|
6
4
|
import { PdfViewerComponent } from 'ng2-pdf-viewer';
|
|
7
5
|
import * as i0 from "@angular/core";
|
|
8
6
|
export declare class PdfCropDialogComponent implements OnDestroy, OnInit, AfterViewInit {
|
|
@@ -12,8 +10,6 @@ export declare class PdfCropDialogComponent implements OnDestroy, OnInit, AfterV
|
|
|
12
10
|
private _dialogRef;
|
|
13
11
|
private _dialog;
|
|
14
12
|
private _messageService;
|
|
15
|
-
private _utils;
|
|
16
|
-
private _presetService;
|
|
17
13
|
pdfComponent: PdfViewerComponent;
|
|
18
14
|
pdfContainer: HTMLElement;
|
|
19
15
|
hiddenImage: ElementRef;
|
|
@@ -21,7 +17,7 @@ export declare class PdfCropDialogComponent implements OnDestroy, OnInit, AfterV
|
|
|
21
17
|
finishedLoading: boolean;
|
|
22
18
|
constructor(data: {
|
|
23
19
|
file: any;
|
|
24
|
-
}, _dialogRef: MatDialogRef<PdfCropDialogComponent>, _dialog: MatDialog, _messageService: MessageBusService
|
|
20
|
+
}, _dialogRef: MatDialogRef<PdfCropDialogComponent>, _dialog: MatDialog, _messageService: MessageBusService);
|
|
25
21
|
ngOnInit(): void;
|
|
26
22
|
ngAfterViewInit(): Promise<void>;
|
|
27
23
|
ngOnDestroy(): void;
|
|
@@ -13,21 +13,27 @@ export declare class SaveDialogComponent implements OnInit {
|
|
|
13
13
|
openDownloadDialog: boolean;
|
|
14
14
|
saveOnOpenDialog: boolean;
|
|
15
15
|
presetService: PresetsService;
|
|
16
|
+
permanentStoreService: PermanentStoreService;
|
|
17
|
+
iconCacheService: HomedecoratorIconCacheService;
|
|
18
|
+
settingsService: HomedecoratorSettingsService;
|
|
16
19
|
};
|
|
17
|
-
permanentStoreService: PermanentStoreService;
|
|
18
|
-
iconCache: HomedecoratorIconCacheService;
|
|
19
20
|
private _dialog;
|
|
20
21
|
private _dialogRef;
|
|
21
22
|
private _messageService;
|
|
22
23
|
private _dictionaryService;
|
|
23
|
-
private _settingsService;
|
|
24
24
|
readonly icon: typeof IconEnum;
|
|
25
25
|
showLocalSave: boolean;
|
|
26
|
+
permanentStoreService: PermanentStoreService;
|
|
27
|
+
iconCache: HomedecoratorIconCacheService;
|
|
28
|
+
private _settingsService;
|
|
26
29
|
constructor(data: {
|
|
27
30
|
openDownloadDialog: boolean;
|
|
28
31
|
saveOnOpenDialog: boolean;
|
|
29
32
|
presetService: PresetsService;
|
|
30
|
-
|
|
33
|
+
permanentStoreService: PermanentStoreService;
|
|
34
|
+
iconCacheService: HomedecoratorIconCacheService;
|
|
35
|
+
settingsService: HomedecoratorSettingsService;
|
|
36
|
+
}, _dialog: MatDialog, _dialogRef: MatDialogRef<SaveDialogComponent>, _messageService: MessageBusService, _dictionaryService: HomedecoratorDictionaryService);
|
|
31
37
|
get wasPlanSaved(): boolean;
|
|
32
38
|
ngOnInit(): void;
|
|
33
39
|
download(): Promise<void>;
|
|
@@ -26,6 +26,7 @@ import { ErrorDialogData } from '../../../shared/error-dialog/error-dialog.compo
|
|
|
26
26
|
import { HomedecoratorIconCacheService } from '../../../core/service/homedecorator-icon-cache.service';
|
|
27
27
|
import { ThirdPartyModelService } from '../../threedselector/threedselector/service/third-party-model.service';
|
|
28
28
|
import { LightPresetsService } from '../../core3d/service/light-presets.service';
|
|
29
|
+
import { HomedecoratorConnectorAdapterService } from '../../../core/service/homedecorator-connector-adapter.service';
|
|
29
30
|
import * as i0 from "@angular/core";
|
|
30
31
|
export declare class ToolbarComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
31
32
|
appState: AppStateService;
|
|
@@ -46,6 +47,7 @@ export declare class ToolbarComponent implements OnInit, OnDestroy, AfterViewIni
|
|
|
46
47
|
private _newRenderService;
|
|
47
48
|
private _thirdPartyModelService;
|
|
48
49
|
private _lightPresetService;
|
|
50
|
+
private _adapterService;
|
|
49
51
|
readonly toastType: typeof ToastType;
|
|
50
52
|
readonly messageType: typeof MessageType;
|
|
51
53
|
readonly icons: typeof IconEnum;
|
|
@@ -67,7 +69,7 @@ export declare class ToolbarComponent implements OnInit, OnDestroy, AfterViewIni
|
|
|
67
69
|
leftSidebar: MatDrawer;
|
|
68
70
|
handleKeyDown(event: KeyboardEvent): void;
|
|
69
71
|
get fullscreen(): boolean;
|
|
70
|
-
constructor(appState: AppStateService, presetsService: PresetsService, messageService: MessageBusService, settingsService: HomedecoratorSettingsService, storageService: LocalStorageService, iconService: HomedecoratorIconCacheService, _screenSizeService: ScreenSizeAnalysisService, _dialog: MatDialog, _toastService: ToastService, _appService: HomedecoratorAppService, _permanentStoreService: PermanentStoreService, _utilsService: UtilsService, _itemService: ItemService, _animationService: AnimationService, _developmentService: DevelopmentService, _newRenderService: NewRenderService, _thirdPartyModelService: ThirdPartyModelService, _lightPresetService: LightPresetsService);
|
|
72
|
+
constructor(appState: AppStateService, presetsService: PresetsService, messageService: MessageBusService, settingsService: HomedecoratorSettingsService, storageService: LocalStorageService, iconService: HomedecoratorIconCacheService, _screenSizeService: ScreenSizeAnalysisService, _dialog: MatDialog, _toastService: ToastService, _appService: HomedecoratorAppService, _permanentStoreService: PermanentStoreService, _utilsService: UtilsService, _itemService: ItemService, _animationService: AnimationService, _developmentService: DevelopmentService, _newRenderService: NewRenderService, _thirdPartyModelService: ThirdPartyModelService, _lightPresetService: LightPresetsService, _adapterService: HomedecoratorConnectorAdapterService);
|
|
71
73
|
ngOnInit(): void;
|
|
72
74
|
ngOnDestroy(): void;
|
|
73
75
|
ngAfterViewInit(): void;
|
|
@@ -5,14 +5,23 @@ import { CameraService } from '../../plugins/core3d/service/camera.service';
|
|
|
5
5
|
import { HomedecoratorAppService } from '../../core/service/homedecorator-app.service';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class CameraSettingsDialogComponent implements OnInit {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
data: {
|
|
9
|
+
dynamicCameraService: DynamicCameraService;
|
|
10
|
+
cameraService: CameraService;
|
|
11
|
+
appService: HomedecoratorAppService;
|
|
12
|
+
};
|
|
11
13
|
tempCameraSettings: CameraSettings;
|
|
12
14
|
currentSku: string;
|
|
13
15
|
positionAsString: string;
|
|
14
16
|
rotationAsString: string;
|
|
15
|
-
|
|
17
|
+
private _dynamicCameraService;
|
|
18
|
+
private _cameraService;
|
|
19
|
+
private _appService;
|
|
20
|
+
constructor(data: {
|
|
21
|
+
dynamicCameraService: DynamicCameraService;
|
|
22
|
+
cameraService: CameraService;
|
|
23
|
+
appService: HomedecoratorAppService;
|
|
24
|
+
});
|
|
16
25
|
ngOnInit(): void;
|
|
17
26
|
saveSettings(asDefault?: boolean): void;
|
|
18
27
|
exportSettings(): void;
|
|
@@ -7,8 +7,8 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class ModelDialogComponent implements OnInit {
|
|
8
8
|
data: {
|
|
9
9
|
loadFurnitureService: LoadFurnitureService;
|
|
10
|
+
iconCacheService: HomedecoratorIconCacheService;
|
|
10
11
|
};
|
|
11
|
-
iconService: HomedecoratorIconCacheService;
|
|
12
12
|
readonly icon: typeof IconEnum;
|
|
13
13
|
notLoaded: CustomFloorGroupResult[];
|
|
14
14
|
notFixedFurniture: CustomFloorGroupResult[];
|
|
@@ -20,9 +20,12 @@ export declare class ModelDialogComponent implements OnInit {
|
|
|
20
20
|
showLoaded: boolean;
|
|
21
21
|
showNotLoaded: boolean;
|
|
22
22
|
noProductsLoaded: boolean;
|
|
23
|
+
loadFurnitureService: LoadFurnitureService;
|
|
24
|
+
iconService: HomedecoratorIconCacheService;
|
|
23
25
|
constructor(data: {
|
|
24
26
|
loadFurnitureService: LoadFurnitureService;
|
|
25
|
-
|
|
27
|
+
iconCacheService: HomedecoratorIconCacheService;
|
|
28
|
+
});
|
|
26
29
|
ngOnInit(): void;
|
|
27
30
|
private _loadFurniture;
|
|
28
31
|
private _getUniqueItems;
|