iflow-engine-base 3.7.11 → 3.7.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/dist/bim-engine-sdk.es.js +2725 -2572
- package/dist/bim-engine-sdk.es.js.map +1 -1
- package/dist/bim-engine-sdk.umd.js +58 -58
- package/dist/bim-engine-sdk.umd.js.map +1 -1
- package/dist/index.d.ts +10 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2098,6 +2098,9 @@ declare class FabricDraw {
|
|
|
2098
2098
|
private syncStyleFromSelection;
|
|
2099
2099
|
private readStyleFromObject;
|
|
2100
2100
|
private isTextObject;
|
|
2101
|
+
private createTextStyle;
|
|
2102
|
+
private getTextOutlineColor;
|
|
2103
|
+
private isWhiteTextColor;
|
|
2101
2104
|
private isInputElement;
|
|
2102
2105
|
private applyCanvasInteractive;
|
|
2103
2106
|
private parseNumber;
|
|
@@ -2518,6 +2521,9 @@ declare class InteractionModule {
|
|
|
2518
2521
|
private isBoxSelectionModifierDown;
|
|
2519
2522
|
private isBoxDeselectMode;
|
|
2520
2523
|
private collectModelsInSelection;
|
|
2524
|
+
private getIgnoredSelectionIdsByUrl;
|
|
2525
|
+
private isBoxVisibleUnderClipping;
|
|
2526
|
+
private getActiveClippingPlanes;
|
|
2521
2527
|
private applyBoxSelection;
|
|
2522
2528
|
private applyBoxDeselection;
|
|
2523
2529
|
private excludeHighlightedModels;
|
|
@@ -3151,6 +3157,9 @@ declare class ModelToolModule {
|
|
|
3151
3157
|
split_merge_model(model: any): void;
|
|
3152
3158
|
un_split_merge_model(model: any): void;
|
|
3153
3159
|
private shouldKeepSplitState;
|
|
3160
|
+
private areAllGroupsHidden;
|
|
3161
|
+
private getEngineModelByUrl;
|
|
3162
|
+
private appendUniqueIds;
|
|
3154
3163
|
private restoreSplitModelsOnIdle;
|
|
3155
3164
|
getSceneModel(index: number): any;
|
|
3156
3165
|
updateMaterial(): void;
|
|
@@ -3158,7 +3167,7 @@ declare class ModelToolModule {
|
|
|
3158
3167
|
unhighlightModel(models: any): void;
|
|
3159
3168
|
unhighlightAllModels(isClear?: boolean): void;
|
|
3160
3169
|
hideModel(models: any): void;
|
|
3161
|
-
showModel(models: any): void;
|
|
3170
|
+
showModel(models: any, skipStateCleanup?: boolean): void;
|
|
3162
3171
|
isolateModel(models: any): void;
|
|
3163
3172
|
translucentOtherModel(models: any): void;
|
|
3164
3173
|
setModelColor(model: any, color: string): void;
|