@dxos/effect-atom-solid 0.8.4-main.fbb7a13 → 0.8.4-staging.ac66bdf99f
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/lib/browser/index.mjs.map +2 -2
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/node-esm/index.mjs.map +2 -2
- package/dist/lib/node-esm/meta.json +1 -1
- package/dist/types/src/hooks/useAtom.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -7
- package/src/hooks/useAtom.test.tsx +0 -1
- package/src/hooks/useAtom.ts +0 -1
- package/src/hooks/useAtomInitialValues.test.tsx +0 -1
- package/src/hooks/useAtomRefresh.test.tsx +0 -1
- package/src/hooks/useAtomResource.test.tsx +0 -1
- package/src/hooks/useAtomSet.test.tsx +0 -1
- package/src/hooks/useAtomSubscribe.test.tsx +0 -1
- package/src/hooks/useAtomSuspense.test.tsx +0 -1
- package/src/hooks/useAtomValue.test.tsx +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxos/effect-atom-solid",
|
|
3
|
-
"version": "0.8.4-
|
|
3
|
+
"version": "0.8.4-staging.ac66bdf99f",
|
|
4
4
|
"description": "Solid.js bindings for Effect Atom",
|
|
5
5
|
"homepage": "https://dxos.org",
|
|
6
6
|
"bugs": "https://github.com/dxos/dxos/issues",
|
|
@@ -29,16 +29,16 @@
|
|
|
29
29
|
"src"
|
|
30
30
|
],
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@effect-atom/atom": "^0.
|
|
32
|
+
"@effect-atom/atom": "^0.5.1",
|
|
33
33
|
"@solidjs/testing-library": "^0.8.10",
|
|
34
|
-
"effect": "3.
|
|
35
|
-
"solid-js": "^1.9.
|
|
34
|
+
"effect": "3.20.0",
|
|
35
|
+
"solid-js": "^1.9.11",
|
|
36
36
|
"vite-plugin-solid": "^2.11.10"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@effect-atom/atom": "^0.
|
|
40
|
-
"effect": "3.
|
|
41
|
-
"solid-js": "^1.9.
|
|
39
|
+
"@effect-atom/atom": "^0.5.1",
|
|
40
|
+
"effect": "3.20.0",
|
|
41
|
+
"solid-js": "^1.9.11"
|
|
42
42
|
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
package/src/hooks/useAtom.ts
CHANGED
|
@@ -7,7 +7,6 @@ import { render } from '@solidjs/testing-library';
|
|
|
7
7
|
import { beforeEach, describe, expect, test } from 'vitest';
|
|
8
8
|
|
|
9
9
|
import { defaultRegistry } from '../registry';
|
|
10
|
-
|
|
11
10
|
import { useAtomInitialValues } from './useAtomInitialValues';
|
|
12
11
|
import { useAtomValue } from './useAtomValue';
|
|
13
12
|
|
|
@@ -7,7 +7,6 @@ import { fireEvent, render, waitFor } from '@solidjs/testing-library';
|
|
|
7
7
|
import { beforeEach, describe, expect, test } from 'vitest';
|
|
8
8
|
|
|
9
9
|
import { defaultRegistry } from '../registry';
|
|
10
|
-
|
|
11
10
|
import { useAtomRefresh } from './useAtomRefresh';
|
|
12
11
|
import { useAtomValue } from './useAtomValue';
|
|
13
12
|
|
|
@@ -7,7 +7,6 @@ import { fireEvent, render, waitFor } from '@solidjs/testing-library';
|
|
|
7
7
|
import { beforeEach, describe, expect, test } from 'vitest';
|
|
8
8
|
|
|
9
9
|
import { defaultRegistry } from '../registry';
|
|
10
|
-
|
|
11
10
|
import { useAtomSet } from './useAtomSet';
|
|
12
11
|
import { useAtomValue } from './useAtomValue';
|
|
13
12
|
|
|
@@ -7,7 +7,6 @@ import { fireEvent, render, waitFor } from '@solidjs/testing-library';
|
|
|
7
7
|
import { beforeEach, describe, expect, test } from 'vitest';
|
|
8
8
|
|
|
9
9
|
import { defaultRegistry } from '../registry';
|
|
10
|
-
|
|
11
10
|
import { useAtomSet } from './useAtomSet';
|
|
12
11
|
import { useAtomSubscribe } from './useAtomSubscribe';
|
|
13
12
|
|
|
@@ -7,7 +7,6 @@ import { fireEvent, render, waitFor } from '@solidjs/testing-library';
|
|
|
7
7
|
import { beforeEach, describe, expect, test } from 'vitest';
|
|
8
8
|
|
|
9
9
|
import { defaultRegistry } from '../registry';
|
|
10
|
-
|
|
11
10
|
import { useAtomValue } from './useAtomValue';
|
|
12
11
|
|
|
13
12
|
describe('useAtomValue', () => {
|