@almadar/std 7.0.0 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +501 -224
- 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 +232 -135
- 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 +26 -373
- 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 +309 -325
- 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 +29 -331
- 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 +170 -35
- 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 +164 -29
- 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 +263 -137
- 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 +326 -462
- 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 +132 -137
- package/behaviors/registry/molecules/std-drawer-master-list.orb +10 -5
- package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/behaviors/registry/molecules/std-filtered-list.orb +12 -7
- 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 +58 -8
- 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 +501 -224
- 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 +232 -135
- 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 +26 -373
- 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 +309 -325
- 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 +29 -331
- 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 +170 -35
- 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 +164 -29
- 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 +263 -137
- 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 +326 -462
- 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 +132 -137
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +10 -5
- package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +12 -7
- 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 +58 -8
- 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 +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-modal",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-modal as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ModalRecordOrbital",
|
|
@@ -40,52 +40,8 @@
|
|
|
40
40
|
"traits": [
|
|
41
41
|
{
|
|
42
42
|
"name": "ModalRecordModal",
|
|
43
|
-
"linkedEntity": "ModalRecord",
|
|
44
43
|
"category": "interaction",
|
|
45
|
-
"
|
|
46
|
-
{
|
|
47
|
-
"event": "SAVE",
|
|
48
|
-
"scope": "external"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"event": "ModalRecordLoaded",
|
|
52
|
-
"scope": "internal",
|
|
53
|
-
"description": "Fired when ModalRecord finishes loading",
|
|
54
|
-
"payload": [
|
|
55
|
-
{
|
|
56
|
-
"name": "id",
|
|
57
|
-
"type": "string"
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"name": "name",
|
|
61
|
-
"type": "string"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"name": "description",
|
|
65
|
-
"type": "string"
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
"name": "status",
|
|
69
|
-
"type": "string"
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"name": "createdAt",
|
|
73
|
-
"type": "string"
|
|
74
|
-
}
|
|
75
|
-
]
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"event": "ModalRecordLoadFailed",
|
|
79
|
-
"scope": "internal",
|
|
80
|
-
"description": "Fired when ModalRecord fails to load",
|
|
81
|
-
"payload": [
|
|
82
|
-
{
|
|
83
|
-
"name": "message",
|
|
84
|
-
"type": "string"
|
|
85
|
-
}
|
|
86
|
-
]
|
|
87
|
-
}
|
|
88
|
-
],
|
|
44
|
+
"linkedEntity": "ModalRecord",
|
|
89
45
|
"stateMachine": {
|
|
90
46
|
"states": [
|
|
91
47
|
{
|
|
@@ -125,14 +81,6 @@
|
|
|
125
81
|
"required": true
|
|
126
82
|
}
|
|
127
83
|
]
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"key": "ModalRecordLoaded",
|
|
131
|
-
"name": "ModalRecord loaded"
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
"key": "ModalRecordLoadFailed",
|
|
135
|
-
"name": "ModalRecord load failed"
|
|
136
84
|
}
|
|
137
85
|
],
|
|
138
86
|
"transitions": [
|
|
@@ -143,65 +91,7 @@
|
|
|
143
91
|
"effects": [
|
|
144
92
|
[
|
|
145
93
|
"fetch",
|
|
146
|
-
"ModalRecord"
|
|
147
|
-
{
|
|
148
|
-
"emit": {
|
|
149
|
-
"success": "ModalRecordLoaded",
|
|
150
|
-
"failure": "ModalRecordLoadFailed"
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
],
|
|
154
|
-
[
|
|
155
|
-
"render-ui",
|
|
156
|
-
"main",
|
|
157
|
-
{
|
|
158
|
-
"type": "stack",
|
|
159
|
-
"direction": "vertical",
|
|
160
|
-
"gap": "lg",
|
|
161
|
-
"children": [
|
|
162
|
-
{
|
|
163
|
-
"type": "stack",
|
|
164
|
-
"direction": "horizontal",
|
|
165
|
-
"gap": "md",
|
|
166
|
-
"justify": "space-between",
|
|
167
|
-
"children": [
|
|
168
|
-
{
|
|
169
|
-
"type": "stack",
|
|
170
|
-
"direction": "horizontal",
|
|
171
|
-
"gap": "md",
|
|
172
|
-
"children": [
|
|
173
|
-
{
|
|
174
|
-
"type": "icon",
|
|
175
|
-
"name": "layout-panel-top",
|
|
176
|
-
"size": "lg"
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
"type": "typography",
|
|
180
|
-
"content": "Details",
|
|
181
|
-
"variant": "h2"
|
|
182
|
-
}
|
|
183
|
-
]
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
"type": "button",
|
|
187
|
-
"label": "Open",
|
|
188
|
-
"event": "OPEN",
|
|
189
|
-
"variant": "primary",
|
|
190
|
-
"icon": "layout-panel-top"
|
|
191
|
-
}
|
|
192
|
-
]
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
"type": "divider"
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
"type": "empty-state",
|
|
199
|
-
"icon": "layout-panel-top",
|
|
200
|
-
"title": "Nothing open",
|
|
201
|
-
"description": "Click Open to view details in a modal overlay."
|
|
202
|
-
}
|
|
203
|
-
]
|
|
204
|
-
}
|
|
94
|
+
"ModalRecord"
|
|
205
95
|
]
|
|
206
96
|
]
|
|
207
97
|
},
|
|
@@ -214,107 +104,39 @@
|
|
|
214
104
|
"render-ui",
|
|
215
105
|
"modal",
|
|
216
106
|
{
|
|
217
|
-
"
|
|
218
|
-
"
|
|
219
|
-
"isOpen": true,
|
|
107
|
+
"gap": "md",
|
|
108
|
+
"type": "stack",
|
|
220
109
|
"children": [
|
|
221
110
|
{
|
|
222
|
-
"type": "stack",
|
|
223
|
-
"direction": "vertical",
|
|
224
|
-
"gap": "md",
|
|
225
111
|
"children": [
|
|
226
112
|
{
|
|
227
|
-
"
|
|
228
|
-
"
|
|
229
|
-
"
|
|
230
|
-
"children": [
|
|
231
|
-
{
|
|
232
|
-
"type": "typography",
|
|
233
|
-
"variant": "caption",
|
|
234
|
-
"content": "Name"
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
"type": "typography",
|
|
238
|
-
"variant": "body",
|
|
239
|
-
"content": [
|
|
240
|
-
"object/get",
|
|
241
|
-
[
|
|
242
|
-
"array/first",
|
|
243
|
-
"@entity"
|
|
244
|
-
],
|
|
245
|
-
"name"
|
|
246
|
-
]
|
|
247
|
-
}
|
|
248
|
-
]
|
|
113
|
+
"size": "md",
|
|
114
|
+
"name": "@config.icon",
|
|
115
|
+
"type": "icon"
|
|
249
116
|
},
|
|
250
117
|
{
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
"
|
|
254
|
-
"children": [
|
|
255
|
-
{
|
|
256
|
-
"type": "typography",
|
|
257
|
-
"variant": "caption",
|
|
258
|
-
"content": "Description"
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
"type": "typography",
|
|
262
|
-
"variant": "body",
|
|
263
|
-
"content": [
|
|
264
|
-
"object/get",
|
|
265
|
-
[
|
|
266
|
-
"array/first",
|
|
267
|
-
"@entity"
|
|
268
|
-
],
|
|
269
|
-
"description"
|
|
270
|
-
]
|
|
271
|
-
}
|
|
272
|
-
]
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
"type": "stack",
|
|
276
|
-
"direction": "horizontal",
|
|
277
|
-
"gap": "md",
|
|
278
|
-
"children": [
|
|
279
|
-
{
|
|
280
|
-
"type": "typography",
|
|
281
|
-
"variant": "caption",
|
|
282
|
-
"content": "Status"
|
|
283
|
-
},
|
|
284
|
-
{
|
|
285
|
-
"type": "typography",
|
|
286
|
-
"variant": "body",
|
|
287
|
-
"content": [
|
|
288
|
-
"object/get",
|
|
289
|
-
[
|
|
290
|
-
"array/first",
|
|
291
|
-
"@entity"
|
|
292
|
-
],
|
|
293
|
-
"status"
|
|
294
|
-
]
|
|
295
|
-
}
|
|
296
|
-
]
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
"type": "divider"
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
"type": "stack",
|
|
303
|
-
"direction": "horizontal",
|
|
304
|
-
"gap": "sm",
|
|
305
|
-
"justify": "end",
|
|
306
|
-
"children": [
|
|
307
|
-
{
|
|
308
|
-
"type": "button",
|
|
309
|
-
"label": "Close",
|
|
310
|
-
"event": "CLOSE",
|
|
311
|
-
"variant": "ghost"
|
|
312
|
-
}
|
|
313
|
-
]
|
|
118
|
+
"content": "@config.title",
|
|
119
|
+
"variant": "h3",
|
|
120
|
+
"type": "typography"
|
|
314
121
|
}
|
|
315
|
-
]
|
|
122
|
+
],
|
|
123
|
+
"type": "stack",
|
|
124
|
+
"direction": "horizontal",
|
|
125
|
+
"gap": "sm"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"type": "divider"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"mode": "@config.mode",
|
|
132
|
+
"type": "form-section",
|
|
133
|
+
"cancelEvent": "CLOSE",
|
|
134
|
+
"submitEvent": "SAVE",
|
|
135
|
+
"fields": "@config.fields",
|
|
136
|
+
"entity": "ModalRecord"
|
|
316
137
|
}
|
|
317
|
-
]
|
|
138
|
+
],
|
|
139
|
+
"direction": "vertical"
|
|
318
140
|
}
|
|
319
141
|
]
|
|
320
142
|
]
|
|
@@ -333,68 +155,6 @@
|
|
|
333
155
|
"notify",
|
|
334
156
|
"Cancelled",
|
|
335
157
|
"info"
|
|
336
|
-
],
|
|
337
|
-
[
|
|
338
|
-
"fetch",
|
|
339
|
-
"ModalRecord",
|
|
340
|
-
{
|
|
341
|
-
"emit": {
|
|
342
|
-
"success": "ModalRecordLoaded",
|
|
343
|
-
"failure": "ModalRecordLoadFailed"
|
|
344
|
-
}
|
|
345
|
-
}
|
|
346
|
-
],
|
|
347
|
-
[
|
|
348
|
-
"render-ui",
|
|
349
|
-
"main",
|
|
350
|
-
{
|
|
351
|
-
"type": "stack",
|
|
352
|
-
"direction": "vertical",
|
|
353
|
-
"gap": "lg",
|
|
354
|
-
"children": [
|
|
355
|
-
{
|
|
356
|
-
"type": "stack",
|
|
357
|
-
"direction": "horizontal",
|
|
358
|
-
"gap": "md",
|
|
359
|
-
"justify": "space-between",
|
|
360
|
-
"children": [
|
|
361
|
-
{
|
|
362
|
-
"type": "stack",
|
|
363
|
-
"direction": "horizontal",
|
|
364
|
-
"gap": "md",
|
|
365
|
-
"children": [
|
|
366
|
-
{
|
|
367
|
-
"type": "icon",
|
|
368
|
-
"name": "layout-panel-top",
|
|
369
|
-
"size": "lg"
|
|
370
|
-
},
|
|
371
|
-
{
|
|
372
|
-
"type": "typography",
|
|
373
|
-
"content": "Details",
|
|
374
|
-
"variant": "h2"
|
|
375
|
-
}
|
|
376
|
-
]
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
"type": "button",
|
|
380
|
-
"label": "Open",
|
|
381
|
-
"event": "OPEN",
|
|
382
|
-
"variant": "primary",
|
|
383
|
-
"icon": "layout-panel-top"
|
|
384
|
-
}
|
|
385
|
-
]
|
|
386
|
-
},
|
|
387
|
-
{
|
|
388
|
-
"type": "divider"
|
|
389
|
-
},
|
|
390
|
-
{
|
|
391
|
-
"type": "empty-state",
|
|
392
|
-
"icon": "layout-panel-top",
|
|
393
|
-
"title": "Nothing open",
|
|
394
|
-
"description": "Click Open to view details in a modal overlay."
|
|
395
|
-
}
|
|
396
|
-
]
|
|
397
|
-
}
|
|
398
158
|
]
|
|
399
159
|
]
|
|
400
160
|
},
|
|
@@ -407,68 +167,6 @@
|
|
|
407
167
|
"render-ui",
|
|
408
168
|
"modal",
|
|
409
169
|
null
|
|
410
|
-
],
|
|
411
|
-
[
|
|
412
|
-
"fetch",
|
|
413
|
-
"ModalRecord",
|
|
414
|
-
{
|
|
415
|
-
"emit": {
|
|
416
|
-
"success": "ModalRecordLoaded",
|
|
417
|
-
"failure": "ModalRecordLoadFailed"
|
|
418
|
-
}
|
|
419
|
-
}
|
|
420
|
-
],
|
|
421
|
-
[
|
|
422
|
-
"render-ui",
|
|
423
|
-
"main",
|
|
424
|
-
{
|
|
425
|
-
"type": "stack",
|
|
426
|
-
"direction": "vertical",
|
|
427
|
-
"gap": "lg",
|
|
428
|
-
"children": [
|
|
429
|
-
{
|
|
430
|
-
"type": "stack",
|
|
431
|
-
"direction": "horizontal",
|
|
432
|
-
"gap": "md",
|
|
433
|
-
"justify": "space-between",
|
|
434
|
-
"children": [
|
|
435
|
-
{
|
|
436
|
-
"type": "stack",
|
|
437
|
-
"direction": "horizontal",
|
|
438
|
-
"gap": "md",
|
|
439
|
-
"children": [
|
|
440
|
-
{
|
|
441
|
-
"type": "icon",
|
|
442
|
-
"name": "layout-panel-top",
|
|
443
|
-
"size": "lg"
|
|
444
|
-
},
|
|
445
|
-
{
|
|
446
|
-
"type": "typography",
|
|
447
|
-
"content": "Details",
|
|
448
|
-
"variant": "h2"
|
|
449
|
-
}
|
|
450
|
-
]
|
|
451
|
-
},
|
|
452
|
-
{
|
|
453
|
-
"type": "button",
|
|
454
|
-
"label": "Open",
|
|
455
|
-
"event": "OPEN",
|
|
456
|
-
"variant": "primary",
|
|
457
|
-
"icon": "layout-panel-top"
|
|
458
|
-
}
|
|
459
|
-
]
|
|
460
|
-
},
|
|
461
|
-
{
|
|
462
|
-
"type": "divider"
|
|
463
|
-
},
|
|
464
|
-
{
|
|
465
|
-
"type": "empty-state",
|
|
466
|
-
"icon": "layout-panel-top",
|
|
467
|
-
"title": "Nothing open",
|
|
468
|
-
"description": "Click Open to view details in a modal overlay."
|
|
469
|
-
}
|
|
470
|
-
]
|
|
471
|
-
}
|
|
472
170
|
]
|
|
473
171
|
]
|
|
474
172
|
}
|
|
@@ -490,4 +188,4 @@
|
|
|
490
188
|
]
|
|
491
189
|
}
|
|
492
190
|
]
|
|
493
|
-
}
|
|
191
|
+
}
|