@inweb/viewer-visualize 26.7.2 → 26.8.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.
@@ -11,8 +11,8 @@ import { ILoadersRegistry } from "@inweb/viewer-core";
11
11
  *
12
12
  * The loader should do:
13
13
  *
14
- * - Load model data from file. The model data must be a `VSFX` data buffer of `VSFX` data chunk.
15
- * - Parse model data with the `VisualizeJS` viewer instance.
14
+ * - Load model data from file into the buffer. The model data must be a `VSFX` format.
15
+ * - Parse data buffer with the `VisualizeJS` viewer instance.
16
16
  * - Synchronize viewer styles, options and overlay.
17
17
  * - Update the viewer.
18
18
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inweb/viewer-visualize",
3
- "version": "26.7.2",
3
+ "version": "26.8.0",
4
4
  "description": "JavaScript library for rendering CAD and BIM files in a browser using 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": "~26.7.2",
33
- "@inweb/eventemitter2": "~26.7.2",
34
- "@inweb/markup": "~26.7.2",
35
- "@inweb/viewer-core": "~26.7.2"
32
+ "@inweb/client": "~26.8.0",
33
+ "@inweb/eventemitter2": "~26.8.0",
34
+ "@inweb/markup": "~26.8.0",
35
+ "@inweb/viewer-core": "~26.8.0"
36
36
  },
37
37
  "visualizeJS": "https://public-fhemb7e3embacwec.z02.azurefd.net/libs/visualizejs/master/Visualize.js"
38
38
  }
@@ -43,8 +43,8 @@ import { VSFXCloudPartialLoader } from "./VSFXCloudPartialLoader";
43
43
  *
44
44
  * The loader should do:
45
45
  *
46
- * - Load model data from file. The model data must be a `VSFX` data buffer of `VSFX` data chunk.
47
- * - Parse model data with the `VisualizeJS` viewer instance.
46
+ * - Load model data from file into the buffer. The model data must be a `VSFX` format.
47
+ * - Parse data buffer with the `VisualizeJS` viewer instance.
48
48
  * - Synchronize viewer styles, options and overlay.
49
49
  * - Update the viewer.
50
50
  *