@colijnit/homedecorator 261.20.5 → 261.20.7
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/plugins/render/render-controls/input-slider/input-slider.component.scss +117 -0
- package/app/plugins/render/render-controls/render-controls.component.scss +4 -40
- package/colijnit-homedecorator-261.20.7.tgz +0 -0
- package/fesm2022/colijnit-homedecorator.mjs +512 -426
- package/fesm2022/colijnit-homedecorator.mjs.map +1 -1
- package/index.d.ts +47 -23
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -31,10 +31,10 @@ import { ExternalSource } from '@colijnit/articleapi/build/model/external-source
|
|
|
31
31
|
import { ArticleFullObject } from '@colijnit/articleapi/build/model/article-full-object';
|
|
32
32
|
import { ArticleCategory } from '@colijnit/configuratorapi/build/model/article-category';
|
|
33
33
|
import { ArticleFlat } from '@colijnit/articleapi/build/model/article-flat.bo';
|
|
34
|
-
import { ArticleExtended } from '@colijnit/articleapi/build/model/article-extended.bo';
|
|
35
34
|
import { ExternalSourceArticleAddInterface } from '@colijnit/articleapi/build/interface/external-source-article-add.interface';
|
|
36
35
|
import { CoDomainValue } from '@colijnit/mainapi/build/model/co-domain-value.bo';
|
|
37
36
|
import { ObjectConfiguration } from '@colijnit/ioneconnector/build/model/object-configuration';
|
|
37
|
+
import { ArticleExtended } from '@colijnit/articleapi/build/model/article-extended.bo';
|
|
38
38
|
import { SelectorStructure } from '@colijnit/configuratorapi/build/model/selector-structure.bo';
|
|
39
39
|
import * as i8$2 from '@colijnit/catalog';
|
|
40
40
|
import { CatalogExternalSourcesService, FilterOrder, CatalogService, ExternalSourceViewmodel } from '@colijnit/catalog';
|
|
@@ -54,7 +54,7 @@ import { MatDialog, MatDialogRef, MatDialogConfig } from '@angular/material/dial
|
|
|
54
54
|
import * as i3 from '@angular/common';
|
|
55
55
|
import * as i4 from '@angular/material/button';
|
|
56
56
|
import * as i8 from '@angular/material/tooltip';
|
|
57
|
-
import * as
|
|
57
|
+
import * as i3$1 from '@colijnit/corecomponents_v12';
|
|
58
58
|
import * as i5 from '@angular/material/list';
|
|
59
59
|
import * as i19 from '@angular/material/checkbox';
|
|
60
60
|
import * as i6 from '@angular/forms';
|
|
@@ -74,7 +74,7 @@ import * as i13 from '@angular/material/grid-list';
|
|
|
74
74
|
import * as i13$1 from '@angular/material/progress-spinner';
|
|
75
75
|
import * as i29 from '@angular/material/progress-bar';
|
|
76
76
|
import * as i4$2 from '@angular/material/form-field';
|
|
77
|
-
import * as i7$
|
|
77
|
+
import * as i7$1 from '@angular/flex-layout';
|
|
78
78
|
import * as i31 from '@angular/material/core';
|
|
79
79
|
import * as i8$1 from '@angular/material/button-toggle';
|
|
80
80
|
import { MatButtonToggleChange } from '@angular/material/button-toggle';
|
|
@@ -697,7 +697,7 @@ declare class HomedecoratorAppEventService {
|
|
|
697
697
|
hideOutline: Subject<void>;
|
|
698
698
|
objectMovingOrRotating: Subject<void>;
|
|
699
699
|
addToCart: Subject<{
|
|
700
|
-
article: string |
|
|
700
|
+
article: string | ArticleFullObject;
|
|
701
701
|
quantity: number;
|
|
702
702
|
}>;
|
|
703
703
|
addExternalSourceToCart: Subject<ExternalSourceArticleAddInterface>;
|
|
@@ -763,6 +763,7 @@ declare class HomedecoratorConnectorAdapterService implements OnDestroy {
|
|
|
763
763
|
getDecosAsync(): Promise<DecoNode[]>;
|
|
764
764
|
getAnswerPrices(): Promise<AnswerPrice[]>;
|
|
765
765
|
getJsonConfiguredArticles(goodId: number, goodType: string, quantity: number, externalSource?: boolean, showLoader?: boolean, instanceId?: string, configuratorStatistics?: ConfiguratorStatisticsEnvironment): Promise<string>;
|
|
766
|
+
prepareArticleForCart(goodId: number, quantity?: number, shouldGetArticleTree?: boolean, showLoader?: boolean, instanceId?: string): Promise<ArticleFullObject | string>;
|
|
766
767
|
setInstanceToConfigure(id: string): Promise<DataServiceResponseData>;
|
|
767
768
|
selectAnswer(answer: Answer, userInput?: string): Promise<DataServiceResponseData>;
|
|
768
769
|
cancelAnswer(getAnswersAndQuestion?: boolean): Promise<DataServiceResponseData>;
|
|
@@ -1217,7 +1218,7 @@ declare class HomedecoratorConnectorService implements OnDestroy {
|
|
|
1217
1218
|
getInternalParameter(param: InternalParam): Promise<string>;
|
|
1218
1219
|
getDefaultLanguage(upId: number): Promise<string>;
|
|
1219
1220
|
googleTranslateEnabled(): Promise<boolean>;
|
|
1220
|
-
|
|
1221
|
+
prepareArticleForCart(goodId: number, quantity: number, externalSource?: boolean, showLoader?: boolean, instanceId?: string): Promise<ArticleFullObject | string>;
|
|
1221
1222
|
setInstance(id: string): Promise<DataServiceResponseData>;
|
|
1222
1223
|
copyInstanceAndSaveOriginalConfiguration(instanceId: string, result: CustomFloorGroupResult): Promise<string>;
|
|
1223
1224
|
copyInstanceAndLoseOriginalConfiguration(instanceId: string, result: CustomFloorGroupResult): Promise<string>;
|
|
@@ -1249,7 +1250,7 @@ declare class HomedecoratorConnectorService implements OnDestroy {
|
|
|
1249
1250
|
private _isAllSelectionPublished;
|
|
1250
1251
|
private _isAnswerPublished;
|
|
1251
1252
|
private _preloadCachedImages;
|
|
1252
|
-
addToCart(goodId: number, goodType: string, quantity: number, instanceId: string, externalSource: boolean): Promise<string>;
|
|
1253
|
+
addToCart(goodId: number, goodType: string, quantity: number, instanceId: string, externalSource: boolean): Promise<ArticleFullObject | string>;
|
|
1253
1254
|
handleAnswersReceived(): void;
|
|
1254
1255
|
getGoogleTranslation(sourceLang: string, targetLang: string, list: string[]): Promise<string>;
|
|
1255
1256
|
private _prepareSelectionsToDisplayImages;
|
|
@@ -3172,7 +3173,7 @@ declare class HdLoaderComponent {
|
|
|
3172
3173
|
|
|
3173
3174
|
declare class HdLoaderModule {
|
|
3174
3175
|
static ɵfac: i0.ɵɵFactoryDeclaration<HdLoaderModule, never>;
|
|
3175
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<HdLoaderModule, [typeof HdLoaderComponent], [typeof CoreModule, typeof
|
|
3176
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HdLoaderModule, [typeof HdLoaderComponent], [typeof CoreModule, typeof i3$1.LoaderModule], [typeof HdLoaderComponent]>;
|
|
3176
3177
|
static ɵinj: i0.ɵɵInjectorDeclaration<HdLoaderModule>;
|
|
3177
3178
|
}
|
|
3178
3179
|
|
|
@@ -6067,7 +6068,7 @@ declare class ColorPickerDialogModule {
|
|
|
6067
6068
|
|
|
6068
6069
|
declare class DevelopmentModule {
|
|
6069
6070
|
static ɵfac: i0.ɵɵFactoryDeclaration<DevelopmentModule, never>;
|
|
6070
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DevelopmentModule, [typeof SelectedObjectComponent$1, typeof SelectedChildComponent, typeof SelectedChildMaterialComponent, typeof SelectedChildMaterialTextureComponent, typeof SelectedChildMaterialTexturesComponent, typeof SelectedChildMaterialColorComponent, typeof DevelopmentDirective], [typeof i3.CommonModule, typeof i19.MatCheckboxModule, typeof i6.FormsModule, typeof i10.MatSelectModule, typeof
|
|
6071
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DevelopmentModule, [typeof SelectedObjectComponent$1, typeof SelectedChildComponent, typeof SelectedChildMaterialComponent, typeof SelectedChildMaterialTextureComponent, typeof SelectedChildMaterialTexturesComponent, typeof SelectedChildMaterialColorComponent, typeof DevelopmentDirective], [typeof i3.CommonModule, typeof i19.MatCheckboxModule, typeof i6.FormsModule, typeof i10.MatSelectModule, typeof i3$1.IconModule, typeof CoreModule, typeof i4.MatButtonModule, typeof i8.MatTooltipModule, typeof ColorPickerDialogModule], [typeof SelectedObjectComponent$1, typeof SelectedChildComponent, typeof SelectedChildMaterialComponent, typeof SelectedChildMaterialTextureComponent, typeof SelectedChildMaterialTexturesComponent, typeof SelectedChildMaterialColorComponent, typeof DevelopmentDirective]>;
|
|
6071
6072
|
static ɵinj: i0.ɵɵInjectorDeclaration<DevelopmentModule>;
|
|
6072
6073
|
}
|
|
6073
6074
|
|
|
@@ -6087,7 +6088,7 @@ declare class ToolbarIconComponent {
|
|
|
6087
6088
|
|
|
6088
6089
|
declare class ToolbarIconModule {
|
|
6089
6090
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarIconModule, never>;
|
|
6090
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ToolbarIconModule, [typeof ToolbarIconComponent], [typeof i3.CommonModule, typeof i7.MatIconModule, typeof i4.MatButtonModule, typeof i8.MatTooltipModule, typeof
|
|
6091
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ToolbarIconModule, [typeof ToolbarIconComponent], [typeof i3.CommonModule, typeof i7.MatIconModule, typeof i4.MatButtonModule, typeof i8.MatTooltipModule, typeof i3$1.IconModule], [typeof ToolbarIconComponent]>;
|
|
6091
6092
|
static ɵinj: i0.ɵɵInjectorDeclaration<ToolbarIconModule>;
|
|
6092
6093
|
}
|
|
6093
6094
|
|
|
@@ -6328,9 +6329,32 @@ declare class RenderProgressComponent implements OnDestroy {
|
|
|
6328
6329
|
static ɵcmp: i0.ɵɵComponentDeclaration<RenderProgressComponent, "rp-render-progress", never, {}, {}, never, never, false, never>;
|
|
6329
6330
|
}
|
|
6330
6331
|
|
|
6332
|
+
declare class InputSliderComponent {
|
|
6333
|
+
iconService: HomedecoratorIconCacheService;
|
|
6334
|
+
readonly icons: typeof IconEnum;
|
|
6335
|
+
label: string;
|
|
6336
|
+
min: number;
|
|
6337
|
+
max: number;
|
|
6338
|
+
step: number;
|
|
6339
|
+
value: number;
|
|
6340
|
+
valueChange: EventEmitter<number>;
|
|
6341
|
+
constructor(iconService: HomedecoratorIconCacheService);
|
|
6342
|
+
onValueChange(newValue: number | string): void;
|
|
6343
|
+
increment(): void;
|
|
6344
|
+
decrement(): void;
|
|
6345
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputSliderComponent, never>;
|
|
6346
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputSliderComponent, "co-input-slider", never, { "label": { "alias": "label"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "step": { "alias": "step"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
6347
|
+
}
|
|
6348
|
+
|
|
6349
|
+
declare class InputSliderModule {
|
|
6350
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputSliderModule, never>;
|
|
6351
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InputSliderModule, [typeof InputSliderComponent], [typeof i6.FormsModule, typeof i3$1.IconModule, typeof i3$1.InputTextModule, typeof i3$1.InputNumberPickerModule], [typeof InputSliderComponent]>;
|
|
6352
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<InputSliderModule>;
|
|
6353
|
+
}
|
|
6354
|
+
|
|
6331
6355
|
declare class RenderModule {
|
|
6332
6356
|
static ɵfac: i0.ɵɵFactoryDeclaration<RenderModule, never>;
|
|
6333
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RenderModule, [typeof RenderControlsComponent, typeof RenderProgressComponent], [typeof CoreModule, typeof i3.CommonModule, typeof i4.MatButtonModule, typeof i4$1.MatDialogModule, typeof i8.MatTooltipModule, typeof i5$1.MatInputModule, typeof i7.MatIconModule, typeof i10.MatSelectModule, typeof i12.MatSlideToggleModule, typeof i13.MatGridListModule, typeof i13$1.MatProgressSpinnerModule, typeof i6.FormsModule, typeof
|
|
6357
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RenderModule, [typeof RenderControlsComponent, typeof RenderProgressComponent], [typeof CoreModule, typeof i3.CommonModule, typeof i4.MatButtonModule, typeof i4$1.MatDialogModule, typeof i8.MatTooltipModule, typeof i5$1.MatInputModule, typeof i7.MatIconModule, typeof i10.MatSelectModule, typeof i12.MatSlideToggleModule, typeof i13.MatGridListModule, typeof i13$1.MatProgressSpinnerModule, typeof i6.FormsModule, typeof i3$1.IconModule, typeof i11.MatSliderModule, typeof i3$1.TooltipDirectiveModule, typeof ProgressBarModule, typeof InputSliderModule], [typeof RenderControlsComponent, typeof RenderProgressComponent]>;
|
|
6334
6358
|
static ɵinj: i0.ɵɵInjectorDeclaration<RenderModule>;
|
|
6335
6359
|
}
|
|
6336
6360
|
|
|
@@ -6348,13 +6372,13 @@ declare class SliderInputComponent {
|
|
|
6348
6372
|
|
|
6349
6373
|
declare class SliderInputModule {
|
|
6350
6374
|
static ɵfac: i0.ɵɵFactoryDeclaration<SliderInputModule, never>;
|
|
6351
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SliderInputModule, [typeof SliderInputComponent], [typeof i3.CommonModule, typeof i6.FormsModule, typeof i4$2.MatFormFieldModule, typeof i5$1.MatInputModule, typeof i11.MatSliderModule, typeof i7$
|
|
6375
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SliderInputModule, [typeof SliderInputComponent], [typeof i3.CommonModule, typeof i6.FormsModule, typeof i4$2.MatFormFieldModule, typeof i5$1.MatInputModule, typeof i11.MatSliderModule, typeof i7$1.FlexLayoutModule], [typeof SliderInputComponent]>;
|
|
6352
6376
|
static ɵinj: i0.ɵɵInjectorDeclaration<SliderInputModule>;
|
|
6353
6377
|
}
|
|
6354
6378
|
|
|
6355
6379
|
declare class Core3dModule {
|
|
6356
6380
|
static ɵfac: i0.ɵɵFactoryDeclaration<Core3dModule, never>;
|
|
6357
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<Core3dModule, [typeof SceneDirective, typeof Core3dComponent, typeof SceneControlComponent, typeof WalkthroughCameraControlsComponent, typeof LightplanComponent, typeof EditLightComponent, typeof SceneOptionsComponent, typeof EditLightplanComponent, typeof ArGuiRootComponent, typeof ArGuiButtonsComponent, typeof ArGuiConfiguratorComponent, typeof ArGuiContextMenuComponent, typeof ArGuiNotificationsComponent], [typeof CoreModule, typeof i3.CommonModule, typeof i6.FormsModule, typeof i5$1.MatInputModule, typeof i4.MatButtonModule, typeof i19.MatCheckboxModule, typeof i8.MatTooltipModule, typeof i11.MatSliderModule, typeof i10.MatSelectModule, typeof DevelopmentModule, typeof
|
|
6381
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<Core3dModule, [typeof SceneDirective, typeof Core3dComponent, typeof SceneControlComponent, typeof WalkthroughCameraControlsComponent, typeof LightplanComponent, typeof EditLightComponent, typeof SceneOptionsComponent, typeof EditLightplanComponent, typeof ArGuiRootComponent, typeof ArGuiButtonsComponent, typeof ArGuiConfiguratorComponent, typeof ArGuiContextMenuComponent, typeof ArGuiNotificationsComponent], [typeof CoreModule, typeof i3.CommonModule, typeof i6.FormsModule, typeof i5$1.MatInputModule, typeof i4.MatButtonModule, typeof i19.MatCheckboxModule, typeof i8.MatTooltipModule, typeof i11.MatSliderModule, typeof i10.MatSelectModule, typeof DevelopmentModule, typeof i3$1.IconModule, typeof ToolbarIconModule, typeof ZoomControlsModule, typeof RenderModule, typeof i7.MatIconModule, typeof i29.MatProgressBarModule, typeof SliderInputModule, typeof i31.MatOptionModule, typeof i19.MatCheckboxModule], [typeof Core3dComponent, typeof SceneDirective]>;
|
|
6358
6382
|
static ɵinj: i0.ɵɵInjectorDeclaration<Core3dModule>;
|
|
6359
6383
|
}
|
|
6360
6384
|
|
|
@@ -7813,7 +7837,7 @@ declare class RightContextMenuComponent implements OnInit, OnDestroy, OnChanges
|
|
|
7813
7837
|
|
|
7814
7838
|
declare class ContextMenuModule {
|
|
7815
7839
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuModule, never>;
|
|
7816
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ContextMenuModule, [typeof ContextMenuComponent, typeof ItemContextMenuComponent, typeof RightContextMenuComponent], [typeof CoreModule, typeof i3.CommonModule, typeof i4.MatButtonModule, typeof i7.MatIconModule, typeof i8.MatTooltipModule, typeof
|
|
7840
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ContextMenuModule, [typeof ContextMenuComponent, typeof ItemContextMenuComponent, typeof RightContextMenuComponent], [typeof CoreModule, typeof i3.CommonModule, typeof i4.MatButtonModule, typeof i7.MatIconModule, typeof i8.MatTooltipModule, typeof i3$1.IconModule], [typeof ContextMenuComponent, typeof ItemContextMenuComponent, typeof RightContextMenuComponent]>;
|
|
7817
7841
|
static ɵinj: i0.ɵɵInjectorDeclaration<ContextMenuModule>;
|
|
7818
7842
|
}
|
|
7819
7843
|
|
|
@@ -7853,7 +7877,7 @@ declare class ButtonElevationComponent implements OnDestroy {
|
|
|
7853
7877
|
|
|
7854
7878
|
declare class ButtonElevationModule {
|
|
7855
7879
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonElevationModule, never>;
|
|
7856
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ButtonElevationModule, [typeof ButtonElevationComponent], [typeof CoreModule, typeof i3.CommonModule, typeof i4$2.MatFormFieldModule, typeof i5$1.MatInputModule, typeof i4.MatButtonModule, typeof i7.MatIconModule, typeof i8.MatTooltipModule, typeof i6.FormsModule, typeof
|
|
7880
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ButtonElevationModule, [typeof ButtonElevationComponent], [typeof CoreModule, typeof i3.CommonModule, typeof i4$2.MatFormFieldModule, typeof i5$1.MatInputModule, typeof i4.MatButtonModule, typeof i7.MatIconModule, typeof i8.MatTooltipModule, typeof i6.FormsModule, typeof i3$1.IconModule], [typeof ButtonElevationComponent]>;
|
|
7857
7881
|
static ɵinj: i0.ɵɵInjectorDeclaration<ButtonElevationModule>;
|
|
7858
7882
|
}
|
|
7859
7883
|
|
|
@@ -7906,7 +7930,7 @@ declare class MaterialDialogComponent implements OnInit, OnDestroy {
|
|
|
7906
7930
|
|
|
7907
7931
|
declare class MaterialDialogModule {
|
|
7908
7932
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialDialogModule, never>;
|
|
7909
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialDialogModule, [typeof MaterialDialogComponent], [typeof CoreModule, typeof i19.MatCheckboxModule, typeof i4.MatButtonModule, typeof i4$1.MatDialogModule, typeof i6.FormsModule, typeof i3.CommonModule, typeof i4$2.MatFormFieldModule, typeof i31.MatOptionModule, typeof i10.MatSelectModule, typeof DevelopmentModule, typeof
|
|
7933
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialDialogModule, [typeof MaterialDialogComponent], [typeof CoreModule, typeof i19.MatCheckboxModule, typeof i4.MatButtonModule, typeof i4$1.MatDialogModule, typeof i6.FormsModule, typeof i3.CommonModule, typeof i4$2.MatFormFieldModule, typeof i31.MatOptionModule, typeof i10.MatSelectModule, typeof DevelopmentModule, typeof i3$1.ListOfValuesModule, typeof i13$2.DragDropModule], never>;
|
|
7910
7934
|
static ɵinj: i0.ɵɵInjectorDeclaration<MaterialDialogModule>;
|
|
7911
7935
|
}
|
|
7912
7936
|
|
|
@@ -7927,7 +7951,7 @@ declare class RgbColorPickerModule {
|
|
|
7927
7951
|
|
|
7928
7952
|
declare class RoomPlannerModule {
|
|
7929
7953
|
static ɵfac: i0.ɵɵFactoryDeclaration<RoomPlannerModule, never>;
|
|
7930
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RoomPlannerModule, [typeof ColorPickerComponent, typeof EditApplyComponent, typeof ObjectLibraryComponent, typeof RoomPlannerComponent, typeof FloorplannerComponent, typeof SelectedFloorComponent, typeof SelectedObjectComponent, typeof SelectedThreedObjectComponent, typeof SelectedWallComponent, typeof SettingsComponent, typeof SettingsOptionsComponent, typeof TexturePickerComponent, typeof TextureEditorComponent, typeof EditParameterComponent, typeof RalColorPickerComponent, typeof DimensionInputComponent, typeof FileDropComponent, typeof AppearanceSectionComponent, typeof FloorCatalogComponent, typeof CustomShapeCreatorComponent, typeof WallLengthInputComponent, typeof CustomCylinderCreatorComponent, typeof SelectedObjectScaleComponent], [typeof CoreModule, typeof CategoryLibraryModule, typeof i3.CommonModule, typeof ContextMenuModule, typeof i4.MatButtonModule, typeof i8$1.MatButtonToggleModule, typeof i10$1.MatCardModule, typeof i19.MatCheckboxModule, typeof i4$2.MatFormFieldModule, typeof i5$1.MatInputModule, typeof i9.MatSidenavModule, typeof i11.MatSliderModule, typeof i12.MatSlideToggleModule, typeof i13.MatGridListModule, typeof i7.MatIconModule, typeof i15.MatTabsModule, typeof i10.MatSelectModule, typeof i41.MatDividerModule, typeof i8.MatTooltipModule, typeof i43.MatSnackBarModule, typeof i6.FormsModule, typeof InfoDialogModule, typeof Core3dModule, typeof ToolbarIconModule, typeof ZoomControlsModule, typeof RenderModule, typeof SliderInputModule, typeof i7$
|
|
7954
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RoomPlannerModule, [typeof ColorPickerComponent, typeof EditApplyComponent, typeof ObjectLibraryComponent, typeof RoomPlannerComponent, typeof FloorplannerComponent, typeof SelectedFloorComponent, typeof SelectedObjectComponent, typeof SelectedThreedObjectComponent, typeof SelectedWallComponent, typeof SettingsComponent, typeof SettingsOptionsComponent, typeof TexturePickerComponent, typeof TextureEditorComponent, typeof EditParameterComponent, typeof RalColorPickerComponent, typeof DimensionInputComponent, typeof FileDropComponent, typeof AppearanceSectionComponent, typeof FloorCatalogComponent, typeof CustomShapeCreatorComponent, typeof WallLengthInputComponent, typeof CustomCylinderCreatorComponent, typeof SelectedObjectScaleComponent], [typeof CoreModule, typeof CategoryLibraryModule, typeof i3.CommonModule, typeof ContextMenuModule, typeof i4.MatButtonModule, typeof i8$1.MatButtonToggleModule, typeof i10$1.MatCardModule, typeof i19.MatCheckboxModule, typeof i4$2.MatFormFieldModule, typeof i5$1.MatInputModule, typeof i9.MatSidenavModule, typeof i11.MatSliderModule, typeof i12.MatSlideToggleModule, typeof i13.MatGridListModule, typeof i7.MatIconModule, typeof i15.MatTabsModule, typeof i10.MatSelectModule, typeof i41.MatDividerModule, typeof i8.MatTooltipModule, typeof i43.MatSnackBarModule, typeof i6.FormsModule, typeof InfoDialogModule, typeof Core3dModule, typeof ToolbarIconModule, typeof ZoomControlsModule, typeof RenderModule, typeof SliderInputModule, typeof i7$1.FlexLayoutModule, typeof i3$1.IconModule, typeof i3$1.ButtonModule, typeof ButtonElevationModule, typeof ExportPdfModule, typeof MaterialDialogModule, typeof RgbColorPickerModule], [typeof RoomPlannerComponent]>;
|
|
7931
7955
|
static ɵinj: i0.ɵɵInjectorDeclaration<RoomPlannerModule>;
|
|
7932
7956
|
}
|
|
7933
7957
|
|
|
@@ -8362,7 +8386,7 @@ declare class ModelDialogFurnitureListComponent implements OnInit {
|
|
|
8362
8386
|
|
|
8363
8387
|
declare class ModelDialogModule {
|
|
8364
8388
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelDialogModule, never>;
|
|
8365
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ModelDialogModule, [typeof ModelDialogComponent, typeof ModelDialogFurnitureListComponent], [typeof CoreModule, typeof i3.CommonModule, typeof i4.MatButtonModule, typeof i4$1.MatDialogModule, typeof i8.MatTooltipModule, typeof i7.MatIconModule, typeof
|
|
8389
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ModelDialogModule, [typeof ModelDialogComponent, typeof ModelDialogFurnitureListComponent], [typeof CoreModule, typeof i3.CommonModule, typeof i4.MatButtonModule, typeof i4$1.MatDialogModule, typeof i8.MatTooltipModule, typeof i7.MatIconModule, typeof i3$1.IconModule, typeof i6.FormsModule], never>;
|
|
8366
8390
|
static ɵinj: i0.ɵɵInjectorDeclaration<ModelDialogModule>;
|
|
8367
8391
|
}
|
|
8368
8392
|
|
|
@@ -8431,7 +8455,7 @@ declare class CameraSettingsDialogModule {
|
|
|
8431
8455
|
|
|
8432
8456
|
declare class ThreedselectorModule {
|
|
8433
8457
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThreedselectorModule, never>;
|
|
8434
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ThreedselectorModule, [typeof ThreedselectorComponent, typeof ElementToolbarComponent, typeof ElementButtonsComponent, typeof ElementSliderComponent], [typeof i3.CommonModule, typeof i6.FormsModule, typeof i4.MatButtonModule, typeof i8$1.MatButtonToggleModule, typeof i9.MatSidenavModule, typeof i10$1.MatCardModule, typeof i11.MatSliderModule, typeof i12.MatSlideToggleModule, typeof i13.MatGridListModule, typeof i7.MatIconModule, typeof i15.MatTabsModule, typeof Core3dModule, typeof CoreModule, typeof
|
|
8458
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ThreedselectorModule, [typeof ThreedselectorComponent, typeof ElementToolbarComponent, typeof ElementButtonsComponent, typeof ElementSliderComponent], [typeof i3.CommonModule, typeof i6.FormsModule, typeof i4.MatButtonModule, typeof i8$1.MatButtonToggleModule, typeof i9.MatSidenavModule, typeof i10$1.MatCardModule, typeof i11.MatSliderModule, typeof i12.MatSlideToggleModule, typeof i13.MatGridListModule, typeof i7.MatIconModule, typeof i15.MatTabsModule, typeof Core3dModule, typeof CoreModule, typeof i3$1.IconModule, typeof ToolbarIconModule, typeof InfoDialogModule, typeof ErrorDialogModule, typeof ModelDialogModule, typeof ExportDialogModule, typeof CameraSettingsDialogModule, typeof i25.ProductConfiguratorModule, typeof i25.ConfiguratorModule], [typeof ElementButtonsComponent, typeof ThreedselectorComponent]>;
|
|
8435
8459
|
static ɵinj: i0.ɵɵInjectorDeclaration<ThreedselectorModule>;
|
|
8436
8460
|
}
|
|
8437
8461
|
|
|
@@ -9008,7 +9032,7 @@ declare class ThreedInPhotoModule {
|
|
|
9008
9032
|
|
|
9009
9033
|
declare class ToolbarModule {
|
|
9010
9034
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarModule, never>;
|
|
9011
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ToolbarModule, [typeof SaveDialogComponent, typeof OpenDialogComponent, typeof DrawDialogComponent, typeof PdfCropDialogComponent, typeof ToolbarComponent, typeof SavedDialogComponent, typeof DownloadDialogComponent, typeof LoadFromCloudDialogComponent, typeof LandingScreenModalComponent, typeof LimitedModeMessageComponent, typeof RegisterDialogComponent, typeof EditPresetDialogComponent], [typeof CoreModule, typeof i3.CommonModule, typeof ErrorDialogModule, typeof ModelDialogModule, typeof i6.FormsModule, typeof i6.ReactiveFormsModule, typeof i18.MatToolbarModule, typeof i7.MatIconModule, typeof i4.MatButtonModule, typeof i8.MatTooltipModule, typeof i9.MatSidenavModule, typeof i5.MatListModule, typeof i4$1.MatDialogModule, typeof i8$1.MatButtonToggleModule, typeof i43.MatSnackBarModule, typeof i5$1.MatInputModule, typeof i4$2.MatFormFieldModule, typeof i10$1.MatCardModule, typeof i13.MatGridListModule, typeof i31$1.MatMenuModule, typeof i7$
|
|
9035
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ToolbarModule, [typeof SaveDialogComponent, typeof OpenDialogComponent, typeof DrawDialogComponent, typeof PdfCropDialogComponent, typeof ToolbarComponent, typeof SavedDialogComponent, typeof DownloadDialogComponent, typeof LoadFromCloudDialogComponent, typeof LandingScreenModalComponent, typeof LimitedModeMessageComponent, typeof RegisterDialogComponent, typeof EditPresetDialogComponent], [typeof CoreModule, typeof i3.CommonModule, typeof ErrorDialogModule, typeof ModelDialogModule, typeof i6.FormsModule, typeof i6.ReactiveFormsModule, typeof i18.MatToolbarModule, typeof i7.MatIconModule, typeof i4.MatButtonModule, typeof i8.MatTooltipModule, typeof i9.MatSidenavModule, typeof i5.MatListModule, typeof i4$1.MatDialogModule, typeof i8$1.MatButtonToggleModule, typeof i43.MatSnackBarModule, typeof i5$1.MatInputModule, typeof i4$2.MatFormFieldModule, typeof i10$1.MatCardModule, typeof i13.MatGridListModule, typeof i31$1.MatMenuModule, typeof i7$1.FlexLayoutModule, typeof i33.PortalModule, typeof ToolbarIconModule, typeof i3$1.InputTextModule, typeof i3$1.IconModule, typeof i36.MatBadgeModule, typeof ThreedInPhotoModule, typeof i38.PdfViewerModule, typeof ExportPdfModule], [typeof ToolbarComponent]>;
|
|
9012
9036
|
static ɵinj: i0.ɵɵInjectorDeclaration<ToolbarModule>;
|
|
9013
9037
|
}
|
|
9014
9038
|
|
|
@@ -9217,13 +9241,13 @@ declare class LoaderModule {
|
|
|
9217
9241
|
|
|
9218
9242
|
declare class ModelUploaderModule {
|
|
9219
9243
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelUploaderModule, never>;
|
|
9220
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ModelUploaderModule, [typeof ModelUploaderComponent, typeof ModelPreviewComponent], [typeof i3.CommonModule, typeof CoreModule, typeof i7.MatIconModule, typeof i4.MatButtonModule, typeof
|
|
9244
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ModelUploaderModule, [typeof ModelUploaderComponent, typeof ModelPreviewComponent], [typeof i3.CommonModule, typeof CoreModule, typeof i7.MatIconModule, typeof i4.MatButtonModule, typeof i3$1.ButtonModule, typeof i3$1.ImageModule, typeof i8$2.CatalogExternalSourcesModule, typeof i8$2.CatalogExternalSourceModule, typeof i9$1.MatRadioModule, typeof i12.MatSlideToggleModule, typeof i4$2.MatFormFieldModule, typeof i31.MatOptionModule, typeof i10.MatSelectModule, typeof i3$1.IconModule, typeof i6.FormsModule, typeof LoaderModule], [typeof ModelUploaderComponent]>;
|
|
9221
9245
|
static ɵinj: i0.ɵɵInjectorDeclaration<ModelUploaderModule>;
|
|
9222
9246
|
}
|
|
9223
9247
|
|
|
9224
9248
|
declare class ProductCatalogModule {
|
|
9225
9249
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProductCatalogModule, never>;
|
|
9226
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ProductCatalogModule, [typeof ProductCatalogComponent], [typeof i3.CommonModule, typeof CoreModule, typeof i7.MatIconModule, typeof i4.MatButtonModule, typeof
|
|
9250
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ProductCatalogModule, [typeof ProductCatalogComponent], [typeof i3.CommonModule, typeof CoreModule, typeof i7.MatIconModule, typeof i4.MatButtonModule, typeof i3$1.ButtonModule, typeof i3$1.ImageModule, typeof i8$2.CatalogExternalSourcesModule, typeof ProductOwnCollectionModule, typeof i8$2.CatalogExternalSourceModule, typeof ModelUploaderModule], [typeof ProductCatalogComponent]>;
|
|
9227
9251
|
static ɵinj: i0.ɵɵInjectorDeclaration<ProductCatalogModule>;
|
|
9228
9252
|
}
|
|
9229
9253
|
|
|
@@ -9284,7 +9308,7 @@ declare class LightboxComponent {
|
|
|
9284
9308
|
|
|
9285
9309
|
declare class LightboxModule {
|
|
9286
9310
|
static ɵfac: i0.ɵɵFactoryDeclaration<LightboxModule, never>;
|
|
9287
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LightboxModule, [typeof LightboxComponent], [typeof i3.CommonModule, typeof
|
|
9311
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LightboxModule, [typeof LightboxComponent], [typeof i3.CommonModule, typeof i3$1.IconModule], [typeof LightboxComponent]>;
|
|
9288
9312
|
static ɵinj: i0.ɵɵInjectorDeclaration<LightboxModule>;
|
|
9289
9313
|
}
|
|
9290
9314
|
|
|
@@ -9308,7 +9332,7 @@ declare class DialogModule {
|
|
|
9308
9332
|
|
|
9309
9333
|
declare class HomedecoratorModule {
|
|
9310
9334
|
static ɵfac: i0.ɵɵFactoryDeclaration<HomedecoratorModule, never>;
|
|
9311
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<HomedecoratorModule, [typeof HomedecoratorComponent], [typeof i3.CommonModule, typeof ProgressBarModule, typeof LoadingOverlayModule, typeof HdLoaderModule, typeof ExportDialogModule, typeof InfoDialogModule, typeof PluginsModule, typeof DialogModule, typeof i10$2.A11yModule, typeof i25.ProductConfiguratorModule, typeof
|
|
9335
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HomedecoratorModule, [typeof HomedecoratorComponent], [typeof i3.CommonModule, typeof ProgressBarModule, typeof LoadingOverlayModule, typeof HdLoaderModule, typeof ExportDialogModule, typeof InfoDialogModule, typeof PluginsModule, typeof DialogModule, typeof i10$2.A11yModule, typeof i25.ProductConfiguratorModule, typeof i3$1.CoreComponentsTranslationModule, typeof i25.LiteSelectorModule], [typeof HomedecoratorComponent]>;
|
|
9312
9336
|
static ɵinj: i0.ɵɵInjectorDeclaration<HomedecoratorModule>;
|
|
9313
9337
|
}
|
|
9314
9338
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/homedecorator",
|
|
3
|
-
"version": "261.20.
|
|
3
|
+
"version": "261.20.7",
|
|
4
4
|
"description": "Homedecorator application based on 261 version of iOne backend",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"@angular/common": ">=20.0.0",
|
|
11
11
|
"@angular/core": ">=20.0.0",
|
|
12
12
|
"@colijnit/catalog": ">=261.20.0",
|
|
13
|
-
"@colijnit/articleapi": ">=261.1.
|
|
13
|
+
"@colijnit/articleapi": ">=261.1.5",
|
|
14
14
|
"@colijnit/configurator": ">=261.20.11",
|
|
15
15
|
"@colijnit/configuratorapi": ">=261.1.6",
|
|
16
16
|
"@colijnit/corecomponents_v12": ">=261.20.0",
|