@colijnit/homedecorator 257.1.10 → 257.1.12
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/icon.enum.d.ts +8 -0
- package/app/core/service/homedecorator-app.service.d.ts +2 -2
- package/app/core/service/homedecorator-connector-adapter.service.d.ts +2 -2
- package/app/plugins/threedselector/threedselector/threedselector.component.d.ts +1 -0
- package/app/shared/model-dialog/model-dialog-furniture-list.component.d.ts +5 -6
- package/app/shared/model-dialog/model-dialog.component.d.ts +12 -0
- package/assets/icons/add_light.svg +1 -0
- package/assets/icons/circle_check_regular.svg +1 -0
- package/assets/icons/circle_regular.svg +0 -0
- package/assets/icons/plus_regular.svg +1 -0
- package/assets/icons/rotate_light.svg +1 -0
- package/assets/icons/square_check_regular.svg +1 -0
- package/assets/icons/square_chevron_down_regular.svg +1 -0
- package/assets/icons/square_regular.svg +1 -0
- package/bundles/colijnit-homedecorator.umd.js +340 -282
- package/bundles/colijnit-homedecorator.umd.js.map +1 -1
- package/esm2015/app/app.version.js +3 -3
- package/esm2015/app/core/enum/icon.enum.js +9 -1
- package/esm2015/app/core/model/icon.js +9 -1
- package/esm2015/app/core/service/homedecorator-app.service.js +4 -4
- package/esm2015/app/core/service/homedecorator-connector-adapter.service.js +13 -2
- package/esm2015/app/core/service/homedecorator-connector.service.js +2 -2
- package/esm2015/app/core/service/homedecorator-icon-cache.service.js +5 -2
- package/esm2015/app/plugins/product-catalog/own-collection-catalog/product-own-collection.component.js +1 -1
- package/esm2015/app/plugins/product-catalog/product-catalog/product-catalog.component.js +6 -6
- package/esm2015/app/plugins/threedselector/threedselector/threedselector.component.js +25 -8
- package/esm2015/app/shared/model-dialog/model-dialog-furniture-list.component.js +33 -26
- package/esm2015/app/shared/model-dialog/model-dialog.component.js +5 -2
- package/fesm2015/colijnit-homedecorator.js +168 -107
- package/fesm2015/colijnit-homedecorator.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/** AUTO GENERATED FILE. DO NOT CHANGE.. **/
|
|
2
2
|
export declare enum IconEnum {
|
|
3
3
|
AddButton = "add-button",
|
|
4
|
+
AddLight = "add_light",
|
|
4
5
|
Aperture = "aperture",
|
|
5
6
|
ArrowUpRightAndArrowDownLeftFromCenter = "arrow-up-right-and-arrow-down-left-from-center",
|
|
6
7
|
ArrowsLeftRight = "arrows-left-right",
|
|
@@ -22,10 +23,12 @@ export declare enum IconEnum {
|
|
|
22
23
|
CartShoppingRegular = "cart-shopping-regular",
|
|
23
24
|
Check = "check",
|
|
24
25
|
CircleCheck = "circle_check",
|
|
26
|
+
CircleCheckRegular = "circle_check_regular",
|
|
25
27
|
CircleInfo = "circle_info",
|
|
26
28
|
CircleMinusLight = "circle_minus_light",
|
|
27
29
|
CirclePlusLight = "circle_plus_light",
|
|
28
30
|
CircleQuestion = "circle_question",
|
|
31
|
+
CircleRegular = "circle_regular",
|
|
29
32
|
CircleXmark = "circle_xmark",
|
|
30
33
|
CitPoweredWhite = "cit_powered_white",
|
|
31
34
|
CloudArrowDown = "cloud_arrow_down",
|
|
@@ -74,9 +77,14 @@ export declare enum IconEnum {
|
|
|
74
77
|
PaintRollerLight = "paint_roller_light",
|
|
75
78
|
PenRuler = "pen-ruler",
|
|
76
79
|
PencilLight = "pencil_light",
|
|
80
|
+
PlusRegular = "plus_regular",
|
|
77
81
|
Qrcode = "qrcode",
|
|
78
82
|
RetryButton = "retry-button",
|
|
83
|
+
RotateLight = "rotate_light",
|
|
79
84
|
Settings = "settings",
|
|
85
|
+
SquareCheckRegular = "square_check_regular",
|
|
86
|
+
SquareChevronDownRegular = "square_chevron_down_regular",
|
|
87
|
+
SquareRegular = "square_regular",
|
|
80
88
|
StreetViewOrange = "street-view-orange",
|
|
81
89
|
StreetView = "street_view",
|
|
82
90
|
SwapButton = "swap-button",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
|
-
import { BehaviorSubject
|
|
2
|
+
import { BehaviorSubject } from 'rxjs';
|
|
3
3
|
import { ThreedModel } from '../../plugins/core3d/model/threed-model';
|
|
4
4
|
import { Category } from '../model/category';
|
|
5
5
|
import { Preset } from '../model/preset';
|
|
@@ -25,7 +25,7 @@ export declare class HomedecoratorAppService implements OnDestroy {
|
|
|
25
25
|
floorplans: Preset[];
|
|
26
26
|
floorTextures: Texture[];
|
|
27
27
|
wallTextures: Texture[];
|
|
28
|
-
skuSet:
|
|
28
|
+
skuSet: BehaviorSubject<string>;
|
|
29
29
|
modelsLoaded: BehaviorSubject<ThreedModel[]>;
|
|
30
30
|
categoriesLoaded: BehaviorSubject<Category[]>;
|
|
31
31
|
presetsLoaded: BehaviorSubject<Preset[]>;
|
|
@@ -68,8 +68,8 @@ export declare class HomedecoratorConnectorAdapterService implements OnDestroy {
|
|
|
68
68
|
private _publicationCodeForUserRole;
|
|
69
69
|
constructor(_appEventService: HomedecoratorAppEventService, _catalogExternalSourcesService: CatalogExternalSourcesService);
|
|
70
70
|
ngOnDestroy(): void;
|
|
71
|
-
initConnectionFromMetadata(metadata: Metadata, settings: HomedecoratorSettings): Promise<
|
|
72
|
-
initConnector(options: Options, externalSource?: string, forceReload?: boolean, externalSourceId?: number): Promise<
|
|
71
|
+
initConnectionFromMetadata(metadata: Metadata, settings: HomedecoratorSettings): Promise<boolean>;
|
|
72
|
+
initConnector(options: Options, externalSource?: string, forceReload?: boolean, externalSourceId?: number): Promise<boolean>;
|
|
73
73
|
logOut(): Promise<void>;
|
|
74
74
|
getPublicationCodeBasedOnLogin(): number;
|
|
75
75
|
getWebViewStartupInfo(request: ExternalCatalogStartupInfoRequest): Promise<ExternalCatalogStartupInfo>;
|
|
@@ -115,6 +115,7 @@ export declare class ThreedselectorComponent implements OnInit, OnDestroy {
|
|
|
115
115
|
loaderProgress: number;
|
|
116
116
|
loaderText: string;
|
|
117
117
|
showLoader: boolean;
|
|
118
|
+
private _floorTexturesLoadedSub;
|
|
118
119
|
private _selectedElementObject;
|
|
119
120
|
private _skuAlreadySet;
|
|
120
121
|
private _itemsFromScratch;
|
|
@@ -7,10 +7,6 @@ import { HomedecoratorSettingsService } from '../../core/service/homedecorator-s
|
|
|
7
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
|
-
iconService: HomedecoratorIconCacheService;
|
|
11
|
-
settingsService: HomedecoratorSettingsService;
|
|
12
|
-
private _googleTagManagerService;
|
|
13
|
-
private _messagesService;
|
|
14
10
|
readonly icon: typeof IconEnum;
|
|
15
11
|
list: CustomFloorGroupResult[];
|
|
16
12
|
label: string;
|
|
@@ -18,9 +14,12 @@ export declare class ModelDialogFurnitureListComponent implements OnInit {
|
|
|
18
14
|
showCopy: boolean;
|
|
19
15
|
showDelete: boolean;
|
|
20
16
|
showTotals: boolean;
|
|
17
|
+
iconCacheService: HomedecoratorIconCacheService;
|
|
18
|
+
settingsService: HomedecoratorSettingsService;
|
|
19
|
+
googleTagManagerService: GoogleTagManagerService;
|
|
20
|
+
messagesService: MessageBusService;
|
|
21
21
|
totalPrice: string;
|
|
22
22
|
totalEventSubmitted: boolean;
|
|
23
|
-
constructor(iconService: HomedecoratorIconCacheService, settingsService: HomedecoratorSettingsService, _googleTagManagerService: GoogleTagManagerService, _messagesService: MessageBusService);
|
|
24
23
|
ngOnInit(): void;
|
|
25
24
|
removeFurniture(item: CustomFloorGroupResult): void;
|
|
26
25
|
copyFurnitureName(item: CustomFloorGroupResult): void;
|
|
@@ -31,5 +30,5 @@ export declare class ModelDialogFurnitureListComponent implements OnInit {
|
|
|
31
30
|
submitTotalPriceEvent(): void;
|
|
32
31
|
calculateTotal(): void;
|
|
33
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelDialogFurnitureListComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ModelDialogFurnitureListComponent, "dialog-furniture-list", never, { "list": "list"; "label": "label"; "subLabel": "subLabel"; "showCopy": "showCopy"; "showDelete": "showDelete"; "showTotals": "showTotals"; }, {}, never, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModelDialogFurnitureListComponent, "dialog-furniture-list", never, { "list": "list"; "label": "label"; "subLabel": "subLabel"; "showCopy": "showCopy"; "showDelete": "showDelete"; "showTotals": "showTotals"; "iconCacheService": "iconCacheService"; "settingsService": "settingsService"; "googleTagManagerService": "googleTagManagerService"; "messagesService": "messagesService"; }, {}, never, never>;
|
|
35
34
|
}
|
|
@@ -3,11 +3,17 @@ 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
5
|
import { LoadFurnitureService } from '../../plugins/threedselector/threedselector/service/load-furniture.service';
|
|
6
|
+
import { HomedecoratorSettingsService } from '../../core/service/homedecorator-settings.service';
|
|
7
|
+
import { GoogleTagManagerService } from '../../service/google-tag-manager.service';
|
|
8
|
+
import { MessageBusService } from '../../core/service/message-bus.service';
|
|
6
9
|
import * as i0 from "@angular/core";
|
|
7
10
|
export declare class ModelDialogComponent implements OnInit {
|
|
8
11
|
data: {
|
|
9
12
|
loadFurnitureService: LoadFurnitureService;
|
|
10
13
|
iconCacheService: HomedecoratorIconCacheService;
|
|
14
|
+
settingsService: HomedecoratorSettingsService;
|
|
15
|
+
googleTagManagerService: GoogleTagManagerService;
|
|
16
|
+
messagesService: MessageBusService;
|
|
11
17
|
};
|
|
12
18
|
readonly icon: typeof IconEnum;
|
|
13
19
|
notLoaded: CustomFloorGroupResult[];
|
|
@@ -22,9 +28,15 @@ export declare class ModelDialogComponent implements OnInit {
|
|
|
22
28
|
noProductsLoaded: boolean;
|
|
23
29
|
loadFurnitureService: LoadFurnitureService;
|
|
24
30
|
iconService: HomedecoratorIconCacheService;
|
|
31
|
+
settingsService: HomedecoratorSettingsService;
|
|
32
|
+
googleTagManagerService: GoogleTagManagerService;
|
|
33
|
+
messagesService: MessageBusService;
|
|
25
34
|
constructor(data: {
|
|
26
35
|
loadFurnitureService: LoadFurnitureService;
|
|
27
36
|
iconCacheService: HomedecoratorIconCacheService;
|
|
37
|
+
settingsService: HomedecoratorSettingsService;
|
|
38
|
+
googleTagManagerService: GoogleTagManagerService;
|
|
39
|
+
messagesService: MessageBusService;
|
|
28
40
|
});
|
|
29
41
|
ngOnInit(): void;
|
|
30
42
|
private _loadFurniture;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--><path d="M240 64c0-8.8-7.2-16-16-16s-16 7.2-16 16l0 176L32 240c-8.8 0-16 7.2-16 16s7.2 16 16 16l176 0 0 176c0 8.8 7.2 16 16 16s16-7.2 16-16l0-176 176 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-176 0 0-176z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-111 111-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L369 209z"/></svg>
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--><path d="M248 72c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 160L40 232c-13.3 0-24 10.7-24 24s10.7 24 24 24l160 0 0 160c0 13.3 10.7 24 24 24s24-10.7 24-24l0-160 160 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-160 0 0-160z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--><path d="M426.1 301.2C406.2 376.5 337.6 432 256 432c-51 0-96.9-21.7-129-56.3l41-41c5.1-5.1 8-12.1 8-19.3c0-15.1-12.2-27.3-27.3-27.3L48 288c-8.8 0-16 7.2-16 16l0 100.7C32 419.8 44.2 432 59.3 432c7.2 0 14.2-2.9 19.3-8l25.7-25.7C142.3 438.7 196.2 464 256 464c97.4 0 179.2-67 201.8-157.4c2.4-9.7-5.2-18.6-15.2-18.6c-7.8 0-14.5 5.6-16.5 13.2zM385 136.3l-41 41c-5.1 5.1-8 12.1-8 19.3c0 15.1 12.2 27.3 27.3 27.3L464 224c8.8 0 16-7.2 16-16l0-100.7C480 92.2 467.8 80 452.7 80c-7.2 0-14.2 2.9-19.3 8l-25.7 25.7C369.7 73.3 315.8 48 256 48C158.6 48 76.8 115 54.2 205.4c-2.4 9.7 5.2 18.6 15.2 18.6c7.8 0 14.5-5.6 16.5-13.2C105.8 135.5 174.4 80 256 80c51 0 96.9 21.7 129.1 56.3zM448 192l-73.4 0L448 118.6l0 73.4zM64 320l73.4 0L64 393.4 64 320z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80zM0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--><path d="M384 432c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0zm64-16c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320zM207 345L103 241c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l87 87 87-87c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L241 345c-9.4 9.4-24.6 9.4-33.9 0z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M384 80c8.8 0 16 7.2 16 16l0 320c0 8.8-7.2 16-16 16L64 432c-8.8 0-16-7.2-16-16L48 96c0-8.8 7.2-16 16-16l320 0zM64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32z"/></svg>
|