@rerun-io/web-viewer-react 0.24.0-alpha.3 → 0.24.0-alpha.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/README.md +3 -3
  2. package/package.json +6 -3
package/README.md CHANGED
@@ -16,8 +16,8 @@ If you'd like to use a framework-agnostic package instead, see <https://www.npmj
16
16
 
17
17
  ## Install
18
18
 
19
- ```
20
- $ npm i @rerun-io/web-viewer-react
19
+ ```sh
20
+ npm i @rerun-io/web-viewer-react
21
21
  ```
22
22
 
23
23
  ℹ️ Note:
@@ -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.24.0-alpha.3/examples/dna.rrd>
38
+ - A hosted `.rrd` file, such as <https://app.rerun.io/version/0.24.0-alpha.5/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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rerun-io/web-viewer-react",
3
- "version": "0.24.0-alpha.3",
3
+ "version": "0.24.0-alpha.5",
4
4
  "description": "Embed the Rerun web viewer in your React app",
5
5
  "licenses": [
6
6
  {
@@ -13,7 +13,8 @@
13
13
  "scripts": {
14
14
  "build:types": "tsc --noEmit && dts-buddy",
15
15
  "build": "npm run build:types",
16
- "pack": "yarn pack --filename web-viewer-react.tar.gz"
16
+ "pack": "yarn pack --filename web-viewer-react.tar.gz",
17
+ "docs": "typedoc"
17
18
  },
18
19
  "repository": {
19
20
  "type": "git",
@@ -40,12 +41,14 @@
40
41
  "tsconfig.json"
41
42
  ],
42
43
  "dependencies": {
43
- "@rerun-io/web-viewer": "0.24.0-alpha.3",
44
+ "@rerun-io/web-viewer": "0.24.0-alpha.5",
44
45
  "@types/react": "^18.2.33",
45
46
  "react": "^18.2.0"
46
47
  },
47
48
  "devDependencies": {
48
49
  "dts-buddy": "^0.3.0",
50
+ "typedoc": "^0.28.6",
51
+ "typedoc-github-theme": "^0.3.0",
49
52
  "typescript": "^5.2.2"
50
53
  }
51
54
  }