@almadar/std 6.5.2 → 7.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (307) hide show
  1. package/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
  2. package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
  3. package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
  4. package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
  5. package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
  6. package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
  7. package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
  8. package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
  9. package/behaviors/registry/atoms/std-agent-search.orb +217 -61
  10. package/behaviors/registry/atoms/std-agent-session.orb +406 -159
  11. package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
  12. package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
  13. package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
  14. package/behaviors/registry/atoms/std-async.orb +147 -86
  15. package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
  16. package/behaviors/registry/atoms/std-browse.orb +260 -126
  17. package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
  18. package/behaviors/registry/atoms/std-calendar.orb +280 -215
  19. package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
  20. package/behaviors/registry/atoms/std-collision.orb +136 -135
  21. package/behaviors/registry/atoms/std-combat-log.orb +108 -90
  22. package/behaviors/registry/atoms/std-combat.orb +171 -98
  23. package/behaviors/registry/atoms/std-confirmation.orb +28 -300
  24. package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
  25. package/behaviors/registry/atoms/std-display.orb +491 -587
  26. package/behaviors/registry/atoms/std-drawer.orb +194 -121
  27. package/behaviors/registry/atoms/std-filter.orb +311 -326
  28. package/behaviors/registry/atoms/std-flip-card.orb +223 -177
  29. package/behaviors/registry/atoms/std-gallery.orb +130 -151
  30. package/behaviors/registry/atoms/std-game-audio.orb +133 -72
  31. package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
  32. package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
  33. package/behaviors/registry/atoms/std-game-hud.orb +87 -20
  34. package/behaviors/registry/atoms/std-game-menu.orb +32 -32
  35. package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
  36. package/behaviors/registry/atoms/std-gameflow.orb +147 -80
  37. package/behaviors/registry/atoms/std-input.orb +128 -393
  38. package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
  39. package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
  40. package/behaviors/registry/atoms/std-loading.orb +127 -126
  41. package/behaviors/registry/atoms/std-modal.orb +30 -267
  42. package/behaviors/registry/atoms/std-movement.orb +391 -292
  43. package/behaviors/registry/atoms/std-notification.orb +133 -75
  44. package/behaviors/registry/atoms/std-overworld.orb +194 -121
  45. package/behaviors/registry/atoms/std-pagination.orb +120 -53
  46. package/behaviors/registry/atoms/std-physics2d.orb +94 -93
  47. package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
  48. package/behaviors/registry/atoms/std-push.orb +172 -36
  49. package/behaviors/registry/atoms/std-quest.orb +552 -449
  50. package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
  51. package/behaviors/registry/atoms/std-rating.orb +123 -65
  52. package/behaviors/registry/atoms/std-related.orb +202 -26
  53. package/behaviors/registry/atoms/std-score-board.orb +109 -28
  54. package/behaviors/registry/atoms/std-score.orb +210 -146
  55. package/behaviors/registry/atoms/std-search.orb +265 -138
  56. package/behaviors/registry/atoms/std-selection.orb +311 -220
  57. package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
  58. package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
  59. package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
  60. package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
  61. package/behaviors/registry/atoms/std-service-email.orb +195 -107
  62. package/behaviors/registry/atoms/std-service-github.orb +216 -122
  63. package/behaviors/registry/atoms/std-service-llm.orb +204 -122
  64. package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
  65. package/behaviors/registry/atoms/std-service-redis.orb +177 -92
  66. package/behaviors/registry/atoms/std-service-storage.orb +211 -122
  67. package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
  68. package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
  69. package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
  70. package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
  71. package/behaviors/registry/atoms/std-sort.orb +284 -207
  72. package/behaviors/registry/atoms/std-sprite.orb +150 -74
  73. package/behaviors/registry/atoms/std-tabs.orb +129 -62
  74. package/behaviors/registry/atoms/std-text-effects.orb +251 -190
  75. package/behaviors/registry/atoms/std-theme.orb +193 -135
  76. package/behaviors/registry/atoms/std-timer.orb +320 -344
  77. package/behaviors/registry/atoms/std-undo.orb +278 -199
  78. package/behaviors/registry/atoms/std-upload.orb +112 -111
  79. package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
  80. package/behaviors/registry/atoms/std-wizard.orb +445 -336
  81. package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
  82. package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
  83. package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
  84. package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
  85. package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
  86. package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
  87. package/behaviors/registry/molecules/std-builder-game.orb +86 -28
  88. package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
  89. package/behaviors/registry/molecules/std-cart.orb +347 -406
  90. package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
  91. package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
  92. package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
  93. package/behaviors/registry/molecules/std-detail.orb +133 -138
  94. package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
  95. package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
  96. package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
  97. package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
  98. package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
  99. package/behaviors/registry/molecules/std-geospatial.orb +175 -122
  100. package/behaviors/registry/molecules/std-inventory.orb +216 -170
  101. package/behaviors/registry/molecules/std-list.orb +280 -205
  102. package/behaviors/registry/molecules/std-messaging.orb +146 -99
  103. package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
  104. package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
  105. package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
  106. package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
  107. package/behaviors/registry/molecules/std-quiz.orb +322 -263
  108. package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
  109. package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
  110. package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
  111. package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
  112. package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
  113. package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
  114. package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
  115. package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
  116. package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
  117. package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
  118. package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
  119. package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
  120. package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
  121. package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
  122. package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
  123. package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
  124. package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
  125. package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
  126. package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
  127. package/behaviors/registry/organisms/std-cms.orb +1549 -566
  128. package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
  129. package/behaviors/registry/organisms/std-crm.orb +1997 -1014
  130. package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
  131. package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
  132. package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
  133. package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
  134. package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
  135. package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
  136. package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
  137. package/behaviors/registry/organisms/std-lms.orb +1629 -1046
  138. package/behaviors/registry/organisms/std-logic-training.orb +321 -134
  139. package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
  140. package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
  141. package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
  142. package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
  143. package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
  144. package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
  145. package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
  146. package/behaviors/registry/organisms/std-social-feed.orb +612 -252
  147. package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
  148. package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
  149. package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
  150. package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
  151. package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
  152. package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
  153. package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
  154. package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
  155. package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
  156. package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
  157. package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
  158. package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
  159. package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
  160. package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
  161. package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
  162. package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
  163. package/dist/behaviors/registry/atoms/std-async.orb +147 -86
  164. package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
  165. package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
  166. package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
  167. package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
  168. package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
  169. package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
  170. package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
  171. package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
  172. package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
  173. package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
  174. package/dist/behaviors/registry/atoms/std-display.orb +491 -587
  175. package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
  176. package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
  177. package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
  178. package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
  179. package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
  180. package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
  181. package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
  182. package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
  183. package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
  184. package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
  185. package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
  186. package/dist/behaviors/registry/atoms/std-input.orb +128 -393
  187. package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
  188. package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
  189. package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
  190. package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
  191. package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
  192. package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
  193. package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
  194. package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
  195. package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
  196. package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
  197. package/dist/behaviors/registry/atoms/std-push.orb +172 -36
  198. package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
  199. package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
  200. package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
  201. package/dist/behaviors/registry/atoms/std-related.orb +202 -26
  202. package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
  203. package/dist/behaviors/registry/atoms/std-score.orb +210 -146
  204. package/dist/behaviors/registry/atoms/std-search.orb +265 -138
  205. package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
  206. package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
  207. package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
  208. package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
  209. package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
  210. package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
  211. package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
  212. package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
  213. package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
  214. package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
  215. package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
  216. package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
  217. package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
  218. package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
  219. package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
  220. package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
  221. package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
  222. package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
  223. package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
  224. package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
  225. package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
  226. package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
  227. package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
  228. package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
  229. package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
  230. package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
  231. package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
  232. package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
  233. package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
  234. package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
  235. package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
  236. package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
  237. package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
  238. package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
  239. package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
  240. package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
  241. package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
  242. package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
  243. package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
  244. package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
  245. package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
  246. package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
  247. package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
  248. package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
  249. package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
  250. package/dist/behaviors/registry/molecules/std-list.orb +280 -205
  251. package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
  252. package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
  253. package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
  254. package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
  255. package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
  256. package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
  257. package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
  258. package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
  259. package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
  260. package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
  261. package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
  262. package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
  263. package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
  264. package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
  265. package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
  266. package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
  267. package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
  268. package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
  269. package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
  270. package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
  271. package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
  272. package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
  273. package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
  274. package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
  275. package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
  276. package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
  277. package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
  278. package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
  279. package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
  280. package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
  281. package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
  282. package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
  283. package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
  284. package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
  285. package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
  286. package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
  287. package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
  288. package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
  289. package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
  290. package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
  291. package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
  292. package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
  293. package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
  294. package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
  295. package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
  296. package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
  297. package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
  298. package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
  299. package/dist/index.js +16 -4
  300. package/dist/index.js.map +1 -1
  301. package/dist/modules/core.js +16 -4
  302. package/dist/modules/core.js.map +1 -1
  303. package/dist/modules/index.js +16 -4
  304. package/dist/modules/index.js.map +1 -1
  305. package/dist/registry.js +16 -4
  306. package/dist/registry.js.map +1 -1
  307. package/package.json +2 -2
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "std-calendar",
3
3
  "version": "1.0.0",
4
- "description": "Calendar browsing atom with month/day/slot views. Absorbs: calendar-grid, day-cell, time-slot-cell, date-range-selector.",
4
+ "description": "std-calendar as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "CalendarEventOrbital",
@@ -48,47 +48,67 @@
48
48
  {
49
49
  "name": "duration",
50
50
  "type": "number",
51
- "default": 60
52
- }
53
- ],
54
- "instances": [
55
- {
56
- "id": "evt-1",
57
- "name": "Team Standup",
58
- "description": "Daily sync",
59
- "status": "active",
60
- "createdAt": "2026-03-19",
61
- "date": "2026-03-19",
62
- "time": "09:00",
63
- "duration": 30
64
- },
65
- {
66
- "id": "evt-2",
67
- "name": "Sprint Review",
68
- "description": "End of sprint demo",
69
- "status": "active",
70
- "createdAt": "2026-03-19",
71
- "date": "2026-03-21",
72
- "time": "14:00",
73
- "duration": 60
74
- },
75
- {
76
- "id": "evt-3",
77
- "name": "Design Workshop",
78
- "description": "UI/UX review session",
79
- "status": "pending",
80
- "createdAt": "2026-03-19",
81
- "date": "2026-03-22",
82
- "time": "10:30",
83
- "duration": 90
51
+ "default": 60.0
84
52
  }
85
53
  ]
86
54
  },
87
55
  "traits": [
88
56
  {
89
57
  "name": "CalendarEventCalendar",
90
- "linkedEntity": "CalendarEvent",
91
58
  "category": "interaction",
59
+ "linkedEntity": "CalendarEvent",
60
+ "emits": [
61
+ {
62
+ "event": "CalendarEventLoaded",
63
+ "description": "Fired when CalendarEvent finishes loading",
64
+ "scope": "internal",
65
+ "payload": [
66
+ {
67
+ "name": "id",
68
+ "type": "string"
69
+ },
70
+ {
71
+ "name": "name",
72
+ "type": "string"
73
+ },
74
+ {
75
+ "name": "description",
76
+ "type": "string"
77
+ },
78
+ {
79
+ "name": "status",
80
+ "type": "string"
81
+ },
82
+ {
83
+ "name": "createdAt",
84
+ "type": "string"
85
+ },
86
+ {
87
+ "name": "date",
88
+ "type": "string"
89
+ },
90
+ {
91
+ "name": "time",
92
+ "type": "string"
93
+ },
94
+ {
95
+ "name": "duration",
96
+ "type": "number"
97
+ }
98
+ ]
99
+ },
100
+ {
101
+ "event": "CalendarEventLoadFailed",
102
+ "description": "Fired when CalendarEvent fails to load",
103
+ "scope": "internal",
104
+ "payload": [
105
+ {
106
+ "name": "message",
107
+ "type": "string"
108
+ }
109
+ ]
110
+ }
111
+ ],
92
112
  "stateMachine": {
93
113
  "states": [
94
114
  {
@@ -132,6 +152,20 @@
132
152
  {
133
153
  "key": "BACK",
134
154
  "name": "Back"
155
+ },
156
+ {
157
+ "key": "CalendarEventLoaded",
158
+ "name": "CalendarEvent loaded"
159
+ },
160
+ {
161
+ "key": "CalendarEventLoadFailed",
162
+ "name": "CalendarEvent load failed",
163
+ "payload": [
164
+ {
165
+ "name": "message",
166
+ "type": "string"
167
+ }
168
+ ]
135
169
  }
136
170
  ],
137
171
  "transitions": [
@@ -142,27 +176,29 @@
142
176
  "effects": [
143
177
  [
144
178
  "fetch",
145
- "CalendarEvent"
179
+ "CalendarEvent",
180
+ {
181
+ "emit": {
182
+ "success": "CalendarEventLoaded",
183
+ "failure": "CalendarEventLoadFailed"
184
+ }
185
+ }
146
186
  ],
147
187
  [
148
188
  "render-ui",
149
189
  "main",
150
190
  {
151
191
  "type": "stack",
152
- "direction": "vertical",
153
192
  "gap": "lg",
154
193
  "children": [
155
194
  {
156
- "type": "stack",
157
195
  "direction": "horizontal",
158
196
  "gap": "md",
159
- "justify": "space-between",
160
- "align": "center",
161
197
  "children": [
162
198
  {
163
199
  "type": "stack",
164
- "direction": "horizontal",
165
200
  "gap": "sm",
201
+ "direction": "horizontal",
166
202
  "align": "center",
167
203
  "children": [
168
204
  {
@@ -178,20 +214,23 @@
178
214
  ]
179
215
  },
180
216
  {
217
+ "endDate": "2026-12-31",
181
218
  "type": "date-range-selector",
182
219
  "startDate": "2026-01-01",
183
- "endDate": "2026-12-31",
184
220
  "onSelect": "SELECT_DAY"
185
221
  }
186
- ]
222
+ ],
223
+ "justify": "space-between",
224
+ "type": "stack",
225
+ "align": "center"
187
226
  },
188
227
  {
189
228
  "type": "divider"
190
229
  },
191
230
  {
231
+ "month": 3.0,
192
232
  "type": "calendar-grid",
193
- "month": 3,
194
- "year": 2026
233
+ "year": 2026.0
195
234
  },
196
235
  {
197
236
  "type": "divider"
@@ -202,44 +241,45 @@
202
241
  "content": "Upcoming Events"
203
242
  },
204
243
  {
205
- "type": "data-list",
206
- "entity": "CalendarEvent",
207
- "emptyIcon": "calendar",
208
- "emptyTitle": "No events",
209
244
  "emptyDescription": "No events scheduled.",
210
245
  "columns": [
211
246
  {
212
- "name": "name",
213
- "label": "Event",
247
+ "icon": "calendar",
214
248
  "variant": "h4",
215
- "icon": "calendar"
249
+ "label": "Event",
250
+ "name": "name"
216
251
  },
217
252
  {
218
- "name": "time",
219
253
  "label": "Time",
254
+ "name": "time",
220
255
  "variant": "badge"
221
256
  },
222
257
  {
223
258
  "name": "date",
224
- "label": "Date",
259
+ "format": "date",
225
260
  "variant": "caption",
226
- "format": "date"
261
+ "label": "Date"
227
262
  },
228
263
  {
229
- "name": "status",
230
264
  "label": "Status",
231
- "variant": "badge"
265
+ "variant": "badge",
266
+ "name": "status"
232
267
  }
233
268
  ],
234
269
  "itemActions": [
235
270
  {
236
- "label": "View",
271
+ "icon": "eye",
237
272
  "event": "SELECT_DAY",
238
- "icon": "eye"
273
+ "label": "View"
239
274
  }
240
- ]
275
+ ],
276
+ "emptyIcon": "calendar",
277
+ "emptyTitle": "No events",
278
+ "type": "data-list",
279
+ "entity": "CalendarEvent"
241
280
  }
242
- ]
281
+ ],
282
+ "direction": "vertical"
243
283
  }
244
284
  ]
245
285
  ]
@@ -251,74 +291,74 @@
251
291
  "effects": [
252
292
  [
253
293
  "fetch",
254
- "CalendarEvent"
294
+ "CalendarEvent",
295
+ {
296
+ "emit": {
297
+ "failure": "CalendarEventLoadFailed",
298
+ "success": "CalendarEventLoaded"
299
+ }
300
+ }
255
301
  ],
256
302
  [
257
303
  "render-ui",
258
304
  "main",
259
305
  {
260
- "type": "stack",
261
306
  "direction": "vertical",
262
- "gap": "lg",
263
307
  "children": [
264
308
  {
265
- "type": "stack",
266
- "direction": "horizontal",
267
- "gap": "md",
268
309
  "justify": "space-between",
269
- "align": "center",
270
310
  "children": [
271
311
  {
272
- "type": "stack",
273
- "direction": "horizontal",
274
- "gap": "sm",
275
- "align": "center",
276
312
  "children": [
277
313
  {
314
+ "size": "lg",
278
315
  "type": "icon",
279
- "name": "clock",
280
- "size": "lg"
316
+ "name": "clock"
281
317
  },
282
318
  {
283
- "type": "typography",
284
319
  "content": "Day View",
285
- "variant": "h2"
320
+ "variant": "h2",
321
+ "type": "typography"
286
322
  }
287
- ]
323
+ ],
324
+ "type": "stack",
325
+ "direction": "horizontal",
326
+ "align": "center",
327
+ "gap": "sm"
288
328
  },
289
329
  {
290
- "type": "button",
291
- "label": "Back to Month",
330
+ "icon": "arrow-left",
292
331
  "event": "BACK",
293
- "variant": "ghost",
294
- "icon": "arrow-left"
332
+ "label": "Back to Month",
333
+ "type": "button",
334
+ "variant": "ghost"
295
335
  }
296
- ]
336
+ ],
337
+ "direction": "horizontal",
338
+ "type": "stack",
339
+ "align": "center",
340
+ "gap": "md"
297
341
  },
298
342
  {
299
343
  "type": "divider"
300
344
  },
301
345
  {
302
- "type": "typography",
303
346
  "variant": "h4",
347
+ "type": "typography",
304
348
  "content": "Events for Selected Day"
305
349
  },
306
350
  {
307
- "type": "data-grid",
308
- "entity": "CalendarEvent",
309
351
  "emptyIcon": "calendar",
310
- "emptyTitle": "No events today",
311
- "emptyDescription": "Select a time slot to add an event.",
312
352
  "columns": [
313
353
  {
314
- "name": "name",
354
+ "icon": "clock",
315
355
  "label": "Event",
316
- "variant": "h4",
317
- "icon": "clock"
356
+ "name": "name",
357
+ "variant": "h4"
318
358
  },
319
359
  {
320
- "name": "time",
321
360
  "label": "Time",
361
+ "name": "time",
322
362
  "variant": "badge"
323
363
  },
324
364
  {
@@ -327,15 +367,21 @@
327
367
  "variant": "badge"
328
368
  }
329
369
  ],
370
+ "emptyDescription": "Select a time slot to add an event.",
330
371
  "itemActions": [
331
372
  {
332
- "label": "Select",
373
+ "icon": "check",
333
374
  "event": "SELECT_SLOT",
334
- "icon": "check"
375
+ "label": "Select"
335
376
  }
336
- ]
377
+ ],
378
+ "entity": "CalendarEvent",
379
+ "type": "data-grid",
380
+ "emptyTitle": "No events today"
337
381
  }
338
- ]
382
+ ],
383
+ "gap": "lg",
384
+ "type": "stack"
339
385
  }
340
386
  ]
341
387
  ]
@@ -354,62 +400,59 @@
354
400
  "render-ui",
355
401
  "main",
356
402
  {
357
- "type": "stack",
358
403
  "direction": "vertical",
359
- "gap": "lg",
360
404
  "children": [
361
405
  {
362
406
  "type": "stack",
363
- "direction": "horizontal",
364
- "gap": "md",
365
- "justify": "space-between",
366
- "align": "center",
367
407
  "children": [
368
408
  {
369
409
  "type": "stack",
370
- "direction": "horizontal",
371
410
  "gap": "sm",
372
- "align": "center",
373
411
  "children": [
374
412
  {
413
+ "size": "lg",
375
414
  "type": "icon",
376
- "name": "clock",
377
- "size": "lg"
415
+ "name": "clock"
378
416
  },
379
417
  {
380
418
  "type": "typography",
381
419
  "content": "Day View",
382
420
  "variant": "h2"
383
421
  }
384
- ]
422
+ ],
423
+ "direction": "horizontal",
424
+ "align": "center"
385
425
  },
386
426
  {
427
+ "icon": "arrow-left",
428
+ "event": "BACK",
387
429
  "type": "button",
388
430
  "label": "Back to Month",
389
- "event": "BACK",
390
- "variant": "ghost",
391
- "icon": "arrow-left"
431
+ "variant": "ghost"
392
432
  }
393
- ]
433
+ ],
434
+ "gap": "md",
435
+ "justify": "space-between",
436
+ "align": "center",
437
+ "direction": "horizontal"
394
438
  },
395
439
  {
396
440
  "type": "divider"
397
441
  },
398
442
  {
399
443
  "type": "typography",
400
- "variant": "h4",
401
- "content": "Events for Selected Day"
444
+ "content": "Events for Selected Day",
445
+ "variant": "h4"
402
446
  },
403
447
  {
448
+ "emptyTitle": "No events today",
404
449
  "type": "data-grid",
405
450
  "entity": "CalendarEvent",
406
- "emptyIcon": "calendar",
407
- "emptyTitle": "No events today",
408
451
  "emptyDescription": "Select a time slot to add an event.",
409
452
  "columns": [
410
453
  {
411
- "name": "name",
412
454
  "label": "Event",
455
+ "name": "name",
413
456
  "variant": "h4",
414
457
  "icon": "clock"
415
458
  },
@@ -420,19 +463,22 @@
420
463
  },
421
464
  {
422
465
  "name": "status",
423
- "label": "Status",
424
- "variant": "badge"
466
+ "variant": "badge",
467
+ "label": "Status"
425
468
  }
426
469
  ],
470
+ "emptyIcon": "calendar",
427
471
  "itemActions": [
428
472
  {
429
- "label": "Select",
430
473
  "event": "SELECT_SLOT",
431
- "icon": "check"
474
+ "icon": "check",
475
+ "label": "Select"
432
476
  }
433
477
  ]
434
478
  }
435
- ]
479
+ ],
480
+ "gap": "lg",
481
+ "type": "stack"
436
482
  }
437
483
  ]
438
484
  ]
@@ -444,104 +490,110 @@
444
490
  "effects": [
445
491
  [
446
492
  "fetch",
447
- "CalendarEvent"
493
+ "CalendarEvent",
494
+ {
495
+ "emit": {
496
+ "failure": "CalendarEventLoadFailed",
497
+ "success": "CalendarEventLoaded"
498
+ }
499
+ }
448
500
  ],
449
501
  [
450
502
  "render-ui",
451
503
  "main",
452
504
  {
453
- "type": "stack",
454
505
  "direction": "vertical",
455
- "gap": "lg",
456
506
  "children": [
457
507
  {
458
508
  "type": "stack",
459
- "direction": "horizontal",
460
- "gap": "md",
461
509
  "justify": "space-between",
462
- "align": "center",
510
+ "gap": "md",
463
511
  "children": [
464
512
  {
465
- "type": "stack",
466
- "direction": "horizontal",
467
- "gap": "sm",
468
- "align": "center",
469
513
  "children": [
470
514
  {
515
+ "size": "lg",
471
516
  "type": "icon",
472
- "name": "calendar",
473
- "size": "lg"
517
+ "name": "calendar"
474
518
  },
475
519
  {
476
- "type": "typography",
477
520
  "content": "CalendarEvents Calendar",
521
+ "type": "typography",
478
522
  "variant": "h2"
479
523
  }
480
- ]
524
+ ],
525
+ "align": "center",
526
+ "direction": "horizontal",
527
+ "gap": "sm",
528
+ "type": "stack"
481
529
  },
482
530
  {
483
- "type": "date-range-selector",
484
- "startDate": "2026-01-01",
531
+ "onSelect": "SELECT_DAY",
485
532
  "endDate": "2026-12-31",
486
- "onSelect": "SELECT_DAY"
533
+ "startDate": "2026-01-01",
534
+ "type": "date-range-selector"
487
535
  }
488
- ]
536
+ ],
537
+ "direction": "horizontal",
538
+ "align": "center"
489
539
  },
490
540
  {
491
541
  "type": "divider"
492
542
  },
493
543
  {
494
544
  "type": "calendar-grid",
495
- "month": 3,
496
- "year": 2026
545
+ "month": 3.0,
546
+ "year": 2026.0
497
547
  },
498
548
  {
499
549
  "type": "divider"
500
550
  },
501
551
  {
502
- "type": "typography",
503
552
  "variant": "h4",
553
+ "type": "typography",
504
554
  "content": "Upcoming Events"
505
555
  },
506
556
  {
557
+ "itemActions": [
558
+ {
559
+ "label": "View",
560
+ "event": "SELECT_DAY",
561
+ "icon": "eye"
562
+ }
563
+ ],
507
564
  "type": "data-list",
508
565
  "entity": "CalendarEvent",
509
- "emptyIcon": "calendar",
510
566
  "emptyTitle": "No events",
511
- "emptyDescription": "No events scheduled.",
512
567
  "columns": [
513
568
  {
514
569
  "name": "name",
515
570
  "label": "Event",
516
- "variant": "h4",
517
- "icon": "calendar"
571
+ "icon": "calendar",
572
+ "variant": "h4"
518
573
  },
519
574
  {
520
- "name": "time",
575
+ "variant": "badge",
521
576
  "label": "Time",
522
- "variant": "badge"
577
+ "name": "time"
523
578
  },
524
579
  {
525
580
  "name": "date",
526
581
  "label": "Date",
527
- "variant": "caption",
528
- "format": "date"
582
+ "format": "date",
583
+ "variant": "caption"
529
584
  },
530
585
  {
531
- "name": "status",
586
+ "variant": "badge",
532
587
  "label": "Status",
533
- "variant": "badge"
588
+ "name": "status"
534
589
  }
535
590
  ],
536
- "itemActions": [
537
- {
538
- "label": "View",
539
- "event": "SELECT_DAY",
540
- "icon": "eye"
541
- }
542
- ]
591
+ "emptyIcon": "calendar",
592
+ "emptyDescription": "No events scheduled."
543
593
  }
544
- ]
594
+ ],
595
+ "type": "stack",
596
+ "gap": "lg"
545
597
  }
546
598
  ]
547
599
  ]
@@ -553,28 +605,29 @@
553
605
  "effects": [
554
606
  [
555
607
  "fetch",
556
- "CalendarEvent"
608
+ "CalendarEvent",
609
+ {
610
+ "emit": {
611
+ "failure": "CalendarEventLoadFailed",
612
+ "success": "CalendarEventLoaded"
613
+ }
614
+ }
557
615
  ],
558
616
  [
559
617
  "render-ui",
560
618
  "main",
561
619
  {
562
- "type": "stack",
563
620
  "direction": "vertical",
621
+ "type": "stack",
564
622
  "gap": "lg",
565
623
  "children": [
566
624
  {
567
625
  "type": "stack",
568
- "direction": "horizontal",
569
626
  "gap": "md",
570
- "justify": "space-between",
571
627
  "align": "center",
628
+ "justify": "space-between",
572
629
  "children": [
573
630
  {
574
- "type": "stack",
575
- "direction": "horizontal",
576
- "gap": "sm",
577
- "align": "center",
578
631
  "children": [
579
632
  {
580
633
  "type": "icon",
@@ -582,73 +635,78 @@
582
635
  "size": "lg"
583
636
  },
584
637
  {
585
- "type": "typography",
586
638
  "content": "CalendarEvents Calendar",
587
- "variant": "h2"
639
+ "variant": "h2",
640
+ "type": "typography"
588
641
  }
589
- ]
642
+ ],
643
+ "gap": "sm",
644
+ "direction": "horizontal",
645
+ "type": "stack",
646
+ "align": "center"
590
647
  },
591
648
  {
649
+ "onSelect": "SELECT_DAY",
592
650
  "type": "date-range-selector",
593
651
  "startDate": "2026-01-01",
594
- "endDate": "2026-12-31",
595
- "onSelect": "SELECT_DAY"
652
+ "endDate": "2026-12-31"
596
653
  }
597
- ]
654
+ ],
655
+ "direction": "horizontal"
598
656
  },
599
657
  {
600
658
  "type": "divider"
601
659
  },
602
660
  {
661
+ "year": 2026.0,
603
662
  "type": "calendar-grid",
604
- "month": 3,
605
- "year": 2026
663
+ "month": 3.0
606
664
  },
607
665
  {
608
666
  "type": "divider"
609
667
  },
610
668
  {
611
- "type": "typography",
612
669
  "variant": "h4",
670
+ "type": "typography",
613
671
  "content": "Upcoming Events"
614
672
  },
615
673
  {
616
- "type": "data-list",
617
- "entity": "CalendarEvent",
618
674
  "emptyIcon": "calendar",
619
- "emptyTitle": "No events",
620
- "emptyDescription": "No events scheduled.",
621
675
  "columns": [
622
676
  {
623
- "name": "name",
624
677
  "label": "Event",
625
- "variant": "h4",
626
- "icon": "calendar"
678
+ "icon": "calendar",
679
+ "name": "name",
680
+ "variant": "h4"
627
681
  },
628
682
  {
629
- "name": "time",
630
683
  "label": "Time",
684
+ "name": "time",
631
685
  "variant": "badge"
632
686
  },
633
687
  {
634
- "name": "date",
635
688
  "label": "Date",
689
+ "format": "date",
636
690
  "variant": "caption",
637
- "format": "date"
691
+ "name": "date"
638
692
  },
639
693
  {
640
- "name": "status",
641
694
  "label": "Status",
642
- "variant": "badge"
695
+ "variant": "badge",
696
+ "name": "status"
643
697
  }
644
698
  ],
699
+ "emptyDescription": "No events scheduled.",
645
700
  "itemActions": [
646
701
  {
647
- "label": "View",
648
702
  "event": "SELECT_DAY",
649
- "icon": "eye"
703
+ "icon": "eye",
704
+ "label": "View"
650
705
  }
651
- ]
706
+ ],
707
+ "type": "data-list",
708
+ "entity": "CalendarEvent",
709
+ "emptyTitle": "No events"
652
710
  }
653
711
  ]
654
712
  }
@@ -662,70 +720,72 @@
662
720
  "effects": [
663
721
  [
664
722
  "fetch",
665
- "CalendarEvent"
723
+ "CalendarEvent",
724
+ {
725
+ "emit": {
726
+ "success": "CalendarEventLoaded",
727
+ "failure": "CalendarEventLoadFailed"
728
+ }
729
+ }
666
730
  ],
667
731
  [
668
732
  "render-ui",
669
733
  "main",
670
734
  {
671
735
  "type": "stack",
672
- "direction": "vertical",
673
736
  "gap": "lg",
674
737
  "children": [
675
738
  {
676
- "type": "stack",
677
- "direction": "horizontal",
678
- "gap": "md",
679
739
  "justify": "space-between",
680
740
  "align": "center",
741
+ "gap": "md",
742
+ "direction": "horizontal",
681
743
  "children": [
682
744
  {
683
- "type": "stack",
684
745
  "direction": "horizontal",
685
746
  "gap": "sm",
747
+ "type": "stack",
686
748
  "align": "center",
687
749
  "children": [
688
750
  {
689
- "type": "icon",
751
+ "size": "lg",
690
752
  "name": "clock",
691
- "size": "lg"
753
+ "type": "icon"
692
754
  },
693
755
  {
694
- "type": "typography",
756
+ "variant": "h2",
695
757
  "content": "Day View",
696
- "variant": "h2"
758
+ "type": "typography"
697
759
  }
698
760
  ]
699
761
  },
700
762
  {
763
+ "variant": "ghost",
701
764
  "type": "button",
702
- "label": "Back to Month",
703
765
  "event": "BACK",
704
- "variant": "ghost",
766
+ "label": "Back to Month",
705
767
  "icon": "arrow-left"
706
768
  }
707
- ]
769
+ ],
770
+ "type": "stack"
708
771
  },
709
772
  {
710
773
  "type": "divider"
711
774
  },
712
775
  {
776
+ "content": "Events for Selected Day",
713
777
  "type": "typography",
714
- "variant": "h4",
715
- "content": "Events for Selected Day"
778
+ "variant": "h4"
716
779
  },
717
780
  {
718
- "type": "data-grid",
719
- "entity": "CalendarEvent",
720
- "emptyIcon": "calendar",
721
781
  "emptyTitle": "No events today",
722
782
  "emptyDescription": "Select a time slot to add an event.",
723
783
  "columns": [
724
784
  {
725
- "name": "name",
726
785
  "label": "Event",
727
786
  "variant": "h4",
728
- "icon": "clock"
787
+ "icon": "clock",
788
+ "name": "name"
729
789
  },
730
790
  {
731
791
  "name": "time",
@@ -738,21 +798,26 @@
738
798
  "variant": "badge"
739
799
  }
740
800
  ],
801
+ "type": "data-grid",
802
+ "entity": "CalendarEvent",
741
803
  "itemActions": [
742
804
  {
743
805
  "label": "Select",
744
806
  "event": "SELECT_SLOT",
745
807
  "icon": "check"
746
808
  }
747
- ]
809
+ ],
810
+ "emptyIcon": "calendar"
748
811
  }
749
- ]
812
+ ],
813
+ "direction": "vertical"
750
814
  }
751
815
  ]
752
816
  ]
753
817
  }
754
818
  ]
755
- }
819
+ },
820
+ "scope": "collection"
756
821
  }
757
822
  ],
758
823
  "pages": [
@@ -768,4 +833,4 @@
768
833
  ]
769
834
  }
770
835
  ]
771
- }
836
+ }