@vertexvis/viewer 0.23.2-testing.0 → 0.23.2

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.23.2-testing.0",
3
+ "version": "0.23.2",
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)",
@@ -49,12 +49,12 @@
49
49
  "@improbable-eng/grpc-web": "^0.15.0",
50
50
  "@stencil/core": "^2.16.1",
51
51
  "@vertexvis/frame-streaming-protos": "^0.13.16",
52
- "@vertexvis/geometry": "0.23.2-testing.0",
53
- "@vertexvis/html-templates": "0.23.2-testing.0",
52
+ "@vertexvis/geometry": "0.23.2",
53
+ "@vertexvis/html-templates": "0.23.2",
54
54
  "@vertexvis/scene-tree-protos": "^0.1.21",
55
55
  "@vertexvis/scene-view-protos": "^0.5.0",
56
- "@vertexvis/stream-api": "0.23.2-testing.0",
57
- "@vertexvis/utils": "0.23.2-testing.0",
56
+ "@vertexvis/stream-api": "0.23.2",
57
+ "@vertexvis/utils": "0.23.2",
58
58
  "@vertexvis/web-workers": "^0.1.0",
59
59
  "camel-case": "^4.1.2",
60
60
  "classnames": "^2.3.1",
@@ -83,7 +83,7 @@
83
83
  "@vertexvis/eslint-config-vertexvis-typescript": "^0.5.0",
84
84
  "@vertexvis/rollup-plugin-web-workers": "^0.1.0",
85
85
  "@vertexvis/typescript-config-vertexvis": "1.1.0",
86
- "@vertexwebsdk/build": "0.23.2-testing.0",
86
+ "@vertexwebsdk/build": "0.23.2",
87
87
  "abortcontroller-polyfill": "^1.7.3",
88
88
  "chance": "^1.1.8",
89
89
  "eslint": "^8.17.0",
@@ -98,5 +98,5 @@
98
98
  "typedoc": "^0.22.17",
99
99
  "typescript": "^4.5.4"
100
100
  },
101
- "gitHead": "417cd060080f1e47b4c0d3d67c2efbf9f45ce493"
101
+ "gitHead": "150a7e66d77e2b6930dd87952dc36cb413a8e970"
102
102
  }
package/readme.md CHANGED
@@ -27,11 +27,11 @@ file that references our published JS bundles from a CDN.
27
27
  <head>
28
28
  <link
29
29
  rel="stylesheet"
30
- href="https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.23.1/dist/viewer/viewer.css"
30
+ href="https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.23.2/dist/viewer/viewer.css"
31
31
  />
32
32
  <script
33
33
  type="module"
34
- src="https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.23.1/dist/viewer/viewer.esm.js"
34
+ src="https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.23.2/dist/viewer/viewer.esm.js"
35
35
  ></script>
36
36
  </head>
37
37
 
@@ -53,7 +53,7 @@ These utilities can be imported from a CDN as shown below:
53
53
  </head>
54
54
  <body>
55
55
  <script type="module">
56
- import { ColorMaterial } from 'https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.23.1/dist/esm/index.mjs';
56
+ import { ColorMaterial } from 'https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.23.2/dist/esm/index.mjs';
57
57
 
58
58
  function main() {
59
59
  const color = ColorMaterial.fromHex('#ff0000');
@@ -90,7 +90,7 @@ dependency to your `package.json`:
90
90
  ```json
91
91
  {
92
92
  "dependencies": {
93
- "@vertexvis/viewer": "^0.23.1"
93
+ "@vertexvis/viewer": "^0.23.2"
94
94
  }
95
95
  }
96
96
  ```