@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
@@ -50,8 +50,8 @@
50
50
  "traits": [
51
51
  {
52
52
  "name": "TextInputInput",
53
- "linkedEntity": "TextInput",
54
53
  "category": "interaction",
54
+ "linkedEntity": "TextInput",
55
55
  "stateMachine": {
56
56
  "states": [
57
57
  {
@@ -74,10 +74,6 @@
74
74
  "key": "FOCUS",
75
75
  "name": "Focus"
76
76
  },
77
- {
78
- "key": "BLUR",
79
- "name": "Blur"
80
- },
81
77
  {
82
78
  "key": "CHANGE",
83
79
  "name": "Change",
@@ -89,6 +85,10 @@
89
85
  }
90
86
  ]
91
87
  },
88
+ {
89
+ "key": "BLUR",
90
+ "name": "Blur"
91
+ },
92
92
  {
93
93
  "key": "VALIDATE",
94
94
  "name": "Validate"
@@ -100,18 +100,19 @@
100
100
  "to": "idle",
101
101
  "event": "INIT",
102
102
  "effects": [
103
+ [
104
+ "fetch",
105
+ "TextInput"
106
+ ],
103
107
  [
104
108
  "render-ui",
105
109
  "main",
106
110
  {
107
111
  "type": "stack",
108
- "direction": "vertical",
109
- "gap": "lg",
110
112
  "children": [
111
113
  {
112
- "type": "stack",
113
- "direction": "horizontal",
114
114
  "gap": "sm",
115
+ "direction": "horizontal",
115
116
  "align": "center",
116
117
  "children": [
117
118
  {
@@ -120,76 +121,31 @@
120
121
  "size": "lg"
121
122
  },
122
123
  {
123
- "type": "typography",
124
+ "variant": "h2",
124
125
  "content": "TextInput",
125
- "variant": "h2"
126
+ "type": "typography"
126
127
  }
127
- ]
128
+ ],
129
+ "type": "stack"
128
130
  },
129
131
  {
130
132
  "type": "divider"
131
133
  },
132
134
  {
133
- "type": "form-field",
134
- "label": "TextInput",
135
- "hint": "Type to enter a value.",
136
135
  "children": [
137
136
  {
138
- "type": "input",
139
137
  "placeholder": "Enter textinput...",
138
+ "type": "input",
140
139
  "event": "CHANGE"
141
140
  }
142
- ]
143
- },
144
- {
145
- "type": "form-field",
146
- "label": "Toggle",
147
- "children": [
148
- {
149
- "type": "switch",
150
- "event": "TOGGLE"
151
- }
152
- ]
153
- },
154
- {
155
- "type": "form-field",
156
- "label": "Choice",
157
- "children": [
158
- {
159
- "type": "radio",
160
- "name": "choice",
161
- "event": "CHANGE"
162
- }
163
- ]
164
- },
165
- {
166
- "type": "form-field",
167
- "label": "Range",
168
- "children": [
169
- {
170
- "type": "range-slider",
171
- "min": 0,
172
- "max": 100,
173
- "event": "CHANGE"
174
- }
175
- ]
176
- },
177
- {
178
- "type": "form-field",
179
- "label": "Quantity",
180
- "children": [
181
- {
182
- "type": "number-stepper",
183
- "min": 0,
184
- "step": 1,
185
- "event": "CHANGE"
186
- }
187
- ]
141
+ ],
142
+ "hint": "Type to enter a value.",
143
+ "label": "TextInput",
144
+ "type": "form-field"
188
145
  },
189
146
  {
190
- "type": "typography",
191
- "variant": "caption",
192
147
  "color": "muted",
148
+ "type": "typography",
193
149
  "content": [
194
150
  "object/get",
195
151
  [
@@ -197,9 +153,12 @@
197
153
  "@entity"
198
154
  ],
199
155
  "value"
200
- ]
156
+ ],
157
+ "variant": "caption"
201
158
  }
202
- ]
159
+ ],
160
+ "gap": "lg",
161
+ "direction": "vertical"
203
162
  }
204
163
  ]
205
164
  ]
@@ -218,8 +177,6 @@
218
177
  "render-ui",
219
178
  "main",
220
179
  {
221
- "type": "stack",
222
- "direction": "vertical",
223
180
  "gap": "lg",
224
181
  "children": [
225
182
  {
@@ -234,9 +191,9 @@
234
191
  "size": "lg"
235
192
  },
236
193
  {
237
- "type": "typography",
238
194
  "content": "TextInput",
239
- "variant": "h2"
195
+ "variant": "h2",
196
+ "type": "typography"
240
197
  }
241
198
  ]
242
199
  },
@@ -245,64 +202,17 @@
245
202
  },
246
203
  {
247
204
  "type": "form-field",
248
- "label": "TextInput",
249
- "hint": "Type to enter a value.",
250
205
  "children": [
251
206
  {
252
- "type": "input",
207
+ "event": "CHANGE",
253
208
  "placeholder": "Enter textinput...",
254
- "event": "CHANGE"
255
- }
256
- ]
257
- },
258
- {
259
- "type": "form-field",
260
- "label": "Toggle",
261
- "children": [
262
- {
263
- "type": "switch",
264
- "event": "TOGGLE"
265
- }
266
- ]
267
- },
268
- {
269
- "type": "form-field",
270
- "label": "Choice",
271
- "children": [
272
- {
273
- "type": "radio",
274
- "name": "choice",
275
- "event": "CHANGE"
276
- }
277
- ]
278
- },
279
- {
280
- "type": "form-field",
281
- "label": "Range",
282
- "children": [
283
- {
284
- "type": "range-slider",
285
- "min": 0,
286
- "max": 100,
287
- "event": "CHANGE"
209
+ "type": "input"
288
210
  }
289
- ]
290
- },
291
- {
292
- "type": "form-field",
293
- "label": "Quantity",
294
- "children": [
295
- {
296
- "type": "number-stepper",
297
- "min": 0,
298
- "step": 1,
299
- "event": "CHANGE"
300
- }
301
- ]
211
+ ],
212
+ "label": "TextInput",
213
+ "hint": "Type to enter a value."
302
214
  },
303
215
  {
304
- "type": "typography",
305
- "variant": "caption",
306
216
  "color": "muted",
307
217
  "content": [
308
218
  "object/get",
@@ -311,9 +221,13 @@
311
221
  "@entity"
312
222
  ],
313
223
  "value"
314
- ]
224
+ ],
225
+ "variant": "caption",
226
+ "type": "typography"
315
227
  }
316
- ]
228
+ ],
229
+ "type": "stack",
230
+ "direction": "vertical"
317
231
  }
318
232
  ]
319
233
  ]
@@ -333,14 +247,13 @@
333
247
  "main",
334
248
  {
335
249
  "type": "stack",
336
- "direction": "vertical",
337
250
  "gap": "lg",
338
251
  "children": [
339
252
  {
253
+ "align": "center",
340
254
  "type": "stack",
341
- "direction": "horizontal",
342
255
  "gap": "sm",
343
- "align": "center",
256
+ "direction": "horizontal",
344
257
  "children": [
345
258
  {
346
259
  "type": "icon",
@@ -348,9 +261,9 @@
348
261
  "size": "lg"
349
262
  },
350
263
  {
351
- "type": "typography",
352
264
  "content": "TextInput",
353
- "variant": "h2"
265
+ "variant": "h2",
266
+ "type": "typography"
354
267
  }
355
268
  ]
356
269
  },
@@ -363,61 +276,13 @@
363
276
  "hint": "Type to enter a value.",
364
277
  "children": [
365
278
  {
279
+ "event": "CHANGE",
366
280
  "type": "input",
367
- "placeholder": "Enter textinput...",
368
- "event": "CHANGE"
281
+ "placeholder": "Enter textinput..."
369
282
  }
370
283
  ]
371
284
  },
372
285
  {
373
- "type": "form-field",
374
- "label": "Toggle",
375
- "children": [
376
- {
377
- "type": "switch",
378
- "event": "TOGGLE"
379
- }
380
- ]
381
- },
382
- {
383
- "type": "form-field",
384
- "label": "Choice",
385
- "children": [
386
- {
387
- "type": "radio",
388
- "name": "choice",
389
- "event": "CHANGE"
390
- }
391
- ]
392
- },
393
- {
394
- "type": "form-field",
395
- "label": "Range",
396
- "children": [
397
- {
398
- "type": "range-slider",
399
- "min": 0,
400
- "max": 100,
401
- "event": "CHANGE"
402
- }
403
- ]
404
- },
405
- {
406
- "type": "form-field",
407
- "label": "Quantity",
408
- "children": [
409
- {
410
- "type": "number-stepper",
411
- "min": 0,
412
- "step": 1,
413
- "event": "CHANGE"
414
- }
415
- ]
416
- },
417
- {
418
- "type": "typography",
419
- "variant": "caption",
420
- "color": "muted",
421
286
  "content": [
422
287
  "object/get",
423
288
  [
@@ -425,9 +290,13 @@
425
290
  "@entity"
426
291
  ],
427
292
  "value"
428
- ]
293
+ ],
294
+ "type": "typography",
295
+ "color": "muted",
296
+ "variant": "caption"
429
297
  }
430
- ]
298
+ ],
299
+ "direction": "vertical"
431
300
  }
432
301
  ]
433
302
  ]
@@ -446,35 +315,33 @@
446
315
  "render-ui",
447
316
  "main",
448
317
  {
449
- "type": "stack",
450
- "direction": "vertical",
451
318
  "gap": "lg",
452
319
  "children": [
453
320
  {
454
- "type": "stack",
455
- "direction": "horizontal",
456
- "gap": "sm",
457
- "align": "center",
458
321
  "children": [
459
322
  {
460
323
  "type": "icon",
461
- "name": "text-cursor-input",
462
- "size": "lg"
324
+ "size": "lg",
325
+ "name": "text-cursor-input"
463
326
  },
464
327
  {
465
- "type": "typography",
328
+ "variant": "h2",
466
329
  "content": "TextInput",
467
- "variant": "h2"
330
+ "type": "typography"
468
331
  }
469
- ]
332
+ ],
333
+ "direction": "horizontal",
334
+ "type": "stack",
335
+ "align": "center",
336
+ "gap": "sm"
470
337
  },
471
338
  {
472
339
  "type": "divider"
473
340
  },
474
341
  {
475
342
  "type": "form-field",
476
- "label": "TextInput",
477
343
  "hint": "Type to enter a value.",
344
+ "label": "TextInput",
478
345
  "children": [
479
346
  {
480
347
  "type": "input",
@@ -484,54 +351,7 @@
484
351
  ]
485
352
  },
486
353
  {
487
- "type": "form-field",
488
- "label": "Toggle",
489
- "children": [
490
- {
491
- "type": "switch",
492
- "event": "TOGGLE"
493
- }
494
- ]
495
- },
496
- {
497
- "type": "form-field",
498
- "label": "Choice",
499
- "children": [
500
- {
501
- "type": "radio",
502
- "name": "choice",
503
- "event": "CHANGE"
504
- }
505
- ]
506
- },
507
- {
508
- "type": "form-field",
509
- "label": "Range",
510
- "children": [
511
- {
512
- "type": "range-slider",
513
- "min": 0,
514
- "max": 100,
515
- "event": "CHANGE"
516
- }
517
- ]
518
- },
519
- {
520
- "type": "form-field",
521
- "label": "Quantity",
522
- "children": [
523
- {
524
- "type": "number-stepper",
525
- "min": 0,
526
- "step": 1,
527
- "event": "CHANGE"
528
- }
529
- ]
530
- },
531
- {
532
- "type": "typography",
533
354
  "variant": "caption",
534
- "color": "muted",
535
355
  "content": [
536
356
  "object/get",
537
357
  [
@@ -539,9 +359,13 @@
539
359
  "@entity"
540
360
  ],
541
361
  "value"
542
- ]
362
+ ],
363
+ "color": "muted",
364
+ "type": "typography"
543
365
  }
544
- ]
366
+ ],
367
+ "direction": "vertical",
368
+ "type": "stack"
545
369
  }
546
370
  ]
547
371
  ]
@@ -560,25 +384,25 @@
560
384
  "render-ui",
561
385
  "main",
562
386
  {
387
+ "gap": "lg",
563
388
  "type": "stack",
564
389
  "direction": "vertical",
565
- "gap": "lg",
566
390
  "children": [
567
391
  {
568
392
  "type": "stack",
393
+ "align": "center",
569
394
  "direction": "horizontal",
570
395
  "gap": "sm",
571
- "align": "center",
572
396
  "children": [
573
397
  {
574
- "type": "icon",
575
398
  "name": "text-cursor-input",
399
+ "type": "icon",
576
400
  "size": "lg"
577
401
  },
578
402
  {
579
403
  "type": "typography",
580
- "content": "TextInput",
581
- "variant": "h2"
404
+ "variant": "h2",
405
+ "content": "TextInput"
582
406
  }
583
407
  ]
584
408
  },
@@ -586,16 +410,16 @@
586
410
  "type": "divider"
587
411
  },
588
412
  {
589
- "type": "form-field",
590
- "label": "TextInput",
591
- "hint": "Validating...",
592
413
  "children": [
593
414
  {
594
415
  "type": "input",
595
416
  "placeholder": "Enter textinput...",
596
417
  "event": "CHANGE"
597
418
  }
598
- ]
419
+ ],
420
+ "type": "form-field",
421
+ "label": "TextInput",
422
+ "hint": "Validating..."
599
423
  },
600
424
  {
601
425
  "type": "alert",
@@ -608,22 +432,16 @@
608
432
  ]
609
433
  },
610
434
  {
611
- "from": "validating",
612
- "to": "idle",
613
- "event": "BLUR",
435
+ "from": "focused",
436
+ "to": "focused",
437
+ "event": "INIT",
614
438
  "effects": [
615
- [
616
- "set",
617
- "@entity.inputStatus",
618
- "idle"
619
- ],
620
439
  [
621
440
  "render-ui",
622
441
  "main",
623
442
  {
624
443
  "type": "stack",
625
444
  "direction": "vertical",
626
- "gap": "lg",
627
445
  "children": [
628
446
  {
629
447
  "type": "stack",
@@ -632,14 +450,14 @@
632
450
  "align": "center",
633
451
  "children": [
634
452
  {
635
- "type": "icon",
636
453
  "name": "text-cursor-input",
637
- "size": "lg"
454
+ "size": "lg",
455
+ "type": "icon"
638
456
  },
639
457
  {
458
+ "variant": "h2",
640
459
  "type": "typography",
641
- "content": "TextInput",
642
- "variant": "h2"
460
+ "content": "TextInput"
643
461
  }
644
462
  ]
645
463
  },
@@ -659,54 +477,8 @@
659
477
  ]
660
478
  },
661
479
  {
662
- "type": "form-field",
663
- "label": "Toggle",
664
- "children": [
665
- {
666
- "type": "switch",
667
- "event": "TOGGLE"
668
- }
669
- ]
670
- },
671
- {
672
- "type": "form-field",
673
- "label": "Choice",
674
- "children": [
675
- {
676
- "type": "radio",
677
- "name": "choice",
678
- "event": "CHANGE"
679
- }
680
- ]
681
- },
682
- {
683
- "type": "form-field",
684
- "label": "Range",
685
- "children": [
686
- {
687
- "type": "range-slider",
688
- "min": 0,
689
- "max": 100,
690
- "event": "CHANGE"
691
- }
692
- ]
693
- },
694
- {
695
- "type": "form-field",
696
- "label": "Quantity",
697
- "children": [
698
- {
699
- "type": "number-stepper",
700
- "min": 0,
701
- "step": 1,
702
- "event": "CHANGE"
703
- }
704
- ]
705
- },
706
- {
707
- "type": "typography",
708
480
  "variant": "caption",
709
- "color": "muted",
481
+ "type": "typography",
710
482
  "content": [
711
483
  "object/get",
712
484
  [
@@ -714,41 +486,45 @@
714
486
  "@entity"
715
487
  ],
716
488
  "value"
717
- ]
489
+ ],
490
+ "color": "muted"
718
491
  }
719
- ]
492
+ ],
493
+ "gap": "lg"
720
494
  }
721
495
  ]
722
496
  ]
723
497
  },
724
498
  {
725
- "from": "focused",
726
- "to": "focused",
727
- "event": "INIT",
499
+ "from": "validating",
500
+ "to": "idle",
501
+ "event": "BLUR",
728
502
  "effects": [
503
+ [
504
+ "set",
505
+ "@entity.inputStatus",
506
+ "idle"
507
+ ],
729
508
  [
730
509
  "render-ui",
731
510
  "main",
732
511
  {
733
- "type": "stack",
734
- "direction": "vertical",
735
- "gap": "lg",
736
512
  "children": [
737
513
  {
738
- "type": "stack",
739
- "direction": "horizontal",
740
514
  "gap": "sm",
515
+ "type": "stack",
741
516
  "align": "center",
517
+ "direction": "horizontal",
742
518
  "children": [
743
519
  {
744
- "type": "icon",
745
520
  "name": "text-cursor-input",
521
+ "type": "icon",
746
522
  "size": "lg"
747
523
  },
748
524
  {
749
- "type": "typography",
750
525
  "content": "TextInput",
751
- "variant": "h2"
526
+ "variant": "h2",
527
+ "type": "typography"
752
528
  }
753
529
  ]
754
530
  },
@@ -756,66 +532,19 @@
756
532
  "type": "divider"
757
533
  },
758
534
  {
759
- "type": "form-field",
760
- "label": "TextInput",
761
535
  "hint": "Type to enter a value.",
762
- "children": [
763
- {
764
- "type": "input",
765
- "placeholder": "Enter textinput...",
766
- "event": "CHANGE"
767
- }
768
- ]
769
- },
770
- {
771
536
  "type": "form-field",
772
- "label": "Toggle",
773
537
  "children": [
774
538
  {
775
- "type": "switch",
776
- "event": "TOGGLE"
777
- }
778
- ]
779
- },
780
- {
781
- "type": "form-field",
782
- "label": "Choice",
783
- "children": [
784
- {
785
- "type": "radio",
786
- "name": "choice",
787
- "event": "CHANGE"
788
- }
789
- ]
790
- },
791
- {
792
- "type": "form-field",
793
- "label": "Range",
794
- "children": [
795
- {
796
- "type": "range-slider",
797
- "min": 0,
798
- "max": 100,
799
- "event": "CHANGE"
800
- }
801
- ]
802
- },
803
- {
804
- "type": "form-field",
805
- "label": "Quantity",
806
- "children": [
807
- {
808
- "type": "number-stepper",
809
- "min": 0,
810
- "step": 1,
811
- "event": "CHANGE"
539
+ "event": "CHANGE",
540
+ "placeholder": "Enter textinput...",
541
+ "type": "input"
812
542
  }
813
- ]
543
+ ],
544
+ "label": "TextInput"
814
545
  },
815
546
  {
816
547
  "type": "typography",
817
- "variant": "caption",
818
- "color": "muted",
819
548
  "content": [
820
549
  "object/get",
821
550
  [
@@ -823,9 +552,14 @@
823
552
  "@entity"
824
553
  ],
825
554
  "value"
826
- ]
555
+ ],
556
+ "variant": "caption",
557
+ "color": "muted"
827
558
  }
828
- ]
559
+ ],
560
+ "type": "stack",
561
+ "direction": "vertical",
562
+ "gap": "lg"
829
563
  }
830
564
  ]
831
565
  ]
@@ -839,14 +573,8 @@
839
573
  "render-ui",
840
574
  "main",
841
575
  {
842
- "type": "stack",
843
- "direction": "vertical",
844
- "gap": "lg",
845
576
  "children": [
846
577
  {
847
- "type": "stack",
848
- "direction": "horizontal",
849
- "gap": "sm",
850
578
  "align": "center",
851
579
  "children": [
852
580
  {
@@ -859,35 +587,42 @@
859
587
  "content": "TextInput",
860
588
  "variant": "h2"
861
589
  }
862
- ]
590
+ ],
591
+ "direction": "horizontal",
592
+ "type": "stack",
593
+ "gap": "sm"
863
594
  },
864
595
  {
865
596
  "type": "divider"
866
597
  },
867
598
  {
868
- "type": "form-field",
869
- "label": "TextInput",
870
599
  "hint": "Validating...",
871
600
  "children": [
872
601
  {
873
- "type": "input",
874
602
  "placeholder": "Enter textinput...",
875
- "event": "CHANGE"
603
+ "event": "CHANGE",
604
+ "type": "input"
876
605
  }
877
- ]
606
+ ],
607
+ "label": "TextInput",
608
+ "type": "form-field"
878
609
  },
879
610
  {
880
611
  "type": "alert",
881
612
  "variant": "info",
882
613
  "message": "Validating input..."
883
614
  }
884
- ]
615
+ ],
616
+ "direction": "vertical",
617
+ "type": "stack",
618
+ "gap": "lg"
885
619
  }
886
620
  ]
887
621
  ]
888
622
  }
889
623
  ]
890
- }
624
+ },
625
+ "scope": "instance"
891
626
  }
892
627
  ],
893
628
  "pages": [
@@ -903,4 +638,4 @@
903
638
  ]
904
639
  }
905
640
  ]
906
- }
641
+ }