@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.
- package/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/behaviors/registry/atoms/std-async.orb +147 -86
- package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/behaviors/registry/atoms/std-browse.orb +260 -126
- package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/behaviors/registry/atoms/std-collision.orb +136 -135
- package/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/behaviors/registry/atoms/std-combat.orb +171 -98
- package/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/behaviors/registry/atoms/std-display.orb +491 -587
- package/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/behaviors/registry/atoms/std-filter.orb +311 -326
- package/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/behaviors/registry/atoms/std-input.orb +128 -393
- package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/behaviors/registry/atoms/std-loading.orb +127 -126
- package/behaviors/registry/atoms/std-modal.orb +30 -267
- package/behaviors/registry/atoms/std-movement.orb +391 -292
- package/behaviors/registry/atoms/std-notification.orb +133 -75
- package/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/behaviors/registry/atoms/std-push.orb +172 -36
- package/behaviors/registry/atoms/std-quest.orb +552 -449
- package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/behaviors/registry/atoms/std-rating.orb +123 -65
- package/behaviors/registry/atoms/std-related.orb +202 -26
- package/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/behaviors/registry/atoms/std-score.orb +210 -146
- package/behaviors/registry/atoms/std-search.orb +265 -138
- package/behaviors/registry/atoms/std-selection.orb +311 -220
- package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/behaviors/registry/atoms/std-sort.orb +284 -207
- package/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/behaviors/registry/atoms/std-theme.orb +193 -135
- package/behaviors/registry/atoms/std-timer.orb +320 -344
- package/behaviors/registry/atoms/std-undo.orb +278 -199
- package/behaviors/registry/atoms/std-upload.orb +112 -111
- package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/behaviors/registry/molecules/std-cart.orb +347 -406
- package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/behaviors/registry/molecules/std-detail.orb +133 -138
- package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/behaviors/registry/molecules/std-list.orb +280 -205
- package/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/dist/behaviors/registry/atoms/std-async.orb +147 -86
- package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
- package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
- package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
- package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/dist/behaviors/registry/atoms/std-display.orb +491 -587
- package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
- package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/dist/behaviors/registry/atoms/std-input.orb +128 -393
- package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
- package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
- package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
- package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
- package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/dist/behaviors/registry/atoms/std-push.orb +172 -36
- package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
- package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
- package/dist/behaviors/registry/atoms/std-related.orb +202 -26
- package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/dist/behaviors/registry/atoms/std-score.orb +210 -146
- package/dist/behaviors/registry/atoms/std-search.orb +265 -138
- package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
- package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
- package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
- package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
- package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
- package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
- package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
- package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/dist/behaviors/registry/molecules/std-list.orb +280 -205
- package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/index.js +16 -4
- package/dist/index.js.map +1 -1
- package/dist/modules/core.js +16 -4
- package/dist/modules/core.js.map +1 -1
- package/dist/modules/index.js +16 -4
- package/dist/modules/index.js.map +1 -1
- package/dist/registry.js +16 -4
- package/dist/registry.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-batch-selected-list",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-batch-selected-list as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "BatchListItemOrbital",
|
|
@@ -47,7 +47,17 @@
|
|
|
47
47
|
{
|
|
48
48
|
"ref": "Browse.traits.BrowseItemBrowse",
|
|
49
49
|
"name": "BatchItemBrowse",
|
|
50
|
-
"linkedEntity": "BatchListItem"
|
|
50
|
+
"linkedEntity": "BatchListItem",
|
|
51
|
+
"listens": [
|
|
52
|
+
{
|
|
53
|
+
"event": "CONFIRM",
|
|
54
|
+
"triggers": "INIT",
|
|
55
|
+
"source": {
|
|
56
|
+
"kind": "trait",
|
|
57
|
+
"trait": "BatchItemConfirmation"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
]
|
|
51
61
|
},
|
|
52
62
|
{
|
|
53
63
|
"ref": "Selection.traits.SelectableItemSelection",
|
|
@@ -72,7 +82,8 @@
|
|
|
72
82
|
],
|
|
73
83
|
"events": [
|
|
74
84
|
{
|
|
75
|
-
"key": "INIT"
|
|
85
|
+
"key": "INIT",
|
|
86
|
+
"name": "Initialize"
|
|
76
87
|
}
|
|
77
88
|
],
|
|
78
89
|
"transitions": [
|
|
@@ -81,28 +92,32 @@
|
|
|
81
92
|
"to": "composing",
|
|
82
93
|
"event": "INIT",
|
|
83
94
|
"effects": [
|
|
95
|
+
[
|
|
96
|
+
"fetch",
|
|
97
|
+
"BatchListItem"
|
|
98
|
+
],
|
|
84
99
|
[
|
|
85
100
|
"render-ui",
|
|
86
101
|
"main",
|
|
87
102
|
{
|
|
88
103
|
"type": "stack",
|
|
89
|
-
"direction": "vertical",
|
|
90
104
|
"gap": "md",
|
|
105
|
+
"direction": "vertical",
|
|
91
106
|
"children": [
|
|
92
107
|
{
|
|
93
108
|
"direction": "horizontal",
|
|
94
109
|
"type": "stack",
|
|
95
|
-
"
|
|
110
|
+
"gap": "sm",
|
|
96
111
|
"children": [
|
|
97
112
|
{
|
|
98
|
-
"icon": "trash-2",
|
|
99
|
-
"type": "button",
|
|
100
|
-
"event": "REQUEST",
|
|
101
113
|
"variant": "danger",
|
|
102
|
-
"
|
|
114
|
+
"event": "REQUEST",
|
|
115
|
+
"label": "Delete selected",
|
|
116
|
+
"icon": "trash-2",
|
|
117
|
+
"type": "button"
|
|
103
118
|
}
|
|
104
119
|
],
|
|
105
|
-
"
|
|
120
|
+
"justify": "end"
|
|
106
121
|
},
|
|
107
122
|
"@trait.BatchItemSelection",
|
|
108
123
|
"@trait.BatchItemBrowse"
|
|
@@ -112,7 +127,8 @@
|
|
|
112
127
|
]
|
|
113
128
|
}
|
|
114
129
|
]
|
|
115
|
-
}
|
|
130
|
+
},
|
|
131
|
+
"scope": "instance"
|
|
116
132
|
}
|
|
117
133
|
],
|
|
118
134
|
"pages": [
|
|
@@ -128,4 +144,4 @@
|
|
|
128
144
|
]
|
|
129
145
|
}
|
|
130
146
|
]
|
|
131
|
-
}
|
|
147
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-builder-game",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-builder-game as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "BuilderGameOrbital",
|
|
@@ -38,30 +38,68 @@
|
|
|
38
38
|
{
|
|
39
39
|
"name": "score",
|
|
40
40
|
"type": "number",
|
|
41
|
-
"default": 0
|
|
41
|
+
"default": 0.0
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
"name": "level",
|
|
45
45
|
"type": "number",
|
|
46
|
-
"default": 1
|
|
47
|
-
}
|
|
48
|
-
],
|
|
49
|
-
"instances": [
|
|
50
|
-
{
|
|
51
|
-
"id": "game-1",
|
|
52
|
-
"name": "Builder Session",
|
|
53
|
-
"description": "Active game session",
|
|
54
|
-
"status": "active",
|
|
55
|
-
"score": 0,
|
|
56
|
-
"level": 1
|
|
46
|
+
"default": 1.0
|
|
57
47
|
}
|
|
58
48
|
]
|
|
59
49
|
},
|
|
60
50
|
"traits": [
|
|
61
51
|
{
|
|
62
52
|
"name": "BuilderGameBuilderGame",
|
|
63
|
-
"linkedEntity": "BuilderGame",
|
|
64
53
|
"category": "interaction",
|
|
54
|
+
"linkedEntity": "BuilderGame",
|
|
55
|
+
"emits": [
|
|
56
|
+
{
|
|
57
|
+
"event": "BuilderGameLoaded",
|
|
58
|
+
"description": "Fired when BuilderGame finishes loading",
|
|
59
|
+
"scope": "internal",
|
|
60
|
+
"payload": [
|
|
61
|
+
{
|
|
62
|
+
"name": "id",
|
|
63
|
+
"type": "string"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "name",
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "description",
|
|
71
|
+
"type": "string"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "status",
|
|
75
|
+
"type": "string"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "createdAt",
|
|
79
|
+
"type": "string"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "score",
|
|
83
|
+
"type": "number"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "level",
|
|
87
|
+
"type": "number"
|
|
88
|
+
}
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"event": "BuilderGameLoadFailed",
|
|
93
|
+
"description": "Fired when BuilderGame fails to load",
|
|
94
|
+
"scope": "internal",
|
|
95
|
+
"payload": [
|
|
96
|
+
{
|
|
97
|
+
"name": "message",
|
|
98
|
+
"type": "string"
|
|
99
|
+
}
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
],
|
|
65
103
|
"stateMachine": {
|
|
66
104
|
"states": [
|
|
67
105
|
{
|
|
@@ -84,6 +122,10 @@
|
|
|
84
122
|
"key": "START",
|
|
85
123
|
"name": "Start"
|
|
86
124
|
},
|
|
125
|
+
{
|
|
126
|
+
"key": "NAVIGATE",
|
|
127
|
+
"name": "Navigate"
|
|
128
|
+
},
|
|
87
129
|
{
|
|
88
130
|
"key": "COMPLETE",
|
|
89
131
|
"name": "Complete"
|
|
@@ -93,8 +135,18 @@
|
|
|
93
135
|
"name": "Restart"
|
|
94
136
|
},
|
|
95
137
|
{
|
|
96
|
-
"key": "
|
|
97
|
-
"name": "
|
|
138
|
+
"key": "BuilderGameLoaded",
|
|
139
|
+
"name": "BuilderGame loaded"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"key": "BuilderGameLoadFailed",
|
|
143
|
+
"name": "BuilderGame load failed",
|
|
144
|
+
"payload": [
|
|
145
|
+
{
|
|
146
|
+
"name": "message",
|
|
147
|
+
"type": "string"
|
|
148
|
+
}
|
|
149
|
+
]
|
|
98
150
|
}
|
|
99
151
|
],
|
|
100
152
|
"transitions": [
|
|
@@ -105,7 +157,13 @@
|
|
|
105
157
|
"effects": [
|
|
106
158
|
[
|
|
107
159
|
"fetch",
|
|
108
|
-
"BuilderGame"
|
|
160
|
+
"BuilderGame",
|
|
161
|
+
{
|
|
162
|
+
"emit": {
|
|
163
|
+
"failure": "BuilderGameLoadFailed",
|
|
164
|
+
"success": "BuilderGameLoaded"
|
|
165
|
+
}
|
|
166
|
+
}
|
|
109
167
|
],
|
|
110
168
|
[
|
|
111
169
|
"render-ui",
|
|
@@ -115,9 +173,9 @@
|
|
|
115
173
|
"title": "Builder Challenge",
|
|
116
174
|
"menuItems": [
|
|
117
175
|
{
|
|
118
|
-
"
|
|
176
|
+
"variant": "primary",
|
|
119
177
|
"event": "START",
|
|
120
|
-
"
|
|
178
|
+
"label": "Start"
|
|
121
179
|
}
|
|
122
180
|
]
|
|
123
181
|
}
|
|
@@ -141,8 +199,8 @@
|
|
|
141
199
|
"type": "game-hud",
|
|
142
200
|
"stats": [
|
|
143
201
|
{
|
|
144
|
-
"
|
|
145
|
-
"
|
|
202
|
+
"value": "@entity.score",
|
|
203
|
+
"label": "Score"
|
|
146
204
|
},
|
|
147
205
|
{
|
|
148
206
|
"label": "Level",
|
|
@@ -151,9 +209,9 @@
|
|
|
151
209
|
]
|
|
152
210
|
},
|
|
153
211
|
{
|
|
154
|
-
"
|
|
212
|
+
"completeEvent": "COMPLETE",
|
|
155
213
|
"entity": "BuilderGame",
|
|
156
|
-
"
|
|
214
|
+
"type": "builder-board"
|
|
157
215
|
}
|
|
158
216
|
]
|
|
159
217
|
}
|
|
@@ -163,8 +221,7 @@
|
|
|
163
221
|
{
|
|
164
222
|
"from": "menu",
|
|
165
223
|
"to": "menu",
|
|
166
|
-
"event": "NAVIGATE"
|
|
167
|
-
"effects": []
|
|
224
|
+
"event": "NAVIGATE"
|
|
168
225
|
},
|
|
169
226
|
{
|
|
170
227
|
"from": "playing",
|
|
@@ -179,8 +236,8 @@
|
|
|
179
236
|
"title": "Well Done!",
|
|
180
237
|
"menuItems": [
|
|
181
238
|
{
|
|
182
|
-
"label": "Play Again",
|
|
183
239
|
"event": "RESTART",
|
|
240
|
+
"label": "Play Again",
|
|
184
241
|
"variant": "primary"
|
|
185
242
|
}
|
|
186
243
|
]
|
|
@@ -211,7 +268,8 @@
|
|
|
211
268
|
]
|
|
212
269
|
}
|
|
213
270
|
]
|
|
214
|
-
}
|
|
271
|
+
},
|
|
272
|
+
"scope": "instance"
|
|
215
273
|
}
|
|
216
274
|
],
|
|
217
275
|
"pages": [
|
|
@@ -227,4 +285,4 @@
|
|
|
227
285
|
]
|
|
228
286
|
}
|
|
229
287
|
]
|
|
230
|
-
}
|
|
288
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-calendar-booking",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-calendar-booking as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "BookingOrbital",
|
|
@@ -47,7 +47,25 @@
|
|
|
47
47
|
{
|
|
48
48
|
"ref": "Calendar.traits.CalendarEventCalendar",
|
|
49
49
|
"name": "BookingCalendar",
|
|
50
|
-
"linkedEntity": "Booking"
|
|
50
|
+
"linkedEntity": "Booking",
|
|
51
|
+
"listens": [
|
|
52
|
+
{
|
|
53
|
+
"event": "SAVE",
|
|
54
|
+
"triggers": "INIT",
|
|
55
|
+
"source": {
|
|
56
|
+
"kind": "trait",
|
|
57
|
+
"trait": "BookingModal"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"event": "CONFIRM",
|
|
62
|
+
"triggers": "INIT",
|
|
63
|
+
"source": {
|
|
64
|
+
"kind": "trait",
|
|
65
|
+
"trait": "BookingConfirmation"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
]
|
|
51
69
|
},
|
|
52
70
|
{
|
|
53
71
|
"ref": "Modal.traits.ModalRecordModal",
|
|
@@ -72,7 +90,8 @@
|
|
|
72
90
|
],
|
|
73
91
|
"events": [
|
|
74
92
|
{
|
|
75
|
-
"key": "INIT"
|
|
93
|
+
"key": "INIT",
|
|
94
|
+
"name": "Initialize"
|
|
76
95
|
}
|
|
77
96
|
],
|
|
78
97
|
"transitions": [
|
|
@@ -81,22 +100,27 @@
|
|
|
81
100
|
"to": "composing",
|
|
82
101
|
"event": "INIT",
|
|
83
102
|
"effects": [
|
|
103
|
+
[
|
|
104
|
+
"fetch",
|
|
105
|
+
"Booking"
|
|
106
|
+
],
|
|
84
107
|
[
|
|
85
108
|
"render-ui",
|
|
86
109
|
"main",
|
|
87
110
|
{
|
|
88
|
-
"
|
|
89
|
-
"direction": "vertical",
|
|
111
|
+
"gap": "md",
|
|
90
112
|
"children": [
|
|
91
113
|
"@trait.BookingCalendar"
|
|
92
114
|
],
|
|
93
|
-
"
|
|
115
|
+
"type": "stack",
|
|
116
|
+
"direction": "vertical"
|
|
94
117
|
}
|
|
95
118
|
]
|
|
96
119
|
]
|
|
97
120
|
}
|
|
98
121
|
]
|
|
99
|
-
}
|
|
122
|
+
},
|
|
123
|
+
"scope": "instance"
|
|
100
124
|
}
|
|
101
125
|
],
|
|
102
126
|
"pages": [
|
|
@@ -112,4 +136,4 @@
|
|
|
112
136
|
]
|
|
113
137
|
}
|
|
114
138
|
]
|
|
115
|
-
}
|
|
139
|
+
}
|