@effect/atom-solid 4.0.0-beta.74 → 4.0.0-beta.75

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.
@@ -32,8 +32,8 @@ import type { JSX } from "solid-js";
32
32
  *
33
33
  * **When to use**
34
34
  *
35
- * Use when integrating lower-level Solid atom APIs that need direct access to,
36
- * or direct provisioning of, the `AtomRegistry` for the current owner tree.
35
+ * Use when you need to integrate lower-level Solid context APIs, such as custom
36
+ * providers or hooks, instead of using the default atom hook setup.
37
37
  *
38
38
  * **Details**
39
39
  *
@@ -6,8 +6,8 @@ import { createComponent, createContext, onCleanup } from "solid-js";
6
6
  *
7
7
  * **When to use**
8
8
  *
9
- * Use when integrating lower-level Solid atom APIs that need direct access to,
10
- * or direct provisioning of, the `AtomRegistry` for the current owner tree.
9
+ * Use when you need to integrate lower-level Solid context APIs, such as custom
10
+ * providers or hooks, instead of using the default atom hook setup.
11
11
  *
12
12
  * **Details**
13
13
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect/atom-solid",
3
- "version": "4.0.0-beta.74",
3
+ "version": "4.0.0-beta.75",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "SolidJS bindings for the Effect Atom modules",
@@ -44,7 +44,7 @@
44
44
  },
45
45
  "peerDependencies": {
46
46
  "solid-js": ">=1 <2",
47
- "effect": "^4.0.0-beta.74"
47
+ "effect": "^4.0.0-beta.75"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@solidjs/testing-library": "^0.8.0",
@@ -52,7 +52,7 @@
52
52
  "@testing-library/jest-dom": "^6.9.1",
53
53
  "jsdom": "^29.1.1",
54
54
  "solid-js": "^1.9.12",
55
- "effect": "^4.0.0-beta.74"
55
+ "effect": "^4.0.0-beta.75"
56
56
  },
57
57
  "scripts": {
58
58
  "build": "tsc -b tsconfig.json && pnpm babel",
@@ -34,8 +34,8 @@ import { createComponent, createContext, onCleanup } from "solid-js"
34
34
  *
35
35
  * **When to use**
36
36
  *
37
- * Use when integrating lower-level Solid atom APIs that need direct access to,
38
- * or direct provisioning of, the `AtomRegistry` for the current owner tree.
37
+ * Use when you need to integrate lower-level Solid context APIs, such as custom
38
+ * providers or hooks, instead of using the default atom hook setup.
39
39
  *
40
40
  * **Details**
41
41
  *