@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
@@ -45,8 +45,8 @@
45
45
  "traits": [
46
46
  {
47
47
  "name": "LoadableItemLoading",
48
- "linkedEntity": "LoadableItem",
49
48
  "category": "interaction",
49
+ "linkedEntity": "LoadableItem",
50
50
  "stateMachine": {
51
51
  "states": [
52
52
  {
@@ -70,7 +70,7 @@
70
70
  },
71
71
  {
72
72
  "key": "START",
73
- "name": "Start Loading"
73
+ "name": "Start"
74
74
  },
75
75
  {
76
76
  "key": "LOADED",
@@ -104,15 +104,14 @@
104
104
  "children": [
105
105
  {
106
106
  "type": "stack",
107
- "direction": "vertical",
108
107
  "gap": "lg",
108
+ "direction": "vertical",
109
109
  "align": "center",
110
110
  "children": [
111
111
  {
112
+ "gap": "sm",
112
113
  "type": "stack",
113
114
  "direction": "horizontal",
114
- "gap": "sm",
115
- "align": "center",
116
115
  "children": [
117
116
  {
118
117
  "type": "icon",
@@ -121,26 +120,27 @@
121
120
  },
122
121
  {
123
122
  "type": "typography",
124
- "content": "LoadableItem",
125
- "variant": "h2"
123
+ "variant": "h2",
124
+ "content": "LoadableItem"
126
125
  }
127
- ]
126
+ ],
127
+ "align": "center"
128
128
  },
129
129
  {
130
130
  "type": "divider"
131
131
  },
132
132
  {
133
- "type": "typography",
134
- "variant": "body",
135
133
  "color": "muted",
136
- "content": "Ready to load loadableitem. Click Start to begin."
134
+ "variant": "body",
135
+ "content": "Ready to load loadableitem. Click Start to begin.",
136
+ "type": "typography"
137
137
  },
138
138
  {
139
- "type": "button",
140
139
  "label": "Start",
140
+ "icon": "play",
141
+ "type": "button",
141
142
  "event": "START",
142
- "variant": "primary",
143
- "icon": "play"
143
+ "variant": "primary"
144
144
  }
145
145
  ]
146
146
  }
@@ -165,7 +165,6 @@
165
165
  {
166
166
  "type": "stack",
167
167
  "direction": "vertical",
168
- "gap": "lg",
169
168
  "align": "center",
170
169
  "children": [
171
170
  {
@@ -179,14 +178,15 @@
179
178
  },
180
179
  {
181
180
  "type": "progress-bar",
182
- "value": 50,
183
- "showPercentage": true
181
+ "showPercentage": true,
182
+ "value": 50.0
184
183
  },
185
184
  {
186
- "type": "skeleton",
187
- "variant": "text"
185
+ "variant": "text",
186
+ "type": "skeleton"
188
187
  }
189
- ]
188
+ ],
189
+ "gap": "lg"
190
190
  }
191
191
  ]
192
192
  ]
@@ -205,26 +205,24 @@
205
205
  "render-ui",
206
206
  "main",
207
207
  {
208
- "type": "stack",
209
- "direction": "vertical",
210
- "gap": "lg",
211
208
  "align": "center",
209
+ "type": "stack",
212
210
  "children": [
213
211
  {
212
+ "align": "center",
214
213
  "type": "stack",
215
214
  "direction": "horizontal",
216
215
  "gap": "md",
217
- "align": "center",
218
216
  "children": [
219
217
  {
220
218
  "type": "icon",
221
- "name": "check-circle",
222
- "size": "lg"
219
+ "size": "lg",
220
+ "name": "check-circle"
223
221
  },
224
222
  {
225
- "type": "typography",
226
223
  "content": "Success",
227
- "variant": "h2"
224
+ "variant": "h2",
225
+ "type": "typography"
228
226
  }
229
227
  ]
230
228
  },
@@ -237,13 +235,15 @@
237
235
  "message": "Operation completed successfully."
238
236
  },
239
237
  {
240
- "type": "button",
241
- "label": "Reset",
242
- "event": "RESET",
243
238
  "variant": "ghost",
244
- "icon": "rotate-ccw"
239
+ "event": "RESET",
240
+ "type": "button",
241
+ "icon": "rotate-ccw",
242
+ "label": "Reset"
245
243
  }
246
- ]
244
+ ],
245
+ "gap": "lg",
246
+ "direction": "vertical"
247
247
  }
248
248
  ]
249
249
  ]
@@ -262,92 +262,50 @@
262
262
  "render-ui",
263
263
  "main",
264
264
  {
265
- "type": "error-boundary",
266
265
  "children": [
267
266
  {
268
- "type": "stack",
269
- "direction": "vertical",
270
- "gap": "lg",
271
- "align": "center",
272
267
  "children": [
273
268
  {
274
- "type": "error-state",
269
+ "onRetry": "START",
275
270
  "title": "Error",
276
- "message": "Something went wrong. Please try again.",
277
- "onRetry": "START"
271
+ "type": "error-state",
272
+ "message": "Something went wrong. Please try again."
278
273
  },
279
274
  {
280
275
  "type": "stack",
281
276
  "direction": "horizontal",
282
- "gap": "sm",
283
277
  "justify": "center",
284
278
  "children": [
285
279
  {
286
- "type": "button",
287
- "label": "Retry",
288
280
  "event": "START",
281
+ "icon": "rotate-ccw",
289
282
  "variant": "primary",
290
- "icon": "rotate-ccw"
283
+ "label": "Retry",
284
+ "type": "button"
291
285
  },
292
286
  {
293
- "type": "button",
294
- "label": "Reset",
295
287
  "event": "RESET",
296
- "variant": "ghost"
288
+ "label": "Reset",
289
+ "variant": "ghost",
290
+ "type": "button"
297
291
  }
298
- ]
292
+ ],
293
+ "gap": "sm"
299
294
  }
300
- ]
301
- }
302
- ]
303
- }
304
- ]
305
- ]
306
- },
307
- {
308
- "from": "error",
309
- "to": "loading",
310
- "event": "START",
311
- "effects": [
312
- [
313
- "set",
314
- "@entity.loadingStatus",
315
- "loading"
316
- ],
317
- [
318
- "render-ui",
319
- "main",
320
- {
321
- "type": "stack",
322
- "direction": "vertical",
323
- "gap": "lg",
324
- "align": "center",
325
- "children": [
326
- {
327
- "type": "loading-state",
328
- "title": "Loading",
329
- "message": "Loading loadableitem..."
330
- },
331
- {
332
- "type": "spinner",
333
- "size": "lg"
334
- },
335
- {
336
- "type": "progress-bar",
337
- "value": 50,
338
- "showPercentage": true
339
- },
340
- {
341
- "type": "skeleton",
342
- "variant": "text"
295
+ ],
296
+ "type": "stack",
297
+ "align": "center",
298
+ "direction": "vertical",
299
+ "gap": "lg"
343
300
  }
344
- ]
301
+ ],
302
+ "type": "error-boundary"
345
303
  }
346
304
  ]
347
305
  ]
348
306
  },
349
307
  {
350
- "from": "error",
308
+ "from": "success",
351
309
  "to": "idle",
352
310
  "event": "RESET",
353
311
  "effects": [
@@ -363,46 +321,46 @@
363
321
  "type": "center",
364
322
  "children": [
365
323
  {
366
- "type": "stack",
367
324
  "direction": "vertical",
368
- "gap": "lg",
369
- "align": "center",
370
325
  "children": [
371
326
  {
372
- "type": "stack",
373
327
  "direction": "horizontal",
374
- "gap": "sm",
375
- "align": "center",
376
328
  "children": [
377
329
  {
378
330
  "type": "icon",
379
- "name": "play-circle",
380
- "size": "lg"
331
+ "size": "lg",
332
+ "name": "play-circle"
381
333
  },
382
334
  {
383
- "type": "typography",
384
335
  "content": "LoadableItem",
336
+ "type": "typography",
385
337
  "variant": "h2"
386
338
  }
387
- ]
339
+ ],
340
+ "type": "stack",
341
+ "gap": "sm",
342
+ "align": "center"
388
343
  },
389
344
  {
390
345
  "type": "divider"
391
346
  },
392
347
  {
393
348
  "type": "typography",
394
- "variant": "body",
395
349
  "color": "muted",
350
+ "variant": "body",
396
351
  "content": "Ready to load loadableitem. Click Start to begin."
397
352
  },
398
353
  {
399
- "type": "button",
400
- "label": "Start",
401
354
  "event": "START",
402
355
  "variant": "primary",
356
+ "type": "button",
357
+ "label": "Start",
403
358
  "icon": "play"
404
359
  }
405
- ]
360
+ ],
361
+ "align": "center",
362
+ "type": "stack",
363
+ "gap": "lg"
406
364
  }
407
365
  ]
408
366
  }
@@ -410,7 +368,49 @@
410
368
  ]
411
369
  },
412
370
  {
413
- "from": "success",
371
+ "from": "error",
372
+ "to": "loading",
373
+ "event": "START",
374
+ "effects": [
375
+ [
376
+ "set",
377
+ "@entity.loadingStatus",
378
+ "loading"
379
+ ],
380
+ [
381
+ "render-ui",
382
+ "main",
383
+ {
384
+ "align": "center",
385
+ "direction": "vertical",
386
+ "children": [
387
+ {
388
+ "type": "loading-state",
389
+ "title": "Loading",
390
+ "message": "Loading loadableitem..."
391
+ },
392
+ {
393
+ "size": "lg",
394
+ "type": "spinner"
395
+ },
396
+ {
397
+ "type": "progress-bar",
398
+ "value": 50.0,
399
+ "showPercentage": true
400
+ },
401
+ {
402
+ "type": "skeleton",
403
+ "variant": "text"
404
+ }
405
+ ],
406
+ "gap": "lg",
407
+ "type": "stack"
408
+ }
409
+ ]
410
+ ]
411
+ },
412
+ {
413
+ "from": "error",
414
414
  "to": "idle",
415
415
  "event": "RESET",
416
416
  "effects": [
@@ -426,15 +426,8 @@
426
426
  "type": "center",
427
427
  "children": [
428
428
  {
429
- "type": "stack",
430
- "direction": "vertical",
431
- "gap": "lg",
432
- "align": "center",
433
429
  "children": [
434
430
  {
435
- "type": "stack",
436
- "direction": "horizontal",
437
- "gap": "sm",
438
431
  "align": "center",
439
432
  "children": [
440
433
  {
@@ -447,25 +440,32 @@
447
440
  "content": "LoadableItem",
448
441
  "variant": "h2"
449
442
  }
450
- ]
443
+ ],
444
+ "gap": "sm",
445
+ "type": "stack",
446
+ "direction": "horizontal"
451
447
  },
452
448
  {
453
449
  "type": "divider"
454
450
  },
455
451
  {
456
- "type": "typography",
457
- "variant": "body",
452
+ "content": "Ready to load loadableitem. Click Start to begin.",
458
453
  "color": "muted",
459
- "content": "Ready to load loadableitem. Click Start to begin."
454
+ "type": "typography",
455
+ "variant": "body"
460
456
  },
461
457
  {
458
+ "icon": "play",
462
459
  "type": "button",
463
- "label": "Start",
464
460
  "event": "START",
465
- "variant": "primary",
466
- "icon": "play"
461
+ "label": "Start",
462
+ "variant": "primary"
467
463
  }
468
- ]
464
+ ],
465
+ "gap": "lg",
466
+ "align": "center",
467
+ "direction": "vertical",
468
+ "type": "stack"
469
469
  }
470
470
  ]
471
471
  }
@@ -473,7 +473,8 @@
473
473
  ]
474
474
  }
475
475
  ]
476
- }
476
+ },
477
+ "scope": "instance"
477
478
  }
478
479
  ],
479
480
  "pages": [
@@ -489,4 +490,4 @@
489
490
  ]
490
491
  }
491
492
  ]
492
- }
493
+ }