@instantdb/react 1.0.50-branch-log-dashboard-login-code.29876046282.1 → 1.0.50
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/dist/commonjs/index.d.ts +2 -2
- package/dist/commonjs/index.d.ts.map +1 -1
- package/dist/commonjs/index.js.map +1 -1
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/standalone/index.js +1136 -1214
- package/dist/standalone/index.umd.cjs +15 -15
- package/package.json +4 -4
- package/src/index.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instantdb/react",
|
|
3
|
-
"version": "1.0.50
|
|
3
|
+
"version": "1.0.50",
|
|
4
4
|
"description": "Instant DB for React",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/instantdb/instant/tree/main/client/packages/react",
|
|
@@ -67,9 +67,9 @@
|
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"eventsource": "^4.0.0",
|
|
70
|
-
"@instantdb/
|
|
71
|
-
"@instantdb/
|
|
72
|
-
"@instantdb/
|
|
70
|
+
"@instantdb/core": "1.0.50",
|
|
71
|
+
"@instantdb/react-common": "1.0.50",
|
|
72
|
+
"@instantdb/version": "1.0.50"
|
|
73
73
|
},
|
|
74
74
|
"scripts": {
|
|
75
75
|
"test": "vitest",
|
package/src/index.ts
CHANGED
|
@@ -27,7 +27,6 @@ import {
|
|
|
27
27
|
type Config,
|
|
28
28
|
type InstaQLParams,
|
|
29
29
|
type ConnectionStatus,
|
|
30
|
-
type AppStatusState,
|
|
31
30
|
type ValidQuery,
|
|
32
31
|
|
|
33
32
|
// presence types
|
|
@@ -139,7 +138,6 @@ export {
|
|
|
139
138
|
type User,
|
|
140
139
|
type AuthState,
|
|
141
140
|
type ConnectionStatus,
|
|
142
|
-
type AppStatusState,
|
|
143
141
|
type InstantQuery,
|
|
144
142
|
type InstantQueryResult,
|
|
145
143
|
type InstantSchema,
|