intentx-solid 0.2.1-z1 → 0.2.3
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/README.md +7 -8
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -131,14 +131,13 @@ No providers required (unless you want shared context).
|
|
|
131
131
|
const counter = useLogic(counterLogic)
|
|
132
132
|
```
|
|
133
133
|
|
|
134
|
-
```
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
}
|
|
134
|
+
```ts
|
|
135
|
+
{
|
|
136
|
+
store, //
|
|
137
|
+
state, // alias state
|
|
138
|
+
actions, // actions -> emit
|
|
139
|
+
emit // directly
|
|
140
|
+
}
|
|
142
141
|
```
|
|
143
142
|
|
|
144
143
|
🔥 Important
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "intentx-solid",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Intent-driven logic adapter for SolidJS. Connects intentx-runtime with Solid's fine-grained reactivity.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Delpi.Kye",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"solid-js": "^1.8.0"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"intentx-runtime": "^0.2.
|
|
58
|
+
"intentx-runtime": "^0.2.6"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@rollup/plugin-commonjs": "^25.0.0",
|