@vertexvis/viewer 0.24.5-canary.9 → 0.24.5

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.
Files changed (2) hide show
  1. package/package.json +7 -7
  2. package/readme.md +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertexvis/viewer",
3
- "version": "0.24.5-canary.9",
3
+ "version": "0.24.5",
4
4
  "description": "The Vertex SDK for viewing models.",
5
5
  "license": "MIT",
6
6
  "author": "Vertex Developers <support@vertexvis.com> (https://developer.vertexvis.com)",
@@ -50,12 +50,12 @@
50
50
  "@improbable-eng/grpc-web": "^0.15.0",
51
51
  "@stencil/core": "^2.16.1",
52
52
  "@vertexvis/frame-streaming-protos": "^0.17.0",
53
- "@vertexvis/geometry": "0.24.5-canary.9",
54
- "@vertexvis/html-templates": "0.24.5-canary.9",
53
+ "@vertexvis/geometry": "0.24.5",
54
+ "@vertexvis/html-templates": "0.24.5",
55
55
  "@vertexvis/scene-tree-protos": "^0.1.26",
56
56
  "@vertexvis/scene-view-protos": "^0.8.1",
57
- "@vertexvis/stream-api": "0.24.5-canary.9",
58
- "@vertexvis/utils": "0.24.5-canary.9",
57
+ "@vertexvis/stream-api": "0.24.5",
58
+ "@vertexvis/utils": "0.24.5",
59
59
  "@vertexvis/web-workers": "^0.1.0",
60
60
  "camel-case": "^4.1.2",
61
61
  "classnames": "^2.3.1",
@@ -84,7 +84,7 @@
84
84
  "@vertexvis/eslint-config-vertexvis-typescript": "^0.5.0",
85
85
  "@vertexvis/rollup-plugin-web-workers": "^0.1.0",
86
86
  "@vertexvis/typescript-config-vertexvis": "1.1.0",
87
- "@vertexwebsdk/build": "0.24.5-canary.9",
87
+ "@vertexwebsdk/build": "0.24.5",
88
88
  "abortcontroller-polyfill": "^1.7.3",
89
89
  "chance": "^1.1.8",
90
90
  "eslint": "^8.57.1",
@@ -100,5 +100,5 @@
100
100
  "typedoc": "^0.22.17",
101
101
  "typescript": "^4.5.4"
102
102
  },
103
- "gitHead": "800f61defaf59e9896c95f0ad15ee40b7cab1996"
103
+ "gitHead": "386c9e6d3c991c81e431e1d96a2c532d90312ec6"
104
104
  }
package/readme.md CHANGED
@@ -25,11 +25,11 @@ file that references our published JS bundles from a CDN.
25
25
  <head>
26
26
  <link
27
27
  rel="stylesheet"
28
- href="https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.24.4/dist/viewer/viewer.css"
28
+ href="https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.24.5/dist/viewer/viewer.css"
29
29
  />
30
30
  <script
31
31
  type="module"
32
- src="https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.24.4/dist/viewer/viewer.esm.js"
32
+ src="https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.24.5/dist/viewer/viewer.esm.js"
33
33
  ></script>
34
34
  </head>
35
35
 
@@ -51,7 +51,7 @@ These utilities can be imported from a CDN as shown below:
51
51
  </head>
52
52
  <body>
53
53
  <script type="module">
54
- import { ColorMaterial } from 'https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.24.4/dist/esm/index.mjs';
54
+ import { ColorMaterial } from 'https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.24.5/dist/esm/index.mjs';
55
55
 
56
56
  function main() {
57
57
  const color = ColorMaterial.fromHex('#ff0000');
@@ -88,7 +88,7 @@ dependency to your `package.json`:
88
88
  ```json
89
89
  {
90
90
  "dependencies": {
91
- "@vertexvis/viewer": "^0.24.4"
91
+ "@vertexvis/viewer": "^0.24.5"
92
92
  }
93
93
  }
94
94
  ```