@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-gallery-filtered",
3
3
  "version": "1.0.0",
4
- "description": "Filtered gallery: Search + Filter atop a Gallery, composed via @trait.X.",
4
+ "description": "std-gallery-filtered as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "GalleryFilteredOrbital",
@@ -72,7 +72,8 @@
72
72
  ],
73
73
  "events": [
74
74
  {
75
- "key": "INIT"
75
+ "key": "INIT",
76
+ "name": "Initialize"
76
77
  }
77
78
  ],
78
79
  "transitions": [
@@ -81,31 +82,36 @@
81
82
  "to": "composing",
82
83
  "event": "INIT",
83
84
  "effects": [
85
+ [
86
+ "fetch",
87
+ "GalleryFilteredItem"
88
+ ],
84
89
  [
85
90
  "render-ui",
86
91
  "main",
87
92
  {
88
- "gap": "md",
89
- "direction": "vertical",
93
+ "type": "stack",
90
94
  "children": [
91
95
  {
96
+ "type": "stack",
97
+ "direction": "horizontal",
92
98
  "gap": "sm",
93
99
  "children": [
94
100
  "@trait.GalleryFilteredSearch",
95
101
  "@trait.GalleryFilteredFilter"
96
- ],
97
- "type": "stack",
98
- "direction": "horizontal"
102
+ ]
99
103
  },
100
104
  "@trait.GalleryFilteredGallery"
101
105
  ],
102
- "type": "stack"
106
+ "direction": "vertical",
107
+ "gap": "md"
103
108
  }
104
109
  ]
105
110
  ]
106
111
  }
107
112
  ]
108
- }
113
+ },
114
+ "scope": "instance"
109
115
  }
110
116
  ],
111
117
  "pages": [
@@ -121,4 +127,4 @@
121
127
  ]
122
128
  }
123
129
  ]
124
- }
130
+ }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "std-geospatial",
3
3
  "version": "1.0.0",
4
- "description": "Location selection molecule. Composes atoms via shared event bus: - stdBrowse: location list with \"Select\" item action (fires SELECT) - stdModal: select/view location detail (responds to SELECT) - stdConfirmation: confirm location selection (responds to CONFIRM_SELECT)",
4
+ "description": "std-geospatial as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "LocationOrbital",
@@ -21,8 +21,8 @@
21
21
  ],
22
22
  "entity": {
23
23
  "name": "Location",
24
- "persistence": "persistent",
25
24
  "collection": "locations",
25
+ "persistence": "persistent",
26
26
  "fields": [
27
27
  {
28
28
  "name": "id",
@@ -62,6 +62,24 @@
62
62
  "ref": "Browse.traits.BrowseItemBrowse",
63
63
  "name": "LocationBrowse",
64
64
  "linkedEntity": "Location",
65
+ "listens": [
66
+ {
67
+ "event": "CONFIRM_SELECT",
68
+ "triggers": "INIT",
69
+ "source": {
70
+ "kind": "trait",
71
+ "trait": "LocationSelect"
72
+ }
73
+ },
74
+ {
75
+ "event": "CONFIRMED",
76
+ "triggers": "INIT",
77
+ "source": {
78
+ "kind": "trait",
79
+ "trait": "LocationConfirmSelect"
80
+ }
81
+ }
82
+ ],
65
83
  "effects": {
66
84
  "INIT": [
67
85
  [
@@ -74,33 +92,32 @@
74
92
  {
75
93
  "type": "stack",
76
94
  "direction": "vertical",
77
- "gap": "lg",
78
95
  "className": "max-w-5xl mx-auto w-full",
79
96
  "children": [
80
97
  {
81
- "type": "stack",
98
+ "justify": "space-between",
82
99
  "direction": "horizontal",
100
+ "type": "stack",
83
101
  "gap": "md",
84
- "justify": "space-between",
85
102
  "align": "center",
86
103
  "children": [
87
104
  {
88
- "type": "stack",
89
- "direction": "horizontal",
90
- "gap": "sm",
91
- "align": "center",
92
105
  "children": [
93
106
  {
107
+ "size": "lg",
94
108
  "type": "icon",
95
- "name": "map-pin",
96
- "size": "lg"
109
+ "name": "map-pin"
97
110
  },
98
111
  {
112
+ "variant": "h2",
99
113
  "type": "typography",
100
- "content": "Locations Picker",
101
- "variant": "h2"
114
+ "content": "Locations Picker"
102
115
  }
103
- ]
116
+ ],
117
+ "type": "stack",
118
+ "gap": "sm",
119
+ "direction": "horizontal",
120
+ "align": "center"
104
121
  }
105
122
  ]
106
123
  },
@@ -108,60 +125,61 @@
108
125
  "type": "divider"
109
126
  },
110
127
  {
111
- "type": "data-grid",
112
- "entity": "Location",
113
- "emptyIcon": "inbox",
114
- "emptyTitle": "No locations found",
115
- "emptyDescription": "No locations are available to select.",
116
- "itemActions": [
117
- {
118
- "label": "Select Location",
119
- "event": "SELECT",
120
- "variant": "ghost",
121
- "size": "sm"
122
- }
123
- ],
124
128
  "columns": [
125
129
  {
126
- "name": "name",
127
130
  "label": "Name",
131
+ "name": "name",
128
132
  "variant": "h4",
129
133
  "icon": "map-pin"
130
134
  },
131
135
  {
132
136
  "name": "description",
133
- "label": "Description",
134
- "variant": "badge",
135
137
  "colorMap": {
138
+ "error": "destructive",
139
+ "archived": "neutral",
136
140
  "active": "success",
137
- "completed": "success",
138
- "done": "success",
139
141
  "pending": "warning",
142
+ "completed": "success",
140
143
  "draft": "warning",
141
- "scheduled": "warning",
144
+ "done": "success",
142
145
  "inactive": "neutral",
143
- "archived": "neutral",
146
+ "scheduled": "warning",
144
147
  "disabled": "neutral",
145
- "error": "destructive",
146
- "cancelled": "destructive",
147
- "failed": "destructive"
148
- }
148
+ "failed": "destructive",
149
+ "cancelled": "destructive"
150
+ },
151
+ "label": "Description",
152
+ "variant": "badge"
149
153
  },
150
154
  {
155
+ "variant": "caption",
151
156
  "name": "status",
152
- "label": "Status",
153
- "variant": "caption"
157
+ "label": "Status"
158
+ }
159
+ ],
160
+ "entity": "Location",
161
+ "type": "data-grid",
162
+ "emptyTitle": "No locations found",
163
+ "emptyDescription": "No locations are available to select.",
164
+ "emptyIcon": "inbox",
165
+ "itemActions": [
166
+ {
167
+ "label": "Select Location",
168
+ "size": "sm",
169
+ "variant": "ghost",
170
+ "event": "SELECT"
154
171
  }
155
172
  ]
156
173
  },
157
174
  {
158
- "type": "floating-action-button",
159
175
  "icon": "plus",
160
- "event": "INIT",
161
176
  "label": "Create",
162
- "tooltip": "Create"
177
+ "tooltip": "Create",
178
+ "event": "INIT",
179
+ "type": "floating-action-button"
163
180
  }
164
- ]
181
+ ],
182
+ "gap": "lg"
165
183
  }
166
184
  ]
167
185
  ]
@@ -172,16 +190,10 @@
172
190
  "name": "LocationSelect",
173
191
  "linkedEntity": "Location",
174
192
  "events": {
175
- "OPEN": "SELECT",
176
- "SAVE": "CONFIRM_SELECT"
193
+ "SAVE": "CONFIRM_SELECT",
194
+ "OPEN": "SELECT"
177
195
  },
178
196
  "effects": {
179
- "INIT": [
180
- [
181
- "ref",
182
- "Location"
183
- ]
184
- ],
185
197
  "SELECT": [
186
198
  [
187
199
  "fetch",
@@ -194,51 +206,49 @@
194
206
  "render-ui",
195
207
  "modal",
196
208
  {
197
- "type": "stack",
198
- "direction": "vertical",
199
209
  "gap": "md",
200
210
  "children": [
201
211
  {
202
212
  "type": "stack",
203
- "direction": "horizontal",
204
- "gap": "sm",
205
213
  "align": "center",
214
+ "gap": "sm",
206
215
  "children": [
207
216
  {
208
217
  "type": "icon",
209
- "name": "map-pin",
210
- "size": "md"
218
+ "size": "md",
219
+ "name": "map-pin"
211
220
  },
212
221
  {
213
222
  "type": "typography",
214
223
  "variant": "h3",
215
224
  "content": "@entity.name"
216
225
  }
217
- ]
226
+ ],
227
+ "direction": "horizontal"
218
228
  },
219
229
  {
220
230
  "type": "divider"
221
231
  },
222
232
  {
223
- "type": "stack",
224
- "direction": "horizontal",
225
233
  "gap": "md",
226
234
  "children": [
227
235
  {
228
- "type": "typography",
229
236
  "variant": "caption",
230
- "content": "Name"
237
+ "content": "Name",
238
+ "type": "typography"
231
239
  },
232
240
  {
233
- "type": "typography",
234
241
  "variant": "body",
235
- "content": "@entity.name"
242
+ "content": "@entity.name",
243
+ "type": "typography"
236
244
  }
237
- ]
245
+ ],
246
+ "type": "stack",
247
+ "direction": "horizontal"
238
248
  },
239
249
  {
240
- "type": "stack",
241
250
  "direction": "horizontal",
251
+ "type": "stack",
242
252
  "gap": "md",
243
253
  "children": [
244
254
  {
@@ -248,49 +258,47 @@
248
258
  },
249
259
  {
250
260
  "type": "typography",
251
- "variant": "body",
252
- "content": "@entity.description"
261
+ "content": "@entity.description",
262
+ "variant": "body"
253
263
  }
254
264
  ]
255
265
  },
256
266
  {
257
- "type": "stack",
258
267
  "direction": "horizontal",
259
268
  "gap": "md",
260
269
  "children": [
261
270
  {
271
+ "content": "Status",
262
272
  "type": "typography",
263
- "variant": "caption",
264
- "content": "Status"
273
+ "variant": "caption"
265
274
  },
266
275
  {
267
- "type": "typography",
268
276
  "variant": "body",
269
- "content": "@entity.status"
277
+ "content": "@entity.status",
278
+ "type": "typography"
270
279
  }
271
- ]
280
+ ],
281
+ "type": "stack"
272
282
  },
273
283
  {
274
- "type": "stack",
275
284
  "direction": "horizontal",
276
285
  "gap": "md",
277
286
  "children": [
278
287
  {
279
- "type": "typography",
288
+ "content": "Created At",
280
289
  "variant": "caption",
281
- "content": "Created At"
290
+ "type": "typography"
282
291
  },
283
292
  {
284
- "type": "typography",
293
+ "content": "@entity.createdAt",
285
294
  "variant": "body",
286
- "content": "@entity.createdAt"
295
+ "type": "typography"
287
296
  }
288
- ]
297
+ ],
298
+ "type": "stack"
289
299
  },
290
300
  {
291
- "type": "stack",
292
301
  "direction": "horizontal",
293
- "gap": "md",
294
302
  "children": [
295
303
  {
296
304
  "type": "typography",
@@ -298,57 +306,81 @@
298
306
  "content": "Pending ID"
299
307
  },
300
308
  {
309
+ "content": "@entity.pendingId",
301
310
  "type": "typography",
302
- "variant": "body",
303
- "content": "@entity.pendingId"
311
+ "variant": "body"
304
312
  }
305
- ]
313
+ ],
314
+ "gap": "md",
315
+ "type": "stack"
306
316
  },
307
317
  {
308
318
  "type": "divider"
309
319
  },
310
320
  {
311
- "type": "stack",
312
321
  "direction": "horizontal",
313
322
  "gap": "sm",
314
- "justify": "end",
323
+ "type": "stack",
315
324
  "children": [
316
325
  {
317
- "type": "button",
326
+ "variant": "ghost",
318
327
  "label": "Cancel",
319
328
  "event": "CLOSE",
320
- "variant": "ghost"
329
+ "type": "button"
321
330
  },
322
331
  {
323
- "type": "button",
324
332
  "label": "Confirm Selection",
333
+ "icon": "check",
334
+ "type": "button",
325
335
  "event": "CONFIRM_SELECT",
326
- "variant": "primary",
327
- "icon": "check"
336
+ "variant": "primary"
328
337
  }
329
- ]
338
+ ],
339
+ "justify": "end"
330
340
  }
331
- ]
341
+ ],
342
+ "type": "stack",
343
+ "direction": "vertical"
332
344
  }
333
345
  ]
334
346
  ],
335
- "CLOSE": [
347
+ "INIT": [
348
+ [
349
+ "ref",
350
+ "Location"
351
+ ]
352
+ ],
353
+ "CONFIRM_SELECT": [
336
354
  [
337
355
  "render-ui",
338
356
  "modal",
339
357
  null
340
358
  ],
341
359
  [
342
- "notify",
343
- "Cancelled",
344
- "info"
360
+ "render-ui",
361
+ "main",
362
+ {
363
+ "type": "box"
364
+ }
345
365
  ]
346
366
  ],
347
- "CONFIRM_SELECT": [
367
+ "CLOSE": [
348
368
  [
349
369
  "render-ui",
350
370
  "modal",
351
371
  null
372
+ ],
373
+ [
374
+ "render-ui",
375
+ "main",
376
+ {
377
+ "type": "box"
378
+ }
379
+ ],
380
+ [
381
+ "notify",
382
+ "Cancelled",
383
+ "info"
352
384
  ]
353
385
  ]
354
386
  }
@@ -358,8 +390,8 @@
358
390
  "name": "LocationConfirmSelect",
359
391
  "linkedEntity": "Location",
360
392
  "events": {
361
- "REQUEST": "CONFIRM_SELECT",
362
- "CONFIRM": "CONFIRMED"
393
+ "CONFIRM": "CONFIRMED",
394
+ "REQUEST": "CONFIRM_SELECT"
363
395
  },
364
396
  "effects": {
365
397
  "INIT": [
@@ -385,15 +417,14 @@
385
417
  "render-ui",
386
418
  "modal",
387
419
  {
388
- "type": "stack",
389
420
  "direction": "vertical",
390
- "gap": "md",
421
+ "type": "stack",
391
422
  "children": [
392
423
  {
393
- "type": "stack",
394
- "direction": "horizontal",
395
- "gap": "sm",
396
424
  "align": "center",
425
+ "gap": "sm",
426
+ "direction": "horizontal",
427
+ "type": "stack",
397
428
  "children": [
398
429
  {
399
430
  "type": "icon",
@@ -401,9 +432,9 @@
401
432
  "size": "md"
402
433
  },
403
434
  {
404
- "type": "typography",
435
+ "variant": "h3",
405
436
  "content": "Confirm Location Selection",
406
- "variant": "h3"
437
+ "type": "typography"
407
438
  }
408
439
  ]
409
440
  },
@@ -411,32 +442,33 @@
411
442
  "type": "divider"
412
443
  },
413
444
  {
414
- "type": "alert",
415
445
  "variant": "danger",
416
- "message": "Are you sure you want to select this location?"
446
+ "message": "Are you sure you want to select this location?",
447
+ "type": "alert"
417
448
  },
418
449
  {
450
+ "justify": "end",
451
+ "gap": "sm",
419
452
  "type": "stack",
420
453
  "direction": "horizontal",
421
- "gap": "sm",
422
- "justify": "end",
423
454
  "children": [
424
455
  {
425
456
  "type": "button",
426
- "label": "Cancel",
427
457
  "event": "CANCEL",
428
- "variant": "ghost"
458
+ "variant": "ghost",
459
+ "label": "Cancel"
429
460
  },
430
461
  {
431
- "type": "button",
462
+ "icon": "check",
432
463
  "label": "Confirm",
433
464
  "event": "CONFIRMED",
434
- "variant": "danger",
435
- "icon": "check"
465
+ "type": "button",
466
+ "variant": "danger"
436
467
  }
437
468
  ]
438
469
  }
439
- ]
470
+ ],
471
+ "gap": "md"
440
472
  }
441
473
  ]
442
474
  ],
@@ -450,28 +482,49 @@
450
482
  "modal",
451
483
  null
452
484
  ],
485
+ [
486
+ "render-ui",
487
+ "main",
488
+ {
489
+ "type": "box"
490
+ }
491
+ ],
453
492
  [
454
493
  "ref",
455
494
  "Location"
456
495
  ]
457
496
  ],
458
- "CANCEL": [
497
+ "CLOSE": [
459
498
  [
460
499
  "render-ui",
461
500
  "modal",
462
501
  null
463
502
  ],
503
+ [
504
+ "render-ui",
505
+ "main",
506
+ {
507
+ "type": "box"
508
+ }
509
+ ],
464
510
  [
465
511
  "ref",
466
512
  "Location"
467
513
  ]
468
514
  ],
469
- "CLOSE": [
515
+ "CANCEL": [
470
516
  [
471
517
  "render-ui",
472
518
  "modal",
473
519
  null
474
520
  ],
521
+ [
522
+ "render-ui",
523
+ "main",
524
+ {
525
+ "type": "box"
526
+ }
527
+ ],
475
528
  [
476
529
  "ref",
477
530
  "Location"
@@ -499,4 +552,4 @@
499
552
  ]
500
553
  }
501
554
  ]
502
- }
555
+ }