@mmapp/react 0.1.0-alpha.18 → 0.1.0-alpha.20
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/actions-HOXZPBTT.mjs +116 -0
- package/dist/actions-MFI2V4DX.mjs +116 -0
- package/dist/atoms/index.d.mts +2 -2
- package/dist/atoms/index.d.ts +2 -2
- package/dist/atoms/index.js +1 -1
- package/dist/atoms/index.mjs +1 -1
- package/dist/builtin-atoms-C-sNyYJl.d.mts +647 -0
- package/dist/builtin-atoms-C-sNyYJl.d.ts +647 -0
- package/dist/builtin-atoms-DCKrjG7i.d.mts +96 -0
- package/dist/builtin-atoms-DCKrjG7i.d.ts +96 -0
- package/dist/builtin-atoms-DRD3EwG6.d.mts +648 -0
- package/dist/builtin-atoms-DRD3EwG6.d.ts +648 -0
- package/dist/builtin-atoms-jt04b7Rw.d.mts +643 -0
- package/dist/builtin-atoms-jt04b7Rw.d.ts +643 -0
- package/dist/chunk-247T4GDJ.mjs +677 -0
- package/dist/chunk-3H6CR7E7.mjs +1924 -0
- package/dist/chunk-3PL6FL6I.mjs +96 -0
- package/dist/chunk-3SJSW3C4.mjs +2039 -0
- package/dist/chunk-5OI2VI57.mjs +1964 -0
- package/dist/chunk-CL6FYZ43.mjs +105 -0
- package/dist/chunk-ENQOCZI5.mjs +1938 -0
- package/dist/chunk-FB3WCZAU.mjs +512 -0
- package/dist/chunk-FBKUGKQI.mjs +1938 -0
- package/dist/chunk-GLJ7VC7Z.mjs +684 -0
- package/dist/chunk-HHMWR6NA.mjs +504 -0
- package/dist/chunk-HULEMSN2.mjs +120 -0
- package/dist/chunk-J5MW6CRU.mjs +1938 -0
- package/dist/chunk-PNTTKNYU.mjs +677 -0
- package/dist/chunk-TY5OTJP4.mjs +684 -0
- package/dist/chunk-WV7DVCP6.mjs +513 -0
- package/dist/chunk-YFMPTGUF.mjs +677 -0
- package/dist/chunk-ZAHMWAER.mjs +1960 -0
- package/dist/{chunk-2VJQJM7S.mjs → chunk-ZDWACXZN.mjs} +1 -1
- package/dist/composition-BJ6QQTWT.mjs +12 -0
- package/dist/composition-XBGKKCI7.mjs +57 -0
- package/dist/content-QVPFUG4P.mjs +246 -0
- package/dist/control-flow-CBREHWJW.mjs +35 -0
- package/dist/control-flow-FWBOI6SM.mjs +35 -0
- package/dist/control-flow-ZWUGCDSP.mjs +35 -0
- package/dist/data-WCMIZYKD.mjs +97 -0
- package/dist/grouping-E6F377VZ.mjs +204 -0
- package/dist/grouping-FRPOEXO3.mjs +233 -0
- package/dist/index.d.mts +4 -433
- package/dist/index.d.ts +4 -433
- package/dist/index.js +3671 -582
- package/dist/index.mjs +335 -1040
- package/dist/input-PUOZDNSI.mjs +222 -0
- package/dist/layout-RATDMCLP.mjs +106 -0
- package/dist/navigation-VCT7ZBMA.mjs +15 -0
- package/dist/navigation-WFV7YWOU.mjs +14 -0
- package/dist/player/index.d.mts +37 -11
- package/dist/player/index.d.ts +37 -11
- package/dist/player/index.js +3321 -193
- package/dist/player/index.mjs +55 -5
- package/package.json +4 -4
package/dist/player/index.mjs
CHANGED
|
@@ -1,16 +1,66 @@
|
|
|
1
1
|
import {
|
|
2
|
+
usePlayerRouter
|
|
3
|
+
} from "../chunk-HULEMSN2.mjs";
|
|
4
|
+
import {
|
|
5
|
+
SlotRegistryProvider,
|
|
6
|
+
useSlotContributions
|
|
7
|
+
} from "../chunk-3PL6FL6I.mjs";
|
|
8
|
+
import {
|
|
9
|
+
AtomRegistryImpl,
|
|
2
10
|
ComponentTreeRenderer,
|
|
11
|
+
DEFAULT_DESIGN_TOKENS,
|
|
3
12
|
DevPlayer,
|
|
13
|
+
ExperienceRenderer,
|
|
14
|
+
PlayerProvider,
|
|
15
|
+
buildActionScope,
|
|
16
|
+
buildEvalContext,
|
|
4
17
|
builtinAtoms,
|
|
5
|
-
|
|
18
|
+
classifyBinding,
|
|
19
|
+
createApiResolver,
|
|
20
|
+
createCoreAtomRegistry,
|
|
21
|
+
mergeRegistries,
|
|
22
|
+
resolveAllBindings,
|
|
23
|
+
resolveBinding,
|
|
24
|
+
usePlayerContext,
|
|
25
|
+
useTheme
|
|
26
|
+
} from "../chunk-ZAHMWAER.mjs";
|
|
27
|
+
import {
|
|
28
|
+
ScopeContext,
|
|
29
|
+
buildLoopScope,
|
|
30
|
+
buildScope,
|
|
31
|
+
builtinFunctions,
|
|
6
32
|
evaluateExpression,
|
|
7
|
-
|
|
8
|
-
|
|
33
|
+
mergeScope,
|
|
34
|
+
setWasmModule,
|
|
35
|
+
useScope
|
|
36
|
+
} from "../chunk-WV7DVCP6.mjs";
|
|
9
37
|
export {
|
|
38
|
+
AtomRegistryImpl,
|
|
10
39
|
ComponentTreeRenderer,
|
|
40
|
+
DEFAULT_DESIGN_TOKENS,
|
|
11
41
|
DevPlayer,
|
|
42
|
+
ExperienceRenderer,
|
|
43
|
+
PlayerProvider,
|
|
44
|
+
ScopeContext,
|
|
45
|
+
SlotRegistryProvider,
|
|
46
|
+
buildActionScope,
|
|
47
|
+
buildEvalContext,
|
|
48
|
+
buildLoopScope,
|
|
49
|
+
buildScope,
|
|
12
50
|
builtinAtoms,
|
|
13
|
-
|
|
51
|
+
builtinFunctions,
|
|
52
|
+
classifyBinding,
|
|
53
|
+
createApiResolver,
|
|
54
|
+
createCoreAtomRegistry,
|
|
14
55
|
evaluateExpression,
|
|
15
|
-
|
|
56
|
+
mergeRegistries,
|
|
57
|
+
mergeScope,
|
|
58
|
+
resolveAllBindings,
|
|
59
|
+
resolveBinding,
|
|
60
|
+
setWasmModule,
|
|
61
|
+
usePlayerContext,
|
|
62
|
+
usePlayerRouter,
|
|
63
|
+
useScope,
|
|
64
|
+
useSlotContributions,
|
|
65
|
+
useTheme
|
|
16
66
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmapp/react",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.20",
|
|
4
4
|
"description": "React integration for the MindMatrix Player — hooks, components, and WebSocket bridge for browser-side workflow engines",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
|
-
"build": "tsup src/index.ts src/player/index.ts --format cjs,esm --dts --external react",
|
|
27
|
-
"dev": "tsup src/index.ts src/player/index.ts --format cjs,esm --dts --external react --watch",
|
|
26
|
+
"build": "tsup src/index.ts src/player/index.ts src/atoms/index.ts --format cjs,esm --dts --external react",
|
|
27
|
+
"dev": "tsup src/index.ts src/player/index.ts src/atoms/index.ts --format cjs,esm --dts --external react --watch",
|
|
28
28
|
"test": "vitest run",
|
|
29
29
|
"test:watch": "vitest --watch",
|
|
30
30
|
"type-check": "tsc --noEmit",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@tanstack/react-query": ">=5.0.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@mmapp/player-core": "^0.1.0-alpha.
|
|
38
|
+
"@mmapp/player-core": "^0.1.0-alpha.20"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|