@inweb/client 25.2.8 → 25.2.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/client.js +6 -3
- package/dist/client.js.map +1 -1
- package/dist/client.min.js +1 -1
- package/dist/client.module.js +6 -3
- package/dist/client.module.js.map +1 -1
- package/package.json +2 -2
- package/src/Viewer/Options.ts +5 -0
package/dist/client.js
CHANGED
|
@@ -1726,6 +1726,9 @@
|
|
|
1726
1726
|
}
|
|
1727
1727
|
set enableStreamingMode(value) {
|
|
1728
1728
|
this._data.enableStreamingMode = value;
|
|
1729
|
+
if (this._data.enableStreamingMode) {
|
|
1730
|
+
this._data.enablePartialMode = false;
|
|
1731
|
+
}
|
|
1729
1732
|
this.notifierChangeEvent();
|
|
1730
1733
|
}
|
|
1731
1734
|
get enablePartialMode() {
|
|
@@ -3922,7 +3925,7 @@
|
|
|
3922
3925
|
.then((data) => ({
|
|
3923
3926
|
...data,
|
|
3924
3927
|
server: data.version,
|
|
3925
|
-
client: "25.2.
|
|
3928
|
+
client: "25.2.12",
|
|
3926
3929
|
}));
|
|
3927
3930
|
}
|
|
3928
3931
|
/**
|
|
@@ -20362,7 +20365,7 @@
|
|
|
20362
20365
|
* library instance or leave it blank to use the default URL defined by `Client.js`.
|
|
20363
20366
|
*/
|
|
20364
20367
|
configure(params) {
|
|
20365
|
-
this._visualizeJsUrl = params.visualizeJsUrl || "https://opencloud.azureedge.net/libs/visualizejs/
|
|
20368
|
+
this._visualizeJsUrl = params.visualizeJsUrl || "https://opencloud.azureedge.net/libs/visualizejs/25.2/Visualize.js";
|
|
20366
20369
|
return this;
|
|
20367
20370
|
}
|
|
20368
20371
|
/**
|
|
@@ -21515,7 +21518,7 @@
|
|
|
21515
21518
|
commands("VisualizeJS").registerCommand("zoomToSelected", zoomToSelected);
|
|
21516
21519
|
|
|
21517
21520
|
///////////////////////////////////////////////////////////////////////////////
|
|
21518
|
-
const version = "25.2.
|
|
21521
|
+
const version = "25.2.12";
|
|
21519
21522
|
|
|
21520
21523
|
exports.Assembly = Assembly;
|
|
21521
21524
|
exports.CANVAS_EVENTS = CANVAS_EVENTS;
|