@logixjs/react 0.1.1 → 1.0.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/Hooks.cjs +345 -142
- package/dist/Hooks.js +3 -3
- package/dist/ModuleScope.cjs +474 -187
- package/dist/ModuleScope.js +4 -4
- package/dist/Platform.cjs +1 -4
- package/dist/Platform.d.cts +1 -2
- package/dist/Platform.d.ts +1 -2
- package/dist/Platform.js +1 -1
- package/dist/ReactPlatform.cjs +395 -111
- package/dist/ReactPlatform.js +5 -5
- package/dist/RuntimeProvider.cjs +254 -50
- package/dist/RuntimeProvider.js +2 -2
- package/dist/{chunk-WOTNVLCD.js → chunk-6NLXTHZ7.js} +8 -8
- package/dist/{chunk-G2LX7WWQ.js → chunk-E3ZXST5F.js} +129 -49
- package/dist/{chunk-JC3R6GII.js → chunk-KYWW4KMQ.js} +3 -3
- package/dist/{chunk-2WFULYPJ.js → chunk-L7KTYBXN.js} +155 -32
- package/dist/{chunk-ZANGOPUQ.js → chunk-NKYV44OG.js} +1 -4
- package/dist/{chunk-STTE4SOJ.js → chunk-SDQF3WRT.js} +6 -3
- package/dist/{chunk-2M6MDNVT.js → chunk-XSGDBJXD.js} +100 -19
- package/dist/index.cjs +435 -151
- package/dist/index.js +7 -7
- package/package.json +9 -4
package/dist/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ModuleScope
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-SDQF3WRT.js";
|
|
4
4
|
import {
|
|
5
5
|
ReactPlatformLayer
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-NKYV44OG.js";
|
|
7
7
|
import {
|
|
8
8
|
ReactPlatform
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-KYWW4KMQ.js";
|
|
10
10
|
import {
|
|
11
11
|
useDispatch,
|
|
12
12
|
useImportedModule,
|
|
@@ -14,18 +14,18 @@ import {
|
|
|
14
14
|
useLocalModule,
|
|
15
15
|
useModuleList,
|
|
16
16
|
useProcesses
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-6NLXTHZ7.js";
|
|
18
18
|
import {
|
|
19
19
|
shallow,
|
|
20
20
|
useModule,
|
|
21
21
|
useRuntime,
|
|
22
22
|
useSelector
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-E3ZXST5F.js";
|
|
24
24
|
import "./chunk-VFWWMK67.js";
|
|
25
25
|
import {
|
|
26
26
|
RuntimeProvider
|
|
27
|
-
} from "./chunk-
|
|
28
|
-
import "./chunk-
|
|
27
|
+
} from "./chunk-XSGDBJXD.js";
|
|
28
|
+
import "./chunk-L7KTYBXN.js";
|
|
29
29
|
export {
|
|
30
30
|
ModuleScope,
|
|
31
31
|
ReactPlatform,
|
package/package.json
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@logixjs/react",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/yoyooyooo/logix",
|
|
7
|
+
"directory": "packages/logix-react"
|
|
8
|
+
},
|
|
4
9
|
"license": "Apache-2.0",
|
|
5
10
|
"files": [
|
|
6
11
|
"dist/**"
|
|
@@ -27,9 +32,9 @@
|
|
|
27
32
|
"access": "public"
|
|
28
33
|
},
|
|
29
34
|
"dependencies": {
|
|
30
|
-
"effect": "
|
|
35
|
+
"effect": "4.0.0-beta.28",
|
|
31
36
|
"use-sync-external-store": "^1.2.0",
|
|
32
|
-
"@logixjs/core": "
|
|
37
|
+
"@logixjs/core": "1.0.1"
|
|
33
38
|
},
|
|
34
39
|
"devDependencies": {
|
|
35
40
|
"@testing-library/react": "^16.0.1",
|
|
@@ -41,7 +46,7 @@
|
|
|
41
46
|
"tsup": "^8.1.0",
|
|
42
47
|
"typescript": "^5.4.5",
|
|
43
48
|
"vitest": "^4.0.15",
|
|
44
|
-
"@logixjs/test": "
|
|
49
|
+
"@logixjs/test": "1.0.1",
|
|
45
50
|
"@logixjs/perf-evidence": "0.0.0"
|
|
46
51
|
},
|
|
47
52
|
"peerDependencies": {
|