@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-gallery-filtered",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-gallery-filtered as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "GalleryFilteredOrbital",
|
|
@@ -72,7 +72,8 @@
|
|
|
72
72
|
],
|
|
73
73
|
"events": [
|
|
74
74
|
{
|
|
75
|
-
"key": "INIT"
|
|
75
|
+
"key": "INIT",
|
|
76
|
+
"name": "Initialize"
|
|
76
77
|
}
|
|
77
78
|
],
|
|
78
79
|
"transitions": [
|
|
@@ -81,31 +82,36 @@
|
|
|
81
82
|
"to": "composing",
|
|
82
83
|
"event": "INIT",
|
|
83
84
|
"effects": [
|
|
85
|
+
[
|
|
86
|
+
"fetch",
|
|
87
|
+
"GalleryFilteredItem"
|
|
88
|
+
],
|
|
84
89
|
[
|
|
85
90
|
"render-ui",
|
|
86
91
|
"main",
|
|
87
92
|
{
|
|
88
|
-
"
|
|
89
|
-
"direction": "vertical",
|
|
93
|
+
"type": "stack",
|
|
90
94
|
"children": [
|
|
91
95
|
{
|
|
96
|
+
"type": "stack",
|
|
97
|
+
"direction": "horizontal",
|
|
92
98
|
"gap": "sm",
|
|
93
99
|
"children": [
|
|
94
100
|
"@trait.GalleryFilteredSearch",
|
|
95
101
|
"@trait.GalleryFilteredFilter"
|
|
96
|
-
]
|
|
97
|
-
"type": "stack",
|
|
98
|
-
"direction": "horizontal"
|
|
102
|
+
]
|
|
99
103
|
},
|
|
100
104
|
"@trait.GalleryFilteredGallery"
|
|
101
105
|
],
|
|
102
|
-
"
|
|
106
|
+
"direction": "vertical",
|
|
107
|
+
"gap": "md"
|
|
103
108
|
}
|
|
104
109
|
]
|
|
105
110
|
]
|
|
106
111
|
}
|
|
107
112
|
]
|
|
108
|
-
}
|
|
113
|
+
},
|
|
114
|
+
"scope": "instance"
|
|
109
115
|
}
|
|
110
116
|
],
|
|
111
117
|
"pages": [
|
|
@@ -121,4 +127,4 @@
|
|
|
121
127
|
]
|
|
122
128
|
}
|
|
123
129
|
]
|
|
124
|
-
}
|
|
130
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-geospatial",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-geospatial as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "LocationOrbital",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
],
|
|
22
22
|
"entity": {
|
|
23
23
|
"name": "Location",
|
|
24
|
-
"persistence": "persistent",
|
|
25
24
|
"collection": "locations",
|
|
25
|
+
"persistence": "persistent",
|
|
26
26
|
"fields": [
|
|
27
27
|
{
|
|
28
28
|
"name": "id",
|
|
@@ -62,6 +62,24 @@
|
|
|
62
62
|
"ref": "Browse.traits.BrowseItemBrowse",
|
|
63
63
|
"name": "LocationBrowse",
|
|
64
64
|
"linkedEntity": "Location",
|
|
65
|
+
"listens": [
|
|
66
|
+
{
|
|
67
|
+
"event": "CONFIRM_SELECT",
|
|
68
|
+
"triggers": "INIT",
|
|
69
|
+
"source": {
|
|
70
|
+
"kind": "trait",
|
|
71
|
+
"trait": "LocationSelect"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"event": "CONFIRMED",
|
|
76
|
+
"triggers": "INIT",
|
|
77
|
+
"source": {
|
|
78
|
+
"kind": "trait",
|
|
79
|
+
"trait": "LocationConfirmSelect"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
],
|
|
65
83
|
"effects": {
|
|
66
84
|
"INIT": [
|
|
67
85
|
[
|
|
@@ -74,33 +92,32 @@
|
|
|
74
92
|
{
|
|
75
93
|
"type": "stack",
|
|
76
94
|
"direction": "vertical",
|
|
77
|
-
"gap": "lg",
|
|
78
95
|
"className": "max-w-5xl mx-auto w-full",
|
|
79
96
|
"children": [
|
|
80
97
|
{
|
|
81
|
-
"
|
|
98
|
+
"justify": "space-between",
|
|
82
99
|
"direction": "horizontal",
|
|
100
|
+
"type": "stack",
|
|
83
101
|
"gap": "md",
|
|
84
|
-
"justify": "space-between",
|
|
85
102
|
"align": "center",
|
|
86
103
|
"children": [
|
|
87
104
|
{
|
|
88
|
-
"type": "stack",
|
|
89
|
-
"direction": "horizontal",
|
|
90
|
-
"gap": "sm",
|
|
91
|
-
"align": "center",
|
|
92
105
|
"children": [
|
|
93
106
|
{
|
|
107
|
+
"size": "lg",
|
|
94
108
|
"type": "icon",
|
|
95
|
-
"name": "map-pin"
|
|
96
|
-
"size": "lg"
|
|
109
|
+
"name": "map-pin"
|
|
97
110
|
},
|
|
98
111
|
{
|
|
112
|
+
"variant": "h2",
|
|
99
113
|
"type": "typography",
|
|
100
|
-
"content": "Locations Picker"
|
|
101
|
-
"variant": "h2"
|
|
114
|
+
"content": "Locations Picker"
|
|
102
115
|
}
|
|
103
|
-
]
|
|
116
|
+
],
|
|
117
|
+
"type": "stack",
|
|
118
|
+
"gap": "sm",
|
|
119
|
+
"direction": "horizontal",
|
|
120
|
+
"align": "center"
|
|
104
121
|
}
|
|
105
122
|
]
|
|
106
123
|
},
|
|
@@ -108,60 +125,61 @@
|
|
|
108
125
|
"type": "divider"
|
|
109
126
|
},
|
|
110
127
|
{
|
|
111
|
-
"type": "data-grid",
|
|
112
|
-
"entity": "Location",
|
|
113
|
-
"emptyIcon": "inbox",
|
|
114
|
-
"emptyTitle": "No locations found",
|
|
115
|
-
"emptyDescription": "No locations are available to select.",
|
|
116
|
-
"itemActions": [
|
|
117
|
-
{
|
|
118
|
-
"label": "Select Location",
|
|
119
|
-
"event": "SELECT",
|
|
120
|
-
"variant": "ghost",
|
|
121
|
-
"size": "sm"
|
|
122
|
-
}
|
|
123
|
-
],
|
|
124
128
|
"columns": [
|
|
125
129
|
{
|
|
126
|
-
"name": "name",
|
|
127
130
|
"label": "Name",
|
|
131
|
+
"name": "name",
|
|
128
132
|
"variant": "h4",
|
|
129
133
|
"icon": "map-pin"
|
|
130
134
|
},
|
|
131
135
|
{
|
|
132
136
|
"name": "description",
|
|
133
|
-
"label": "Description",
|
|
134
|
-
"variant": "badge",
|
|
135
137
|
"colorMap": {
|
|
138
|
+
"error": "destructive",
|
|
139
|
+
"archived": "neutral",
|
|
136
140
|
"active": "success",
|
|
137
|
-
"completed": "success",
|
|
138
|
-
"done": "success",
|
|
139
141
|
"pending": "warning",
|
|
142
|
+
"completed": "success",
|
|
140
143
|
"draft": "warning",
|
|
141
|
-
"
|
|
144
|
+
"done": "success",
|
|
142
145
|
"inactive": "neutral",
|
|
143
|
-
"
|
|
146
|
+
"scheduled": "warning",
|
|
144
147
|
"disabled": "neutral",
|
|
145
|
-
"
|
|
146
|
-
"cancelled": "destructive"
|
|
147
|
-
|
|
148
|
-
|
|
148
|
+
"failed": "destructive",
|
|
149
|
+
"cancelled": "destructive"
|
|
150
|
+
},
|
|
151
|
+
"label": "Description",
|
|
152
|
+
"variant": "badge"
|
|
149
153
|
},
|
|
150
154
|
{
|
|
155
|
+
"variant": "caption",
|
|
151
156
|
"name": "status",
|
|
152
|
-
"label": "Status"
|
|
153
|
-
|
|
157
|
+
"label": "Status"
|
|
158
|
+
}
|
|
159
|
+
],
|
|
160
|
+
"entity": "Location",
|
|
161
|
+
"type": "data-grid",
|
|
162
|
+
"emptyTitle": "No locations found",
|
|
163
|
+
"emptyDescription": "No locations are available to select.",
|
|
164
|
+
"emptyIcon": "inbox",
|
|
165
|
+
"itemActions": [
|
|
166
|
+
{
|
|
167
|
+
"label": "Select Location",
|
|
168
|
+
"size": "sm",
|
|
169
|
+
"variant": "ghost",
|
|
170
|
+
"event": "SELECT"
|
|
154
171
|
}
|
|
155
172
|
]
|
|
156
173
|
},
|
|
157
174
|
{
|
|
158
|
-
"type": "floating-action-button",
|
|
159
175
|
"icon": "plus",
|
|
160
|
-
"event": "INIT",
|
|
161
176
|
"label": "Create",
|
|
162
|
-
"tooltip": "Create"
|
|
177
|
+
"tooltip": "Create",
|
|
178
|
+
"event": "INIT",
|
|
179
|
+
"type": "floating-action-button"
|
|
163
180
|
}
|
|
164
|
-
]
|
|
181
|
+
],
|
|
182
|
+
"gap": "lg"
|
|
165
183
|
}
|
|
166
184
|
]
|
|
167
185
|
]
|
|
@@ -172,16 +190,10 @@
|
|
|
172
190
|
"name": "LocationSelect",
|
|
173
191
|
"linkedEntity": "Location",
|
|
174
192
|
"events": {
|
|
175
|
-
"
|
|
176
|
-
"
|
|
193
|
+
"SAVE": "CONFIRM_SELECT",
|
|
194
|
+
"OPEN": "SELECT"
|
|
177
195
|
},
|
|
178
196
|
"effects": {
|
|
179
|
-
"INIT": [
|
|
180
|
-
[
|
|
181
|
-
"ref",
|
|
182
|
-
"Location"
|
|
183
|
-
]
|
|
184
|
-
],
|
|
185
197
|
"SELECT": [
|
|
186
198
|
[
|
|
187
199
|
"fetch",
|
|
@@ -194,51 +206,49 @@
|
|
|
194
206
|
"render-ui",
|
|
195
207
|
"modal",
|
|
196
208
|
{
|
|
197
|
-
"type": "stack",
|
|
198
|
-
"direction": "vertical",
|
|
199
209
|
"gap": "md",
|
|
200
210
|
"children": [
|
|
201
211
|
{
|
|
202
212
|
"type": "stack",
|
|
203
|
-
"direction": "horizontal",
|
|
204
|
-
"gap": "sm",
|
|
205
213
|
"align": "center",
|
|
214
|
+
"gap": "sm",
|
|
206
215
|
"children": [
|
|
207
216
|
{
|
|
208
217
|
"type": "icon",
|
|
209
|
-
"
|
|
210
|
-
"
|
|
218
|
+
"size": "md",
|
|
219
|
+
"name": "map-pin"
|
|
211
220
|
},
|
|
212
221
|
{
|
|
213
222
|
"type": "typography",
|
|
214
223
|
"variant": "h3",
|
|
215
224
|
"content": "@entity.name"
|
|
216
225
|
}
|
|
217
|
-
]
|
|
226
|
+
],
|
|
227
|
+
"direction": "horizontal"
|
|
218
228
|
},
|
|
219
229
|
{
|
|
220
230
|
"type": "divider"
|
|
221
231
|
},
|
|
222
232
|
{
|
|
223
|
-
"type": "stack",
|
|
224
|
-
"direction": "horizontal",
|
|
225
233
|
"gap": "md",
|
|
226
234
|
"children": [
|
|
227
235
|
{
|
|
228
|
-
"type": "typography",
|
|
229
236
|
"variant": "caption",
|
|
230
|
-
"content": "Name"
|
|
237
|
+
"content": "Name",
|
|
238
|
+
"type": "typography"
|
|
231
239
|
},
|
|
232
240
|
{
|
|
233
|
-
"type": "typography",
|
|
234
241
|
"variant": "body",
|
|
235
|
-
"content": "@entity.name"
|
|
242
|
+
"content": "@entity.name",
|
|
243
|
+
"type": "typography"
|
|
236
244
|
}
|
|
237
|
-
]
|
|
245
|
+
],
|
|
246
|
+
"type": "stack",
|
|
247
|
+
"direction": "horizontal"
|
|
238
248
|
},
|
|
239
249
|
{
|
|
240
|
-
"type": "stack",
|
|
241
250
|
"direction": "horizontal",
|
|
251
|
+
"type": "stack",
|
|
242
252
|
"gap": "md",
|
|
243
253
|
"children": [
|
|
244
254
|
{
|
|
@@ -248,49 +258,47 @@
|
|
|
248
258
|
},
|
|
249
259
|
{
|
|
250
260
|
"type": "typography",
|
|
251
|
-
"
|
|
252
|
-
"
|
|
261
|
+
"content": "@entity.description",
|
|
262
|
+
"variant": "body"
|
|
253
263
|
}
|
|
254
264
|
]
|
|
255
265
|
},
|
|
256
266
|
{
|
|
257
|
-
"type": "stack",
|
|
258
267
|
"direction": "horizontal",
|
|
259
268
|
"gap": "md",
|
|
260
269
|
"children": [
|
|
261
270
|
{
|
|
271
|
+
"content": "Status",
|
|
262
272
|
"type": "typography",
|
|
263
|
-
"variant": "caption"
|
|
264
|
-
"content": "Status"
|
|
273
|
+
"variant": "caption"
|
|
265
274
|
},
|
|
266
275
|
{
|
|
267
|
-
"type": "typography",
|
|
268
276
|
"variant": "body",
|
|
269
|
-
"content": "@entity.status"
|
|
277
|
+
"content": "@entity.status",
|
|
278
|
+
"type": "typography"
|
|
270
279
|
}
|
|
271
|
-
]
|
|
280
|
+
],
|
|
281
|
+
"type": "stack"
|
|
272
282
|
},
|
|
273
283
|
{
|
|
274
|
-
"type": "stack",
|
|
275
284
|
"direction": "horizontal",
|
|
276
285
|
"gap": "md",
|
|
277
286
|
"children": [
|
|
278
287
|
{
|
|
279
|
-
"
|
|
288
|
+
"content": "Created At",
|
|
280
289
|
"variant": "caption",
|
|
281
|
-
"
|
|
290
|
+
"type": "typography"
|
|
282
291
|
},
|
|
283
292
|
{
|
|
284
|
-
"
|
|
293
|
+
"content": "@entity.createdAt",
|
|
285
294
|
"variant": "body",
|
|
286
|
-
"
|
|
295
|
+
"type": "typography"
|
|
287
296
|
}
|
|
288
|
-
]
|
|
297
|
+
],
|
|
298
|
+
"type": "stack"
|
|
289
299
|
},
|
|
290
300
|
{
|
|
291
|
-
"type": "stack",
|
|
292
301
|
"direction": "horizontal",
|
|
293
|
-
"gap": "md",
|
|
294
302
|
"children": [
|
|
295
303
|
{
|
|
296
304
|
"type": "typography",
|
|
@@ -298,57 +306,81 @@
|
|
|
298
306
|
"content": "Pending ID"
|
|
299
307
|
},
|
|
300
308
|
{
|
|
309
|
+
"content": "@entity.pendingId",
|
|
301
310
|
"type": "typography",
|
|
302
|
-
"variant": "body"
|
|
303
|
-
"content": "@entity.pendingId"
|
|
311
|
+
"variant": "body"
|
|
304
312
|
}
|
|
305
|
-
]
|
|
313
|
+
],
|
|
314
|
+
"gap": "md",
|
|
315
|
+
"type": "stack"
|
|
306
316
|
},
|
|
307
317
|
{
|
|
308
318
|
"type": "divider"
|
|
309
319
|
},
|
|
310
320
|
{
|
|
311
|
-
"type": "stack",
|
|
312
321
|
"direction": "horizontal",
|
|
313
322
|
"gap": "sm",
|
|
314
|
-
"
|
|
323
|
+
"type": "stack",
|
|
315
324
|
"children": [
|
|
316
325
|
{
|
|
317
|
-
"
|
|
326
|
+
"variant": "ghost",
|
|
318
327
|
"label": "Cancel",
|
|
319
328
|
"event": "CLOSE",
|
|
320
|
-
"
|
|
329
|
+
"type": "button"
|
|
321
330
|
},
|
|
322
331
|
{
|
|
323
|
-
"type": "button",
|
|
324
332
|
"label": "Confirm Selection",
|
|
333
|
+
"icon": "check",
|
|
334
|
+
"type": "button",
|
|
325
335
|
"event": "CONFIRM_SELECT",
|
|
326
|
-
"variant": "primary"
|
|
327
|
-
"icon": "check"
|
|
336
|
+
"variant": "primary"
|
|
328
337
|
}
|
|
329
|
-
]
|
|
338
|
+
],
|
|
339
|
+
"justify": "end"
|
|
330
340
|
}
|
|
331
|
-
]
|
|
341
|
+
],
|
|
342
|
+
"type": "stack",
|
|
343
|
+
"direction": "vertical"
|
|
332
344
|
}
|
|
333
345
|
]
|
|
334
346
|
],
|
|
335
|
-
"
|
|
347
|
+
"INIT": [
|
|
348
|
+
[
|
|
349
|
+
"ref",
|
|
350
|
+
"Location"
|
|
351
|
+
]
|
|
352
|
+
],
|
|
353
|
+
"CONFIRM_SELECT": [
|
|
336
354
|
[
|
|
337
355
|
"render-ui",
|
|
338
356
|
"modal",
|
|
339
357
|
null
|
|
340
358
|
],
|
|
341
359
|
[
|
|
342
|
-
"
|
|
343
|
-
"
|
|
344
|
-
|
|
360
|
+
"render-ui",
|
|
361
|
+
"main",
|
|
362
|
+
{
|
|
363
|
+
"type": "box"
|
|
364
|
+
}
|
|
345
365
|
]
|
|
346
366
|
],
|
|
347
|
-
"
|
|
367
|
+
"CLOSE": [
|
|
348
368
|
[
|
|
349
369
|
"render-ui",
|
|
350
370
|
"modal",
|
|
351
371
|
null
|
|
372
|
+
],
|
|
373
|
+
[
|
|
374
|
+
"render-ui",
|
|
375
|
+
"main",
|
|
376
|
+
{
|
|
377
|
+
"type": "box"
|
|
378
|
+
}
|
|
379
|
+
],
|
|
380
|
+
[
|
|
381
|
+
"notify",
|
|
382
|
+
"Cancelled",
|
|
383
|
+
"info"
|
|
352
384
|
]
|
|
353
385
|
]
|
|
354
386
|
}
|
|
@@ -358,8 +390,8 @@
|
|
|
358
390
|
"name": "LocationConfirmSelect",
|
|
359
391
|
"linkedEntity": "Location",
|
|
360
392
|
"events": {
|
|
361
|
-
"
|
|
362
|
-
"
|
|
393
|
+
"CONFIRM": "CONFIRMED",
|
|
394
|
+
"REQUEST": "CONFIRM_SELECT"
|
|
363
395
|
},
|
|
364
396
|
"effects": {
|
|
365
397
|
"INIT": [
|
|
@@ -385,15 +417,14 @@
|
|
|
385
417
|
"render-ui",
|
|
386
418
|
"modal",
|
|
387
419
|
{
|
|
388
|
-
"type": "stack",
|
|
389
420
|
"direction": "vertical",
|
|
390
|
-
"
|
|
421
|
+
"type": "stack",
|
|
391
422
|
"children": [
|
|
392
423
|
{
|
|
393
|
-
"type": "stack",
|
|
394
|
-
"direction": "horizontal",
|
|
395
|
-
"gap": "sm",
|
|
396
424
|
"align": "center",
|
|
425
|
+
"gap": "sm",
|
|
426
|
+
"direction": "horizontal",
|
|
427
|
+
"type": "stack",
|
|
397
428
|
"children": [
|
|
398
429
|
{
|
|
399
430
|
"type": "icon",
|
|
@@ -401,9 +432,9 @@
|
|
|
401
432
|
"size": "md"
|
|
402
433
|
},
|
|
403
434
|
{
|
|
404
|
-
"
|
|
435
|
+
"variant": "h3",
|
|
405
436
|
"content": "Confirm Location Selection",
|
|
406
|
-
"
|
|
437
|
+
"type": "typography"
|
|
407
438
|
}
|
|
408
439
|
]
|
|
409
440
|
},
|
|
@@ -411,32 +442,33 @@
|
|
|
411
442
|
"type": "divider"
|
|
412
443
|
},
|
|
413
444
|
{
|
|
414
|
-
"type": "alert",
|
|
415
445
|
"variant": "danger",
|
|
416
|
-
"message": "Are you sure you want to select this location?"
|
|
446
|
+
"message": "Are you sure you want to select this location?",
|
|
447
|
+
"type": "alert"
|
|
417
448
|
},
|
|
418
449
|
{
|
|
450
|
+
"justify": "end",
|
|
451
|
+
"gap": "sm",
|
|
419
452
|
"type": "stack",
|
|
420
453
|
"direction": "horizontal",
|
|
421
|
-
"gap": "sm",
|
|
422
|
-
"justify": "end",
|
|
423
454
|
"children": [
|
|
424
455
|
{
|
|
425
456
|
"type": "button",
|
|
426
|
-
"label": "Cancel",
|
|
427
457
|
"event": "CANCEL",
|
|
428
|
-
"variant": "ghost"
|
|
458
|
+
"variant": "ghost",
|
|
459
|
+
"label": "Cancel"
|
|
429
460
|
},
|
|
430
461
|
{
|
|
431
|
-
"
|
|
462
|
+
"icon": "check",
|
|
432
463
|
"label": "Confirm",
|
|
433
464
|
"event": "CONFIRMED",
|
|
434
|
-
"
|
|
435
|
-
"
|
|
465
|
+
"type": "button",
|
|
466
|
+
"variant": "danger"
|
|
436
467
|
}
|
|
437
468
|
]
|
|
438
469
|
}
|
|
439
|
-
]
|
|
470
|
+
],
|
|
471
|
+
"gap": "md"
|
|
440
472
|
}
|
|
441
473
|
]
|
|
442
474
|
],
|
|
@@ -450,28 +482,49 @@
|
|
|
450
482
|
"modal",
|
|
451
483
|
null
|
|
452
484
|
],
|
|
485
|
+
[
|
|
486
|
+
"render-ui",
|
|
487
|
+
"main",
|
|
488
|
+
{
|
|
489
|
+
"type": "box"
|
|
490
|
+
}
|
|
491
|
+
],
|
|
453
492
|
[
|
|
454
493
|
"ref",
|
|
455
494
|
"Location"
|
|
456
495
|
]
|
|
457
496
|
],
|
|
458
|
-
"
|
|
497
|
+
"CLOSE": [
|
|
459
498
|
[
|
|
460
499
|
"render-ui",
|
|
461
500
|
"modal",
|
|
462
501
|
null
|
|
463
502
|
],
|
|
503
|
+
[
|
|
504
|
+
"render-ui",
|
|
505
|
+
"main",
|
|
506
|
+
{
|
|
507
|
+
"type": "box"
|
|
508
|
+
}
|
|
509
|
+
],
|
|
464
510
|
[
|
|
465
511
|
"ref",
|
|
466
512
|
"Location"
|
|
467
513
|
]
|
|
468
514
|
],
|
|
469
|
-
"
|
|
515
|
+
"CANCEL": [
|
|
470
516
|
[
|
|
471
517
|
"render-ui",
|
|
472
518
|
"modal",
|
|
473
519
|
null
|
|
474
520
|
],
|
|
521
|
+
[
|
|
522
|
+
"render-ui",
|
|
523
|
+
"main",
|
|
524
|
+
{
|
|
525
|
+
"type": "box"
|
|
526
|
+
}
|
|
527
|
+
],
|
|
475
528
|
[
|
|
476
529
|
"ref",
|
|
477
530
|
"Location"
|
|
@@ -499,4 +552,4 @@
|
|
|
499
552
|
]
|
|
500
553
|
}
|
|
501
554
|
]
|
|
502
|
-
}
|
|
555
|
+
}
|