@inweb/client 25.2.8 → 25.3.0
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/client.js +5 -2
- package/dist/client.js.map +1 -1
- package/dist/client.min.js +1 -1
- package/dist/client.module.js +5 -2
- package/dist/client.module.js.map +1 -1
- package/package.json +1 -1
- package/src/Viewer/Options.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inweb/client",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.3.0",
|
|
4
4
|
"description": "Client.js is a library for implementing BIM Project management applications.",
|
|
5
5
|
"homepage": "https://cloud.opendesign.com/docs/index.html",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
package/src/Viewer/Options.ts
CHANGED
|
@@ -371,6 +371,11 @@ export class Options {
|
|
|
371
371
|
|
|
372
372
|
set enableStreamingMode(value: boolean) {
|
|
373
373
|
this._data.enableStreamingMode = value;
|
|
374
|
+
|
|
375
|
+
if (this._data.enableStreamingMode) {
|
|
376
|
+
this._data.enablePartialMode = false;
|
|
377
|
+
}
|
|
378
|
+
|
|
374
379
|
this.notifierChangeEvent();
|
|
375
380
|
}
|
|
376
381
|
|