@colijnit/homedecorator 261.20.6 → 261.20.8
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/components/dialog/co-hd-dialog.component.scss +39 -0
- 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/fesm2022/colijnit-homedecorator.mjs +4763 -4408
- package/fesm2022/colijnit-homedecorator.mjs.map +1 -1
- package/index.d.ts +112 -36
- package/package.json +1 -1
- package/style/_variables.scss +1 -1
- package/style/material.scss +0 -3
- package/style/styles.scss +8 -1
package/index.d.ts
CHANGED
|
@@ -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';
|
|
@@ -500,7 +500,9 @@ declare class HomedecoratorSettingsOptions {
|
|
|
500
500
|
useAnimations: boolean;
|
|
501
501
|
useThreedScene: boolean;
|
|
502
502
|
showSlowConnectionWarning: boolean;
|
|
503
|
-
|
|
503
|
+
useExternalSave: boolean;
|
|
504
|
+
useExternalOpen: boolean;
|
|
505
|
+
shadowSaveToCloud: boolean;
|
|
504
506
|
floorFadeStart: number;
|
|
505
507
|
floorFadeEnd: number;
|
|
506
508
|
}
|
|
@@ -682,6 +684,7 @@ declare class FloorPlaneItem extends Item {
|
|
|
682
684
|
interface ExternalSave {
|
|
683
685
|
screenShot: string;
|
|
684
686
|
project: string;
|
|
687
|
+
code: string;
|
|
685
688
|
}
|
|
686
689
|
|
|
687
690
|
declare class HomedecoratorAppEventService {
|
|
@@ -704,8 +707,11 @@ declare class HomedecoratorAppEventService {
|
|
|
704
707
|
glbCreated: Subject<string>;
|
|
705
708
|
dirty: Subject<boolean>;
|
|
706
709
|
floorCreated: BehaviorSubject<FloorPlaneItem>;
|
|
707
|
-
externalSave:
|
|
710
|
+
externalSave: Subject<ExternalSave>;
|
|
711
|
+
externalOpen: Subject<void>;
|
|
708
712
|
searchClick: Subject<void>;
|
|
713
|
+
shareProject: Subject<void>;
|
|
714
|
+
configurationFromPresetLoaded: Subject<boolean>;
|
|
709
715
|
static ɵfac: i0.ɵɵFactoryDeclaration<HomedecoratorAppEventService, never>;
|
|
710
716
|
static ɵprov: i0.ɵɵInjectableDeclaration<HomedecoratorAppEventService>;
|
|
711
717
|
}
|
|
@@ -2056,6 +2062,7 @@ interface Metadata {
|
|
|
2056
2062
|
colorable?: boolean;
|
|
2057
2063
|
default180?: boolean;
|
|
2058
2064
|
objectUUID?: string;
|
|
2065
|
+
materialDiff?: any;
|
|
2059
2066
|
conversionGTMSend?: boolean;
|
|
2060
2067
|
conversionSubmittedPrice?: string;
|
|
2061
2068
|
hdecoType?: string;
|
|
@@ -2355,6 +2362,7 @@ declare class Item extends BaseItem {
|
|
|
2355
2362
|
beforeRemoveFromWall(): void;
|
|
2356
2363
|
protected handlePositionFromRawMetadata(): void;
|
|
2357
2364
|
protected handleScaleFromRawMetadata(): void;
|
|
2365
|
+
protected handleMaterialDiffFromRawMetadata(): void;
|
|
2358
2366
|
protected handleElevationFromRawMetadata(): void;
|
|
2359
2367
|
protected handleRotationFromRawMetadata(): void;
|
|
2360
2368
|
private _fakeHandler;
|
|
@@ -2727,8 +2735,8 @@ declare class UtilsService implements OnDestroy {
|
|
|
2727
2735
|
|
|
2728
2736
|
type StateValue = string;
|
|
2729
2737
|
type Action = string;
|
|
2730
|
-
type CreateStateInterface = () => StateValue
|
|
2731
|
-
type ApplyStateInterface = (
|
|
2738
|
+
type CreateStateInterface = () => StateValue | Promise<StateValue>;
|
|
2739
|
+
type ApplyStateInterface = (state: StateValue) => void | Promise<void>;
|
|
2732
2740
|
interface StateApi {
|
|
2733
2741
|
createState: CreateStateInterface;
|
|
2734
2742
|
applyState: ApplyStateInterface;
|
|
@@ -2775,6 +2783,7 @@ declare class AppStateService implements OnDestroy {
|
|
|
2775
2783
|
interface PluginInterface {
|
|
2776
2784
|
getObjects: Function;
|
|
2777
2785
|
loadObjects: Function;
|
|
2786
|
+
saveObjects: Function;
|
|
2778
2787
|
copySceneInstance: Function;
|
|
2779
2788
|
}
|
|
2780
2789
|
|
|
@@ -2842,7 +2851,8 @@ declare class PresetsService implements OnDestroy {
|
|
|
2842
2851
|
ngOnDestroy(): void;
|
|
2843
2852
|
register(plugin: PluginInterface): void;
|
|
2844
2853
|
reopenState(model: string): void;
|
|
2845
|
-
createState(): StateValue
|
|
2854
|
+
createState(save?: boolean): Promise<StateValue>;
|
|
2855
|
+
saveToCloud(asNew?: boolean): Promise<string>;
|
|
2846
2856
|
private _loadSavedRoomFromPreset;
|
|
2847
2857
|
private _loadSavedRoomFromCloud;
|
|
2848
2858
|
private _clear;
|
|
@@ -2906,6 +2916,7 @@ declare class HomedecoratorComponent implements OnInit, OnDestroy {
|
|
|
2906
2916
|
set initCommunication(value: boolean);
|
|
2907
2917
|
get initCommunication(): boolean;
|
|
2908
2918
|
projectToLoad: string;
|
|
2919
|
+
shareButton: boolean;
|
|
2909
2920
|
set settings(value: any);
|
|
2910
2921
|
get settings(): any;
|
|
2911
2922
|
showClass: boolean;
|
|
@@ -2925,14 +2936,15 @@ declare class HomedecoratorComponent implements OnInit, OnDestroy {
|
|
|
2925
2936
|
ngOnDestroy(): void;
|
|
2926
2937
|
registerCustomIcons(): void;
|
|
2927
2938
|
keyup(event: KeyboardEvent): void;
|
|
2928
|
-
handleExternalSave(): void
|
|
2939
|
+
handleExternalSave(code: string): Promise<void>;
|
|
2940
|
+
handleExternalOpen(): Promise<void>;
|
|
2929
2941
|
private _startWithRoom;
|
|
2930
2942
|
private _startWithEmptyRoom;
|
|
2931
2943
|
private _startWithPreset;
|
|
2932
2944
|
private _setCommunication;
|
|
2933
2945
|
private _initConnection;
|
|
2934
2946
|
static ɵfac: i0.ɵɵFactoryDeclaration<HomedecoratorComponent, [null, null, null, null, null, null, null, null, null, { optional: true; skipSelf: true; }, { optional: true; self: true; }, null, null, null, null]>;
|
|
2935
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HomedecoratorComponent, "co-homedecorator", never, { "generalFilterOrders": { "alias": "generalFilterOrders"; "required": false; }; "purchaseFilterOrders": { "alias": "purchaseFilterOrders"; "required": false; }; "logisticsFilterOrders": { "alias": "logisticsFilterOrders"; "required": false; }; "initCommunication": { "alias": "initCommunication"; "required": false; }; "projectToLoad": { "alias": "projectToLoad"; "required": false; }; "settings": { "alias": "settings"; "required": false; }; }, {}, never, never, false, never>;
|
|
2947
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HomedecoratorComponent, "co-homedecorator", never, { "generalFilterOrders": { "alias": "generalFilterOrders"; "required": false; }; "purchaseFilterOrders": { "alias": "purchaseFilterOrders"; "required": false; }; "logisticsFilterOrders": { "alias": "logisticsFilterOrders"; "required": false; }; "initCommunication": { "alias": "initCommunication"; "required": false; }; "projectToLoad": { "alias": "projectToLoad"; "required": false; }; "shareButton": { "alias": "shareButton"; "required": false; }; "settings": { "alias": "settings"; "required": false; }; }, {}, never, never, false, never>;
|
|
2936
2948
|
}
|
|
2937
2949
|
|
|
2938
2950
|
declare class ProgressBarComponent {
|
|
@@ -3173,7 +3185,7 @@ declare class HdLoaderComponent {
|
|
|
3173
3185
|
|
|
3174
3186
|
declare class HdLoaderModule {
|
|
3175
3187
|
static ɵfac: i0.ɵɵFactoryDeclaration<HdLoaderModule, never>;
|
|
3176
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<HdLoaderModule, [typeof HdLoaderComponent], [typeof CoreModule, typeof
|
|
3188
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HdLoaderModule, [typeof HdLoaderComponent], [typeof CoreModule, typeof i3$1.LoaderModule], [typeof HdLoaderComponent]>;
|
|
3177
3189
|
static ɵinj: i0.ɵɵInjectorDeclaration<HdLoaderModule>;
|
|
3178
3190
|
}
|
|
3179
3191
|
|
|
@@ -3931,6 +3943,41 @@ declare class BaseWall extends Mesh implements BluePrintWall {
|
|
|
3931
3943
|
private _updateDirectionVector;
|
|
3932
3944
|
private _positionWall;
|
|
3933
3945
|
private _reCreateWallGeometry;
|
|
3946
|
+
/**
|
|
3947
|
+
* Build the wall solid in wall-local space as a mitred prism. The footprint comes from
|
|
3948
|
+
* _footprintCornersLocal() (symmetric mitre, so adjacent walls meet exactly and never overlap).
|
|
3949
|
+
* Six faces map onto the same material indices as the old BoxGeometry: room-facing (+Z) = front,
|
|
3950
|
+
* far side (-Z) = back, the two ends are the caps (index 0 = start/+X, index 1 = end/-X), plus
|
|
3951
|
+
* top (2) and bottom (3). A degenerate footprint falls back to a straight rectangle.
|
|
3952
|
+
*/
|
|
3953
|
+
private _createWallGeometry;
|
|
3954
|
+
/**
|
|
3955
|
+
* Append one planar quad (a->b->c->d) as two triangles. Winding is chosen so the face normal
|
|
3956
|
+
* points along `outward`, so all faces are correctly oriented for FrontSide rendering regardless
|
|
3957
|
+
* of how the mitred corners fall. UVs span 0..1 (U across, V up) so wall textures tile as before.
|
|
3958
|
+
*/
|
|
3959
|
+
private _pushQuad;
|
|
3960
|
+
private _toLocal;
|
|
3961
|
+
/**
|
|
3962
|
+
* The wall footprint (interior/exterior corners at both ends) in wall-local space, computed
|
|
3963
|
+
* symmetrically so adjacent walls agree on the shared corner. calculateCorners()/GetHalfAngleVector
|
|
3964
|
+
* offset the neighbour's line using THIS wall's interiorSign; when two neighbours are wound in
|
|
3965
|
+
* opposite directions (common after loading a saved project) they then compute slightly different
|
|
3966
|
+
* mitre points, leaving an overlap wedge that z-fights. Here the mitre is the intersection of the
|
|
3967
|
+
* two walls' offset lines, using roomCenter as the shared "which side is inside" reference, so both
|
|
3968
|
+
* neighbours produce the identical point. Free ends (no single neighbour) get a straight cap.
|
|
3969
|
+
*/
|
|
3970
|
+
private _footprintCornersLocal;
|
|
3971
|
+
/** Interior + exterior footprint point at one wall end, mitred with the single connected neighbour. */
|
|
3972
|
+
private _cornerFootprint;
|
|
3973
|
+
/** The single other wall attached to this corner, or null for free ends and >2-wall junctions. */
|
|
3974
|
+
private _neighbourAtCorner;
|
|
3975
|
+
/** Point on the segment p1->corner shifted perpendicular by `off` (>0 toward room, <0 away). */
|
|
3976
|
+
private _offsetPoint;
|
|
3977
|
+
/** Offset the segment p1->p2 sideways by `off` (>0 toward room); returns a point + direction, or null if degenerate. */
|
|
3978
|
+
private _offsetLine;
|
|
3979
|
+
/** Intersection of the two walls' offset lines (side=1 interior, side=-1 exterior), or null if parallel. */
|
|
3980
|
+
private _intersectOffsetLines;
|
|
3934
3981
|
private _disposePreviousGeometries;
|
|
3935
3982
|
}
|
|
3936
3983
|
|
|
@@ -5164,6 +5211,7 @@ declare class Core3dComponent implements OnInit, OnDestroy, PluginInterface {
|
|
|
5164
5211
|
getObjects(): {
|
|
5165
5212
|
view: any;
|
|
5166
5213
|
};
|
|
5214
|
+
saveObjects(): Promise<void>;
|
|
5167
5215
|
copySceneInstance(saveAs: boolean): Promise<void>;
|
|
5168
5216
|
loadObjects(data: any): Promise<any>;
|
|
5169
5217
|
private _viewModeChanged;
|
|
@@ -5497,8 +5545,6 @@ declare abstract class BuildFurnitureBaseService implements OnDestroy {
|
|
|
5497
5545
|
get useNodeIdToLink(): boolean;
|
|
5498
5546
|
get currentCustomFloorGroup(): Item;
|
|
5499
5547
|
set currentCustomFloorGroup(item: Item);
|
|
5500
|
-
get standAlone(): boolean;
|
|
5501
|
-
set standAlone(value: boolean);
|
|
5502
5548
|
get selections(): Selection[];
|
|
5503
5549
|
get scene(): Scene;
|
|
5504
5550
|
defaultPosition: Vector3;
|
|
@@ -5565,7 +5611,7 @@ declare abstract class BuildFurnitureBaseService implements OnDestroy {
|
|
|
5565
5611
|
replaceSelection(selection: Selection, metadata: Metadata): Promise<void>;
|
|
5566
5612
|
selectAnswer(answer: Answer, input: string, metadata: Metadata): Promise<void>;
|
|
5567
5613
|
selectSelectionAsAnswer(chosenOption: SelectorStructure, metadata: Metadata): Promise<void>;
|
|
5568
|
-
createConfigurableItemWithObject(
|
|
5614
|
+
createConfigurableItemWithObject(metadata: Metadata, object: Object3D): Item;
|
|
5569
5615
|
createFloorWithMaterial(instanceId: string, metadata: Metadata, material: Material): CustomFloorGroupResult;
|
|
5570
5616
|
replaceCurrentItem(newItem: Item, metadata: Metadata, animate?: boolean): Promise<Item>;
|
|
5571
5617
|
protected prepareInstanceForBuild(shouldCopyInstance: boolean, loadFromProject: boolean, looseOriginalConfiguration: boolean, result: CustomFloorGroupResult): Promise<CustomFloorGroupResult>;
|
|
@@ -6068,7 +6114,7 @@ declare class ColorPickerDialogModule {
|
|
|
6068
6114
|
|
|
6069
6115
|
declare class DevelopmentModule {
|
|
6070
6116
|
static ɵfac: i0.ɵɵFactoryDeclaration<DevelopmentModule, never>;
|
|
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
|
|
6117
|
+
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]>;
|
|
6072
6118
|
static ɵinj: i0.ɵɵInjectorDeclaration<DevelopmentModule>;
|
|
6073
6119
|
}
|
|
6074
6120
|
|
|
@@ -6088,7 +6134,7 @@ declare class ToolbarIconComponent {
|
|
|
6088
6134
|
|
|
6089
6135
|
declare class ToolbarIconModule {
|
|
6090
6136
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarIconModule, never>;
|
|
6091
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ToolbarIconModule, [typeof ToolbarIconComponent], [typeof i3.CommonModule, typeof i7.MatIconModule, typeof i4.MatButtonModule, typeof i8.MatTooltipModule, typeof
|
|
6137
|
+
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]>;
|
|
6092
6138
|
static ɵinj: i0.ɵɵInjectorDeclaration<ToolbarIconModule>;
|
|
6093
6139
|
}
|
|
6094
6140
|
|
|
@@ -6329,9 +6375,32 @@ declare class RenderProgressComponent implements OnDestroy {
|
|
|
6329
6375
|
static ɵcmp: i0.ɵɵComponentDeclaration<RenderProgressComponent, "rp-render-progress", never, {}, {}, never, never, false, never>;
|
|
6330
6376
|
}
|
|
6331
6377
|
|
|
6378
|
+
declare class InputSliderComponent {
|
|
6379
|
+
iconService: HomedecoratorIconCacheService;
|
|
6380
|
+
readonly icons: typeof IconEnum;
|
|
6381
|
+
label: string;
|
|
6382
|
+
min: number;
|
|
6383
|
+
max: number;
|
|
6384
|
+
step: number;
|
|
6385
|
+
value: number;
|
|
6386
|
+
valueChange: EventEmitter<number>;
|
|
6387
|
+
constructor(iconService: HomedecoratorIconCacheService);
|
|
6388
|
+
onValueChange(newValue: number | string): void;
|
|
6389
|
+
increment(): void;
|
|
6390
|
+
decrement(): void;
|
|
6391
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputSliderComponent, never>;
|
|
6392
|
+
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>;
|
|
6393
|
+
}
|
|
6394
|
+
|
|
6395
|
+
declare class InputSliderModule {
|
|
6396
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputSliderModule, never>;
|
|
6397
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InputSliderModule, [typeof InputSliderComponent], [typeof i6.FormsModule, typeof i3$1.IconModule, typeof i3$1.InputTextModule, typeof i3$1.InputNumberPickerModule], [typeof InputSliderComponent]>;
|
|
6398
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<InputSliderModule>;
|
|
6399
|
+
}
|
|
6400
|
+
|
|
6332
6401
|
declare class RenderModule {
|
|
6333
6402
|
static ɵfac: i0.ɵɵFactoryDeclaration<RenderModule, never>;
|
|
6334
|
-
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
|
|
6403
|
+
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]>;
|
|
6335
6404
|
static ɵinj: i0.ɵɵInjectorDeclaration<RenderModule>;
|
|
6336
6405
|
}
|
|
6337
6406
|
|
|
@@ -6349,13 +6418,13 @@ declare class SliderInputComponent {
|
|
|
6349
6418
|
|
|
6350
6419
|
declare class SliderInputModule {
|
|
6351
6420
|
static ɵfac: i0.ɵɵFactoryDeclaration<SliderInputModule, never>;
|
|
6352
|
-
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$
|
|
6421
|
+
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]>;
|
|
6353
6422
|
static ɵinj: i0.ɵɵInjectorDeclaration<SliderInputModule>;
|
|
6354
6423
|
}
|
|
6355
6424
|
|
|
6356
6425
|
declare class Core3dModule {
|
|
6357
6426
|
static ɵfac: i0.ɵɵFactoryDeclaration<Core3dModule, never>;
|
|
6358
|
-
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
|
|
6427
|
+
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]>;
|
|
6359
6428
|
static ɵinj: i0.ɵɵInjectorDeclaration<Core3dModule>;
|
|
6360
6429
|
}
|
|
6361
6430
|
|
|
@@ -6984,6 +7053,7 @@ declare class RoomPlannerComponent implements OnInit, OnDestroy, PluginInterface
|
|
|
6984
7053
|
floorplan: BluePrintFloorplan;
|
|
6985
7054
|
items: {}[];
|
|
6986
7055
|
};
|
|
7056
|
+
saveObjects(): Promise<void>;
|
|
6987
7057
|
hasCustomObjects(): boolean;
|
|
6988
7058
|
onObjectLibraryClick(object: ModelInterface): void;
|
|
6989
7059
|
onGroupClick(): void;
|
|
@@ -7814,7 +7884,7 @@ declare class RightContextMenuComponent implements OnInit, OnDestroy, OnChanges
|
|
|
7814
7884
|
|
|
7815
7885
|
declare class ContextMenuModule {
|
|
7816
7886
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuModule, never>;
|
|
7817
|
-
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
|
|
7887
|
+
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]>;
|
|
7818
7888
|
static ɵinj: i0.ɵɵInjectorDeclaration<ContextMenuModule>;
|
|
7819
7889
|
}
|
|
7820
7890
|
|
|
@@ -7854,7 +7924,7 @@ declare class ButtonElevationComponent implements OnDestroy {
|
|
|
7854
7924
|
|
|
7855
7925
|
declare class ButtonElevationModule {
|
|
7856
7926
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonElevationModule, never>;
|
|
7857
|
-
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
|
|
7927
|
+
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]>;
|
|
7858
7928
|
static ɵinj: i0.ɵɵInjectorDeclaration<ButtonElevationModule>;
|
|
7859
7929
|
}
|
|
7860
7930
|
|
|
@@ -7907,7 +7977,7 @@ declare class MaterialDialogComponent implements OnInit, OnDestroy {
|
|
|
7907
7977
|
|
|
7908
7978
|
declare class MaterialDialogModule {
|
|
7909
7979
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialDialogModule, never>;
|
|
7910
|
-
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
|
|
7980
|
+
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>;
|
|
7911
7981
|
static ɵinj: i0.ɵɵInjectorDeclaration<MaterialDialogModule>;
|
|
7912
7982
|
}
|
|
7913
7983
|
|
|
@@ -7928,7 +7998,7 @@ declare class RgbColorPickerModule {
|
|
|
7928
7998
|
|
|
7929
7999
|
declare class RoomPlannerModule {
|
|
7930
8000
|
static ɵfac: i0.ɵɵFactoryDeclaration<RoomPlannerModule, never>;
|
|
7931
|
-
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$
|
|
8001
|
+
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]>;
|
|
7932
8002
|
static ɵinj: i0.ɵɵInjectorDeclaration<RoomPlannerModule>;
|
|
7933
8003
|
}
|
|
7934
8004
|
|
|
@@ -7995,6 +8065,7 @@ declare class FurnitureManagerComponent implements OnInit, OnDestroy, PluginInte
|
|
|
7995
8065
|
loadNonIONEObjects(objects: any): Promise<void>;
|
|
7996
8066
|
copySceneInstance(saveAs: boolean): Promise<void>;
|
|
7997
8067
|
getObjects(): any;
|
|
8068
|
+
saveObjects(): Promise<void>;
|
|
7998
8069
|
hasCustomFurniture(): boolean;
|
|
7999
8070
|
private _showWarning;
|
|
8000
8071
|
private _isNonIONEObject;
|
|
@@ -8140,6 +8211,7 @@ declare class ThreedselectorComponent implements OnInit, OnDestroy {
|
|
|
8140
8211
|
showProgressText: boolean;
|
|
8141
8212
|
showLoaderBar: boolean;
|
|
8142
8213
|
showFullConfiguration: boolean;
|
|
8214
|
+
currentMetadata: Metadata;
|
|
8143
8215
|
configuratorSettings: any;
|
|
8144
8216
|
configuratorSku: string;
|
|
8145
8217
|
configuratorInstanceId: string;
|
|
@@ -8363,7 +8435,7 @@ declare class ModelDialogFurnitureListComponent implements OnInit {
|
|
|
8363
8435
|
|
|
8364
8436
|
declare class ModelDialogModule {
|
|
8365
8437
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelDialogModule, never>;
|
|
8366
|
-
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
|
|
8438
|
+
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>;
|
|
8367
8439
|
static ɵinj: i0.ɵɵInjectorDeclaration<ModelDialogModule>;
|
|
8368
8440
|
}
|
|
8369
8441
|
|
|
@@ -8432,7 +8504,7 @@ declare class CameraSettingsDialogModule {
|
|
|
8432
8504
|
|
|
8433
8505
|
declare class ThreedselectorModule {
|
|
8434
8506
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThreedselectorModule, never>;
|
|
8435
|
-
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
|
|
8507
|
+
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]>;
|
|
8436
8508
|
static ɵinj: i0.ɵɵInjectorDeclaration<ThreedselectorModule>;
|
|
8437
8509
|
}
|
|
8438
8510
|
|
|
@@ -8639,7 +8711,9 @@ declare class ToolbarComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
|
8639
8711
|
private _adapterService;
|
|
8640
8712
|
private _connectionHealthService;
|
|
8641
8713
|
private _homedecoratorEventService;
|
|
8642
|
-
|
|
8714
|
+
shareButton: boolean;
|
|
8715
|
+
externalSave: EventEmitter<string>;
|
|
8716
|
+
externalOpen: EventEmitter<void>;
|
|
8643
8717
|
readonly toastType: typeof ToastType;
|
|
8644
8718
|
readonly messageType: typeof MessageType;
|
|
8645
8719
|
readonly icons: typeof IconEnum;
|
|
@@ -8657,7 +8731,9 @@ declare class ToolbarComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
|
8657
8731
|
interval: any;
|
|
8658
8732
|
tooltipDisabled: boolean;
|
|
8659
8733
|
badgeDisabled: boolean;
|
|
8660
|
-
|
|
8734
|
+
useExternalSave: boolean;
|
|
8735
|
+
useExternalOpen: boolean;
|
|
8736
|
+
shadowSaveToCloud: boolean;
|
|
8661
8737
|
enableSlowConnectionWarning: boolean;
|
|
8662
8738
|
connectionStatus: string;
|
|
8663
8739
|
private _subs;
|
|
@@ -8672,9 +8748,11 @@ declare class ToolbarComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
|
8672
8748
|
clickCloseLeftSidebar(): void;
|
|
8673
8749
|
newRoom(): void;
|
|
8674
8750
|
animateModel(element: Item): void;
|
|
8675
|
-
|
|
8676
|
-
|
|
8751
|
+
handleSave(saveOnOpen?: boolean): void;
|
|
8752
|
+
handleExternalSave(): Promise<void>;
|
|
8753
|
+
openSaveDialog(saveOnOpen?: boolean): Promise<void>;
|
|
8677
8754
|
openOpenDialog(): void;
|
|
8755
|
+
openShareDialog(): void;
|
|
8678
8756
|
handleSearchButtonClick(): void;
|
|
8679
8757
|
loadRoom(): Promise<void>;
|
|
8680
8758
|
loadResizableRoom(): Promise<void>;
|
|
@@ -8688,7 +8766,6 @@ declare class ToolbarComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
|
8688
8766
|
saveNotification(): void;
|
|
8689
8767
|
openDrawDiagram(file: any): void;
|
|
8690
8768
|
openCroppingDiagram(file: any): void;
|
|
8691
|
-
openModelPreview(file: any): void;
|
|
8692
8769
|
showRenderError(data: ErrorDialogData): void;
|
|
8693
8770
|
testRender(): void;
|
|
8694
8771
|
openFaq(url: string): Window;
|
|
@@ -8702,7 +8779,7 @@ declare class ToolbarComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
|
8702
8779
|
private _registerToolbarIcon;
|
|
8703
8780
|
private _closeLeftSidebar;
|
|
8704
8781
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarComponent, never>;
|
|
8705
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarComponent, "rp-toolbar", never, {}, { "externalSave": "externalSave"; }, never, never, false, never>;
|
|
8782
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarComponent, "rp-toolbar", never, { "shareButton": { "alias": "shareButton"; "required": false; }; }, { "externalSave": "externalSave"; "externalOpen": "externalOpen"; }, never, never, false, never>;
|
|
8706
8783
|
}
|
|
8707
8784
|
|
|
8708
8785
|
interface SavedDialogData {
|
|
@@ -9009,7 +9086,7 @@ declare class ThreedInPhotoModule {
|
|
|
9009
9086
|
|
|
9010
9087
|
declare class ToolbarModule {
|
|
9011
9088
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarModule, never>;
|
|
9012
|
-
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$
|
|
9089
|
+
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]>;
|
|
9013
9090
|
static ɵinj: i0.ɵɵInjectorDeclaration<ToolbarModule>;
|
|
9014
9091
|
}
|
|
9015
9092
|
|
|
@@ -9218,13 +9295,13 @@ declare class LoaderModule {
|
|
|
9218
9295
|
|
|
9219
9296
|
declare class ModelUploaderModule {
|
|
9220
9297
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelUploaderModule, never>;
|
|
9221
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ModelUploaderModule, [typeof ModelUploaderComponent, typeof ModelPreviewComponent], [typeof i3.CommonModule, typeof CoreModule, typeof i7.MatIconModule, typeof i4.MatButtonModule, typeof
|
|
9298
|
+
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]>;
|
|
9222
9299
|
static ɵinj: i0.ɵɵInjectorDeclaration<ModelUploaderModule>;
|
|
9223
9300
|
}
|
|
9224
9301
|
|
|
9225
9302
|
declare class ProductCatalogModule {
|
|
9226
9303
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProductCatalogModule, never>;
|
|
9227
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ProductCatalogModule, [typeof ProductCatalogComponent], [typeof i3.CommonModule, typeof CoreModule, typeof i7.MatIconModule, typeof i4.MatButtonModule, typeof
|
|
9304
|
+
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]>;
|
|
9228
9305
|
static ɵinj: i0.ɵɵInjectorDeclaration<ProductCatalogModule>;
|
|
9229
9306
|
}
|
|
9230
9307
|
|
|
@@ -9285,7 +9362,7 @@ declare class LightboxComponent {
|
|
|
9285
9362
|
|
|
9286
9363
|
declare class LightboxModule {
|
|
9287
9364
|
static ɵfac: i0.ɵɵFactoryDeclaration<LightboxModule, never>;
|
|
9288
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LightboxModule, [typeof LightboxComponent], [typeof i3.CommonModule, typeof
|
|
9365
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LightboxModule, [typeof LightboxComponent], [typeof i3.CommonModule, typeof i3$1.IconModule], [typeof LightboxComponent]>;
|
|
9289
9366
|
static ɵinj: i0.ɵɵInjectorDeclaration<LightboxModule>;
|
|
9290
9367
|
}
|
|
9291
9368
|
|
|
@@ -9309,7 +9386,7 @@ declare class DialogModule {
|
|
|
9309
9386
|
|
|
9310
9387
|
declare class HomedecoratorModule {
|
|
9311
9388
|
static ɵfac: i0.ɵɵFactoryDeclaration<HomedecoratorModule, never>;
|
|
9312
|
-
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
|
|
9389
|
+
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]>;
|
|
9313
9390
|
static ɵinj: i0.ɵɵInjectorDeclaration<HomedecoratorModule>;
|
|
9314
9391
|
}
|
|
9315
9392
|
|
|
@@ -9341,7 +9418,6 @@ declare class MaterialBuilderComponent implements OnInit, OnDestroy {
|
|
|
9341
9418
|
controllerService: HomedecoratorConnectorService, appState: AppStateService, settingsService: HomedecoratorSettingsService, presetsService: PresetsService, _bluePrintService: BluePrintService, _viewModeService: ViewModeService, _homedecoratorService: HomedecoratorService, _parentEventService: HomedecoratorAppEventService, _ownEventService: HomedecoratorAppEventService, _integrationService: IntegrationService, _sceneService: SceneService, _webWorkerService: WebWorkerService);
|
|
9342
9419
|
ngOnInit(): Promise<void>;
|
|
9343
9420
|
ngOnDestroy(): void;
|
|
9344
|
-
handleExternalSave(): void;
|
|
9345
9421
|
private _initConnection;
|
|
9346
9422
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialBuilderComponent, [null, null, null, null, null, null, null, null, { optional: true; skipSelf: true; }, { optional: true; self: true; }, null, null, null]>;
|
|
9347
9423
|
static ɵcmp: i0.ɵɵComponentDeclaration<MaterialBuilderComponent, "co-material-builder", never, { "settings": { "alias": "settings"; "required": false; }; "materialPreview": { "alias": "materialPreview"; "required": false; }; "materialPreviewUpdate": { "alias": "materialPreviewUpdate"; "required": false; }; }, {}, never, never, false, never>;
|
package/package.json
CHANGED
package/style/_variables.scss
CHANGED
|
@@ -2,6 +2,6 @@ $hd-color-primary: #171721 !default;
|
|
|
2
2
|
$add-to-cart-button-color: #da9803 !default;
|
|
3
3
|
$hd-color-main: #da9803 !default;
|
|
4
4
|
$hd-color-main-accent: #da980380 !default;
|
|
5
|
-
$hd-color-dialog-background: #
|
|
5
|
+
$hd-color-dialog-background: #FAF8F7 !default;
|
|
6
6
|
|
|
7
7
|
$hd-color-active-dark: #212437 !default;
|
package/style/material.scss
CHANGED
|
@@ -58,9 +58,6 @@ $mat-font-family: mat.m2-define-typography-config($font-family: "Montserrat, Ari
|
|
|
58
58
|
padding: 0 !important;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
//.mat-mdc-dialog-surface {
|
|
62
|
-
// padding: 24px;
|
|
63
|
-
//}
|
|
64
61
|
.mat-mdc-option {
|
|
65
62
|
.mdc-list-item__primary-text {
|
|
66
63
|
color: #000000 !important;
|
package/style/styles.scss
CHANGED
|
@@ -157,13 +157,20 @@ canvas {
|
|
|
157
157
|
.part-material {
|
|
158
158
|
margin-top: 20px;
|
|
159
159
|
flex-basis: 100%;
|
|
160
|
-
overflow:
|
|
160
|
+
overflow-x: hidden;
|
|
161
|
+
overflow-y: auto;
|
|
161
162
|
.material-color {
|
|
162
163
|
display: block;
|
|
163
164
|
height: 40px;
|
|
164
165
|
}
|
|
165
166
|
}
|
|
166
167
|
}
|
|
168
|
+
#material_color_dialog {
|
|
169
|
+
width: 800px;
|
|
170
|
+
.mat-mdc-dialog-surface {
|
|
171
|
+
padding: 24px;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
167
174
|
|
|
168
175
|
#upload_model_dialog {
|
|
169
176
|
width: 800px;
|