@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-undo",
3
3
  "version": "1.0.0",
4
- "description": "Undo/Redo atom using array operators as a stack. - PUSH: appends to undoStack, clears redoStack - UNDO: pops from undoStack, pushes to redoStack - REDO: pops from redoStack, pushes to undoStack - CLEAR: empties both stacks",
4
+ "description": "std-undo as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "UndoActionOrbital",
@@ -38,12 +38,18 @@
38
38
  {
39
39
  "name": "undoStack",
40
40
  "type": "array",
41
- "default": []
41
+ "default": [],
42
+ "items": {
43
+ "type": "string"
44
+ }
42
45
  },
43
46
  {
44
47
  "name": "redoStack",
45
48
  "type": "array",
46
- "default": []
49
+ "default": [],
50
+ "items": {
51
+ "type": "string"
52
+ }
47
53
  },
48
54
  {
49
55
  "name": "current",
@@ -55,8 +61,60 @@
55
61
  "traits": [
56
62
  {
57
63
  "name": "UndoActionUndo",
58
- "linkedEntity": "UndoAction",
59
64
  "category": "interaction",
65
+ "linkedEntity": "UndoAction",
66
+ "emits": [
67
+ {
68
+ "event": "UndoActionLoaded",
69
+ "description": "Fired when UndoAction finishes loading",
70
+ "scope": "internal",
71
+ "payload": [
72
+ {
73
+ "name": "id",
74
+ "type": "string"
75
+ },
76
+ {
77
+ "name": "name",
78
+ "type": "string"
79
+ },
80
+ {
81
+ "name": "description",
82
+ "type": "string"
83
+ },
84
+ {
85
+ "name": "status",
86
+ "type": "string"
87
+ },
88
+ {
89
+ "name": "createdAt",
90
+ "type": "string"
91
+ },
92
+ {
93
+ "name": "undoStack",
94
+ "type": "[string]"
95
+ },
96
+ {
97
+ "name": "redoStack",
98
+ "type": "[string]"
99
+ },
100
+ {
101
+ "name": "current",
102
+ "type": "string"
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "event": "UndoActionLoadFailed",
108
+ "description": "Fired when UndoAction fails to load",
109
+ "scope": "internal",
110
+ "payload": [
111
+ {
112
+ "name": "message",
113
+ "type": "string"
114
+ }
115
+ ]
116
+ }
117
+ ],
60
118
  "stateMachine": {
61
119
  "states": [
62
120
  {
@@ -91,6 +149,20 @@
91
149
  {
92
150
  "key": "CLEAR",
93
151
  "name": "Clear"
152
+ },
153
+ {
154
+ "key": "UndoActionLoaded",
155
+ "name": "UndoAction loaded"
156
+ },
157
+ {
158
+ "key": "UndoActionLoadFailed",
159
+ "name": "UndoAction load failed",
160
+ "payload": [
161
+ {
162
+ "name": "message",
163
+ "type": "string"
164
+ }
165
+ ]
94
166
  }
95
167
  ],
96
168
  "transitions": [
@@ -101,93 +173,96 @@
101
173
  "effects": [
102
174
  [
103
175
  "fetch",
104
- "UndoAction"
176
+ "UndoAction",
177
+ {
178
+ "emit": {
179
+ "failure": "UndoActionLoadFailed",
180
+ "success": "UndoActionLoaded"
181
+ }
182
+ }
105
183
  ],
106
184
  [
107
185
  "render-ui",
108
186
  "main",
109
187
  {
110
- "type": "stack",
111
- "direction": "vertical",
112
- "gap": "lg",
113
188
  "children": [
114
189
  {
115
- "type": "stack",
116
- "direction": "horizontal",
117
- "gap": "md",
118
190
  "justify": "space-between",
191
+ "type": "stack",
119
192
  "align": "center",
193
+ "gap": "md",
120
194
  "children": [
121
195
  {
122
- "type": "stack",
123
- "direction": "horizontal",
124
- "gap": "sm",
125
196
  "align": "center",
126
197
  "children": [
127
198
  {
128
- "type": "icon",
129
199
  "name": "history",
130
- "size": "lg"
200
+ "size": "lg",
201
+ "type": "icon"
131
202
  },
132
203
  {
133
204
  "type": "typography",
134
205
  "content": "History",
135
206
  "variant": "h2"
136
207
  }
137
- ]
208
+ ],
209
+ "gap": "sm",
210
+ "type": "stack",
211
+ "direction": "horizontal"
138
212
  },
139
213
  {
140
214
  "type": "stack",
141
- "direction": "horizontal",
142
- "gap": "sm",
143
215
  "align": "center",
216
+ "direction": "horizontal",
144
217
  "children": [
145
218
  {
146
- "type": "tooltip",
147
219
  "content": "Undo the last action",
148
220
  "children": [
149
221
  {
150
- "type": "button",
151
222
  "label": "Undo",
152
223
  "event": "UNDO",
224
+ "type": "button",
153
225
  "variant": "ghost",
154
226
  "icon": "undo"
155
227
  }
156
- ]
228
+ ],
229
+ "type": "tooltip"
157
230
  },
158
231
  {
159
232
  "type": "tooltip",
160
- "content": "Redo the last undone action",
161
233
  "children": [
162
234
  {
163
- "type": "button",
235
+ "icon": "redo",
164
236
  "label": "Redo",
165
- "event": "REDO",
237
+ "type": "button",
166
238
  "variant": "ghost",
167
- "icon": "redo"
239
+ "event": "REDO"
168
240
  }
169
- ]
241
+ ],
242
+ "content": "Redo the last undone action"
170
243
  },
171
244
  {
172
- "type": "divider",
173
- "orientation": "vertical"
245
+ "orientation": "vertical",
246
+ "type": "divider"
174
247
  },
175
248
  {
176
- "type": "tooltip",
177
- "content": "Clear all history",
178
249
  "children": [
179
250
  {
180
- "type": "button",
181
251
  "label": "Clear",
252
+ "type": "button",
182
253
  "event": "CLEAR",
183
- "variant": "ghost",
184
- "icon": "trash-2"
254
+ "icon": "trash-2",
255
+ "variant": "ghost"
185
256
  }
186
- ]
257
+ ],
258
+ "type": "tooltip",
259
+ "content": "Clear all history"
187
260
  }
188
- ]
261
+ ],
262
+ "gap": "sm"
189
263
  }
190
- ]
264
+ ],
265
+ "direction": "horizontal"
191
266
  },
192
267
  {
193
268
  "type": "divider"
@@ -195,13 +270,12 @@
195
270
  {
196
271
  "type": "stack",
197
272
  "direction": "horizontal",
198
- "gap": "md",
199
273
  "align": "center",
200
274
  "children": [
201
275
  {
202
- "type": "typography",
203
276
  "variant": "caption",
204
277
  "color": "muted",
278
+ "type": "typography",
205
279
  "content": "Last action:"
206
280
  },
207
281
  {
@@ -215,9 +289,13 @@
215
289
  "current"
216
290
  ]
217
291
  }
218
- ]
292
+ ],
293
+ "gap": "md"
219
294
  }
220
- ]
295
+ ],
296
+ "type": "stack",
297
+ "gap": "lg",
298
+ "direction": "vertical"
221
299
  }
222
300
  ]
223
301
  ]
@@ -252,64 +330,58 @@
252
330
  {
253
331
  "type": "stack",
254
332
  "direction": "vertical",
255
- "gap": "lg",
256
333
  "children": [
257
334
  {
258
- "type": "stack",
259
- "direction": "horizontal",
260
- "gap": "md",
261
- "justify": "space-between",
262
335
  "align": "center",
263
336
  "children": [
264
337
  {
265
- "type": "stack",
266
- "direction": "horizontal",
267
- "gap": "sm",
268
338
  "align": "center",
269
339
  "children": [
270
340
  {
271
341
  "type": "icon",
272
- "name": "history",
273
- "size": "lg"
342
+ "size": "lg",
343
+ "name": "history"
274
344
  },
275
345
  {
276
346
  "type": "typography",
277
347
  "content": "History",
278
348
  "variant": "h2"
279
349
  }
280
- ]
350
+ ],
351
+ "type": "stack",
352
+ "gap": "sm",
353
+ "direction": "horizontal"
281
354
  },
282
355
  {
283
356
  "type": "stack",
284
357
  "direction": "horizontal",
285
358
  "gap": "sm",
286
- "align": "center",
287
359
  "children": [
288
360
  {
289
361
  "type": "tooltip",
290
- "content": "Undo the last action",
291
362
  "children": [
292
363
  {
293
- "type": "button",
294
- "label": "Undo",
295
- "event": "UNDO",
296
364
  "variant": "ghost",
297
- "icon": "undo"
365
+ "event": "UNDO",
366
+ "icon": "undo",
367
+ "type": "button",
368
+ "label": "Undo"
298
369
  }
299
- ]
370
+ ],
371
+ "content": "Undo the last action"
300
372
  },
301
373
  {
302
374
  "type": "tooltip",
303
- "content": "Redo the last undone action",
304
375
  "children": [
305
376
  {
377
+ "event": "REDO",
306
378
  "type": "button",
307
379
  "label": "Redo",
308
- "event": "REDO",
309
380
  "variant": "ghost",
310
381
  "icon": "redo"
311
382
  }
312
- ]
383
+ ],
384
+ "content": "Redo the last undone action"
313
385
  },
314
386
  {
315
387
  "type": "divider",
@@ -317,35 +389,40 @@
317
389
  },
318
390
  {
319
391
  "type": "tooltip",
320
- "content": "Clear all history",
321
392
  "children": [
322
393
  {
323
- "type": "button",
324
394
  "label": "Clear",
325
395
  "event": "CLEAR",
396
+ "icon": "trash-2",
326
397
  "variant": "ghost",
327
- "icon": "trash-2"
398
+ "type": "button"
328
399
  }
329
- ]
400
+ ],
401
+ "content": "Clear all history"
330
402
  }
331
- ]
403
+ ],
404
+ "align": "center"
332
405
  }
333
- ]
406
+ ],
407
+ "justify": "space-between",
408
+ "gap": "md",
409
+ "type": "stack",
410
+ "direction": "horizontal"
334
411
  },
335
412
  {
336
413
  "type": "divider"
337
414
  },
338
415
  {
339
- "type": "stack",
340
- "direction": "horizontal",
341
416
  "gap": "md",
417
+ "type": "stack",
342
418
  "align": "center",
419
+ "direction": "horizontal",
343
420
  "children": [
344
421
  {
345
- "type": "typography",
346
- "variant": "caption",
422
+ "content": "Last action:",
347
423
  "color": "muted",
348
- "content": "Last action:"
424
+ "type": "typography",
425
+ "variant": "caption"
349
426
  },
350
427
  {
351
428
  "type": "badge",
@@ -360,7 +437,8 @@
360
437
  }
361
438
  ]
362
439
  }
363
- ]
440
+ ],
441
+ "gap": "lg"
364
442
  }
365
443
  ]
366
444
  ]
@@ -393,110 +471,106 @@
393
471
  [
394
472
  "array/slice",
395
473
  "@entity.undoStack",
396
- 0,
397
- -1
474
+ 0.0,
475
+ -1.0
398
476
  ]
399
477
  ],
400
478
  [
401
479
  "render-ui",
402
480
  "main",
403
481
  {
404
- "type": "stack",
405
482
  "direction": "vertical",
406
- "gap": "lg",
407
483
  "children": [
408
484
  {
409
- "type": "stack",
410
- "direction": "horizontal",
411
- "gap": "md",
412
- "justify": "space-between",
413
485
  "align": "center",
414
486
  "children": [
415
487
  {
416
- "type": "stack",
417
- "direction": "horizontal",
418
- "gap": "sm",
419
- "align": "center",
420
488
  "children": [
421
489
  {
422
- "type": "icon",
423
490
  "name": "history",
491
+ "type": "icon",
424
492
  "size": "lg"
425
493
  },
426
494
  {
427
- "type": "typography",
428
495
  "content": "History",
429
- "variant": "h2"
496
+ "variant": "h2",
497
+ "type": "typography"
430
498
  }
431
- ]
499
+ ],
500
+ "align": "center",
501
+ "gap": "sm",
502
+ "direction": "horizontal",
503
+ "type": "stack"
432
504
  },
433
505
  {
434
- "type": "stack",
435
- "direction": "horizontal",
436
- "gap": "sm",
437
506
  "align": "center",
438
507
  "children": [
439
508
  {
440
- "type": "tooltip",
441
509
  "content": "Undo the last action",
442
510
  "children": [
443
511
  {
444
512
  "type": "button",
445
- "label": "Undo",
446
- "event": "UNDO",
447
513
  "variant": "ghost",
514
+ "event": "UNDO",
515
+ "label": "Undo",
448
516
  "icon": "undo"
449
517
  }
450
- ]
518
+ ],
519
+ "type": "tooltip"
451
520
  },
452
521
  {
453
522
  "type": "tooltip",
454
523
  "content": "Redo the last undone action",
455
524
  "children": [
456
525
  {
457
- "type": "button",
526
+ "variant": "ghost",
458
527
  "label": "Redo",
459
528
  "event": "REDO",
460
- "variant": "ghost",
461
- "icon": "redo"
529
+ "icon": "redo",
530
+ "type": "button"
462
531
  }
463
532
  ]
464
533
  },
465
534
  {
466
- "type": "divider",
467
- "orientation": "vertical"
535
+ "orientation": "vertical",
536
+ "type": "divider"
468
537
  },
469
538
  {
470
539
  "type": "tooltip",
471
- "content": "Clear all history",
472
540
  "children": [
473
541
  {
474
- "type": "button",
475
- "label": "Clear",
542
+ "icon": "trash-2",
476
543
  "event": "CLEAR",
477
- "variant": "ghost",
478
- "icon": "trash-2"
544
+ "label": "Clear",
545
+ "type": "button",
546
+ "variant": "ghost"
479
547
  }
480
- ]
548
+ ],
549
+ "content": "Clear all history"
481
550
  }
482
- ]
551
+ ],
552
+ "gap": "sm",
553
+ "type": "stack",
554
+ "direction": "horizontal"
483
555
  }
484
- ]
556
+ ],
557
+ "direction": "horizontal",
558
+ "justify": "space-between",
559
+ "type": "stack",
560
+ "gap": "md"
485
561
  },
486
562
  {
487
563
  "type": "divider"
488
564
  },
489
565
  {
490
- "type": "stack",
491
- "direction": "horizontal",
492
- "gap": "md",
493
566
  "align": "center",
567
+ "gap": "md",
494
568
  "children": [
495
569
  {
496
- "type": "typography",
497
- "variant": "caption",
498
570
  "color": "muted",
499
- "content": "Last action:"
571
+ "type": "typography",
572
+ "content": "Last action:",
573
+ "variant": "caption"
500
574
  },
501
575
  {
502
576
  "type": "badge",
@@ -509,9 +583,13 @@
509
583
  "current"
510
584
  ]
511
585
  }
512
- ]
586
+ ],
587
+ "type": "stack",
588
+ "direction": "horizontal"
513
589
  }
514
- ]
590
+ ],
591
+ "gap": "lg",
592
+ "type": "stack"
515
593
  }
516
594
  ]
517
595
  ]
@@ -544,8 +622,8 @@
544
622
  [
545
623
  "array/slice",
546
624
  "@entity.redoStack",
547
- 0,
548
- -1
625
+ 0.0,
626
+ -1.0
549
627
  ]
550
628
  ],
551
629
  [
@@ -554,103 +632,99 @@
554
632
  {
555
633
  "type": "stack",
556
634
  "direction": "vertical",
557
- "gap": "lg",
558
635
  "children": [
559
636
  {
560
- "type": "stack",
637
+ "justify": "space-between",
561
638
  "direction": "horizontal",
562
639
  "gap": "md",
563
- "justify": "space-between",
564
- "align": "center",
565
640
  "children": [
566
641
  {
567
- "type": "stack",
568
- "direction": "horizontal",
569
- "gap": "sm",
570
642
  "align": "center",
643
+ "gap": "sm",
644
+ "type": "stack",
571
645
  "children": [
572
646
  {
573
647
  "type": "icon",
574
- "name": "history",
575
- "size": "lg"
648
+ "size": "lg",
649
+ "name": "history"
576
650
  },
577
651
  {
578
- "type": "typography",
579
652
  "content": "History",
653
+ "type": "typography",
580
654
  "variant": "h2"
581
655
  }
582
- ]
656
+ ],
657
+ "direction": "horizontal"
583
658
  },
584
659
  {
585
- "type": "stack",
586
660
  "direction": "horizontal",
587
- "gap": "sm",
588
- "align": "center",
589
661
  "children": [
590
662
  {
591
- "type": "tooltip",
592
- "content": "Undo the last action",
593
663
  "children": [
594
664
  {
665
+ "variant": "ghost",
595
666
  "type": "button",
596
- "label": "Undo",
597
667
  "event": "UNDO",
598
- "variant": "ghost",
599
- "icon": "undo"
668
+ "icon": "undo",
669
+ "label": "Undo"
600
670
  }
601
- ]
671
+ ],
672
+ "content": "Undo the last action",
673
+ "type": "tooltip"
602
674
  },
603
675
  {
604
676
  "type": "tooltip",
605
- "content": "Redo the last undone action",
606
677
  "children": [
607
678
  {
608
- "type": "button",
609
- "label": "Redo",
610
679
  "event": "REDO",
680
+ "label": "Redo",
681
+ "icon": "redo",
611
682
  "variant": "ghost",
612
- "icon": "redo"
683
+ "type": "button"
613
684
  }
614
- ]
685
+ ],
686
+ "content": "Redo the last undone action"
615
687
  },
616
688
  {
617
689
  "type": "divider",
618
690
  "orientation": "vertical"
619
691
  },
620
692
  {
621
- "type": "tooltip",
622
- "content": "Clear all history",
623
693
  "children": [
624
694
  {
695
+ "icon": "trash-2",
625
696
  "type": "button",
626
- "label": "Clear",
627
- "event": "CLEAR",
628
697
  "variant": "ghost",
629
- "icon": "trash-2"
698
+ "label": "Clear",
699
+ "event": "CLEAR"
630
700
  }
631
- ]
701
+ ],
702
+ "type": "tooltip",
703
+ "content": "Clear all history"
632
704
  }
633
- ]
705
+ ],
706
+ "align": "center",
707
+ "type": "stack",
708
+ "gap": "sm"
634
709
  }
635
- ]
710
+ ],
711
+ "type": "stack",
712
+ "align": "center"
636
713
  },
637
714
  {
638
715
  "type": "divider"
639
716
  },
640
717
  {
641
- "type": "stack",
642
- "direction": "horizontal",
643
718
  "gap": "md",
644
- "align": "center",
719
+ "type": "stack",
645
720
  "children": [
646
721
  {
722
+ "content": "Last action:",
647
723
  "type": "typography",
648
724
  "variant": "caption",
649
- "color": "muted",
650
- "content": "Last action:"
725
+ "color": "muted"
651
726
  },
652
727
  {
653
- "type": "badge",
654
728
  "label": [
655
729
  "object/get",
656
730
  [
@@ -658,11 +732,15 @@
658
732
  "@entity"
659
733
  ],
660
734
  "current"
661
- ]
735
+ ],
736
+ "type": "badge"
662
737
  }
663
- ]
738
+ ],
739
+ "direction": "horizontal",
740
+ "align": "center"
664
741
  }
665
- ]
742
+ ],
743
+ "gap": "lg"
666
744
  }
667
745
  ]
668
746
  ]
@@ -691,102 +769,99 @@
691
769
  "render-ui",
692
770
  "main",
693
771
  {
694
- "type": "stack",
695
772
  "direction": "vertical",
696
773
  "gap": "lg",
774
+ "type": "stack",
697
775
  "children": [
698
776
  {
699
- "type": "stack",
700
- "direction": "horizontal",
701
- "gap": "md",
702
777
  "justify": "space-between",
778
+ "gap": "md",
703
779
  "align": "center",
704
780
  "children": [
705
781
  {
706
- "type": "stack",
707
782
  "direction": "horizontal",
708
- "gap": "sm",
709
- "align": "center",
783
+ "type": "stack",
710
784
  "children": [
711
785
  {
712
786
  "type": "icon",
713
- "name": "history",
714
- "size": "lg"
787
+ "size": "lg",
788
+ "name": "history"
715
789
  },
716
790
  {
717
- "type": "typography",
791
+ "variant": "h2",
718
792
  "content": "History",
719
- "variant": "h2"
793
+ "type": "typography"
720
794
  }
721
- ]
795
+ ],
796
+ "gap": "sm",
797
+ "align": "center"
722
798
  },
723
799
  {
724
800
  "type": "stack",
725
- "direction": "horizontal",
726
801
  "gap": "sm",
802
+ "direction": "horizontal",
727
803
  "align": "center",
728
804
  "children": [
729
805
  {
730
- "type": "tooltip",
731
806
  "content": "Undo the last action",
732
807
  "children": [
733
808
  {
734
- "type": "button",
735
- "label": "Undo",
736
809
  "event": "UNDO",
737
810
  "variant": "ghost",
811
+ "label": "Undo",
812
+ "type": "button",
738
813
  "icon": "undo"
739
814
  }
740
- ]
815
+ ],
816
+ "type": "tooltip"
741
817
  },
742
818
  {
743
- "type": "tooltip",
744
819
  "content": "Redo the last undone action",
820
+ "type": "tooltip",
745
821
  "children": [
746
822
  {
747
- "type": "button",
748
823
  "label": "Redo",
824
+ "icon": "redo",
825
+ "type": "button",
749
826
  "event": "REDO",
750
- "variant": "ghost",
751
- "icon": "redo"
827
+ "variant": "ghost"
752
828
  }
753
829
  ]
754
830
  },
755
831
  {
756
- "type": "divider",
757
- "orientation": "vertical"
832
+ "orientation": "vertical",
833
+ "type": "divider"
758
834
  },
759
835
  {
760
- "type": "tooltip",
761
- "content": "Clear all history",
762
836
  "children": [
763
837
  {
764
- "type": "button",
765
838
  "label": "Clear",
839
+ "icon": "trash-2",
766
840
  "event": "CLEAR",
767
841
  "variant": "ghost",
768
- "icon": "trash-2"
842
+ "type": "button"
769
843
  }
770
- ]
844
+ ],
845
+ "content": "Clear all history",
846
+ "type": "tooltip"
771
847
  }
772
848
  ]
773
849
  }
774
- ]
850
+ ],
851
+ "direction": "horizontal",
852
+ "type": "stack"
775
853
  },
776
854
  {
777
855
  "type": "divider"
778
856
  },
779
857
  {
780
- "type": "stack",
781
- "direction": "horizontal",
782
858
  "gap": "md",
783
- "align": "center",
784
859
  "children": [
785
860
  {
786
861
  "type": "typography",
787
862
  "variant": "caption",
788
- "color": "muted",
789
- "content": "Last action:"
863
+ "content": "Last action:",
864
+ "color": "muted"
790
865
  },
791
866
  {
792
867
  "type": "badge",
@@ -799,7 +874,10 @@
799
874
  "current"
800
875
  ]
801
876
  }
802
- ]
877
+ ],
878
+ "align": "center",
879
+ "type": "stack",
880
+ "direction": "horizontal"
803
881
  }
804
882
  ]
805
883
  }
@@ -807,7 +885,8 @@
807
885
  ]
808
886
  }
809
887
  ]
810
- }
888
+ },
889
+ "scope": "instance"
811
890
  }
812
891
  ],
813
892
  "pages": [
@@ -823,4 +902,4 @@
823
902
  ]
824
903
  }
825
904
  ]
826
- }
905
+ }