iflow-engine-base 3.7.4 → 3.7.6

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/dist/index.d.ts CHANGED
@@ -1983,6 +1983,7 @@ declare class FabricDraw {
1983
1983
  private readonly toolbar;
1984
1984
  private isActive;
1985
1985
  private isVisible;
1986
+ private isViewLocked;
1986
1987
  private isDistanceMeasureMode;
1987
1988
  private isMeasurePanelExpanded;
1988
1989
  private drawType;
@@ -2099,6 +2100,7 @@ declare class FabricDraw {
2099
2100
  private disActiveMeasureTools;
2100
2101
  private activeMeasureTool;
2101
2102
  private updateOverlayPointerEvents;
2103
+ private toggleViewLock;
2102
2104
  private handleCancelClick;
2103
2105
  private handleCloseClick;
2104
2106
  private handleConfirmClick;
@@ -2500,6 +2502,7 @@ declare class InteractionModule {
2500
2502
  private cancelBoxSelection;
2501
2503
  private clearHoverTimeout;
2502
2504
  private clearHoverFeedback;
2505
+ private suppressClickForCurrentTick;
2503
2506
  private hasSelectionBox;
2504
2507
  private getSelectionRect;
2505
2508
  private isContainMode;
@@ -2793,8 +2796,15 @@ declare interface LevelLocationResult {
2793
2796
 
2794
2797
  declare class LightModule {
2795
2798
  private engine;
2799
+ private lastShadowHalfSize;
2800
+ private lastShadowFar;
2796
2801
  constructor(engine: any);
2797
2802
  init(): void;
2803
+ updateShadowCameraRange(camera: THREE.Camera | null): void;
2804
+ private getShadowDirectionalLight;
2805
+ private getSceneBoundingBox;
2806
+ private getCameraHalfExtent;
2807
+ private resolveCameraTarget;
2798
2808
  }
2799
2809
 
2800
2810
  /**
@@ -2953,6 +2963,7 @@ declare class Measure {
2953
2963
  constructor(engine: any);
2954
2964
  active(): void;
2955
2965
  disActive(): void;
2966
+ quitDraw(): void;
2956
2967
  clearAllPoints(): void;
2957
2968
  clearAll(): void;
2958
2969
  saveSetting(setting: any): void;
@@ -3023,8 +3034,14 @@ declare class MiniMap {
3023
3034
  private centerX;
3024
3035
  private centerZ;
3025
3036
  private dragMode;
3037
+ private readonly moveHandleRadius;
3038
+ private readonly rotateHandleRadius;
3026
3039
  private lastMouseX;
3027
3040
  private lastMouseY;
3041
+ private dragPointerOffsetX;
3042
+ private dragPointerOffsetY;
3043
+ private centerInitialized;
3044
+ private isMouseInsideMiniMap;
3028
3045
  private readonly loadingCompletedEventName;
3029
3046
  private readonly onLoadingCompleted;
3030
3047
  constructor(engine: any);
@@ -3046,13 +3063,17 @@ declare class MiniMap {
3046
3063
  private buildLevelSignature;
3047
3064
  private worldToPixel;
3048
3065
  private pixelToWorld;
3066
+ private isRoamingActive;
3049
3067
  private setupEvents;
3050
3068
  private readonly onWheel;
3051
3069
  private readonly onMouseDown;
3052
3070
  private readonly onMouseMove;
3053
3071
  private readonly onMouseUp;
3054
- private handleTeleport;
3055
- private handleRotate;
3072
+ private readonly onMouseEnter;
3073
+ private readonly onMouseLeave;
3074
+ private handleMoveControlByDrag;
3075
+ private handlePanMapByDrag;
3076
+ private handleRotateByDrag;
3056
3077
  private drawOverlay;
3057
3078
  show(): void;
3058
3079
  hide(): void;
@@ -3132,6 +3153,7 @@ declare class ModelToolModule {
3132
3153
  restoreAllModelsColor(): void;
3133
3154
  translucentModel(models: any[]): void;
3134
3155
  unTranslucentModel(): void;
3156
+ hideAllModels(): void;
3135
3157
  showAllModels(): void;
3136
3158
  batchSelectSameLevelTypeModel(models: any[]): void;
3137
3159
  batchSelectSameLevelModel(models: any[]): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iflow-engine-base",
3
- "version": "3.7.4",
3
+ "version": "3.7.6",
4
4
  "description": "BIM Engine SDK for Vue2, Vue3, React and HTML",
5
5
  "main": "./dist/bim-engine-sdk.umd.js",
6
6
  "module": "./dist/bim-engine-sdk.es.js",