@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
@@ -40,8 +40,48 @@
40
40
  "traits": [
41
41
  {
42
42
  "name": "DrawerContentDrawer",
43
- "linkedEntity": "DrawerContent",
44
43
  "category": "interaction",
44
+ "linkedEntity": "DrawerContent",
45
+ "emits": [
46
+ {
47
+ "event": "DrawerContentLoaded",
48
+ "description": "Fired when DrawerContent finishes loading",
49
+ "scope": "internal",
50
+ "payload": [
51
+ {
52
+ "name": "id",
53
+ "type": "string"
54
+ },
55
+ {
56
+ "name": "name",
57
+ "type": "string"
58
+ },
59
+ {
60
+ "name": "description",
61
+ "type": "string"
62
+ },
63
+ {
64
+ "name": "status",
65
+ "type": "string"
66
+ },
67
+ {
68
+ "name": "createdAt",
69
+ "type": "string"
70
+ }
71
+ ]
72
+ },
73
+ {
74
+ "event": "DrawerContentLoadFailed",
75
+ "description": "Fired when DrawerContent fails to load",
76
+ "scope": "internal",
77
+ "payload": [
78
+ {
79
+ "name": "message",
80
+ "type": "string"
81
+ }
82
+ ]
83
+ }
84
+ ],
45
85
  "stateMachine": {
46
86
  "states": [
47
87
  {
@@ -64,6 +104,20 @@
64
104
  {
65
105
  "key": "CLOSE",
66
106
  "name": "Close"
107
+ },
108
+ {
109
+ "key": "DrawerContentLoaded",
110
+ "name": "DrawerContent loaded"
111
+ },
112
+ {
113
+ "key": "DrawerContentLoadFailed",
114
+ "name": "DrawerContent load failed",
115
+ "payload": [
116
+ {
117
+ "name": "message",
118
+ "type": "string"
119
+ }
120
+ ]
67
121
  }
68
122
  ],
69
123
  "transitions": [
@@ -74,28 +128,32 @@
74
128
  "effects": [
75
129
  [
76
130
  "fetch",
77
- "DrawerContent"
131
+ "DrawerContent",
132
+ {
133
+ "emit": {
134
+ "success": "DrawerContentLoaded",
135
+ "failure": "DrawerContentLoadFailed"
136
+ }
137
+ }
78
138
  ],
79
139
  [
80
140
  "render-ui",
81
141
  "main",
82
142
  {
83
143
  "type": "stack",
84
- "direction": "vertical",
85
144
  "gap": "lg",
145
+ "direction": "vertical",
86
146
  "children": [
87
147
  {
88
- "type": "stack",
89
148
  "direction": "horizontal",
90
149
  "gap": "md",
150
+ "type": "stack",
91
151
  "justify": "space-between",
92
- "align": "center",
93
152
  "children": [
94
153
  {
95
154
  "type": "stack",
96
- "direction": "horizontal",
97
- "gap": "md",
98
155
  "align": "center",
156
+ "gap": "md",
99
157
  "children": [
100
158
  {
101
159
  "type": "icon",
@@ -104,45 +162,47 @@
104
162
  },
105
163
  {
106
164
  "type": "typography",
107
- "content": "Details",
108
- "variant": "h2"
165
+ "variant": "h2",
166
+ "content": "Details"
109
167
  }
110
- ]
168
+ ],
169
+ "direction": "horizontal"
111
170
  },
112
171
  {
113
172
  "type": "button",
114
- "label": "Open",
115
173
  "event": "OPEN",
116
174
  "variant": "primary",
175
+ "label": "Open",
117
176
  "icon": "panel-right"
118
177
  }
119
- ]
178
+ ],
179
+ "align": "center"
120
180
  },
121
181
  {
122
182
  "type": "divider"
123
183
  },
124
184
  {
125
- "type": "data-grid",
126
- "entity": "DrawerContent",
127
- "emptyIcon": "inbox",
128
185
  "emptyTitle": "No drawercontents yet",
129
- "emptyDescription": "Add drawercontents to see them here.",
130
186
  "renderItem": [
131
187
  "fn",
132
188
  "item",
133
189
  {
190
+ "gap": "sm",
134
191
  "type": "stack",
135
192
  "direction": "vertical",
136
- "gap": "sm",
137
193
  "children": [
138
194
  {
139
- "type": "typography",
195
+ "content": "@item.name",
140
196
  "variant": "h4",
141
- "content": "@item.name"
197
+ "type": "typography"
142
198
  }
143
199
  ]
144
200
  }
145
- ]
201
+ ],
202
+ "type": "data-grid",
203
+ "entity": "DrawerContent",
204
+ "emptyIcon": "inbox",
205
+ "emptyDescription": "Add drawercontents to see them here."
146
206
  }
147
207
  ]
148
208
  }
@@ -156,36 +216,34 @@
156
216
  "effects": [
157
217
  [
158
218
  "fetch",
159
- "DrawerContent"
219
+ "DrawerContent",
220
+ {
221
+ "emit": {
222
+ "success": "DrawerContentLoaded",
223
+ "failure": "DrawerContentLoadFailed"
224
+ }
225
+ }
160
226
  ],
161
227
  [
162
228
  "render-ui",
163
229
  "drawer",
164
230
  {
165
- "type": "stack",
166
231
  "direction": "vertical",
167
- "gap": "none",
168
232
  "children": [
169
233
  {
170
234
  "type": "drawer",
171
- "title": "Details",
172
- "isOpen": true,
173
235
  "children": [
174
236
  {
237
+ "gap": "md",
175
238
  "type": "stack",
176
239
  "direction": "vertical",
177
- "gap": "md",
178
240
  "children": [
179
241
  {
180
- "type": "stack",
181
- "direction": "horizontal",
182
- "gap": "md",
183
- "justify": "space-between",
184
242
  "children": [
185
243
  {
244
+ "content": "Name",
186
245
  "type": "typography",
187
- "variant": "caption",
188
- "content": "Name"
246
+ "variant": "caption"
189
247
  },
190
248
  {
191
249
  "type": "typography",
@@ -199,21 +257,22 @@
199
257
  "name"
200
258
  ]
201
259
  }
202
- ]
260
+ ],
261
+ "type": "stack",
262
+ "direction": "horizontal",
263
+ "justify": "space-between",
264
+ "gap": "md"
203
265
  },
204
266
  {
205
267
  "type": "stack",
206
- "direction": "horizontal",
207
- "gap": "md",
208
268
  "justify": "space-between",
209
269
  "children": [
210
270
  {
211
- "type": "typography",
212
271
  "variant": "caption",
272
+ "type": "typography",
213
273
  "content": "Description"
214
274
  },
215
275
  {
216
- "type": "typography",
217
276
  "variant": "body",
218
277
  "content": [
219
278
  "object/get",
@@ -222,24 +281,24 @@
222
281
  "@entity"
223
282
  ],
224
283
  "description"
225
- ]
284
+ ],
285
+ "type": "typography"
226
286
  }
227
- ]
287
+ ],
288
+ "gap": "md",
289
+ "direction": "horizontal"
228
290
  },
229
291
  {
230
292
  "type": "stack",
231
293
  "direction": "horizontal",
232
- "gap": "md",
233
- "justify": "space-between",
234
294
  "children": [
235
295
  {
236
296
  "type": "typography",
237
- "variant": "caption",
238
- "content": "Status"
297
+ "content": "Status",
298
+ "variant": "caption"
239
299
  },
240
300
  {
241
301
  "type": "typography",
242
- "variant": "body",
243
302
  "content": [
244
303
  "object/get",
245
304
  [
@@ -247,15 +306,15 @@
247
306
  "@entity"
248
307
  ],
249
308
  "status"
250
- ]
309
+ ],
310
+ "variant": "body"
251
311
  }
252
- ]
312
+ ],
313
+ "justify": "space-between",
314
+ "gap": "md"
253
315
  },
254
316
  {
255
317
  "type": "stack",
256
- "direction": "horizontal",
257
- "gap": "md",
258
- "justify": "space-between",
259
318
  "children": [
260
319
  {
261
320
  "type": "typography",
@@ -263,8 +322,6 @@
263
322
  "content": "CreatedAt"
264
323
  },
265
324
  {
266
- "type": "typography",
267
- "variant": "body",
268
325
  "content": [
269
326
  "object/get",
270
327
  [
@@ -272,56 +329,53 @@
272
329
  "@entity"
273
330
  ],
274
331
  "createdAt"
275
- ]
332
+ ],
333
+ "variant": "body",
334
+ "type": "typography"
276
335
  }
277
- ]
336
+ ],
337
+ "gap": "md",
338
+ "justify": "space-between",
339
+ "direction": "horizontal"
278
340
  },
279
341
  {
280
342
  "type": "divider"
281
343
  },
282
344
  {
283
- "type": "stack",
284
- "direction": "horizontal",
285
- "gap": "sm",
286
- "justify": "end",
287
345
  "children": [
288
346
  {
289
- "type": "button",
290
347
  "label": "Close",
291
348
  "event": "CLOSE",
349
+ "type": "button",
292
350
  "variant": "ghost"
293
351
  }
294
- ]
352
+ ],
353
+ "gap": "sm",
354
+ "justify": "end",
355
+ "type": "stack",
356
+ "direction": "horizontal"
295
357
  }
296
358
  ]
297
359
  }
298
- ]
360
+ ],
361
+ "title": "Details",
362
+ "isOpen": true
299
363
  },
300
364
  {
301
- "type": "side-panel",
302
- "title": "Details",
303
- "isOpen": true,
304
- "position": "right",
305
365
  "children": [
306
366
  {
307
- "type": "stack",
308
- "direction": "vertical",
309
- "gap": "md",
310
367
  "children": [
311
368
  {
312
369
  "type": "stack",
313
370
  "direction": "horizontal",
314
- "gap": "md",
315
- "justify": "space-between",
316
371
  "children": [
317
372
  {
318
- "type": "typography",
373
+ "content": "Name",
319
374
  "variant": "caption",
320
- "content": "Name"
375
+ "type": "typography"
321
376
  },
322
377
  {
323
378
  "type": "typography",
324
- "variant": "body",
325
379
  "content": [
326
380
  "object/get",
327
381
  [
@@ -329,14 +383,16 @@
329
383
  "@entity"
330
384
  ],
331
385
  "name"
332
- ]
386
+ ],
387
+ "variant": "body"
333
388
  }
334
- ]
389
+ ],
390
+ "justify": "space-between",
391
+ "gap": "md"
335
392
  },
336
393
  {
337
394
  "type": "stack",
338
395
  "direction": "horizontal",
339
- "gap": "md",
340
396
  "justify": "space-between",
341
397
  "children": [
342
398
  {
@@ -345,8 +401,6 @@
345
401
  "content": "Description"
346
402
  },
347
403
  {
348
- "type": "typography",
349
- "variant": "body",
350
404
  "content": [
351
405
  "object/get",
352
406
  [
@@ -354,24 +408,24 @@
354
408
  "@entity"
355
409
  ],
356
410
  "description"
357
- ]
411
+ ],
412
+ "variant": "body",
413
+ "type": "typography"
358
414
  }
359
- ]
415
+ ],
416
+ "gap": "md"
360
417
  },
361
418
  {
362
419
  "type": "stack",
363
- "direction": "horizontal",
364
- "gap": "md",
365
- "justify": "space-between",
366
420
  "children": [
367
421
  {
368
- "type": "typography",
369
422
  "variant": "caption",
423
+ "type": "typography",
370
424
  "content": "Status"
371
425
  },
372
426
  {
373
- "type": "typography",
374
427
  "variant": "body",
428
+ "type": "typography",
375
429
  "content": [
376
430
  "object/get",
377
431
  [
@@ -381,7 +435,10 @@
381
435
  "status"
382
436
  ]
383
437
  }
384
- ]
438
+ ],
439
+ "justify": "space-between",
440
+ "direction": "horizontal",
441
+ "gap": "md"
385
442
  },
386
443
  {
387
444
  "type": "stack",
@@ -390,9 +447,9 @@
390
447
  "justify": "space-between",
391
448
  "children": [
392
449
  {
393
- "type": "typography",
394
450
  "variant": "caption",
395
- "content": "CreatedAt"
451
+ "content": "CreatedAt",
452
+ "type": "typography"
396
453
  },
397
454
  {
398
455
  "type": "typography",
@@ -408,11 +465,20 @@
408
465
  }
409
466
  ]
410
467
  }
411
- ]
468
+ ],
469
+ "gap": "md",
470
+ "direction": "vertical",
471
+ "type": "stack"
412
472
  }
413
- ]
473
+ ],
474
+ "type": "side-panel",
475
+ "title": "Details",
476
+ "isOpen": true,
477
+ "position": "right"
414
478
  }
415
- ]
479
+ ],
480
+ "type": "stack",
481
+ "gap": "none"
416
482
  }
417
483
  ]
418
484
  ]
@@ -429,83 +495,90 @@
429
495
  ],
430
496
  [
431
497
  "fetch",
432
- "DrawerContent"
498
+ "DrawerContent",
499
+ {
500
+ "emit": {
501
+ "success": "DrawerContentLoaded",
502
+ "failure": "DrawerContentLoadFailed"
503
+ }
504
+ }
433
505
  ],
434
506
  [
435
507
  "render-ui",
436
508
  "main",
437
509
  {
438
- "type": "stack",
439
510
  "direction": "vertical",
440
511
  "gap": "lg",
441
512
  "children": [
442
513
  {
443
- "type": "stack",
444
514
  "direction": "horizontal",
445
- "gap": "md",
446
- "justify": "space-between",
447
- "align": "center",
448
515
  "children": [
449
516
  {
450
- "type": "stack",
451
- "direction": "horizontal",
452
- "gap": "md",
453
- "align": "center",
454
517
  "children": [
455
518
  {
456
- "type": "icon",
457
519
  "name": "panel-right",
458
- "size": "lg"
520
+ "size": "lg",
521
+ "type": "icon"
459
522
  },
460
523
  {
524
+ "variant": "h2",
461
525
  "type": "typography",
462
- "content": "Details",
463
- "variant": "h2"
526
+ "content": "Details"
464
527
  }
465
- ]
528
+ ],
529
+ "align": "center",
530
+ "direction": "horizontal",
531
+ "type": "stack",
532
+ "gap": "md"
466
533
  },
467
534
  {
468
- "type": "button",
469
- "label": "Open",
470
- "event": "OPEN",
535
+ "icon": "panel-right",
471
536
  "variant": "primary",
472
- "icon": "panel-right"
537
+ "label": "Open",
538
+ "type": "button",
539
+ "event": "OPEN"
473
540
  }
474
- ]
541
+ ],
542
+ "align": "center",
543
+ "gap": "md",
544
+ "justify": "space-between",
545
+ "type": "stack"
475
546
  },
476
547
  {
477
548
  "type": "divider"
478
549
  },
479
550
  {
480
551
  "type": "data-grid",
481
- "entity": "DrawerContent",
482
- "emptyIcon": "inbox",
483
- "emptyTitle": "No drawercontents yet",
484
552
  "emptyDescription": "Add drawercontents to see them here.",
553
+ "emptyIcon": "inbox",
485
554
  "renderItem": [
486
555
  "fn",
487
556
  "item",
488
557
  {
489
558
  "type": "stack",
490
- "direction": "vertical",
491
- "gap": "sm",
492
559
  "children": [
493
560
  {
494
- "type": "typography",
495
561
  "variant": "h4",
562
+ "type": "typography",
496
563
  "content": "@item.name"
497
564
  }
498
- ]
565
+ ],
566
+ "gap": "sm",
567
+ "direction": "vertical"
499
568
  }
500
- ]
569
+ ],
570
+ "entity": "DrawerContent",
571
+ "emptyTitle": "No drawercontents yet"
501
572
  }
502
- ]
573
+ ],
574
+ "type": "stack"
503
575
  }
504
576
  ]
505
577
  ]
506
578
  }
507
579
  ]
508
- }
580
+ },
581
+ "scope": "collection"
509
582
  }
510
583
  ],
511
584
  "pages": [
@@ -521,4 +594,4 @@
521
594
  ]
522
595
  }
523
596
  ]
524
- }
597
+ }