@inweb/viewer-visualize 25.9.6 → 25.9.7
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/viewer-visualize.js +7 -1
- package/dist/viewer-visualize.js.map +1 -1
- package/dist/viewer-visualize.min.js +1 -1
- package/dist/viewer-visualize.module.js +1 -1
- package/dist/viewer-visualize.module.js.map +1 -1
- package/lib/Viewer/Viewer.d.ts +6 -0
- package/package.json +5 -5
- package/src/Viewer/Viewer.ts +6 -0
package/lib/Viewer/Viewer.d.ts
CHANGED
|
@@ -282,6 +282,9 @@ export declare class Viewer extends EventEmitter2<ViewerEventMap & CanvasEventMa
|
|
|
282
282
|
/**
|
|
283
283
|
* Loads a `VSF` file into the viewer.
|
|
284
284
|
*
|
|
285
|
+
* This method does not support {@link IOptions.enableStreamingMode | streaming} or
|
|
286
|
+
* {@link IOptions.enablePartialMode | partial load} mode.
|
|
287
|
+
*
|
|
285
288
|
* Fires:
|
|
286
289
|
*
|
|
287
290
|
* - {@link OpenEvent | open}
|
|
@@ -297,6 +300,9 @@ export declare class Viewer extends EventEmitter2<ViewerEventMap & CanvasEventMa
|
|
|
297
300
|
/**
|
|
298
301
|
* Loads a `VSFX` file into the viewer.
|
|
299
302
|
*
|
|
303
|
+
* This method does not support {@link IOptions.enableStreamingMode | streaming} or
|
|
304
|
+
* {@link IOptions.enablePartialMode | partial load} mode.
|
|
305
|
+
*
|
|
300
306
|
* Fires:
|
|
301
307
|
*
|
|
302
308
|
* - {@link OpenEvent | open}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inweb/viewer-visualize",
|
|
3
|
-
"version": "25.9.
|
|
3
|
+
"version": "25.9.7",
|
|
4
4
|
"description": "3D viewer powered by VisualizeJS",
|
|
5
5
|
"homepage": "https://cloud.opendesign.com/docs/index.html",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"docs": "typedoc"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@inweb/client": "~25.9.
|
|
33
|
-
"@inweb/eventemitter2": "~25.9.
|
|
34
|
-
"@inweb/markup": "~25.9.
|
|
35
|
-
"@inweb/viewer-core": "~25.9.
|
|
32
|
+
"@inweb/client": "~25.9.7",
|
|
33
|
+
"@inweb/eventemitter2": "~25.9.7",
|
|
34
|
+
"@inweb/markup": "~25.9.7",
|
|
35
|
+
"@inweb/viewer-core": "~25.9.7"
|
|
36
36
|
},
|
|
37
37
|
"visualizeJS": "https://opencloud.azureedge.net/libs/visualizejs/master/Visualize.js"
|
|
38
38
|
}
|
package/src/Viewer/Viewer.ts
CHANGED
|
@@ -968,6 +968,9 @@ export class Viewer
|
|
|
968
968
|
/**
|
|
969
969
|
* Loads a `VSF` file into the viewer.
|
|
970
970
|
*
|
|
971
|
+
* This method does not support {@link IOptions.enableStreamingMode | streaming} or
|
|
972
|
+
* {@link IOptions.enablePartialMode | partial load} mode.
|
|
973
|
+
*
|
|
971
974
|
* Fires:
|
|
972
975
|
*
|
|
973
976
|
* - {@link OpenEvent | open}
|
|
@@ -1014,6 +1017,9 @@ export class Viewer
|
|
|
1014
1017
|
/**
|
|
1015
1018
|
* Loads a `VSFX` file into the viewer.
|
|
1016
1019
|
*
|
|
1020
|
+
* This method does not support {@link IOptions.enableStreamingMode | streaming} or
|
|
1021
|
+
* {@link IOptions.enablePartialMode | partial load} mode.
|
|
1022
|
+
*
|
|
1017
1023
|
* Fires:
|
|
1018
1024
|
*
|
|
1019
1025
|
* - {@link OpenEvent | open}
|