@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.module.js
CHANGED
|
@@ -1024,6 +1024,9 @@ class Options {
|
|
|
1024
1024
|
}
|
|
1025
1025
|
set enableStreamingMode(value) {
|
|
1026
1026
|
this._data.enableStreamingMode = value;
|
|
1027
|
+
if (this._data.enableStreamingMode) {
|
|
1028
|
+
this._data.enablePartialMode = false;
|
|
1029
|
+
}
|
|
1027
1030
|
this.notifierChangeEvent();
|
|
1028
1031
|
}
|
|
1029
1032
|
get enablePartialMode() {
|
|
@@ -2077,7 +2080,7 @@ class Client extends EventEmitter2 {
|
|
|
2077
2080
|
return this._httpClient.get("/version").then((response => response.json())).then((data => ({
|
|
2078
2081
|
...data,
|
|
2079
2082
|
server: data.version,
|
|
2080
|
-
client: "25.2.
|
|
2083
|
+
client: "25.2.12"
|
|
2081
2084
|
})));
|
|
2082
2085
|
}
|
|
2083
2086
|
registerUser(email, password, userName) {
|
|
@@ -6640,7 +6643,7 @@ class Viewer extends EventEmitter2 {
|
|
|
6640
6643
|
return this._visualizeJsUrl;
|
|
6641
6644
|
}
|
|
6642
6645
|
configure(params) {
|
|
6643
|
-
this._visualizeJsUrl = params.visualizeJsUrl || "https://opencloud.azureedge.net/libs/visualizejs/
|
|
6646
|
+
this._visualizeJsUrl = params.visualizeJsUrl || "https://opencloud.azureedge.net/libs/visualizejs/25.2/Visualize.js";
|
|
6644
6647
|
return this;
|
|
6645
6648
|
}
|
|
6646
6649
|
async initialize(canvas, onProgress) {
|
|
@@ -7624,7 +7627,7 @@ function zoomToSelected(viewer) {
|
|
|
7624
7627
|
|
|
7625
7628
|
commands("VisualizeJS").registerCommand("zoomToSelected", zoomToSelected);
|
|
7626
7629
|
|
|
7627
|
-
const version = "25.2.
|
|
7630
|
+
const version = "25.2.12";
|
|
7628
7631
|
|
|
7629
7632
|
export { Assembly, CANVAS_EVENTS, ClashTest, Client, EventEmitter2, File$1 as File, Job, Member, Model, OdBaseDragger, Options, Permission, Project, Role, User, Viewer, Viewer as VisualizejsViewer, commands, version };
|
|
7630
7633
|
//# sourceMappingURL=client.module.js.map
|