@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-messaging",
3
3
  "version": "1.0.0",
4
- "description": "Messaging molecule. Composes atoms via shared event bus: - stdBrowse: message list with \"Compose\" header action, \"View\" item action - stdModal (compose): compose/send message form (COMPOSE -> SEND) - stdModal (view): view message detail (VIEW with id payload)",
4
+ "description": "std-messaging as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "ChatMessageOrbital",
@@ -17,8 +17,8 @@
17
17
  ],
18
18
  "entity": {
19
19
  "name": "ChatMessage",
20
- "persistence": "persistent",
21
20
  "collection": "chatmessages",
21
+ "persistence": "persistent",
22
22
  "fields": [
23
23
  {
24
24
  "name": "id",
@@ -53,6 +53,24 @@
53
53
  "ref": "Browse.traits.BrowseItemBrowse",
54
54
  "name": "ChatMessageBrowse",
55
55
  "linkedEntity": "ChatMessage",
56
+ "listens": [
57
+ {
58
+ "event": "SEND",
59
+ "triggers": "INIT",
60
+ "source": {
61
+ "kind": "trait",
62
+ "trait": "ChatMessageCompose"
63
+ }
64
+ },
65
+ {
66
+ "event": "MESSAGE_VIEWED",
67
+ "triggers": "INIT",
68
+ "source": {
69
+ "kind": "trait",
70
+ "trait": "ChatMessageView"
71
+ }
72
+ }
73
+ ],
56
74
  "effects": {
57
75
  "INIT": [
58
76
  [
@@ -64,74 +82,73 @@
64
82
  "main",
65
83
  {
66
84
  "type": "stack",
67
- "direction": "vertical",
68
- "gap": "lg",
69
85
  "className": "max-w-5xl mx-auto w-full",
70
86
  "children": [
71
87
  {
72
88
  "type": "stack",
73
- "direction": "horizontal",
74
- "gap": "md",
75
89
  "justify": "space-between",
76
90
  "align": "center",
77
91
  "children": [
78
92
  {
79
- "type": "stack",
80
- "direction": "horizontal",
81
- "gap": "sm",
82
- "align": "center",
83
93
  "children": [
84
94
  {
85
- "type": "icon",
95
+ "size": "lg",
86
96
  "name": "message-circle",
87
- "size": "lg"
97
+ "type": "icon"
88
98
  },
89
99
  {
90
- "type": "typography",
91
100
  "content": "ChatMessages",
92
- "variant": "h2"
101
+ "variant": "h2",
102
+ "type": "typography"
93
103
  }
94
- ]
104
+ ],
105
+ "direction": "horizontal",
106
+ "gap": "sm",
107
+ "align": "center",
108
+ "type": "stack"
95
109
  },
96
110
  {
97
- "type": "stack",
98
111
  "direction": "horizontal",
99
112
  "gap": "sm",
113
+ "type": "stack",
100
114
  "children": [
101
115
  {
116
+ "variant": "primary",
117
+ "icon": "edit",
102
118
  "type": "button",
103
119
  "label": "Compose",
104
- "event": "COMPOSE",
105
- "variant": "primary",
106
- "icon": "edit"
120
+ "event": "COMPOSE"
107
121
  }
108
122
  ]
109
123
  }
110
- ]
124
+ ],
125
+ "gap": "md",
126
+ "direction": "horizontal"
111
127
  },
112
128
  {
113
129
  "type": "divider"
114
130
  },
115
131
  {
116
- "type": "data-grid",
117
- "entity": "ChatMessage",
118
- "emptyIcon": "inbox",
119
132
  "emptyTitle": "No messages yet",
120
133
  "emptyDescription": "Start a new conversation.",
134
+ "emptyIcon": "inbox",
135
+ "entity": "ChatMessage",
136
+ "variant": "compact",
121
137
  "itemActions": [
122
138
  {
123
- "label": "View",
124
- "event": "VIEW",
125
139
  "variant": "ghost",
126
- "size": "sm"
140
+ "label": "View",
141
+ "size": "sm",
142
+ "event": "VIEW"
127
143
  }
128
144
  ],
145
+ "type": "data-grid",
129
146
  "columns": [
130
147
  {
148
+ "icon": "message-circle",
131
149
  "name": "name",
132
150
  "label": "Name",
133
- "variant": "h4",
134
- "icon": "message-circle"
151
+ "variant": "h4"
135
152
  },
136
153
  {
137
154
  "name": "description",
@@ -139,15 +156,16 @@
139
156
  "variant": "caption"
140
157
  },
141
158
  {
159
+ "format": "date",
142
160
  "name": "status",
143
- "label": "Status",
144
161
  "variant": "caption",
145
- "format": "date"
162
+ "label": "Status"
146
163
  }
147
- ],
148
- "variant": "compact"
164
+ ]
149
165
  }
150
- ]
166
+ ],
167
+ "gap": "lg",
168
+ "direction": "vertical"
151
169
  }
152
170
  ]
153
171
  ]
@@ -174,23 +192,23 @@
174
192
  "modal",
175
193
  {
176
194
  "type": "stack",
177
- "direction": "vertical",
178
195
  "gap": "md",
196
+ "direction": "vertical",
179
197
  "children": [
180
198
  {
199
+ "gap": "sm",
181
200
  "type": "stack",
182
201
  "direction": "horizontal",
183
- "gap": "sm",
184
202
  "children": [
185
203
  {
204
+ "size": "md",
186
205
  "type": "icon",
187
- "name": "edit",
188
- "size": "md"
206
+ "name": "edit"
189
207
  },
190
208
  {
191
- "type": "typography",
192
209
  "content": "New ChatMessage",
193
- "variant": "h3"
210
+ "variant": "h3",
211
+ "type": "typography"
194
212
  }
195
213
  ]
196
214
  },
@@ -198,16 +216,16 @@
198
216
  "type": "divider"
199
217
  },
200
218
  {
201
- "type": "form-section",
202
- "entity": "ChatMessage",
203
219
  "mode": "create",
220
+ "type": "form-section",
204
221
  "submitEvent": "SEND",
205
222
  "cancelEvent": "CLOSE",
206
223
  "fields": [
207
224
  "name",
208
225
  "description",
209
226
  "status"
210
- ]
227
+ ],
228
+ "entity": "ChatMessage"
211
229
  }
212
230
  ]
213
231
  }
@@ -219,6 +237,13 @@
219
237
  "modal",
220
238
  null
221
239
  ],
240
+ [
241
+ "render-ui",
242
+ "main",
243
+ {
244
+ "type": "box"
245
+ }
246
+ ],
222
247
  [
223
248
  "notify",
224
249
  "Cancelled",
@@ -236,6 +261,13 @@
236
261
  "render-ui",
237
262
  "modal",
238
263
  null
264
+ ],
265
+ [
266
+ "render-ui",
267
+ "main",
268
+ {
269
+ "type": "box"
270
+ }
239
271
  ]
240
272
  ]
241
273
  }
@@ -245,6 +277,7 @@
245
277
  "name": "ChatMessageView",
246
278
  "linkedEntity": "ChatMessage",
247
279
  "events": {
280
+ "SAVE": "MESSAGE_VIEWED",
248
281
  "OPEN": "VIEW"
249
282
  },
250
283
  "effects": {
@@ -254,6 +287,39 @@
254
287
  "ChatMessage"
255
288
  ]
256
289
  ],
290
+ "CLOSE": [
291
+ [
292
+ "render-ui",
293
+ "modal",
294
+ null
295
+ ],
296
+ [
297
+ "render-ui",
298
+ "main",
299
+ {
300
+ "type": "box"
301
+ }
302
+ ],
303
+ [
304
+ "notify",
305
+ "Cancelled",
306
+ "info"
307
+ ]
308
+ ],
309
+ "MESSAGE_VIEWED": [
310
+ [
311
+ "render-ui",
312
+ "modal",
313
+ null
314
+ ],
315
+ [
316
+ "render-ui",
317
+ "main",
318
+ {
319
+ "type": "box"
320
+ }
321
+ ]
322
+ ],
257
323
  "VIEW": [
258
324
  [
259
325
  "fetch",
@@ -266,96 +332,96 @@
266
332
  "render-ui",
267
333
  "modal",
268
334
  {
269
- "type": "stack",
270
- "direction": "vertical",
271
335
  "gap": "md",
336
+ "direction": "vertical",
337
+ "type": "stack",
272
338
  "children": [
273
339
  {
274
340
  "type": "stack",
275
- "direction": "horizontal",
276
341
  "gap": "sm",
277
342
  "align": "center",
278
343
  "children": [
279
344
  {
280
- "type": "icon",
345
+ "size": "md",
281
346
  "name": "eye",
282
- "size": "md"
347
+ "type": "icon"
283
348
  },
284
349
  {
350
+ "content": "@entity.name",
285
351
  "type": "typography",
286
- "variant": "h3",
287
- "content": "@entity.name"
352
+ "variant": "h3"
288
353
  }
289
- ]
354
+ ],
355
+ "direction": "horizontal"
290
356
  },
291
357
  {
292
358
  "type": "divider"
293
359
  },
294
360
  {
295
- "type": "stack",
296
- "direction": "horizontal",
297
361
  "gap": "md",
362
+ "direction": "horizontal",
298
363
  "children": [
299
364
  {
365
+ "content": "Name",
300
366
  "type": "typography",
301
- "variant": "caption",
302
- "content": "Name"
367
+ "variant": "caption"
303
368
  },
304
369
  {
305
- "type": "typography",
306
370
  "variant": "body",
307
- "content": "@entity.name"
371
+ "content": "@entity.name",
372
+ "type": "typography"
308
373
  }
309
- ]
374
+ ],
375
+ "type": "stack"
310
376
  },
311
377
  {
312
- "type": "stack",
313
- "direction": "horizontal",
314
378
  "gap": "md",
315
379
  "children": [
316
380
  {
317
- "type": "typography",
318
381
  "variant": "caption",
319
- "content": "Description"
382
+ "content": "Description",
383
+ "type": "typography"
320
384
  },
321
385
  {
322
386
  "type": "typography",
323
387
  "variant": "body",
324
388
  "content": "@entity.description"
325
389
  }
326
- ]
390
+ ],
391
+ "type": "stack",
392
+ "direction": "horizontal"
327
393
  },
328
394
  {
395
+ "gap": "md",
329
396
  "type": "stack",
330
397
  "direction": "horizontal",
331
- "gap": "md",
332
398
  "children": [
333
399
  {
334
400
  "type": "typography",
335
- "variant": "caption",
336
- "content": "Status"
401
+ "content": "Status",
402
+ "variant": "caption"
337
403
  },
338
404
  {
339
- "type": "typography",
405
+ "content": "@entity.status",
340
406
  "variant": "body",
341
- "content": "@entity.status"
407
+ "type": "typography"
342
408
  }
343
409
  ]
344
410
  },
345
411
  {
412
+ "gap": "md",
346
413
  "type": "stack",
347
414
  "direction": "horizontal",
348
- "gap": "md",
349
415
  "children": [
350
416
  {
351
- "type": "typography",
352
417
  "variant": "caption",
353
- "content": "Created At"
418
+ "content": "Created At",
419
+ "type": "typography"
354
420
  },
355
421
  {
356
- "type": "typography",
357
422
  "variant": "body",
358
- "content": "@entity.createdAt"
423
+ "content": "@entity.createdAt",
424
+ "type": "typography"
359
425
  }
360
426
  ]
361
427
  },
@@ -363,41 +429,22 @@
363
429
  "type": "divider"
364
430
  },
365
431
  {
366
- "type": "stack",
367
- "direction": "horizontal",
368
- "gap": "sm",
369
- "justify": "end",
370
432
  "children": [
371
433
  {
372
- "type": "button",
434
+ "variant": "ghost",
373
435
  "label": "Close",
374
436
  "event": "CLOSE",
375
- "variant": "ghost"
437
+ "type": "button"
376
438
  }
377
- ]
439
+ ],
440
+ "type": "stack",
441
+ "direction": "horizontal",
442
+ "gap": "sm",
443
+ "justify": "end"
378
444
  }
379
445
  ]
380
446
  }
381
447
  ]
382
- ],
383
- "CLOSE": [
384
- [
385
- "render-ui",
386
- "modal",
387
- null
388
- ],
389
- [
390
- "notify",
391
- "Cancelled",
392
- "info"
393
- ]
394
- ],
395
- "SAVE": [
396
- [
397
- "render-ui",
398
- "modal",
399
- null
400
- ]
401
448
  ]
402
449
  }
403
450
  }
@@ -421,4 +468,4 @@
421
468
  ]
422
469
  }
423
470
  ]
424
- }
471
+ }