@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,16 +40,62 @@
40
40
  "traits": [
41
41
  {
42
42
  "name": "SearchResultSearch",
43
- "linkedEntity": "SearchResult",
44
43
  "category": "interaction",
44
+ "linkedEntity": "SearchResult",
45
+ "emits": [
46
+ {
47
+ "event": "SearchResultLoaded",
48
+ "description": "Fired when SearchResult collection 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": "SearchResultLoadFailed",
75
+ "description": "Fired when SearchResult collection 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
  {
48
88
  "name": "idle",
49
89
  "isInitial": true
50
90
  },
91
+ {
92
+ "name": "loading"
93
+ },
51
94
  {
52
95
  "name": "searching"
96
+ },
97
+ {
98
+ "name": "error"
53
99
  }
54
100
  ],
55
101
  "events": [
@@ -68,6 +114,20 @@
68
114
  }
69
115
  ]
70
116
  },
117
+ {
118
+ "key": "SearchResultLoaded",
119
+ "name": "SearchResult loaded"
120
+ },
121
+ {
122
+ "key": "SearchResultLoadFailed",
123
+ "name": "SearchResult load failed",
124
+ "payload": [
125
+ {
126
+ "name": "message",
127
+ "type": "string"
128
+ }
129
+ ]
130
+ },
71
131
  {
72
132
  "key": "CLEAR",
73
133
  "name": "Clear"
@@ -81,15 +141,21 @@
81
141
  "effects": [
82
142
  [
83
143
  "fetch",
84
- "SearchResult"
144
+ "SearchResult",
145
+ {
146
+ "emit": {
147
+ "success": "SearchResultLoaded",
148
+ "failure": "SearchResultLoadFailed"
149
+ }
150
+ }
85
151
  ],
86
152
  [
87
153
  "render-ui",
88
154
  "main",
89
155
  {
156
+ "gap": "lg",
90
157
  "type": "stack",
91
158
  "direction": "vertical",
92
- "gap": "lg",
93
159
  "children": [
94
160
  {
95
161
  "type": "stack",
@@ -98,9 +164,9 @@
98
164
  "align": "center",
99
165
  "children": [
100
166
  {
167
+ "size": "lg",
101
168
  "type": "icon",
102
- "name": "search",
103
- "size": "lg"
169
+ "name": "search"
104
170
  },
105
171
  {
106
172
  "type": "typography",
@@ -118,10 +184,10 @@
118
184
  "event": "SEARCH"
119
185
  },
120
186
  {
121
- "type": "empty-state",
122
187
  "icon": "search",
123
- "title": "Search to find results",
124
- "description": "Type a query to search across searchresults."
188
+ "description": "Type a query to search across searchresults.",
189
+ "type": "empty-state",
190
+ "title": "Search to find results"
125
191
  }
126
192
  ]
127
193
  }
@@ -130,90 +196,119 @@
130
196
  },
131
197
  {
132
198
  "from": "idle",
133
- "to": "searching",
199
+ "to": "loading",
134
200
  "event": "SEARCH",
135
201
  "effects": [
136
202
  [
137
203
  "fetch",
138
- "SearchResult"
204
+ "SearchResult",
205
+ {
206
+ "emit": {
207
+ "success": "SearchResultLoaded",
208
+ "failure": "SearchResultLoadFailed"
209
+ }
210
+ }
139
211
  ],
140
212
  [
141
213
  "render-ui",
142
214
  "main",
143
215
  {
216
+ "direction": "vertical",
217
+ "children": [
218
+ {
219
+ "size": "md",
220
+ "type": "spinner"
221
+ },
222
+ {
223
+ "type": "typography",
224
+ "content": [
225
+ "concat",
226
+ "Searching for \"",
227
+ "@payload.query",
228
+ "\"…"
229
+ ],
230
+ "color": "muted",
231
+ "variant": "caption"
232
+ }
233
+ ],
144
234
  "type": "stack",
235
+ "gap": "md",
236
+ "align": "center",
237
+ "className": "py-8"
238
+ }
239
+ ]
240
+ ]
241
+ },
242
+ {
243
+ "from": "loading",
244
+ "to": "searching",
245
+ "event": "SearchResultLoaded",
246
+ "effects": [
247
+ [
248
+ "render-ui",
249
+ "main",
250
+ {
145
251
  "direction": "vertical",
146
252
  "gap": "lg",
253
+ "type": "stack",
147
254
  "children": [
148
255
  {
149
- "type": "stack",
150
- "direction": "horizontal",
151
- "gap": "md",
152
- "justify": "space-between",
153
256
  "align": "center",
257
+ "justify": "space-between",
258
+ "gap": "md",
154
259
  "children": [
155
260
  {
156
- "type": "stack",
157
261
  "direction": "horizontal",
158
262
  "gap": "md",
159
263
  "align": "center",
264
+ "type": "stack",
160
265
  "children": [
161
266
  {
162
- "type": "icon",
267
+ "size": "lg",
163
268
  "name": "search",
164
- "size": "lg"
269
+ "type": "icon"
165
270
  },
166
271
  {
272
+ "content": "Results",
167
273
  "type": "typography",
168
- "content": [
169
- "str/concat",
170
- "Results for \"",
171
- "@payload.query",
172
- "\""
173
- ],
174
274
  "variant": "h2"
175
275
  }
176
276
  ]
177
277
  },
178
278
  {
279
+ "icon": "x",
179
280
  "type": "button",
180
- "label": "Clear",
181
- "event": "CLEAR",
182
281
  "variant": "ghost",
183
- "icon": "x"
282
+ "label": "Clear",
283
+ "event": "CLEAR"
184
284
  }
185
- ]
285
+ ],
286
+ "direction": "horizontal",
287
+ "type": "stack"
186
288
  },
187
289
  {
188
290
  "type": "divider"
189
291
  },
190
292
  {
191
- "type": "popover",
192
- "position": "bottom",
193
- "trigger": "click",
194
- "children": [
293
+ "emptyIcon": "search",
294
+ "entity": "SearchResult",
295
+ "emptyDescription": "Try a different search term.",
296
+ "type": "data-grid",
297
+ "emptyTitle": "No results found",
298
+ "renderItem": [
299
+ "fn",
300
+ "item",
195
301
  {
196
- "type": "data-grid",
197
- "entity": "SearchResult",
198
- "emptyIcon": "search",
199
- "emptyTitle": "No results found",
200
- "emptyDescription": "Try a different search term.",
201
- "renderItem": [
202
- "fn",
203
- "item",
302
+ "type": "stack",
303
+ "gap": "sm",
304
+ "children": [
204
305
  {
205
- "type": "stack",
206
- "direction": "vertical",
207
- "gap": "sm",
208
- "children": [
209
- {
210
- "type": "typography",
211
- "variant": "h4",
212
- "content": "@item.name"
213
- }
214
- ]
306
+ "variant": "h4",
307
+ "type": "typography",
308
+ "content": "@item.name"
215
309
  }
216
- ]
310
+ ],
311
+ "direction": "vertical"
217
312
  }
218
313
  ]
219
314
  }
@@ -223,99 +318,99 @@
223
318
  ]
224
319
  },
225
320
  {
226
- "from": "searching",
227
- "to": "searching",
228
- "event": "SEARCH",
321
+ "from": "loading",
322
+ "to": "error",
323
+ "event": "SearchResultLoadFailed",
229
324
  "effects": [
230
- [
231
- "fetch",
232
- "SearchResult"
233
- ],
234
325
  [
235
326
  "render-ui",
236
327
  "main",
237
328
  {
238
329
  "type": "stack",
330
+ "gap": "md",
239
331
  "direction": "vertical",
240
- "gap": "lg",
332
+ "align": "center",
333
+ "className": "py-8",
241
334
  "children": [
242
335
  {
243
- "type": "stack",
244
- "direction": "horizontal",
245
- "gap": "md",
246
- "justify": "space-between",
247
- "align": "center",
248
- "children": [
249
- {
250
- "type": "stack",
251
- "direction": "horizontal",
252
- "gap": "md",
253
- "align": "center",
254
- "children": [
255
- {
256
- "type": "icon",
257
- "name": "search",
258
- "size": "lg"
259
- },
260
- {
261
- "type": "typography",
262
- "content": [
263
- "str/concat",
264
- "Results for \"",
265
- "@payload.query",
266
- "\""
267
- ],
268
- "variant": "h2"
269
- }
270
- ]
271
- },
272
- {
273
- "type": "button",
274
- "label": "Clear",
275
- "event": "CLEAR",
276
- "variant": "ghost",
277
- "icon": "x"
278
- }
279
- ]
336
+ "name": "alert-triangle",
337
+ "size": "lg",
338
+ "color": "destructive",
339
+ "type": "icon"
280
340
  },
281
341
  {
282
- "type": "divider"
342
+ "variant": "body",
343
+ "content": "Search failed",
344
+ "type": "typography"
283
345
  },
284
346
  {
285
- "type": "popover",
286
- "position": "bottom",
287
- "trigger": "click",
288
- "children": [
289
- {
290
- "type": "data-grid",
291
- "entity": "SearchResult",
292
- "emptyIcon": "search",
293
- "emptyTitle": "No results found",
294
- "emptyDescription": "Try a different search term.",
295
- "renderItem": [
296
- "fn",
297
- "item",
298
- {
299
- "type": "stack",
300
- "direction": "vertical",
301
- "gap": "sm",
302
- "children": [
303
- {
304
- "type": "typography",
305
- "variant": "h4",
306
- "content": "@item.name"
307
- }
308
- ]
309
- }
310
- ]
311
- }
312
- ]
347
+ "variant": "caption",
348
+ "color": "muted",
349
+ "content": "@payload.message",
350
+ "type": "typography"
351
+ },
352
+ {
353
+ "icon": "rotate-ccw",
354
+ "event": "SEARCH",
355
+ "type": "button",
356
+ "label": "Retry",
357
+ "variant": "ghost"
313
358
  }
314
359
  ]
315
360
  }
316
361
  ]
317
362
  ]
318
363
  },
364
+ {
365
+ "from": "loading",
366
+ "to": "loading",
367
+ "event": "SEARCH",
368
+ "effects": [
369
+ [
370
+ "fetch",
371
+ "SearchResult",
372
+ {
373
+ "emit": {
374
+ "failure": "SearchResultLoadFailed",
375
+ "success": "SearchResultLoaded"
376
+ }
377
+ }
378
+ ],
379
+ [
380
+ "render-ui",
381
+ "main",
382
+ {
383
+ "type": "spinner",
384
+ "size": "md"
385
+ }
386
+ ]
387
+ ]
388
+ },
389
+ {
390
+ "from": "searching",
391
+ "to": "loading",
392
+ "event": "SEARCH",
393
+ "effects": [
394
+ [
395
+ "fetch",
396
+ "SearchResult",
397
+ {
398
+ "emit": {
399
+ "success": "SearchResultLoaded",
400
+ "failure": "SearchResultLoadFailed"
401
+ }
402
+ }
403
+ ],
404
+ [
405
+ "render-ui",
406
+ "main",
407
+ {
408
+ "type": "spinner",
409
+ "size": "md"
410
+ }
411
+ ]
412
+ ]
413
+ },
319
414
  {
320
415
  "from": "searching",
321
416
  "to": "idle",
@@ -323,7 +418,13 @@
323
418
  "effects": [
324
419
  [
325
420
  "fetch",
326
- "SearchResult"
421
+ "SearchResult",
422
+ {
423
+ "emit": {
424
+ "failure": "SearchResultLoadFailed",
425
+ "success": "SearchResultLoaded"
426
+ }
427
+ }
327
428
  ],
328
429
  [
329
430
  "render-ui",
@@ -331,12 +432,10 @@
331
432
  {
332
433
  "type": "stack",
333
434
  "direction": "vertical",
334
- "gap": "lg",
335
435
  "children": [
336
436
  {
337
- "type": "stack",
338
- "direction": "horizontal",
339
437
  "gap": "md",
438
+ "type": "stack",
340
439
  "align": "center",
341
440
  "children": [
342
441
  {
@@ -345,33 +444,61 @@
345
444
  "size": "lg"
346
445
  },
347
446
  {
348
- "type": "typography",
447
+ "variant": "h2",
349
448
  "content": "Search SearchResults",
350
- "variant": "h2"
449
+ "type": "typography"
351
450
  }
352
- ]
451
+ ],
452
+ "direction": "horizontal"
353
453
  },
354
454
  {
355
455
  "type": "divider"
356
456
  },
357
457
  {
458
+ "event": "SEARCH",
358
459
  "type": "search-input",
359
- "placeholder": "Search...",
360
- "event": "SEARCH"
460
+ "placeholder": "Search..."
361
461
  },
362
462
  {
363
- "type": "empty-state",
364
463
  "icon": "search",
464
+ "description": "Type a query to search across searchresults.",
365
465
  "title": "Search to find results",
366
- "description": "Type a query to search across searchresults."
466
+ "type": "empty-state"
367
467
  }
368
- ]
468
+ ],
469
+ "gap": "lg"
470
+ }
471
+ ]
472
+ ]
473
+ },
474
+ {
475
+ "from": "error",
476
+ "to": "loading",
477
+ "event": "SEARCH",
478
+ "effects": [
479
+ [
480
+ "fetch",
481
+ "SearchResult",
482
+ {
483
+ "emit": {
484
+ "success": "SearchResultLoaded",
485
+ "failure": "SearchResultLoadFailed"
486
+ }
487
+ }
488
+ ],
489
+ [
490
+ "render-ui",
491
+ "main",
492
+ {
493
+ "type": "spinner",
494
+ "size": "md"
369
495
  }
370
496
  ]
371
497
  ]
372
498
  }
373
499
  ]
374
- }
500
+ },
501
+ "scope": "collection"
375
502
  }
376
503
  ],
377
504
  "pages": [
@@ -387,4 +514,4 @@
387
514
  ]
388
515
  }
389
516
  ]
390
- }
517
+ }