@colijnit/homedecorator 261.20.8 → 261.20.10
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/index.d.ts
CHANGED
|
@@ -4869,7 +4869,7 @@ declare class SceneEventService implements OnDestroy {
|
|
|
4869
4869
|
private _eventService;
|
|
4870
4870
|
private _wallService;
|
|
4871
4871
|
private _configurationService;
|
|
4872
|
-
readonly intersectOffsetForWalls
|
|
4872
|
+
readonly intersectOffsetForWalls: number;
|
|
4873
4873
|
readonly longTouchDuration = 600;
|
|
4874
4874
|
rotateNoDrag: boolean;
|
|
4875
4875
|
private _element;
|
|
@@ -4929,6 +4929,7 @@ declare class SceneEventService implements OnDestroy {
|
|
|
4929
4929
|
private _clearIntersectedObject;
|
|
4930
4930
|
private _toggleRotationHudIntersection;
|
|
4931
4931
|
private _updateIntersections;
|
|
4932
|
+
private _behindWall;
|
|
4932
4933
|
private _itemIntersection;
|
|
4933
4934
|
private _getIntersections;
|
|
4934
4935
|
private _setMousePositionFromTouchEvent;
|
|
@@ -6733,7 +6734,7 @@ declare class FloorplannerComponent implements AfterViewInit, OnDestroy {
|
|
|
6733
6734
|
zoomReset(): void;
|
|
6734
6735
|
selectCorner(corner: any): void;
|
|
6735
6736
|
setSelectedMode(mode: FloorplannerMode): void;
|
|
6736
|
-
|
|
6737
|
+
setDefaultMode(): void;
|
|
6737
6738
|
handleContextMenu(event: MouseEvent): void;
|
|
6738
6739
|
handleMouseDown(event: MouseEvent): void;
|
|
6739
6740
|
handleTouchStart(event: TouchEvent): void;
|
|
@@ -7553,7 +7554,7 @@ declare class AppearanceSectionComponent implements OnInit, OnChanges {
|
|
|
7553
7554
|
hideColorTab: boolean;
|
|
7554
7555
|
hidePhotoTab: boolean;
|
|
7555
7556
|
showGlassOption: boolean;
|
|
7556
|
-
texturePlane:
|
|
7557
|
+
texturePlane: Texture;
|
|
7557
7558
|
plainTexture: any;
|
|
7558
7559
|
color: number;
|
|
7559
7560
|
textureWidth: number;
|
|
@@ -8230,6 +8231,7 @@ declare class ThreedselectorComponent implements OnInit, OnDestroy {
|
|
|
8230
8231
|
private _loadedFromPreset;
|
|
8231
8232
|
private _loadedFromProject;
|
|
8232
8233
|
private _loadedShouldCopyInstance;
|
|
8234
|
+
private _userActionNeeded;
|
|
8233
8235
|
constructor(screenSizeService: ScreenSizeAnalysisService, _dialog: MatDialog, _appService: HomedecoratorAppService, _iOne: HomedecoratorConnectorService, _messageBus: MessageBusService, _loadFurnitureService: SwitchLoadFurnitureService, _buildFurnitureService: SwitchBuildFurnitureService, _toastService: ToastService, _messageService: MessageBusService, _sceneService: SceneService, _dialogService: DialogService, _cameraService: CameraService, _presetsService: PresetsService, _itemService: ItemService, _settingsService: HomedecoratorSettingsService, _appEventService: HomedecoratorAppEventService, _bluePrintService: BluePrintService, _wallService: WallService, _floorService: FloorService, _iconCacheService: HomedecoratorIconCacheService, _googleTagManager: GoogleTagManagerService, _appStateService: AppStateService, _progressService: ProgressService, _resizeService: ResizeService, _connectorAdapterService: HomedecoratorConnectorAdapterService, _lightPresetService: LightPresetsService, _variationService: VariationService, _configuringService: ConfiguringService, _configuratorEventService: ConfiguratorEventService, _changeDetector: ChangeDetectorRef);
|
|
8234
8236
|
ngOnInit(): void;
|
|
8235
8237
|
ngOnDestroy(): void;
|
|
@@ -8253,8 +8255,11 @@ declare class ThreedselectorComponent implements OnInit, OnDestroy {
|
|
|
8253
8255
|
showConfiguratorChange(show: boolean): void;
|
|
8254
8256
|
loadFurnitureFromSku(position: Vector3, sku: string, settings?: HomedecoratorExternalSettingsInterface): Promise<CustomFloorGroupResult>;
|
|
8255
8257
|
configureFurniture(object: Item | ItemGroup): Promise<void>;
|
|
8258
|
+
handleLoadIOneFurnitureIntoSceneByPreset(sku: string, instanceId: string, settings: Options): Promise<void>;
|
|
8259
|
+
configureFurnitureFromPreset(sku: string, instanceId: string, settings?: Options): Promise<CustomFloorGroupResult>;
|
|
8256
8260
|
private _initConfigurator;
|
|
8257
8261
|
private _prepareSettings;
|
|
8262
|
+
private _shouldResetConfigurator;
|
|
8258
8263
|
private _resetConfigurator;
|
|
8259
8264
|
private _waitForBuildToFinish;
|
|
8260
8265
|
private _setSourceSettings;
|