@vertexvis/viewer 0.23.6-testing.0 → 0.23.7-canary.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.
- package/package.json +7 -7
- package/readme.md +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertexvis/viewer",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.7-canary.0",
|
|
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.17",
|
|
52
|
-
"@vertexvis/geometry": "0.23.
|
|
53
|
-
"@vertexvis/html-templates": "0.23.
|
|
52
|
+
"@vertexvis/geometry": "0.23.7-canary.0",
|
|
53
|
+
"@vertexvis/html-templates": "0.23.7-canary.0",
|
|
54
54
|
"@vertexvis/scene-tree-protos": "^0.1.26",
|
|
55
55
|
"@vertexvis/scene-view-protos": "^0.7.0",
|
|
56
|
-
"@vertexvis/stream-api": "0.23.
|
|
57
|
-
"@vertexvis/utils": "0.23.
|
|
56
|
+
"@vertexvis/stream-api": "0.23.7-canary.0",
|
|
57
|
+
"@vertexvis/utils": "0.23.7-canary.0",
|
|
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.
|
|
86
|
+
"@vertexwebsdk/build": "0.23.7-canary.0",
|
|
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": "
|
|
101
|
+
"gitHead": "2b538f7c76822e32ef455d02426304935de74b85"
|
|
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.
|
|
30
|
+
href="https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.23.6/dist/viewer/viewer.css"
|
|
31
31
|
/>
|
|
32
32
|
<script
|
|
33
33
|
type="module"
|
|
34
|
-
src="https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.23.
|
|
34
|
+
src="https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.23.6/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.
|
|
56
|
+
import { ColorMaterial } from 'https://cdn.jsdelivr.net/npm/@vertexvis/viewer@0.23.6/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.
|
|
93
|
+
"@vertexvis/viewer": "^0.23.6"
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
96
|
```
|
|
@@ -236,6 +236,7 @@ See below for the list of components and links to their READMEs:
|
|
|
236
236
|
- [\<vertex-scene-tree-table-column>](./src/components/scene-tree-table-column)
|
|
237
237
|
- [\<vertex-scene-tree-table-cell>](./src/components/scene-tree-table-cell)
|
|
238
238
|
- [\<vertex-scene-tree-search>](./src/components/scene-tree-search)
|
|
239
|
+
- [\<vertex-scene-tree-notification-banner>](./src/components/scene-tree-notification-banner)
|
|
239
240
|
|
|
240
241
|
[vertex]: https://www.vertexvis.com
|
|
241
242
|
[web components]: https://developer.mozilla.org/en-US/docs/Web/Web_Components
|