@almadar/std 7.0.0 → 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 +501 -224
  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 +232 -135
  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 +26 -373
  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 +309 -325
  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 +29 -331
  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 +170 -35
  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 +164 -29
  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 +263 -137
  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 +326 -462
  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 +132 -137
  94. package/behaviors/registry/molecules/std-drawer-master-list.orb +10 -5
  95. package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
  96. package/behaviors/registry/molecules/std-filtered-list.orb +12 -7
  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 +58 -8
  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 +501 -224
  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 +232 -135
  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 +26 -373
  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 +309 -325
  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 +29 -331
  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 +170 -35
  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 +164 -29
  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 +263 -137
  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 +326 -462
  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 +132 -137
  243. package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +10 -5
  244. package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
  245. package/dist/behaviors/registry/molecules/std-filtered-list.orb +12 -7
  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 +58 -8
  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 +1 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "std-cart",
3
3
  "version": "1.0.0",
4
- "description": "Shopping cart molecule. Composes atoms: - Cart-specific browse trait (empty/hasItems/checkout states) - stdModal for the add-item form (responds to ADD_ITEM)",
4
+ "description": "std-cart as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "CartItemOrbital",
@@ -17,8 +17,8 @@
17
17
  ],
18
18
  "entity": {
19
19
  "name": "CartItem",
20
- "persistence": "persistent",
21
20
  "collection": "cartitems",
21
+ "persistence": "persistent",
22
22
  "fields": [
23
23
  {
24
24
  "name": "id",
@@ -56,16 +56,81 @@
56
56
  "traits": [
57
57
  {
58
58
  "name": "CartItemCartBrowse",
59
- "linkedEntity": "CartItem",
60
59
  "category": "interaction",
60
+ "linkedEntity": "CartItem",
61
+ "emits": [
62
+ {
63
+ "event": "CartItemLoaded",
64
+ "description": "Fired when the cart collection finishes loading",
65
+ "scope": "internal",
66
+ "payload": [
67
+ {
68
+ "name": "id",
69
+ "type": "string"
70
+ },
71
+ {
72
+ "name": "name",
73
+ "type": "string"
74
+ },
75
+ {
76
+ "name": "description",
77
+ "type": "string"
78
+ },
79
+ {
80
+ "name": "status",
81
+ "type": "string"
82
+ },
83
+ {
84
+ "name": "createdAt",
85
+ "type": "string"
86
+ },
87
+ {
88
+ "name": "pendingId",
89
+ "type": "string"
90
+ }
91
+ ]
92
+ },
93
+ {
94
+ "event": "CartItemLoadFailed",
95
+ "description": "Fired when the cart collection fails to load",
96
+ "scope": "internal",
97
+ "payload": [
98
+ {
99
+ "name": "message",
100
+ "type": "string"
101
+ }
102
+ ]
103
+ }
104
+ ],
105
+ "listens": [
106
+ {
107
+ "event": "ITEM_CREATED",
108
+ "triggers": "INIT",
109
+ "source": {
110
+ "kind": "trait",
111
+ "trait": "CartItemPersistor"
112
+ }
113
+ },
114
+ {
115
+ "event": "ITEM_DELETED",
116
+ "triggers": "INIT",
117
+ "source": {
118
+ "kind": "trait",
119
+ "trait": "CartItemPersistor"
120
+ }
121
+ }
122
+ ],
61
123
  "stateMachine": {
62
124
  "states": [
63
125
  {
64
- "name": "browsing",
126
+ "name": "loading",
65
127
  "isInitial": true
66
128
  },
67
129
  {
68
- "name": "checkout"
130
+ "name": "browsing"
131
+ },
132
+ {
133
+ "name": "error"
69
134
  }
70
135
  ],
71
136
  "events": [
@@ -74,45 +139,24 @@
74
139
  "name": "Initialize"
75
140
  },
76
141
  {
77
- "key": "ADD_ITEM",
78
- "name": "Add Item"
142
+ "key": "CartItemLoaded",
143
+ "name": "CartItem loaded"
79
144
  },
80
145
  {
81
- "key": "REQUEST_REMOVE",
82
- "name": "Request Remove",
146
+ "key": "CartItemLoadFailed",
147
+ "name": "CartItem load failed",
83
148
  "payload": [
84
149
  {
85
- "name": "id",
86
- "type": "string",
87
- "required": true
150
+ "name": "message",
151
+ "type": "string"
88
152
  }
89
153
  ]
90
- },
91
- {
92
- "key": "PROCEED_CHECKOUT",
93
- "name": "Proceed to Checkout"
94
- },
95
- {
96
- "key": "BACK_TO_CART",
97
- "name": "Back to Cart"
98
- },
99
- {
100
- "key": "CONFIRM_ORDER",
101
- "name": "Confirm Order"
102
- },
103
- {
104
- "key": "CART_ITEM_LOADED",
105
- "name": "CartItem loaded"
106
- },
107
- {
108
- "key": "CART_ITEM_LOAD_FAILED",
109
- "name": "CartItem load failed"
110
154
  }
111
155
  ],
112
156
  "transitions": [
113
157
  {
114
- "from": "browsing",
115
- "to": "browsing",
158
+ "from": "loading",
159
+ "to": "loading",
116
160
  "event": "INIT",
117
161
  "effects": [
118
162
  [
@@ -120,8 +164,8 @@
120
164
  "CartItem",
121
165
  {
122
166
  "emit": {
123
- "success": "CART_ITEM_LOADED",
124
- "failure": "CART_ITEM_LOAD_FAILED"
167
+ "failure": "CartItemLoadFailed",
168
+ "success": "CartItemLoaded"
125
169
  }
126
170
  }
127
171
  ],
@@ -129,8 +173,38 @@
129
173
  "render-ui",
130
174
  "main",
131
175
  {
176
+ "direction": "vertical",
177
+ "className": "py-12",
178
+ "gap": "md",
179
+ "children": [
180
+ {
181
+ "type": "spinner",
182
+ "size": "lg"
183
+ },
184
+ {
185
+ "variant": "caption",
186
+ "color": "muted",
187
+ "content": "Loading cart…",
188
+ "type": "typography"
189
+ }
190
+ ],
132
191
  "type": "stack",
192
+ "align": "center"
193
+ }
194
+ ]
195
+ ]
196
+ },
197
+ {
198
+ "from": "loading",
199
+ "to": "browsing",
200
+ "event": "CartItemLoaded",
201
+ "effects": [
202
+ [
203
+ "render-ui",
204
+ "main",
205
+ {
133
206
  "direction": "vertical",
207
+ "type": "stack",
134
208
  "gap": "lg",
135
209
  "children": [
136
210
  {
@@ -140,26 +214,26 @@
140
214
  "justify": "space-between",
141
215
  "children": [
142
216
  {
143
- "type": "stack",
144
- "direction": "horizontal",
145
217
  "gap": "md",
146
218
  "children": [
147
219
  {
148
220
  "type": "icon",
149
- "name": "shopping-cart",
150
- "size": "lg"
221
+ "size": "lg",
222
+ "name": "shopping-cart"
151
223
  },
152
224
  {
153
- "type": "typography",
225
+ "variant": "h2",
154
226
  "content": "Shopping Cart",
155
- "variant": "h2"
227
+ "type": "typography"
156
228
  }
157
- ]
229
+ ],
230
+ "direction": "horizontal",
231
+ "type": "stack"
158
232
  },
159
233
  {
160
- "type": "button",
161
234
  "label": "Add Item",
162
235
  "event": "ADD_ITEM",
236
+ "type": "button",
163
237
  "variant": "primary",
164
238
  "icon": "plus"
165
239
  }
@@ -169,81 +243,37 @@
169
243
  "type": "divider"
170
244
  },
171
245
  {
172
- "type": "simple-grid",
173
- "columns": 3,
174
- "children": [
175
- {
176
- "type": "stat-display",
177
- "label": "Items",
178
- "value": [
179
- "array/len",
180
- "@entity"
181
- ],
182
- "icon": "package"
183
- },
184
- {
185
- "type": "stat-display",
186
- "label": "Subtotal",
187
- "value": [
188
- "array/len",
189
- "@entity"
190
- ],
191
- "icon": "dollar-sign"
192
- },
193
- {
194
- "type": "stat-display",
195
- "label": "Total",
196
- "value": [
197
- "array/len",
198
- "@entity"
199
- ],
200
- "icon": "receipt"
201
- }
202
- ]
203
- },
204
- {
205
- "type": "divider"
206
- },
207
- {
208
- "type": "data-grid",
209
- "entity": "CartItem",
210
- "emptyIcon": "inbox",
211
- "emptyTitle": "Your cart is empty",
212
246
  "emptyDescription": "Add items to get started.",
213
247
  "itemActions": [
214
248
  {
215
249
  "label": "Remove",
216
- "event": "REQUEST_REMOVE",
217
250
  "variant": "danger",
218
- "size": "sm"
251
+ "size": "sm",
252
+ "event": "REQUEST_REMOVE"
219
253
  }
220
254
  ],
255
+ "type": "data-grid",
256
+ "emptyTitle": "Your cart is empty",
257
+ "entity": "CartItem",
221
258
  "columns": [
222
259
  {
223
260
  "name": "name",
261
+ "icon": "shopping-cart",
224
262
  "label": "Name",
225
- "variant": "h4",
226
- "icon": "shopping-cart"
263
+ "variant": "h4"
227
264
  },
228
265
  {
229
- "name": "description",
230
266
  "label": "Description",
231
- "variant": "caption",
232
- "format": "currency"
267
+ "name": "description",
268
+ "variant": "caption"
233
269
  },
234
270
  {
235
- "name": "status",
236
271
  "label": "Status",
272
+ "name": "status",
237
273
  "variant": "badge"
238
274
  }
239
- ]
240
- },
241
- {
242
- "type": "button",
243
- "label": "Proceed to Checkout",
244
- "event": "PROCEED_CHECKOUT",
245
- "variant": "primary",
246
- "icon": "arrow-right"
275
+ ],
276
+ "emptyIcon": "inbox"
247
277
  }
248
278
  ]
249
279
  }
@@ -251,138 +281,86 @@
251
281
  ]
252
282
  },
253
283
  {
254
- "from": "browsing",
255
- "to": "checkout",
256
- "event": "PROCEED_CHECKOUT",
284
+ "from": "loading",
285
+ "to": "error",
286
+ "event": "CartItemLoadFailed",
257
287
  "effects": [
258
- [
259
- "fetch",
260
- "CartItem",
261
- {
262
- "emit": {
263
- "success": "CART_ITEM_LOADED",
264
- "failure": "CART_ITEM_LOAD_FAILED"
265
- }
266
- }
267
- ],
268
288
  [
269
289
  "render-ui",
270
290
  "main",
271
291
  {
272
- "type": "stack",
273
- "direction": "vertical",
274
- "gap": "lg",
292
+ "align": "center",
293
+ "className": "py-12",
294
+ "gap": "md",
275
295
  "children": [
276
296
  {
277
- "type": "stack",
278
- "direction": "horizontal",
279
- "gap": "sm",
280
- "children": [
281
- {
282
- "type": "icon",
283
- "name": "clipboard",
284
- "size": "lg"
285
- },
286
- {
287
- "type": "typography",
288
- "content": "Checkout",
289
- "variant": "h2"
290
- }
291
- ]
297
+ "size": "xl",
298
+ "name": "alert-triangle",
299
+ "color": "destructive",
300
+ "type": "icon"
292
301
  },
293
302
  {
294
- "type": "divider"
303
+ "content": "Failed to load cart",
304
+ "type": "typography",
305
+ "variant": "h3"
295
306
  },
296
307
  {
297
- "type": "data-grid",
298
- "entity": "CartItem",
299
- "emptyIcon": "inbox",
300
- "emptyTitle": "Your cart is empty",
301
- "emptyDescription": "Add items to get started.",
302
- "itemActions": [
303
- {
304
- "label": "Remove",
305
- "event": "REQUEST_REMOVE",
306
- "variant": "danger",
307
- "size": "sm"
308
- }
309
- ],
310
- "columns": [
311
- {
312
- "name": "name",
313
- "label": "Name",
314
- "variant": "h4",
315
- "icon": "shopping-cart"
316
- },
317
- {
318
- "name": "description",
319
- "label": "Description",
320
- "variant": "caption",
321
- "format": "currency"
322
- },
323
- {
324
- "name": "status",
325
- "label": "Status",
326
- "variant": "badge"
327
- }
328
- ]
308
+ "color": "muted",
309
+ "content": "@payload.message",
310
+ "type": "typography",
311
+ "variant": "body"
329
312
  },
330
313
  {
331
- "type": "stack",
332
- "direction": "horizontal",
333
- "gap": "sm",
334
- "justify": "end",
335
- "children": [
336
- {
337
- "type": "button",
338
- "label": "Back to Cart",
339
- "event": "BACK_TO_CART",
340
- "variant": "ghost",
341
- "icon": "arrow-left"
342
- },
343
- {
344
- "type": "button",
345
- "label": "Confirm Order",
346
- "event": "CONFIRM_ORDER",
347
- "variant": "primary",
348
- "icon": "check"
349
- }
350
- ]
314
+ "variant": "primary",
315
+ "label": "Retry",
316
+ "icon": "rotate-ccw",
317
+ "type": "button",
318
+ "event": "INIT"
351
319
  }
352
- ]
320
+ ],
321
+ "type": "stack",
322
+ "direction": "vertical"
353
323
  }
354
324
  ]
355
325
  ]
356
326
  },
357
327
  {
358
- "from": "checkout",
359
- "to": "browsing",
360
- "event": "BACK_TO_CART",
328
+ "from": "browsing",
329
+ "to": "loading",
330
+ "event": "INIT",
361
331
  "effects": [
362
332
  [
363
333
  "fetch",
364
334
  "CartItem",
365
335
  {
366
336
  "emit": {
367
- "success": "CART_ITEM_LOADED",
368
- "failure": "CART_ITEM_LOAD_FAILED"
337
+ "success": "CartItemLoaded",
338
+ "failure": "CartItemLoadFailed"
369
339
  }
370
340
  }
341
+ ],
342
+ [
343
+ "render-ui",
344
+ "main",
345
+ {
346
+ "type": "spinner",
347
+ "size": "lg"
348
+ }
371
349
  ]
372
350
  ]
373
351
  },
374
352
  {
375
- "from": "checkout",
376
- "to": "browsing",
377
- "event": "CONFIRM_ORDER",
353
+ "from": "error",
354
+ "to": "loading",
355
+ "event": "INIT",
378
356
  "effects": [
379
357
  [
380
358
  "fetch",
381
359
  "CartItem",
382
360
  {
383
361
  "emit": {
384
- "success": "CART_ITEM_LOADED",
385
- "failure": "CART_ITEM_LOAD_FAILED"
362
+ "failure": "CartItemLoadFailed",
363
+ "success": "CartItemLoaded"
386
364
  }
387
365
  }
388
366
  ],
@@ -390,302 +368,185 @@
390
368
  "render-ui",
391
369
  "main",
392
370
  {
393
- "type": "stack",
394
- "direction": "vertical",
395
- "gap": "lg",
396
- "align": "center",
397
- "children": [
398
- {
399
- "type": "icon",
400
- "name": "check-circle",
401
- "size": "lg"
402
- },
403
- {
404
- "type": "typography",
405
- "content": "Order Confirmed",
406
- "variant": "h2"
407
- },
408
- {
409
- "type": "typography",
410
- "content": "Your order has been placed successfully.",
411
- "variant": "body"
412
- },
413
- {
414
- "type": "button",
415
- "label": "Continue Shopping",
416
- "event": "INIT",
417
- "variant": "primary"
418
- }
419
- ]
371
+ "type": "spinner",
372
+ "size": "lg"
420
373
  }
421
374
  ]
422
375
  ]
423
376
  }
424
377
  ]
425
378
  },
426
- "scope": "collection",
379
+ "scope": "collection"
380
+ },
381
+ {
382
+ "ref": "Modal.traits.ModalRecordModal",
383
+ "name": "CartItemAddItem",
384
+ "linkedEntity": "CartItem",
385
+ "config": {
386
+ "mode": "create",
387
+ "icon": "plus-circle",
388
+ "title": "Add Item",
389
+ "openButtonLabel": "Add Item",
390
+ "fields": [
391
+ "name",
392
+ "description",
393
+ "status"
394
+ ]
395
+ },
396
+ "events": {
397
+ "OPEN": "ADD_ITEM"
398
+ }
399
+ },
400
+ {
401
+ "ref": "Confirmation.traits.ConfirmActionConfirmation",
402
+ "name": "CartItemRemoveConfirm",
403
+ "linkedEntity": "CartItem",
404
+ "config": {
405
+ "icon": "alert-triangle",
406
+ "title": "Remove Item",
407
+ "confirmLabel": "Remove",
408
+ "alertMessage": "Are you sure you want to remove this item from your cart?"
409
+ },
410
+ "events": {
411
+ "CONFIRM": "CONFIRM_REMOVE",
412
+ "REQUEST": "REQUEST_REMOVE"
413
+ }
414
+ },
415
+ {
416
+ "name": "CartItemPersistor",
417
+ "category": "lifecycle",
418
+ "linkedEntity": "CartItem",
427
419
  "emits": [
428
420
  {
429
- "event": "CART_ITEM_LOADED",
430
- "scope": "internal",
431
- "description": "Fired when CartItem finishes loading",
421
+ "event": "ITEM_CREATED",
422
+ "scope": "external",
432
423
  "payload": [
433
424
  {
434
425
  "name": "id",
435
426
  "type": "string"
436
- },
437
- {
438
- "name": "name",
439
- "type": "string"
440
- },
441
- {
442
- "name": "description",
443
- "type": "string"
444
- },
445
- {
446
- "name": "status",
447
- "type": "string"
448
- },
449
- {
450
- "name": "createdAt",
451
- "type": "string"
452
- },
453
- {
454
- "name": "pendingId",
455
- "type": "string"
456
427
  }
457
428
  ]
458
429
  },
459
430
  {
460
- "event": "CART_ITEM_LOAD_FAILED",
461
- "scope": "internal",
462
- "description": "Fired when CartItem fails to load",
431
+ "event": "ITEM_DELETED",
432
+ "scope": "external",
463
433
  "payload": [
464
434
  {
465
- "name": "message",
435
+ "name": "id",
466
436
  "type": "string"
467
437
  }
468
438
  ]
469
439
  }
470
- ]
471
- },
472
- {
473
- "ref": "Modal.traits.ModalRecordModal",
474
- "name": "CartItemAddItem",
475
- "linkedEntity": "CartItem",
476
- "events": {
477
- "OPEN": "ADD_ITEM"
478
- },
479
- "effects": {
480
- "INIT": [
481
- [
482
- "fetch",
483
- "CartItem"
484
- ]
440
+ ],
441
+ "listens": [
442
+ {
443
+ "event": "SAVE",
444
+ "triggers": "DO_CREATE",
445
+ "source": {
446
+ "kind": "trait",
447
+ "trait": "CartItemAddItem"
448
+ }
449
+ },
450
+ {
451
+ "event": "CONFIRM_REMOVE",
452
+ "triggers": "DO_DELETE",
453
+ "source": {
454
+ "kind": "trait",
455
+ "trait": "CartItemRemoveConfirm"
456
+ }
457
+ }
458
+ ],
459
+ "stateMachine": {
460
+ "states": [
461
+ {
462
+ "name": "idle",
463
+ "isInitial": true
464
+ }
485
465
  ],
486
- "ADD_ITEM": [
487
- [
488
- "fetch",
489
- "CartItem"
490
- ],
491
- [
492
- "render-ui",
493
- "modal",
494
- {
495
- "type": "stack",
496
- "direction": "vertical",
497
- "gap": "md",
498
- "children": [
499
- {
500
- "type": "stack",
501
- "direction": "horizontal",
502
- "gap": "sm",
503
- "children": [
504
- {
505
- "type": "icon",
506
- "name": "plus-circle",
507
- "size": "md"
508
- },
509
- {
510
- "type": "typography",
511
- "content": "Add Item",
512
- "variant": "h3"
513
- }
514
- ]
515
- },
516
- {
517
- "type": "divider"
518
- },
466
+ "events": [
467
+ {
468
+ "key": "INIT",
469
+ "name": "Initialize"
470
+ },
471
+ {
472
+ "key": "DO_CREATE",
473
+ "name": "Do Create",
474
+ "payload": [
475
+ {
476
+ "name": "data",
477
+ "type": "object",
478
+ "required": true
479
+ }
480
+ ]
481
+ },
482
+ {
483
+ "key": "DO_DELETE",
484
+ "name": "Do Delete",
485
+ "payload": [
486
+ {
487
+ "name": "id",
488
+ "type": "string"
489
+ }
490
+ ]
491
+ },
492
+ {
493
+ "key": "ITEM_CREATED",
494
+ "name": "Item Created"
495
+ },
496
+ {
497
+ "key": "ITEM_DELETED",
498
+ "name": "Item Deleted"
499
+ }
500
+ ],
501
+ "transitions": [
502
+ {
503
+ "from": "idle",
504
+ "to": "idle",
505
+ "event": "INIT"
506
+ },
507
+ {
508
+ "from": "idle",
509
+ "to": "idle",
510
+ "event": "DO_CREATE",
511
+ "effects": [
512
+ [
513
+ "persist",
514
+ "create",
515
+ "CartItem",
516
+ "@payload.data"
517
+ ],
518
+ [
519
+ "emit",
520
+ "ITEM_CREATED",
519
521
  {
520
- "type": "form-section",
521
- "entity": "CartItem",
522
- "mode": "create",
523
- "submitEvent": "SAVE",
524
- "cancelEvent": "CLOSE",
525
- "fields": [
526
- "name",
527
- "description",
528
- "status"
529
- ]
522
+ "id": "@payload.data.id"
530
523
  }
531
524
  ]
532
- }
533
- ]
534
- ],
535
- "CLOSE": [
536
- [
537
- "render-ui",
538
- "modal",
539
- null
540
- ],
541
- [
542
- "notify",
543
- "Cancelled",
544
- "info"
545
- ]
546
- ],
547
- "SAVE": [
548
- [
549
- "persist",
550
- "create",
551
- "CartItem",
552
- "@payload.data"
553
- ],
554
- [
555
- "render-ui",
556
- "modal",
557
- null
558
- ]
559
- ]
560
- }
561
- },
562
- {
563
- "ref": "Confirmation.traits.ConfirmActionConfirmation",
564
- "name": "CartItemRemoveConfirm",
565
- "linkedEntity": "CartItem",
566
- "events": {
567
- "REQUEST": "REQUEST_REMOVE",
568
- "CONFIRM": "CONFIRM_REMOVE"
569
- },
570
- "effects": {
571
- "INIT": [
572
- [
573
- "fetch",
574
- "CartItem"
575
- ]
576
- ],
577
- "REQUEST_REMOVE": [
578
- [
579
- "set",
580
- "@entity.pendingId",
581
- "@payload.id"
582
- ],
583
- [
584
- "fetch",
585
- "CartItem",
586
- {
587
- "id": "@payload.id"
588
- }
589
- ],
590
- [
591
- "render-ui",
592
- "modal",
593
- {
594
- "type": "stack",
595
- "direction": "vertical",
596
- "gap": "md",
597
- "children": [
598
- {
599
- "type": "stack",
600
- "direction": "horizontal",
601
- "gap": "sm",
602
- "align": "center",
603
- "children": [
604
- {
605
- "type": "icon",
606
- "name": "alert-triangle",
607
- "size": "md"
608
- },
609
- {
610
- "type": "typography",
611
- "content": "Remove Item",
612
- "variant": "h3"
613
- }
614
- ]
615
- },
616
- {
617
- "type": "divider"
618
- },
619
- {
620
- "type": "alert",
621
- "variant": "danger",
622
- "message": "Are you sure you want to remove this item from your cart?"
623
- },
525
+ ]
526
+ },
527
+ {
528
+ "from": "idle",
529
+ "to": "idle",
530
+ "event": "DO_DELETE",
531
+ "effects": [
532
+ [
533
+ "persist",
534
+ "delete",
535
+ "CartItem",
536
+ "@entity.pendingId"
537
+ ],
538
+ [
539
+ "emit",
540
+ "ITEM_DELETED",
624
541
  {
625
- "type": "stack",
626
- "direction": "horizontal",
627
- "gap": "sm",
628
- "justify": "end",
629
- "children": [
630
- {
631
- "type": "button",
632
- "label": "Cancel",
633
- "event": "CANCEL",
634
- "variant": "ghost"
635
- },
636
- {
637
- "type": "button",
638
- "label": "Remove",
639
- "event": "CONFIRM_REMOVE",
640
- "variant": "danger",
641
- "icon": "check"
642
- }
643
- ]
542
+ "id": "@entity.pendingId"
644
543
  }
645
544
  ]
646
- }
647
- ]
648
- ],
649
- "CONFIRM_REMOVE": [
650
- [
651
- "persist",
652
- "delete",
653
- "CartItem",
654
- "@entity.pendingId"
655
- ],
656
- [
657
- "render-ui",
658
- "modal",
659
- null
660
- ],
661
- [
662
- "fetch",
663
- "CartItem"
664
- ]
665
- ],
666
- "CANCEL": [
667
- [
668
- "render-ui",
669
- "modal",
670
- null
671
- ],
672
- [
673
- "fetch",
674
- "CartItem"
675
- ]
676
- ],
677
- "CLOSE": [
678
- [
679
- "render-ui",
680
- "modal",
681
- null
682
- ],
683
- [
684
- "fetch",
685
- "CartItem"
686
- ]
545
+ ]
546
+ }
687
547
  ]
688
- }
548
+ },
549
+ "scope": "instance"
689
550
  }
690
551
  ],
691
552
  "pages": [
@@ -701,10 +562,13 @@
701
562
  },
702
563
  {
703
564
  "ref": "CartItemRemoveConfirm"
565
+ },
566
+ {
567
+ "ref": "CartItemPersistor"
704
568
  }
705
569
  ]
706
570
  }
707
571
  ]
708
572
  }
709
573
  ]
710
- }
574
+ }