@almadar/std 6.5.2 → 7.2.0

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 (307) hide show
  1. package/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
  2. package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
  3. package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
  4. package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
  5. package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
  6. package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
  7. package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
  8. package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
  9. package/behaviors/registry/atoms/std-agent-search.orb +217 -61
  10. package/behaviors/registry/atoms/std-agent-session.orb +406 -159
  11. package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
  12. package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
  13. package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
  14. package/behaviors/registry/atoms/std-async.orb +147 -86
  15. package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
  16. package/behaviors/registry/atoms/std-browse.orb +260 -126
  17. package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
  18. package/behaviors/registry/atoms/std-calendar.orb +280 -215
  19. package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
  20. package/behaviors/registry/atoms/std-collision.orb +136 -135
  21. package/behaviors/registry/atoms/std-combat-log.orb +108 -90
  22. package/behaviors/registry/atoms/std-combat.orb +171 -98
  23. package/behaviors/registry/atoms/std-confirmation.orb +28 -300
  24. package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
  25. package/behaviors/registry/atoms/std-display.orb +491 -587
  26. package/behaviors/registry/atoms/std-drawer.orb +194 -121
  27. package/behaviors/registry/atoms/std-filter.orb +311 -326
  28. package/behaviors/registry/atoms/std-flip-card.orb +223 -177
  29. package/behaviors/registry/atoms/std-gallery.orb +130 -151
  30. package/behaviors/registry/atoms/std-game-audio.orb +133 -72
  31. package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
  32. package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
  33. package/behaviors/registry/atoms/std-game-hud.orb +87 -20
  34. package/behaviors/registry/atoms/std-game-menu.orb +32 -32
  35. package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
  36. package/behaviors/registry/atoms/std-gameflow.orb +147 -80
  37. package/behaviors/registry/atoms/std-input.orb +128 -393
  38. package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
  39. package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
  40. package/behaviors/registry/atoms/std-loading.orb +127 -126
  41. package/behaviors/registry/atoms/std-modal.orb +30 -267
  42. package/behaviors/registry/atoms/std-movement.orb +391 -292
  43. package/behaviors/registry/atoms/std-notification.orb +133 -75
  44. package/behaviors/registry/atoms/std-overworld.orb +194 -121
  45. package/behaviors/registry/atoms/std-pagination.orb +120 -53
  46. package/behaviors/registry/atoms/std-physics2d.orb +94 -93
  47. package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
  48. package/behaviors/registry/atoms/std-push.orb +172 -36
  49. package/behaviors/registry/atoms/std-quest.orb +552 -449
  50. package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
  51. package/behaviors/registry/atoms/std-rating.orb +123 -65
  52. package/behaviors/registry/atoms/std-related.orb +202 -26
  53. package/behaviors/registry/atoms/std-score-board.orb +109 -28
  54. package/behaviors/registry/atoms/std-score.orb +210 -146
  55. package/behaviors/registry/atoms/std-search.orb +265 -138
  56. package/behaviors/registry/atoms/std-selection.orb +311 -220
  57. package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
  58. package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
  59. package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
  60. package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
  61. package/behaviors/registry/atoms/std-service-email.orb +195 -107
  62. package/behaviors/registry/atoms/std-service-github.orb +216 -122
  63. package/behaviors/registry/atoms/std-service-llm.orb +204 -122
  64. package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
  65. package/behaviors/registry/atoms/std-service-redis.orb +177 -92
  66. package/behaviors/registry/atoms/std-service-storage.orb +211 -122
  67. package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
  68. package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
  69. package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
  70. package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
  71. package/behaviors/registry/atoms/std-sort.orb +284 -207
  72. package/behaviors/registry/atoms/std-sprite.orb +150 -74
  73. package/behaviors/registry/atoms/std-tabs.orb +129 -62
  74. package/behaviors/registry/atoms/std-text-effects.orb +251 -190
  75. package/behaviors/registry/atoms/std-theme.orb +193 -135
  76. package/behaviors/registry/atoms/std-timer.orb +320 -344
  77. package/behaviors/registry/atoms/std-undo.orb +278 -199
  78. package/behaviors/registry/atoms/std-upload.orb +112 -111
  79. package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
  80. package/behaviors/registry/atoms/std-wizard.orb +445 -336
  81. package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
  82. package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
  83. package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
  84. package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
  85. package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
  86. package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
  87. package/behaviors/registry/molecules/std-builder-game.orb +86 -28
  88. package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
  89. package/behaviors/registry/molecules/std-cart.orb +347 -406
  90. package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
  91. package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
  92. package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
  93. package/behaviors/registry/molecules/std-detail.orb +133 -138
  94. package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
  95. package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
  96. package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
  97. package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
  98. package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
  99. package/behaviors/registry/molecules/std-geospatial.orb +175 -122
  100. package/behaviors/registry/molecules/std-inventory.orb +216 -170
  101. package/behaviors/registry/molecules/std-list.orb +280 -205
  102. package/behaviors/registry/molecules/std-messaging.orb +146 -99
  103. package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
  104. package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
  105. package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
  106. package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
  107. package/behaviors/registry/molecules/std-quiz.orb +322 -263
  108. package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
  109. package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
  110. package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
  111. package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
  112. package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
  113. package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
  114. package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
  115. package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
  116. package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
  117. package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
  118. package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
  119. package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
  120. package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
  121. package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
  122. package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
  123. package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
  124. package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
  125. package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
  126. package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
  127. package/behaviors/registry/organisms/std-cms.orb +1549 -566
  128. package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
  129. package/behaviors/registry/organisms/std-crm.orb +1997 -1014
  130. package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
  131. package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
  132. package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
  133. package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
  134. package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
  135. package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
  136. package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
  137. package/behaviors/registry/organisms/std-lms.orb +1629 -1046
  138. package/behaviors/registry/organisms/std-logic-training.orb +321 -134
  139. package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
  140. package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
  141. package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
  142. package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
  143. package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
  144. package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
  145. package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
  146. package/behaviors/registry/organisms/std-social-feed.orb +612 -252
  147. package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
  148. package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
  149. package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
  150. package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
  151. package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
  152. package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
  153. package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
  154. package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
  155. package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
  156. package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
  157. package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
  158. package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
  159. package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
  160. package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
  161. package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
  162. package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
  163. package/dist/behaviors/registry/atoms/std-async.orb +147 -86
  164. package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
  165. package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
  166. package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
  167. package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
  168. package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
  169. package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
  170. package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
  171. package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
  172. package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
  173. package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
  174. package/dist/behaviors/registry/atoms/std-display.orb +491 -587
  175. package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
  176. package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
  177. package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
  178. package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
  179. package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
  180. package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
  181. package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
  182. package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
  183. package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
  184. package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
  185. package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
  186. package/dist/behaviors/registry/atoms/std-input.orb +128 -393
  187. package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
  188. package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
  189. package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
  190. package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
  191. package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
  192. package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
  193. package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
  194. package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
  195. package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
  196. package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
  197. package/dist/behaviors/registry/atoms/std-push.orb +172 -36
  198. package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
  199. package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
  200. package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
  201. package/dist/behaviors/registry/atoms/std-related.orb +202 -26
  202. package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
  203. package/dist/behaviors/registry/atoms/std-score.orb +210 -146
  204. package/dist/behaviors/registry/atoms/std-search.orb +265 -138
  205. package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
  206. package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
  207. package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
  208. package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
  209. package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
  210. package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
  211. package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
  212. package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
  213. package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
  214. package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
  215. package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
  216. package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
  217. package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
  218. package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
  219. package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
  220. package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
  221. package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
  222. package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
  223. package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
  224. package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
  225. package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
  226. package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
  227. package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
  228. package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
  229. package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
  230. package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
  231. package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
  232. package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
  233. package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
  234. package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
  235. package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
  236. package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
  237. package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
  238. package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
  239. package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
  240. package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
  241. package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
  242. package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
  243. package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
  244. package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
  245. package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
  246. package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
  247. package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
  248. package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
  249. package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
  250. package/dist/behaviors/registry/molecules/std-list.orb +280 -205
  251. package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
  252. package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
  253. package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
  254. package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
  255. package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
  256. package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
  257. package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
  258. package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
  259. package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
  260. package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
  261. package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
  262. package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
  263. package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
  264. package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
  265. package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
  266. package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
  267. package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
  268. package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
  269. package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
  270. package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
  271. package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
  272. package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
  273. package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
  274. package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
  275. package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
  276. package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
  277. package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
  278. package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
  279. package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
  280. package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
  281. package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
  282. package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
  283. package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
  284. package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
  285. package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
  286. package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
  287. package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
  288. package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
  289. package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
  290. package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
  291. package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
  292. package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
  293. package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
  294. package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
  295. package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
  296. package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
  297. package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
  298. package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
  299. package/dist/index.js +16 -4
  300. package/dist/index.js.map +1 -1
  301. package/dist/modules/core.js +16 -4
  302. package/dist/modules/core.js.map +1 -1
  303. package/dist/modules/index.js +16 -4
  304. package/dist/modules/index.js.map +1 -1
  305. package/dist/registry.js +16 -4
  306. package/dist/registry.js.map +1 -1
  307. package/package.json +2 -2
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "std-movement",
3
3
  "version": "1.0.0",
4
- "description": "Entity movement behavior: idle, moving, collision detection and resolution. Pure function: params in, OrbitalDefinition out.",
4
+ "description": "std-movement as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "MovableEntityOrbital",
@@ -38,20 +38,68 @@
38
38
  {
39
39
  "name": "x",
40
40
  "type": "number",
41
- "default": 0
41
+ "default": 0.0
42
42
  },
43
43
  {
44
44
  "name": "y",
45
45
  "type": "number",
46
- "default": 0
46
+ "default": 0.0
47
47
  }
48
48
  ]
49
49
  },
50
50
  "traits": [
51
51
  {
52
52
  "name": "MovableEntityMovement",
53
- "linkedEntity": "MovableEntity",
54
53
  "category": "interaction",
54
+ "linkedEntity": "MovableEntity",
55
+ "emits": [
56
+ {
57
+ "event": "MovableEntityLoaded",
58
+ "description": "Fired when MovableEntity finishes loading",
59
+ "scope": "internal",
60
+ "payload": [
61
+ {
62
+ "name": "id",
63
+ "type": "string"
64
+ },
65
+ {
66
+ "name": "name",
67
+ "type": "string"
68
+ },
69
+ {
70
+ "name": "description",
71
+ "type": "string"
72
+ },
73
+ {
74
+ "name": "status",
75
+ "type": "string"
76
+ },
77
+ {
78
+ "name": "createdAt",
79
+ "type": "string"
80
+ },
81
+ {
82
+ "name": "x",
83
+ "type": "number"
84
+ },
85
+ {
86
+ "name": "y",
87
+ "type": "number"
88
+ }
89
+ ]
90
+ },
91
+ {
92
+ "event": "MovableEntityLoadFailed",
93
+ "description": "Fired when MovableEntity fails to load",
94
+ "scope": "internal",
95
+ "payload": [
96
+ {
97
+ "name": "message",
98
+ "type": "string"
99
+ }
100
+ ]
101
+ }
102
+ ],
55
103
  "stateMachine": {
56
104
  "states": [
57
105
  {
@@ -112,6 +160,20 @@
112
160
  {
113
161
  "key": "CLOSE",
114
162
  "name": "Close"
163
+ },
164
+ {
165
+ "key": "MovableEntityLoaded",
166
+ "name": "MovableEntity loaded"
167
+ },
168
+ {
169
+ "key": "MovableEntityLoadFailed",
170
+ "name": "MovableEntity load failed",
171
+ "payload": [
172
+ {
173
+ "name": "message",
174
+ "type": "string"
175
+ }
176
+ ]
115
177
  }
116
178
  ],
117
179
  "transitions": [
@@ -122,7 +184,13 @@
122
184
  "effects": [
123
185
  [
124
186
  "fetch",
125
- "MovableEntity"
187
+ "MovableEntity",
188
+ {
189
+ "emit": {
190
+ "failure": "MovableEntityLoadFailed",
191
+ "success": "MovableEntityLoaded"
192
+ }
193
+ }
126
194
  ],
127
195
  [
128
196
  "render-ui",
@@ -130,11 +198,10 @@
130
198
  {
131
199
  "type": "stack",
132
200
  "direction": "vertical",
133
- "gap": "lg",
134
201
  "children": [
135
202
  {
136
- "type": "stack",
137
203
  "direction": "horizontal",
204
+ "type": "stack",
138
205
  "gap": "md",
139
206
  "justify": "space-between",
140
207
  "children": [
@@ -144,20 +211,20 @@
144
211
  "gap": "md",
145
212
  "children": [
146
213
  {
147
- "type": "icon",
148
214
  "name": "move",
215
+ "type": "icon",
149
216
  "size": "lg"
150
217
  },
151
218
  {
219
+ "variant": "h2",
152
220
  "type": "typography",
153
- "content": "MovableEntitys Movement",
154
- "variant": "h2"
221
+ "content": "MovableEntitys Movement"
155
222
  }
156
223
  ]
157
224
  },
158
225
  {
159
- "type": "status-dot",
160
226
  "status": "inactive",
227
+ "type": "status-dot",
161
228
  "label": "Idle"
162
229
  }
163
230
  ]
@@ -166,8 +233,6 @@
166
233
  "type": "divider"
167
234
  },
168
235
  {
169
- "type": "simple-grid",
170
- "columns": 2,
171
236
  "children": [
172
237
  {
173
238
  "type": "stat-display",
@@ -182,8 +247,6 @@
182
247
  ]
183
248
  },
184
249
  {
185
- "type": "stat-display",
186
- "label": "Y",
187
250
  "value": [
188
251
  "object/get",
189
252
  [
@@ -191,23 +254,24 @@
191
254
  "@entity"
192
255
  ],
193
256
  "y"
194
- ]
257
+ ],
258
+ "label": "Y",
259
+ "type": "stat-display"
195
260
  }
196
- ]
261
+ ],
262
+ "type": "simple-grid",
263
+ "columns": 2.0
197
264
  },
198
265
  {
199
- "type": "stack",
200
- "direction": "horizontal",
201
- "gap": "md",
202
266
  "children": [
203
267
  {
204
- "type": "typography",
205
268
  "variant": "caption",
269
+ "type": "typography",
206
270
  "content": "Name"
207
271
  },
208
272
  {
209
- "type": "typography",
210
273
  "variant": "body",
274
+ "type": "typography",
211
275
  "content": [
212
276
  "object/get",
213
277
  [
@@ -217,11 +281,12 @@
217
281
  "name"
218
282
  ]
219
283
  }
220
- ]
284
+ ],
285
+ "gap": "md",
286
+ "type": "stack",
287
+ "direction": "horizontal"
221
288
  },
222
289
  {
223
- "type": "stack",
224
- "direction": "horizontal",
225
290
  "gap": "md",
226
291
  "children": [
227
292
  {
@@ -231,7 +296,6 @@
231
296
  },
232
297
  {
233
298
  "type": "typography",
234
- "variant": "body",
235
299
  "content": [
236
300
  "object/get",
237
301
  [
@@ -239,23 +303,24 @@
239
303
  "@entity"
240
304
  ],
241
305
  "description"
242
- ]
306
+ ],
307
+ "variant": "body"
243
308
  }
244
- ]
309
+ ],
310
+ "direction": "horizontal",
311
+ "type": "stack"
245
312
  },
246
313
  {
247
- "type": "stack",
248
314
  "direction": "horizontal",
249
315
  "gap": "md",
316
+ "type": "stack",
250
317
  "children": [
251
318
  {
252
- "type": "typography",
253
319
  "variant": "caption",
320
+ "type": "typography",
254
321
  "content": "Status"
255
322
  },
256
323
  {
257
- "type": "typography",
258
- "variant": "body",
259
324
  "content": [
260
325
  "object/get",
261
326
  [
@@ -263,23 +328,22 @@
263
328
  "@entity"
264
329
  ],
265
330
  "status"
266
- ]
331
+ ],
332
+ "type": "typography",
333
+ "variant": "body"
267
334
  }
268
335
  ]
269
336
  },
270
337
  {
271
- "type": "stack",
272
- "direction": "horizontal",
273
338
  "gap": "md",
339
+ "type": "stack",
274
340
  "children": [
275
341
  {
342
+ "content": "CreatedAt",
276
343
  "type": "typography",
277
- "variant": "caption",
278
- "content": "CreatedAt"
344
+ "variant": "caption"
279
345
  },
280
346
  {
281
- "type": "typography",
282
- "variant": "body",
283
347
  "content": [
284
348
  "object/get",
285
349
  [
@@ -287,29 +351,33 @@
287
351
  "@entity"
288
352
  ],
289
353
  "createdAt"
290
- ]
354
+ ],
355
+ "type": "typography",
356
+ "variant": "body"
291
357
  }
292
- ]
358
+ ],
359
+ "direction": "horizontal"
293
360
  },
294
361
  {
295
362
  "type": "divider"
296
363
  },
297
364
  {
298
- "type": "stack",
299
- "direction": "horizontal",
300
- "gap": "sm",
301
365
  "justify": "end",
366
+ "type": "stack",
302
367
  "children": [
303
368
  {
304
- "type": "button",
305
- "label": "Move",
306
369
  "event": "MOVE",
370
+ "type": "button",
307
371
  "variant": "primary",
308
- "icon": "navigation"
372
+ "icon": "navigation",
373
+ "label": "Move"
309
374
  }
310
- ]
375
+ ],
376
+ "gap": "sm",
377
+ "direction": "horizontal"
311
378
  }
312
- ]
379
+ ],
380
+ "gap": "lg"
313
381
  }
314
382
  ]
315
383
  ]
@@ -321,44 +389,47 @@
321
389
  "effects": [
322
390
  [
323
391
  "fetch",
324
- "MovableEntity"
392
+ "MovableEntity",
393
+ {
394
+ "emit": {
395
+ "success": "MovableEntityLoaded",
396
+ "failure": "MovableEntityLoadFailed"
397
+ }
398
+ }
325
399
  ],
326
400
  [
327
401
  "render-ui",
328
402
  "main",
329
403
  {
330
- "type": "stack",
331
- "direction": "vertical",
332
- "gap": "lg",
333
404
  "children": [
334
405
  {
335
- "type": "stack",
336
- "direction": "horizontal",
337
406
  "gap": "md",
407
+ "type": "stack",
338
408
  "justify": "space-between",
409
+ "direction": "horizontal",
339
410
  "children": [
340
411
  {
341
- "type": "stack",
342
- "direction": "horizontal",
343
412
  "gap": "md",
344
413
  "children": [
345
414
  {
346
415
  "type": "icon",
347
- "name": "move",
348
- "size": "lg"
416
+ "size": "lg",
417
+ "name": "move"
349
418
  },
350
419
  {
351
420
  "type": "typography",
352
- "content": "MovableEntitys Movement",
353
- "variant": "h2"
421
+ "variant": "h2",
422
+ "content": "MovableEntitys Movement"
354
423
  }
355
- ]
424
+ ],
425
+ "direction": "horizontal",
426
+ "type": "stack"
356
427
  },
357
428
  {
358
- "type": "status-dot",
359
- "status": "active",
360
429
  "pulse": true,
361
- "label": "Moving"
430
+ "type": "status-dot",
431
+ "label": "Moving",
432
+ "status": "active"
362
433
  }
363
434
  ]
364
435
  },
@@ -366,8 +437,7 @@
366
437
  "type": "divider"
367
438
  },
368
439
  {
369
- "type": "simple-grid",
370
- "columns": 2,
440
+ "columns": 2.0,
371
441
  "children": [
372
442
  {
373
443
  "type": "stat-display",
@@ -382,8 +452,8 @@
382
452
  ]
383
453
  },
384
454
  {
385
- "type": "stat-display",
386
455
  "label": "Y",
456
+ "type": "stat-display",
387
457
  "value": [
388
458
  "object/get",
389
459
  [
@@ -393,12 +463,11 @@
393
463
  "y"
394
464
  ]
395
465
  }
396
- ]
466
+ ],
467
+ "type": "simple-grid"
397
468
  },
398
469
  {
399
470
  "type": "stack",
400
- "direction": "horizontal",
401
- "gap": "md",
402
471
  "children": [
403
472
  {
404
473
  "type": "typography",
@@ -407,7 +476,6 @@
407
476
  },
408
477
  {
409
478
  "type": "typography",
410
- "variant": "body",
411
479
  "content": [
412
480
  "object/get",
413
481
  [
@@ -415,23 +483,22 @@
415
483
  "@entity"
416
484
  ],
417
485
  "name"
418
- ]
486
+ ],
487
+ "variant": "body"
419
488
  }
420
- ]
489
+ ],
490
+ "gap": "md",
491
+ "direction": "horizontal"
421
492
  },
422
493
  {
423
- "type": "stack",
424
494
  "direction": "horizontal",
425
- "gap": "md",
426
495
  "children": [
427
496
  {
428
- "type": "typography",
429
497
  "variant": "caption",
430
- "content": "Description"
498
+ "content": "Description",
499
+ "type": "typography"
431
500
  },
432
501
  {
433
- "type": "typography",
434
- "variant": "body",
435
502
  "content": [
436
503
  "object/get",
437
504
  [
@@ -439,23 +506,24 @@
439
506
  "@entity"
440
507
  ],
441
508
  "description"
442
- ]
509
+ ],
510
+ "type": "typography",
511
+ "variant": "body"
443
512
  }
444
- ]
513
+ ],
514
+ "gap": "md",
515
+ "type": "stack"
445
516
  },
446
517
  {
447
518
  "type": "stack",
448
- "direction": "horizontal",
449
- "gap": "md",
450
519
  "children": [
451
520
  {
452
- "type": "typography",
521
+ "content": "Status",
453
522
  "variant": "caption",
454
- "content": "Status"
523
+ "type": "typography"
455
524
  },
456
525
  {
457
526
  "type": "typography",
458
- "variant": "body",
459
527
  "content": [
460
528
  "object/get",
461
529
  [
@@ -463,19 +531,20 @@
463
531
  "@entity"
464
532
  ],
465
533
  "status"
466
- ]
534
+ ],
535
+ "variant": "body"
467
536
  }
468
- ]
537
+ ],
538
+ "gap": "md",
539
+ "direction": "horizontal"
469
540
  },
470
541
  {
471
- "type": "stack",
472
542
  "direction": "horizontal",
473
- "gap": "md",
474
543
  "children": [
475
544
  {
545
+ "content": "CreatedAt",
476
546
  "type": "typography",
477
- "variant": "caption",
478
- "content": "CreatedAt"
547
+ "variant": "caption"
479
548
  },
480
549
  {
481
550
  "type": "typography",
@@ -489,27 +558,32 @@
489
558
  "createdAt"
490
559
  ]
491
560
  }
492
- ]
561
+ ],
562
+ "gap": "md",
563
+ "type": "stack"
493
564
  },
494
565
  {
495
566
  "type": "divider"
496
567
  },
497
568
  {
498
- "type": "stack",
499
- "direction": "horizontal",
500
- "gap": "sm",
501
- "justify": "end",
502
569
  "children": [
503
570
  {
504
571
  "type": "button",
505
- "label": "Stop",
506
572
  "event": "STOP",
573
+ "label": "Stop",
507
574
  "variant": "danger",
508
575
  "icon": "square"
509
576
  }
510
- ]
577
+ ],
578
+ "type": "stack",
579
+ "direction": "horizontal",
580
+ "justify": "end",
581
+ "gap": "sm"
511
582
  }
512
- ]
583
+ ],
584
+ "direction": "vertical",
585
+ "type": "stack",
586
+ "gap": "lg"
513
587
  }
514
588
  ]
515
589
  ]
@@ -521,56 +595,59 @@
521
595
  "effects": [
522
596
  [
523
597
  "fetch",
524
- "MovableEntity"
598
+ "MovableEntity",
599
+ {
600
+ "emit": {
601
+ "failure": "MovableEntityLoadFailed",
602
+ "success": "MovableEntityLoaded"
603
+ }
604
+ }
525
605
  ],
526
606
  [
527
607
  "render-ui",
528
608
  "main",
529
609
  {
530
- "type": "stack",
531
- "direction": "vertical",
532
- "gap": "lg",
533
610
  "children": [
534
611
  {
535
612
  "type": "stack",
536
- "direction": "horizontal",
537
- "gap": "md",
538
613
  "justify": "space-between",
614
+ "direction": "horizontal",
539
615
  "children": [
540
616
  {
541
- "type": "stack",
542
- "direction": "horizontal",
543
617
  "gap": "md",
544
618
  "children": [
545
619
  {
620
+ "size": "lg",
546
621
  "type": "icon",
547
- "name": "move",
548
- "size": "lg"
622
+ "name": "move"
549
623
  },
550
624
  {
551
625
  "type": "typography",
552
- "content": "MovableEntitys Movement",
553
- "variant": "h2"
626
+ "variant": "h2",
627
+ "content": "MovableEntitys Movement"
554
628
  }
555
- ]
629
+ ],
630
+ "type": "stack",
631
+ "direction": "horizontal"
556
632
  },
557
633
  {
558
634
  "type": "status-dot",
559
- "status": "inactive",
560
- "label": "Idle"
635
+ "label": "Idle",
636
+ "status": "inactive"
561
637
  }
562
- ]
638
+ ],
639
+ "gap": "md"
563
640
  },
564
641
  {
565
642
  "type": "divider"
566
643
  },
567
644
  {
568
645
  "type": "simple-grid",
569
- "columns": 2,
646
+ "columns": 2.0,
570
647
  "children": [
571
648
  {
572
- "type": "stat-display",
573
649
  "label": "X",
650
+ "type": "stat-display",
574
651
  "value": [
575
652
  "object/get",
576
653
  [
@@ -581,8 +658,6 @@
581
658
  ]
582
659
  },
583
660
  {
584
- "type": "stat-display",
585
- "label": "Y",
586
661
  "value": [
587
662
  "object/get",
588
663
  [
@@ -590,14 +665,16 @@
590
665
  "@entity"
591
666
  ],
592
667
  "y"
593
- ]
668
+ ],
669
+ "type": "stat-display",
670
+ "label": "Y"
594
671
  }
595
672
  ]
596
673
  },
597
674
  {
598
- "type": "stack",
599
- "direction": "horizontal",
600
675
  "gap": "md",
676
+ "direction": "horizontal",
677
+ "type": "stack",
601
678
  "children": [
602
679
  {
603
680
  "type": "typography",
@@ -606,7 +683,6 @@
606
683
  },
607
684
  {
608
685
  "type": "typography",
609
- "variant": "body",
610
686
  "content": [
611
687
  "object/get",
612
688
  [
@@ -614,23 +690,20 @@
614
690
  "@entity"
615
691
  ],
616
692
  "name"
617
- ]
693
+ ],
694
+ "variant": "body"
618
695
  }
619
696
  ]
620
697
  },
621
698
  {
622
- "type": "stack",
623
- "direction": "horizontal",
624
- "gap": "md",
625
699
  "children": [
626
700
  {
701
+ "content": "Description",
627
702
  "type": "typography",
628
- "variant": "caption",
629
- "content": "Description"
703
+ "variant": "caption"
630
704
  },
631
705
  {
632
706
  "type": "typography",
633
- "variant": "body",
634
707
  "content": [
635
708
  "object/get",
636
709
  [
@@ -638,14 +711,16 @@
638
711
  "@entity"
639
712
  ],
640
713
  "description"
641
- ]
714
+ ],
715
+ "variant": "body"
642
716
  }
643
- ]
717
+ ],
718
+ "type": "stack",
719
+ "gap": "md",
720
+ "direction": "horizontal"
644
721
  },
645
722
  {
646
723
  "type": "stack",
647
- "direction": "horizontal",
648
- "gap": "md",
649
724
  "children": [
650
725
  {
651
726
  "type": "typography",
@@ -654,7 +729,6 @@
654
729
  },
655
730
  {
656
731
  "type": "typography",
657
- "variant": "body",
658
732
  "content": [
659
733
  "object/get",
660
734
  [
@@ -662,14 +736,15 @@
662
736
  "@entity"
663
737
  ],
664
738
  "status"
665
- ]
739
+ ],
740
+ "variant": "body"
666
741
  }
667
- ]
742
+ ],
743
+ "gap": "md",
744
+ "direction": "horizontal"
668
745
  },
669
746
  {
670
747
  "type": "stack",
671
- "direction": "horizontal",
672
- "gap": "md",
673
748
  "children": [
674
749
  {
675
750
  "type": "typography",
@@ -678,7 +753,6 @@
678
753
  },
679
754
  {
680
755
  "type": "typography",
681
- "variant": "body",
682
756
  "content": [
683
757
  "object/get",
684
758
  [
@@ -686,29 +760,35 @@
686
760
  "@entity"
687
761
  ],
688
762
  "createdAt"
689
- ]
763
+ ],
764
+ "variant": "body"
690
765
  }
691
- ]
766
+ ],
767
+ "direction": "horizontal",
768
+ "gap": "md"
692
769
  },
693
770
  {
694
771
  "type": "divider"
695
772
  },
696
773
  {
697
- "type": "stack",
698
774
  "direction": "horizontal",
775
+ "type": "stack",
699
776
  "gap": "sm",
700
777
  "justify": "end",
701
778
  "children": [
702
779
  {
703
- "type": "button",
780
+ "icon": "navigation",
704
781
  "label": "Move",
705
782
  "event": "MOVE",
706
- "variant": "primary",
707
- "icon": "navigation"
783
+ "type": "button",
784
+ "variant": "primary"
708
785
  }
709
786
  ]
710
787
  }
711
- ]
788
+ ],
789
+ "direction": "vertical",
790
+ "type": "stack",
791
+ "gap": "lg"
712
792
  }
713
793
  ]
714
794
  ]
@@ -722,24 +802,22 @@
722
802
  "render-ui",
723
803
  "modal",
724
804
  {
725
- "type": "stack",
726
805
  "direction": "vertical",
727
- "gap": "md",
728
806
  "children": [
729
807
  {
730
- "type": "stack",
731
808
  "direction": "horizontal",
809
+ "type": "stack",
732
810
  "gap": "sm",
733
811
  "children": [
734
812
  {
735
- "type": "icon",
736
813
  "name": "alert-triangle",
737
- "size": "md"
814
+ "size": "md",
815
+ "type": "icon"
738
816
  },
739
817
  {
740
818
  "type": "typography",
741
- "content": "Collision Detected",
742
- "variant": "h3"
819
+ "variant": "h3",
820
+ "content": "Collision Detected"
743
821
  }
744
822
  ]
745
823
  },
@@ -747,32 +825,34 @@
747
825
  "type": "divider"
748
826
  },
749
827
  {
750
- "type": "typography",
751
828
  "content": "A collision has been detected. Resolve to continue.",
829
+ "type": "typography",
752
830
  "variant": "body"
753
831
  },
754
832
  {
755
- "type": "stack",
756
- "direction": "horizontal",
757
- "gap": "sm",
758
- "justify": "end",
759
833
  "children": [
760
834
  {
761
- "type": "button",
762
- "label": "Cancel",
835
+ "variant": "ghost",
763
836
  "event": "CANCEL",
764
- "variant": "ghost"
837
+ "type": "button",
838
+ "label": "Cancel"
765
839
  },
766
840
  {
767
- "type": "button",
841
+ "icon": "check",
768
842
  "label": "Resolve",
769
- "event": "RESOLVE",
843
+ "type": "button",
770
844
  "variant": "primary",
771
- "icon": "check"
845
+ "event": "RESOLVE"
772
846
  }
773
- ]
847
+ ],
848
+ "type": "stack",
849
+ "gap": "sm",
850
+ "direction": "horizontal",
851
+ "justify": "end"
774
852
  }
775
- ]
853
+ ],
854
+ "type": "stack",
855
+ "gap": "md"
776
856
  }
777
857
  ]
778
858
  ]
@@ -789,52 +869,55 @@
789
869
  ],
790
870
  [
791
871
  "fetch",
792
- "MovableEntity"
872
+ "MovableEntity",
873
+ {
874
+ "emit": {
875
+ "failure": "MovableEntityLoadFailed",
876
+ "success": "MovableEntityLoaded"
877
+ }
878
+ }
793
879
  ],
794
880
  [
795
881
  "render-ui",
796
882
  "main",
797
883
  {
798
- "type": "stack",
799
- "direction": "vertical",
800
- "gap": "lg",
801
884
  "children": [
802
885
  {
803
- "type": "stack",
804
886
  "direction": "horizontal",
805
887
  "gap": "md",
806
888
  "justify": "space-between",
807
889
  "children": [
808
890
  {
809
- "type": "stack",
810
- "direction": "horizontal",
811
891
  "gap": "md",
892
+ "direction": "horizontal",
812
893
  "children": [
813
894
  {
895
+ "size": "lg",
814
896
  "type": "icon",
815
- "name": "move",
816
- "size": "lg"
897
+ "name": "move"
817
898
  },
818
899
  {
819
900
  "type": "typography",
820
901
  "content": "MovableEntitys Movement",
821
902
  "variant": "h2"
822
903
  }
823
- ]
904
+ ],
905
+ "type": "stack"
824
906
  },
825
907
  {
826
908
  "type": "status-dot",
827
- "status": "inactive",
828
- "label": "Idle"
909
+ "label": "Idle",
910
+ "status": "inactive"
829
911
  }
830
- ]
912
+ ],
913
+ "type": "stack"
831
914
  },
832
915
  {
833
916
  "type": "divider"
834
917
  },
835
918
  {
836
919
  "type": "simple-grid",
837
- "columns": 2,
920
+ "columns": 2.0,
838
921
  "children": [
839
922
  {
840
923
  "type": "stat-display",
@@ -849,7 +932,6 @@
849
932
  ]
850
933
  },
851
934
  {
852
- "type": "stat-display",
853
935
  "label": "Y",
854
936
  "value": [
855
937
  "object/get",
@@ -858,13 +940,12 @@
858
940
  "@entity"
859
941
  ],
860
942
  "y"
861
- ]
943
+ ],
944
+ "type": "stat-display"
862
945
  }
863
946
  ]
864
947
  },
865
948
  {
866
- "type": "stack",
867
- "direction": "horizontal",
868
949
  "gap": "md",
869
950
  "children": [
870
951
  {
@@ -884,12 +965,13 @@
884
965
  "name"
885
966
  ]
886
967
  }
887
- ]
968
+ ],
969
+ "type": "stack",
970
+ "direction": "horizontal"
888
971
  },
889
972
  {
890
973
  "type": "stack",
891
974
  "direction": "horizontal",
892
- "gap": "md",
893
975
  "children": [
894
976
  {
895
977
  "type": "typography",
@@ -908,11 +990,10 @@
908
990
  "description"
909
991
  ]
910
992
  }
911
- ]
993
+ ],
994
+ "gap": "md"
912
995
  },
913
996
  {
914
- "type": "stack",
915
- "direction": "horizontal",
916
997
  "gap": "md",
917
998
  "children": [
918
999
  {
@@ -921,7 +1002,6 @@
921
1002
  "content": "Status"
922
1003
  },
923
1004
  {
924
- "type": "typography",
925
1005
  "variant": "body",
926
1006
  "content": [
927
1007
  "object/get",
@@ -930,23 +1010,25 @@
930
1010
  "@entity"
931
1011
  ],
932
1012
  "status"
933
- ]
1013
+ ],
1014
+ "type": "typography"
934
1015
  }
935
- ]
1016
+ ],
1017
+ "direction": "horizontal",
1018
+ "type": "stack"
936
1019
  },
937
1020
  {
938
1021
  "type": "stack",
939
- "direction": "horizontal",
940
1022
  "gap": "md",
1023
+ "direction": "horizontal",
941
1024
  "children": [
942
1025
  {
1026
+ "content": "CreatedAt",
943
1027
  "type": "typography",
944
- "variant": "caption",
945
- "content": "CreatedAt"
1028
+ "variant": "caption"
946
1029
  },
947
1030
  {
948
1031
  "type": "typography",
949
- "variant": "body",
950
1032
  "content": [
951
1033
  "object/get",
952
1034
  [
@@ -954,7 +1036,8 @@
954
1036
  "@entity"
955
1037
  ],
956
1038
  "createdAt"
957
- ]
1039
+ ],
1040
+ "variant": "body"
958
1041
  }
959
1042
  ]
960
1043
  },
@@ -963,20 +1046,23 @@
963
1046
  },
964
1047
  {
965
1048
  "type": "stack",
966
- "direction": "horizontal",
967
1049
  "gap": "sm",
1050
+ "direction": "horizontal",
968
1051
  "justify": "end",
969
1052
  "children": [
970
1053
  {
971
- "type": "button",
972
1054
  "label": "Move",
973
1055
  "event": "MOVE",
974
- "variant": "primary",
975
- "icon": "navigation"
1056
+ "icon": "navigation",
1057
+ "type": "button",
1058
+ "variant": "primary"
976
1059
  }
977
1060
  ]
978
1061
  }
979
- ]
1062
+ ],
1063
+ "type": "stack",
1064
+ "gap": "lg",
1065
+ "direction": "vertical"
980
1066
  }
981
1067
  ]
982
1068
  ]
@@ -993,56 +1079,58 @@
993
1079
  ],
994
1080
  [
995
1081
  "fetch",
996
- "MovableEntity"
1082
+ "MovableEntity",
1083
+ {
1084
+ "emit": {
1085
+ "failure": "MovableEntityLoadFailed",
1086
+ "success": "MovableEntityLoaded"
1087
+ }
1088
+ }
997
1089
  ],
998
1090
  [
999
1091
  "render-ui",
1000
1092
  "main",
1001
1093
  {
1002
- "type": "stack",
1003
1094
  "direction": "vertical",
1004
- "gap": "lg",
1005
1095
  "children": [
1006
1096
  {
1007
1097
  "type": "stack",
1008
- "direction": "horizontal",
1009
1098
  "gap": "md",
1010
1099
  "justify": "space-between",
1011
1100
  "children": [
1012
1101
  {
1013
- "type": "stack",
1014
- "direction": "horizontal",
1015
1102
  "gap": "md",
1103
+ "direction": "horizontal",
1016
1104
  "children": [
1017
1105
  {
1018
- "type": "icon",
1019
1106
  "name": "move",
1020
- "size": "lg"
1107
+ "size": "lg",
1108
+ "type": "icon"
1021
1109
  },
1022
1110
  {
1023
- "type": "typography",
1024
1111
  "content": "MovableEntitys Movement",
1025
- "variant": "h2"
1112
+ "variant": "h2",
1113
+ "type": "typography"
1026
1114
  }
1027
- ]
1115
+ ],
1116
+ "type": "stack"
1028
1117
  },
1029
1118
  {
1030
- "type": "status-dot",
1031
1119
  "status": "inactive",
1120
+ "type": "status-dot",
1032
1121
  "label": "Idle"
1033
1122
  }
1034
- ]
1123
+ ],
1124
+ "direction": "horizontal"
1035
1125
  },
1036
1126
  {
1037
1127
  "type": "divider"
1038
1128
  },
1039
1129
  {
1130
+ "columns": 2.0,
1040
1131
  "type": "simple-grid",
1041
- "columns": 2,
1042
1132
  "children": [
1043
1133
  {
1044
- "type": "stat-display",
1045
- "label": "X",
1046
1134
  "value": [
1047
1135
  "object/get",
1048
1136
  [
@@ -1050,7 +1138,9 @@
1050
1138
  "@entity"
1051
1139
  ],
1052
1140
  "x"
1053
- ]
1141
+ ],
1142
+ "type": "stat-display",
1143
+ "label": "X"
1054
1144
  },
1055
1145
  {
1056
1146
  "type": "stat-display",
@@ -1067,14 +1157,12 @@
1067
1157
  ]
1068
1158
  },
1069
1159
  {
1070
- "type": "stack",
1071
- "direction": "horizontal",
1072
1160
  "gap": "md",
1073
1161
  "children": [
1074
1162
  {
1075
- "type": "typography",
1076
1163
  "variant": "caption",
1077
- "content": "Name"
1164
+ "content": "Name",
1165
+ "type": "typography"
1078
1166
  },
1079
1167
  {
1080
1168
  "type": "typography",
@@ -1088,20 +1176,21 @@
1088
1176
  "name"
1089
1177
  ]
1090
1178
  }
1091
- ]
1179
+ ],
1180
+ "type": "stack",
1181
+ "direction": "horizontal"
1092
1182
  },
1093
1183
  {
1094
- "type": "stack",
1095
1184
  "direction": "horizontal",
1185
+ "type": "stack",
1096
1186
  "gap": "md",
1097
1187
  "children": [
1098
1188
  {
1189
+ "content": "Description",
1099
1190
  "type": "typography",
1100
- "variant": "caption",
1101
- "content": "Description"
1191
+ "variant": "caption"
1102
1192
  },
1103
1193
  {
1104
- "type": "typography",
1105
1194
  "variant": "body",
1106
1195
  "content": [
1107
1196
  "object/get",
@@ -1110,22 +1199,19 @@
1110
1199
  "@entity"
1111
1200
  ],
1112
1201
  "description"
1113
- ]
1202
+ ],
1203
+ "type": "typography"
1114
1204
  }
1115
1205
  ]
1116
1206
  },
1117
1207
  {
1118
- "type": "stack",
1119
- "direction": "horizontal",
1120
- "gap": "md",
1121
1208
  "children": [
1122
1209
  {
1210
+ "content": "Status",
1123
1211
  "type": "typography",
1124
- "variant": "caption",
1125
- "content": "Status"
1212
+ "variant": "caption"
1126
1213
  },
1127
1214
  {
1128
- "type": "typography",
1129
1215
  "variant": "body",
1130
1216
  "content": [
1131
1217
  "object/get",
@@ -1134,23 +1220,26 @@
1134
1220
  "@entity"
1135
1221
  ],
1136
1222
  "status"
1137
- ]
1223
+ ],
1224
+ "type": "typography"
1138
1225
  }
1139
- ]
1226
+ ],
1227
+ "type": "stack",
1228
+ "direction": "horizontal",
1229
+ "gap": "md"
1140
1230
  },
1141
1231
  {
1142
- "type": "stack",
1143
1232
  "direction": "horizontal",
1233
+ "type": "stack",
1144
1234
  "gap": "md",
1145
1235
  "children": [
1146
1236
  {
1147
- "type": "typography",
1148
1237
  "variant": "caption",
1149
- "content": "CreatedAt"
1238
+ "content": "CreatedAt",
1239
+ "type": "typography"
1150
1240
  },
1151
1241
  {
1152
1242
  "type": "typography",
1153
- "variant": "body",
1154
1243
  "content": [
1155
1244
  "object/get",
1156
1245
  [
@@ -1158,7 +1247,8 @@
1158
1247
  "@entity"
1159
1248
  ],
1160
1249
  "createdAt"
1161
- ]
1250
+ ],
1251
+ "variant": "body"
1162
1252
  }
1163
1253
  ]
1164
1254
  },
@@ -1167,20 +1257,22 @@
1167
1257
  },
1168
1258
  {
1169
1259
  "type": "stack",
1170
- "direction": "horizontal",
1171
- "gap": "sm",
1172
- "justify": "end",
1173
1260
  "children": [
1174
1261
  {
1262
+ "variant": "primary",
1175
1263
  "type": "button",
1176
1264
  "label": "Move",
1177
1265
  "event": "MOVE",
1178
- "variant": "primary",
1179
1266
  "icon": "navigation"
1180
1267
  }
1181
- ]
1268
+ ],
1269
+ "gap": "sm",
1270
+ "justify": "end",
1271
+ "direction": "horizontal"
1182
1272
  }
1183
- ]
1273
+ ],
1274
+ "gap": "lg",
1275
+ "type": "stack"
1184
1276
  }
1185
1277
  ]
1186
1278
  ]
@@ -1197,7 +1289,13 @@
1197
1289
  ],
1198
1290
  [
1199
1291
  "fetch",
1200
- "MovableEntity"
1292
+ "MovableEntity",
1293
+ {
1294
+ "emit": {
1295
+ "success": "MovableEntityLoaded",
1296
+ "failure": "MovableEntityLoadFailed"
1297
+ }
1298
+ }
1201
1299
  ],
1202
1300
  [
1203
1301
  "render-ui",
@@ -1208,15 +1306,10 @@
1208
1306
  "gap": "lg",
1209
1307
  "children": [
1210
1308
  {
1211
- "type": "stack",
1212
- "direction": "horizontal",
1213
- "gap": "md",
1214
1309
  "justify": "space-between",
1215
1310
  "children": [
1216
1311
  {
1217
1312
  "type": "stack",
1218
- "direction": "horizontal",
1219
- "gap": "md",
1220
1313
  "children": [
1221
1314
  {
1222
1315
  "type": "icon",
@@ -1224,25 +1317,28 @@
1224
1317
  "size": "lg"
1225
1318
  },
1226
1319
  {
1320
+ "variant": "h2",
1227
1321
  "type": "typography",
1228
- "content": "MovableEntitys Movement",
1229
- "variant": "h2"
1322
+ "content": "MovableEntitys Movement"
1230
1323
  }
1231
- ]
1324
+ ],
1325
+ "direction": "horizontal",
1326
+ "gap": "md"
1232
1327
  },
1233
1328
  {
1234
- "type": "status-dot",
1235
1329
  "status": "inactive",
1330
+ "type": "status-dot",
1236
1331
  "label": "Idle"
1237
1332
  }
1238
- ]
1333
+ ],
1334
+ "direction": "horizontal",
1335
+ "gap": "md",
1336
+ "type": "stack"
1239
1337
  },
1240
1338
  {
1241
1339
  "type": "divider"
1242
1340
  },
1243
1341
  {
1244
- "type": "simple-grid",
1245
- "columns": 2,
1246
1342
  "children": [
1247
1343
  {
1248
1344
  "type": "stat-display",
@@ -1258,7 +1354,6 @@
1258
1354
  },
1259
1355
  {
1260
1356
  "type": "stat-display",
1261
- "label": "Y",
1262
1357
  "value": [
1263
1358
  "object/get",
1264
1359
  [
@@ -1266,13 +1361,14 @@
1266
1361
  "@entity"
1267
1362
  ],
1268
1363
  "y"
1269
- ]
1364
+ ],
1365
+ "label": "Y"
1270
1366
  }
1271
- ]
1367
+ ],
1368
+ "columns": 2.0,
1369
+ "type": "simple-grid"
1272
1370
  },
1273
1371
  {
1274
- "type": "stack",
1275
- "direction": "horizontal",
1276
1372
  "gap": "md",
1277
1373
  "children": [
1278
1374
  {
@@ -1281,7 +1377,6 @@
1281
1377
  "content": "Name"
1282
1378
  },
1283
1379
  {
1284
- "type": "typography",
1285
1380
  "variant": "body",
1286
1381
  "content": [
1287
1382
  "object/get",
@@ -1290,14 +1385,15 @@
1290
1385
  "@entity"
1291
1386
  ],
1292
1387
  "name"
1293
- ]
1388
+ ],
1389
+ "type": "typography"
1294
1390
  }
1295
- ]
1391
+ ],
1392
+ "type": "stack",
1393
+ "direction": "horizontal"
1296
1394
  },
1297
1395
  {
1298
1396
  "type": "stack",
1299
- "direction": "horizontal",
1300
- "gap": "md",
1301
1397
  "children": [
1302
1398
  {
1303
1399
  "type": "typography",
@@ -1305,7 +1401,6 @@
1305
1401
  "content": "Description"
1306
1402
  },
1307
1403
  {
1308
- "type": "typography",
1309
1404
  "variant": "body",
1310
1405
  "content": [
1311
1406
  "object/get",
@@ -1314,23 +1409,26 @@
1314
1409
  "@entity"
1315
1410
  ],
1316
1411
  "description"
1317
- ]
1412
+ ],
1413
+ "type": "typography"
1318
1414
  }
1319
- ]
1415
+ ],
1416
+ "direction": "horizontal",
1417
+ "gap": "md"
1320
1418
  },
1321
1419
  {
1322
- "type": "stack",
1323
1420
  "direction": "horizontal",
1421
+ "type": "stack",
1324
1422
  "gap": "md",
1325
1423
  "children": [
1326
1424
  {
1327
- "type": "typography",
1328
1425
  "variant": "caption",
1426
+ "type": "typography",
1329
1427
  "content": "Status"
1330
1428
  },
1331
1429
  {
1332
- "type": "typography",
1333
1430
  "variant": "body",
1431
+ "type": "typography",
1334
1432
  "content": [
1335
1433
  "object/get",
1336
1434
  [
@@ -1343,7 +1441,6 @@
1343
1441
  ]
1344
1442
  },
1345
1443
  {
1346
- "type": "stack",
1347
1444
  "direction": "horizontal",
1348
1445
  "gap": "md",
1349
1446
  "children": [
@@ -1353,8 +1450,8 @@
1353
1450
  "content": "CreatedAt"
1354
1451
  },
1355
1452
  {
1356
- "type": "typography",
1357
1453
  "variant": "body",
1454
+ "type": "typography",
1358
1455
  "content": [
1359
1456
  "object/get",
1360
1457
  [
@@ -1364,25 +1461,26 @@
1364
1461
  "createdAt"
1365
1462
  ]
1366
1463
  }
1367
- ]
1464
+ ],
1465
+ "type": "stack"
1368
1466
  },
1369
1467
  {
1370
1468
  "type": "divider"
1371
1469
  },
1372
1470
  {
1373
1471
  "type": "stack",
1374
- "direction": "horizontal",
1375
1472
  "gap": "sm",
1376
- "justify": "end",
1377
1473
  "children": [
1378
1474
  {
1379
- "type": "button",
1380
- "label": "Move",
1381
- "event": "MOVE",
1382
1475
  "variant": "primary",
1383
- "icon": "navigation"
1476
+ "icon": "navigation",
1477
+ "event": "MOVE",
1478
+ "label": "Move",
1479
+ "type": "button"
1384
1480
  }
1385
- ]
1481
+ ],
1482
+ "justify": "end",
1483
+ "direction": "horizontal"
1386
1484
  }
1387
1485
  ]
1388
1486
  }
@@ -1390,7 +1488,8 @@
1390
1488
  ]
1391
1489
  }
1392
1490
  ]
1393
- }
1491
+ },
1492
+ "scope": "collection"
1394
1493
  }
1395
1494
  ],
1396
1495
  "pages": [
@@ -1406,4 +1505,4 @@
1406
1505
  ]
1407
1506
  }
1408
1507
  ]
1409
- }
1508
+ }