@rerun-io/web-viewer-react 0.30.0-alpha.2 → 0.30.0-alpha.4

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 (3) hide show
  1. package/README.md +1 -1
  2. package/index.js +1 -0
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -35,7 +35,7 @@ export default function App() {
35
35
  ```
36
36
 
37
37
  The `rrd` in the snippet above should be a URL pointing to either:
38
- - A hosted `.rrd` file, such as <https://app.rerun.io/version/0.30.0-alpha.2/examples/dna.rrd>
38
+ - A hosted `.rrd` file, such as <https://app.rerun.io/version/0.30.0-alpha.4/examples/dna.rrd>
39
39
  - A gRPC connection to the SDK opened via the [`serve`](https://www.rerun.io/docs/reference/sdk/operating-modes#serve) API
40
40
 
41
41
  If `rrd` is not set, the Viewer will display the same welcome screen as <https://app.rerun.io>.
package/index.js CHANGED
@@ -124,6 +124,7 @@ function startViewer(handle, parent, getProps) {
124
124
  manifest_url: props.manifest_url,
125
125
  render_backend: props.render_backend,
126
126
  hide_welcome_screen: props.hide_welcome_screen,
127
+ theme: props.theme,
127
128
 
128
129
  // NOTE: `width`, `height` intentionally ignored, they will
129
130
  // instead be used on the parent `div` element
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rerun-io/web-viewer-react",
3
- "version": "0.30.0-alpha.2",
3
+ "version": "0.30.0-alpha.4",
4
4
  "description": "Embed the Rerun web viewer in your React app",
5
5
  "licenses": [
6
6
  {
@@ -43,7 +43,7 @@
43
43
  "tsconfig.json"
44
44
  ],
45
45
  "dependencies": {
46
- "@rerun-io/web-viewer": "0.30.0-alpha.2"
46
+ "@rerun-io/web-viewer": "0.30.0-alpha.4"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "@types/react": "^18.2.33 || ^19.0.0",