@dxos/react-client 2.31.7-dev.3c7d6556 → 2.31.8-dev.dcd68d50

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/dx.yml CHANGED
@@ -1,8 +1,9 @@
1
1
  version: 1
2
2
 
3
- module:
4
- type: dxos:type.app
5
- name: dxos:esbook.react-client
6
-
7
- build:
8
- command: npm run build:book
3
+ package:
4
+ modules:
5
+ - name: dxos:story/react-client
6
+ type: dxos:type/app
7
+ build:
8
+ command: npm run build:book
9
+ outdir: out/book
package/package.json CHANGED
@@ -1,22 +1,22 @@
1
1
  {
2
2
  "name": "@dxos/react-client",
3
- "version": "2.31.7-dev.3c7d6556",
3
+ "version": "2.31.8-dev.dcd68d50",
4
4
  "description": "React client API",
5
5
  "license": "MIT",
6
6
  "author": "DXOS.org",
7
7
  "main": "dist/src/index.js",
8
8
  "types": "dist/src/index.d.ts",
9
9
  "dependencies": {
10
- "@dxos/async": "2.31.7-dev.3c7d6556",
11
- "@dxos/bot-factory-client": "2.31.7-dev.3c7d6556",
12
- "@dxos/client": "2.31.7-dev.3c7d6556",
13
- "@dxos/config": "2.31.7-dev.3c7d6556",
14
- "@dxos/credentials": "2.31.7-dev.3c7d6556",
15
- "@dxos/crypto": "2.31.7-dev.3c7d6556",
16
- "@dxos/debug": "2.31.7-dev.3c7d6556",
17
- "@dxos/echo-db": "2.31.7-dev.3c7d6556",
18
- "@dxos/network-manager": "2.31.7-dev.3c7d6556",
19
- "@dxos/util": "2.31.7-dev.3c7d6556",
10
+ "@dxos/async": "2.31.8-dev.dcd68d50",
11
+ "@dxos/bot-factory-client": "2.31.8-dev.dcd68d50",
12
+ "@dxos/client": "2.31.8-dev.dcd68d50",
13
+ "@dxos/config": "2.31.8-dev.dcd68d50",
14
+ "@dxos/credentials": "2.31.8-dev.dcd68d50",
15
+ "@dxos/crypto": "2.31.8-dev.dcd68d50",
16
+ "@dxos/debug": "2.31.8-dev.dcd68d50",
17
+ "@dxos/echo-db": "2.31.8-dev.dcd68d50",
18
+ "@dxos/network-manager": "2.31.8-dev.dcd68d50",
19
+ "@dxos/util": "2.31.8-dev.dcd68d50",
20
20
  "assert": "^2.0.0",
21
21
  "debug": "^4.3.3",
22
22
  "use-subscription": "^1.4.1"
@@ -24,7 +24,7 @@
24
24
  "devDependencies": {
25
25
  "@dxos/esbuild-plugins": "~2.28.7",
26
26
  "@dxos/eslint-plugin": "~1.0.27",
27
- "@dxos/protocols-toolchain": "2.31.6",
27
+ "@dxos/protocols-toolchain": "2.31.7",
28
28
  "@mui/material": "^5.4.2",
29
29
  "@testing-library/react": "^11.0.4",
30
30
  "@testing-library/react-hooks": "5.1.2",
@@ -21,7 +21,10 @@ export interface ClientProviderProps {
21
21
 
22
22
  /**
23
23
  * Forward reference to provide client object to outercontainer since it won't have access to the context.
24
+ * @deprecated
24
25
  */
26
+ // TODO(burdon): Currently required by ErrorBoundary provider to reset client on fatal error.
27
+ // - The boundary must be outside of the provider. Replace with global action handler?
25
28
  clientRef?: MutableRefObject<Client | undefined>
26
29
 
27
30
  /**