@instantdb/react 1.0.2 → 1.0.3-branch-idb-fix.24363677444.1
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 +941 -973
- package/dist/standalone/index.umd.cjs +12 -12
- 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.
|
|
3
|
+
"version": "1.0.3-branch-idb-fix.24363677444.1",
|
|
4
4
|
"description": "Instant DB for React",
|
|
5
5
|
"homepage": "https://github.com/instantdb/instant/tree/main/client/packages/react",
|
|
6
6
|
"repository": {
|
|
@@ -66,9 +66,9 @@
|
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"eventsource": "^4.0.0",
|
|
69
|
-
"@instantdb/core": "1.0.
|
|
70
|
-
"@instantdb/react-common": "1.0.
|
|
71
|
-
"@instantdb/version": "1.0.
|
|
69
|
+
"@instantdb/core": "1.0.3-branch-idb-fix.24363677444.1",
|
|
70
|
+
"@instantdb/react-common": "1.0.3-branch-idb-fix.24363677444.1",
|
|
71
|
+
"@instantdb/version": "1.0.3-branch-idb-fix.24363677444.1"
|
|
72
72
|
},
|
|
73
73
|
"scripts": {
|
|
74
74
|
"test": "vitest",
|
package/src/index.ts
CHANGED
|
@@ -94,7 +94,6 @@ import {
|
|
|
94
94
|
createInstantRouteHandler,
|
|
95
95
|
type StoreInterfaceStoreName,
|
|
96
96
|
InstantWritableStream,
|
|
97
|
-
InstantReadableStream,
|
|
98
97
|
} from '@instantdb/core';
|
|
99
98
|
|
|
100
99
|
import { InstantReactAbstractDatabase } from '@instantdb/react-common';
|
|
@@ -195,7 +194,6 @@ export {
|
|
|
195
194
|
type CreateReadStreamOpts,
|
|
196
195
|
type CreateWriteStreamOpts,
|
|
197
196
|
type InstantWritableStream,
|
|
198
|
-
type InstantReadableStream,
|
|
199
197
|
|
|
200
198
|
// custom store
|
|
201
199
|
StoreInterface,
|