@mmapp/react 0.1.0-alpha.18 → 0.1.0-alpha.19

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.
Files changed (52) hide show
  1. package/dist/actions-MFI2V4DX.mjs +116 -0
  2. package/dist/atoms/index.d.mts +2 -2
  3. package/dist/atoms/index.d.ts +2 -2
  4. package/dist/atoms/index.js +1 -1
  5. package/dist/atoms/index.mjs +1 -1
  6. package/dist/builtin-atoms-C-sNyYJl.d.mts +647 -0
  7. package/dist/builtin-atoms-C-sNyYJl.d.ts +647 -0
  8. package/dist/builtin-atoms-DCKrjG7i.d.mts +96 -0
  9. package/dist/builtin-atoms-DCKrjG7i.d.ts +96 -0
  10. package/dist/builtin-atoms-DRD3EwG6.d.mts +648 -0
  11. package/dist/builtin-atoms-DRD3EwG6.d.ts +648 -0
  12. package/dist/builtin-atoms-jt04b7Rw.d.mts +643 -0
  13. package/dist/builtin-atoms-jt04b7Rw.d.ts +643 -0
  14. package/dist/chunk-247T4GDJ.mjs +677 -0
  15. package/dist/chunk-3H6CR7E7.mjs +1924 -0
  16. package/dist/chunk-3PL6FL6I.mjs +96 -0
  17. package/dist/chunk-3SJSW3C4.mjs +2039 -0
  18. package/dist/chunk-5OI2VI57.mjs +1964 -0
  19. package/dist/chunk-CL6FYZ43.mjs +105 -0
  20. package/dist/chunk-ENQOCZI5.mjs +1938 -0
  21. package/dist/chunk-FB3WCZAU.mjs +512 -0
  22. package/dist/chunk-GLJ7VC7Z.mjs +684 -0
  23. package/dist/chunk-HHMWR6NA.mjs +504 -0
  24. package/dist/chunk-HULEMSN2.mjs +120 -0
  25. package/dist/chunk-J5MW6CRU.mjs +1938 -0
  26. package/dist/chunk-PNTTKNYU.mjs +677 -0
  27. package/dist/chunk-TY5OTJP4.mjs +684 -0
  28. package/dist/chunk-WV7DVCP6.mjs +513 -0
  29. package/dist/chunk-YFMPTGUF.mjs +677 -0
  30. package/dist/{chunk-2VJQJM7S.mjs → chunk-ZDWACXZN.mjs} +1 -1
  31. package/dist/composition-BJ6QQTWT.mjs +12 -0
  32. package/dist/composition-XBGKKCI7.mjs +57 -0
  33. package/dist/content-QVPFUG4P.mjs +246 -0
  34. package/dist/control-flow-CBREHWJW.mjs +35 -0
  35. package/dist/control-flow-FWBOI6SM.mjs +35 -0
  36. package/dist/control-flow-ZWUGCDSP.mjs +35 -0
  37. package/dist/data-WCMIZYKD.mjs +97 -0
  38. package/dist/grouping-E6F377VZ.mjs +204 -0
  39. package/dist/grouping-FRPOEXO3.mjs +233 -0
  40. package/dist/index.d.mts +4 -433
  41. package/dist/index.d.ts +4 -433
  42. package/dist/index.js +3648 -581
  43. package/dist/index.mjs +335 -1040
  44. package/dist/input-PUOZDNSI.mjs +222 -0
  45. package/dist/layout-RATDMCLP.mjs +106 -0
  46. package/dist/navigation-VCT7ZBMA.mjs +15 -0
  47. package/dist/navigation-WFV7YWOU.mjs +14 -0
  48. package/dist/player/index.d.mts +37 -11
  49. package/dist/player/index.d.ts +37 -11
  50. package/dist/player/index.js +3280 -174
  51. package/dist/player/index.mjs +55 -5
  52. package/package.json +4 -4
@@ -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
- containsExpression,
18
+ classifyBinding,
19
+ createApiResolver,
20
+ createCoreAtomRegistry,
21
+ mergeRegistries,
22
+ resolveAllBindings,
23
+ resolveBinding,
24
+ usePlayerContext,
25
+ useTheme
26
+ } from "../chunk-J5MW6CRU.mjs";
27
+ import {
28
+ ScopeContext,
29
+ buildLoopScope,
30
+ buildScope,
31
+ builtinFunctions,
6
32
  evaluateExpression,
7
- evaluateProp
8
- } from "../chunk-PSL4FCGG.mjs";
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
- containsExpression,
51
+ builtinFunctions,
52
+ classifyBinding,
53
+ createApiResolver,
54
+ createCoreAtomRegistry,
14
55
  evaluateExpression,
15
- evaluateProp
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.18",
3
+ "version": "0.1.0-alpha.19",
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.18"
38
+ "@mmapp/player-core": "^0.1.0-alpha.19"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"