@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-detail",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-detail as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "DetailRecordOrbital",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
],
|
|
18
18
|
"entity": {
|
|
19
19
|
"name": "DetailRecord",
|
|
20
|
-
"persistence": "persistent",
|
|
21
20
|
"collection": "detailrecords",
|
|
21
|
+
"persistence": "persistent",
|
|
22
22
|
"fields": [
|
|
23
23
|
{
|
|
24
24
|
"name": "id",
|
|
@@ -53,33 +53,31 @@
|
|
|
53
53
|
"ref": "Browse.traits.BrowseItemBrowse",
|
|
54
54
|
"name": "DetailRecordBrowse",
|
|
55
55
|
"linkedEntity": "DetailRecord",
|
|
56
|
+
"listens": [
|
|
57
|
+
{
|
|
58
|
+
"event": "DETAIL_RECORD_CREATED",
|
|
59
|
+
"triggers": "INIT",
|
|
60
|
+
"source": {
|
|
61
|
+
"kind": "trait",
|
|
62
|
+
"trait": "DetailRecordCreate"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
],
|
|
56
66
|
"effects": {
|
|
57
|
-
"
|
|
58
|
-
[
|
|
59
|
-
"ref",
|
|
60
|
-
"DetailRecord"
|
|
61
|
-
],
|
|
67
|
+
"BrowseItemLoaded": [
|
|
62
68
|
[
|
|
63
69
|
"render-ui",
|
|
64
70
|
"main",
|
|
65
71
|
{
|
|
66
72
|
"type": "stack",
|
|
67
|
-
"direction": "vertical",
|
|
68
|
-
"gap": "lg",
|
|
69
|
-
"className": "max-w-5xl mx-auto w-full",
|
|
70
73
|
"children": [
|
|
71
74
|
{
|
|
72
|
-
"type": "stack",
|
|
73
|
-
"direction": "horizontal",
|
|
74
75
|
"gap": "md",
|
|
75
76
|
"justify": "space-between",
|
|
76
|
-
"align": "center",
|
|
77
77
|
"children": [
|
|
78
78
|
{
|
|
79
79
|
"type": "stack",
|
|
80
|
-
"direction": "horizontal",
|
|
81
80
|
"gap": "sm",
|
|
82
|
-
"align": "center",
|
|
83
81
|
"children": [
|
|
84
82
|
{
|
|
85
83
|
"type": "icon",
|
|
@@ -87,81 +85,74 @@
|
|
|
87
85
|
"size": "lg"
|
|
88
86
|
},
|
|
89
87
|
{
|
|
88
|
+
"variant": "h2",
|
|
90
89
|
"type": "typography",
|
|
91
|
-
"content": "DetailRecords"
|
|
92
|
-
"variant": "h2"
|
|
90
|
+
"content": "DetailRecords"
|
|
93
91
|
}
|
|
94
|
-
]
|
|
92
|
+
],
|
|
93
|
+
"direction": "horizontal",
|
|
94
|
+
"align": "center"
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
|
|
102
|
-
"type": "button",
|
|
103
|
-
"label": "Create DetailRecord",
|
|
104
|
-
"event": "CREATE",
|
|
105
|
-
"variant": "primary",
|
|
106
|
-
"icon": "plus"
|
|
107
|
-
}
|
|
108
|
-
]
|
|
97
|
+
"event": "CREATE",
|
|
98
|
+
"label": "Create DetailRecord",
|
|
99
|
+
"icon": "plus",
|
|
100
|
+
"type": "button",
|
|
101
|
+
"variant": "primary"
|
|
109
102
|
}
|
|
110
|
-
]
|
|
103
|
+
],
|
|
104
|
+
"type": "stack",
|
|
105
|
+
"align": "center",
|
|
106
|
+
"direction": "horizontal"
|
|
111
107
|
},
|
|
112
108
|
{
|
|
113
109
|
"type": "divider"
|
|
114
110
|
},
|
|
115
111
|
{
|
|
116
|
-
"type": "data-grid",
|
|
117
|
-
"entity": "DetailRecord",
|
|
118
|
-
"emptyIcon": "inbox",
|
|
119
112
|
"emptyTitle": "No detailrecords yet",
|
|
120
113
|
"emptyDescription": "Create your first detailrecord to get started.",
|
|
121
|
-
"itemActions": [
|
|
122
|
-
{
|
|
123
|
-
"label": "View",
|
|
124
|
-
"event": "VIEW",
|
|
125
|
-
"variant": "ghost",
|
|
126
|
-
"size": "sm"
|
|
127
|
-
}
|
|
128
|
-
],
|
|
129
114
|
"columns": [
|
|
130
115
|
{
|
|
131
|
-
"
|
|
116
|
+
"icon": "file-text",
|
|
132
117
|
"label": "Name",
|
|
133
|
-
"
|
|
134
|
-
"
|
|
118
|
+
"name": "name",
|
|
119
|
+
"variant": "h4"
|
|
135
120
|
},
|
|
136
121
|
{
|
|
137
|
-
"name": "description",
|
|
138
122
|
"label": "Description",
|
|
139
123
|
"variant": "badge",
|
|
140
|
-
"
|
|
141
|
-
"active": "success",
|
|
142
|
-
"completed": "success",
|
|
143
|
-
"done": "success",
|
|
144
|
-
"pending": "warning",
|
|
145
|
-
"draft": "warning",
|
|
146
|
-
"scheduled": "warning",
|
|
147
|
-
"inactive": "neutral",
|
|
148
|
-
"archived": "neutral",
|
|
149
|
-
"disabled": "neutral",
|
|
150
|
-
"error": "destructive",
|
|
151
|
-
"cancelled": "destructive",
|
|
152
|
-
"failed": "destructive"
|
|
153
|
-
}
|
|
124
|
+
"name": "description"
|
|
154
125
|
},
|
|
155
126
|
{
|
|
156
|
-
"name": "status",
|
|
157
127
|
"label": "Status",
|
|
128
|
+
"name": "status",
|
|
158
129
|
"variant": "caption"
|
|
159
130
|
}
|
|
131
|
+
],
|
|
132
|
+
"entity": "DetailRecord",
|
|
133
|
+
"emptyIcon": "inbox",
|
|
134
|
+
"type": "data-grid",
|
|
135
|
+
"itemActions": [
|
|
136
|
+
{
|
|
137
|
+
"label": "View",
|
|
138
|
+
"size": "sm",
|
|
139
|
+
"event": "VIEW",
|
|
140
|
+
"variant": "ghost"
|
|
141
|
+
}
|
|
160
142
|
]
|
|
161
143
|
}
|
|
162
|
-
]
|
|
144
|
+
],
|
|
145
|
+
"direction": "vertical",
|
|
146
|
+
"gap": "lg",
|
|
147
|
+
"className": "max-w-5xl mx-auto w-full"
|
|
163
148
|
}
|
|
164
149
|
]
|
|
150
|
+
],
|
|
151
|
+
"INIT": [
|
|
152
|
+
[
|
|
153
|
+
"fetch",
|
|
154
|
+
"DetailRecord"
|
|
155
|
+
]
|
|
165
156
|
]
|
|
166
157
|
}
|
|
167
158
|
},
|
|
@@ -170,41 +161,50 @@
|
|
|
170
161
|
"name": "DetailRecordCreate",
|
|
171
162
|
"linkedEntity": "DetailRecord",
|
|
172
163
|
"events": {
|
|
164
|
+
"SAVE": "DETAIL_RECORD_CREATED",
|
|
173
165
|
"OPEN": "CREATE"
|
|
174
166
|
},
|
|
175
167
|
"effects": {
|
|
176
|
-
"
|
|
168
|
+
"CLOSE": [
|
|
177
169
|
[
|
|
178
|
-
"
|
|
179
|
-
"
|
|
170
|
+
"render-ui",
|
|
171
|
+
"modal",
|
|
172
|
+
null
|
|
173
|
+
],
|
|
174
|
+
[
|
|
175
|
+
"render-ui",
|
|
176
|
+
"main",
|
|
177
|
+
{
|
|
178
|
+
"type": "box"
|
|
179
|
+
}
|
|
180
|
+
],
|
|
181
|
+
[
|
|
182
|
+
"notify",
|
|
183
|
+
"Cancelled",
|
|
184
|
+
"info"
|
|
180
185
|
]
|
|
181
186
|
],
|
|
182
187
|
"CREATE": [
|
|
183
|
-
[
|
|
184
|
-
"fetch",
|
|
185
|
-
"DetailRecord"
|
|
186
|
-
],
|
|
187
188
|
[
|
|
188
189
|
"render-ui",
|
|
189
190
|
"modal",
|
|
190
191
|
{
|
|
191
|
-
"type": "stack",
|
|
192
|
-
"direction": "vertical",
|
|
193
192
|
"gap": "md",
|
|
193
|
+
"type": "stack",
|
|
194
194
|
"children": [
|
|
195
195
|
{
|
|
196
|
+
"gap": "sm",
|
|
196
197
|
"type": "stack",
|
|
197
198
|
"direction": "horizontal",
|
|
198
|
-
"gap": "sm",
|
|
199
199
|
"children": [
|
|
200
200
|
{
|
|
201
|
-
"type": "icon",
|
|
202
201
|
"name": "plus-circle",
|
|
203
|
-
"size": "md"
|
|
202
|
+
"size": "md",
|
|
203
|
+
"type": "icon"
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
|
-
"type": "typography",
|
|
207
206
|
"content": "New DetailRecord",
|
|
207
|
+
"type": "typography",
|
|
208
208
|
"variant": "h3"
|
|
209
209
|
}
|
|
210
210
|
]
|
|
@@ -214,7 +214,6 @@
|
|
|
214
214
|
},
|
|
215
215
|
{
|
|
216
216
|
"type": "form-section",
|
|
217
|
-
"entity": "DetailRecord",
|
|
218
217
|
"mode": "create",
|
|
219
218
|
"submitEvent": "SAVE",
|
|
220
219
|
"cancelEvent": "CLOSE",
|
|
@@ -222,25 +221,21 @@
|
|
|
222
221
|
"name",
|
|
223
222
|
"description",
|
|
224
223
|
"status"
|
|
225
|
-
]
|
|
224
|
+
],
|
|
225
|
+
"entity": "DetailRecord"
|
|
226
226
|
}
|
|
227
|
-
]
|
|
227
|
+
],
|
|
228
|
+
"direction": "vertical"
|
|
228
229
|
}
|
|
229
230
|
]
|
|
230
231
|
],
|
|
231
|
-
"
|
|
232
|
-
[
|
|
233
|
-
"render-ui",
|
|
234
|
-
"modal",
|
|
235
|
-
null
|
|
236
|
-
],
|
|
232
|
+
"INIT": [
|
|
237
233
|
[
|
|
238
|
-
"
|
|
239
|
-
"
|
|
240
|
-
"info"
|
|
234
|
+
"fetch",
|
|
235
|
+
"DetailRecord"
|
|
241
236
|
]
|
|
242
237
|
],
|
|
243
|
-
"
|
|
238
|
+
"DETAIL_RECORD_CREATED": [
|
|
244
239
|
[
|
|
245
240
|
"persist",
|
|
246
241
|
"create",
|
|
@@ -251,6 +246,13 @@
|
|
|
251
246
|
"render-ui",
|
|
252
247
|
"modal",
|
|
253
248
|
null
|
|
249
|
+
],
|
|
250
|
+
[
|
|
251
|
+
"render-ui",
|
|
252
|
+
"main",
|
|
253
|
+
{
|
|
254
|
+
"type": "box"
|
|
255
|
+
}
|
|
254
256
|
]
|
|
255
257
|
]
|
|
256
258
|
}
|
|
@@ -260,15 +262,30 @@
|
|
|
260
262
|
"name": "DetailRecordView",
|
|
261
263
|
"linkedEntity": "DetailRecord",
|
|
262
264
|
"events": {
|
|
263
|
-
"OPEN": "VIEW"
|
|
265
|
+
"OPEN": "VIEW",
|
|
266
|
+
"SAVE": "DETAIL_RECORD_VIEWED"
|
|
264
267
|
},
|
|
265
268
|
"effects": {
|
|
266
269
|
"INIT": [
|
|
267
270
|
[
|
|
268
|
-
"
|
|
271
|
+
"fetch",
|
|
269
272
|
"DetailRecord"
|
|
270
273
|
]
|
|
271
274
|
],
|
|
275
|
+
"DETAIL_RECORD_VIEWED": [
|
|
276
|
+
[
|
|
277
|
+
"render-ui",
|
|
278
|
+
"modal",
|
|
279
|
+
null
|
|
280
|
+
],
|
|
281
|
+
[
|
|
282
|
+
"render-ui",
|
|
283
|
+
"main",
|
|
284
|
+
{
|
|
285
|
+
"type": "box"
|
|
286
|
+
}
|
|
287
|
+
]
|
|
288
|
+
],
|
|
272
289
|
"VIEW": [
|
|
273
290
|
[
|
|
274
291
|
"fetch",
|
|
@@ -281,19 +298,19 @@
|
|
|
281
298
|
"render-ui",
|
|
282
299
|
"modal",
|
|
283
300
|
{
|
|
284
|
-
"type": "stack",
|
|
285
301
|
"direction": "vertical",
|
|
302
|
+
"type": "stack",
|
|
286
303
|
"gap": "md",
|
|
287
304
|
"children": [
|
|
288
305
|
{
|
|
289
306
|
"type": "stack",
|
|
290
|
-
"direction": "horizontal",
|
|
291
307
|
"gap": "sm",
|
|
308
|
+
"direction": "horizontal",
|
|
292
309
|
"align": "center",
|
|
293
310
|
"children": [
|
|
294
311
|
{
|
|
295
|
-
"type": "icon",
|
|
296
312
|
"name": "eye",
|
|
313
|
+
"type": "icon",
|
|
297
314
|
"size": "md"
|
|
298
315
|
},
|
|
299
316
|
{
|
|
@@ -307,55 +324,38 @@
|
|
|
307
324
|
"type": "divider"
|
|
308
325
|
},
|
|
309
326
|
{
|
|
310
|
-
"type": "stack",
|
|
311
|
-
"direction": "horizontal",
|
|
312
327
|
"gap": "md",
|
|
328
|
+
"direction": "horizontal",
|
|
313
329
|
"children": [
|
|
314
330
|
{
|
|
331
|
+
"content": "Name",
|
|
315
332
|
"type": "typography",
|
|
316
|
-
"variant": "caption"
|
|
317
|
-
"content": "Name"
|
|
333
|
+
"variant": "caption"
|
|
318
334
|
},
|
|
319
335
|
{
|
|
320
|
-
"type": "typography",
|
|
321
336
|
"variant": "body",
|
|
337
|
+
"type": "typography",
|
|
322
338
|
"content": "@entity.name"
|
|
323
339
|
}
|
|
324
|
-
]
|
|
340
|
+
],
|
|
341
|
+
"type": "stack"
|
|
325
342
|
},
|
|
326
343
|
{
|
|
327
|
-
"type": "stack",
|
|
328
|
-
"direction": "horizontal",
|
|
329
|
-
"gap": "md",
|
|
330
344
|
"children": [
|
|
331
345
|
{
|
|
332
|
-
"type": "typography",
|
|
333
346
|
"variant": "caption",
|
|
334
|
-
"content": "Description"
|
|
347
|
+
"content": "Description",
|
|
348
|
+
"type": "typography"
|
|
335
349
|
},
|
|
336
350
|
{
|
|
337
351
|
"type": "typography",
|
|
338
352
|
"variant": "body",
|
|
339
353
|
"content": "@entity.description"
|
|
340
354
|
}
|
|
341
|
-
]
|
|
342
|
-
},
|
|
343
|
-
{
|
|
355
|
+
],
|
|
344
356
|
"type": "stack",
|
|
345
357
|
"direction": "horizontal",
|
|
346
|
-
"gap": "md"
|
|
347
|
-
"children": [
|
|
348
|
-
{
|
|
349
|
-
"type": "typography",
|
|
350
|
-
"variant": "caption",
|
|
351
|
-
"content": "Status"
|
|
352
|
-
},
|
|
353
|
-
{
|
|
354
|
-
"type": "typography",
|
|
355
|
-
"variant": "body",
|
|
356
|
-
"content": "@entity.status"
|
|
357
|
-
}
|
|
358
|
-
]
|
|
358
|
+
"gap": "md"
|
|
359
359
|
},
|
|
360
360
|
{
|
|
361
361
|
"type": "stack",
|
|
@@ -364,13 +364,13 @@
|
|
|
364
364
|
"children": [
|
|
365
365
|
{
|
|
366
366
|
"type": "typography",
|
|
367
|
-
"
|
|
368
|
-
"
|
|
367
|
+
"content": "Status",
|
|
368
|
+
"variant": "caption"
|
|
369
369
|
},
|
|
370
370
|
{
|
|
371
|
+
"content": "@entity.status",
|
|
371
372
|
"type": "typography",
|
|
372
|
-
"variant": "body"
|
|
373
|
-
"content": "@entity.createdAt"
|
|
373
|
+
"variant": "body"
|
|
374
374
|
}
|
|
375
375
|
]
|
|
376
376
|
},
|
|
@@ -378,16 +378,16 @@
|
|
|
378
378
|
"type": "divider"
|
|
379
379
|
},
|
|
380
380
|
{
|
|
381
|
-
"type": "stack",
|
|
382
381
|
"direction": "horizontal",
|
|
383
|
-
"gap": "sm",
|
|
384
382
|
"justify": "end",
|
|
383
|
+
"gap": "sm",
|
|
384
|
+
"type": "stack",
|
|
385
385
|
"children": [
|
|
386
386
|
{
|
|
387
387
|
"type": "button",
|
|
388
|
-
"
|
|
388
|
+
"variant": "ghost",
|
|
389
389
|
"event": "CLOSE",
|
|
390
|
-
"
|
|
390
|
+
"label": "Close"
|
|
391
391
|
}
|
|
392
392
|
]
|
|
393
393
|
}
|
|
@@ -401,17 +401,12 @@
|
|
|
401
401
|
"modal",
|
|
402
402
|
null
|
|
403
403
|
],
|
|
404
|
-
[
|
|
405
|
-
"notify",
|
|
406
|
-
"Cancelled",
|
|
407
|
-
"info"
|
|
408
|
-
]
|
|
409
|
-
],
|
|
410
|
-
"SAVE": [
|
|
411
404
|
[
|
|
412
405
|
"render-ui",
|
|
413
|
-
"
|
|
414
|
-
|
|
406
|
+
"main",
|
|
407
|
+
{
|
|
408
|
+
"type": "box"
|
|
409
|
+
}
|
|
415
410
|
]
|
|
416
411
|
]
|
|
417
412
|
}
|
|
@@ -436,4 +431,4 @@
|
|
|
436
431
|
]
|
|
437
432
|
}
|
|
438
433
|
]
|
|
439
|
-
}
|
|
434
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-drawer-master-list",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-drawer-master-list as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "DrawerMasterOrbital",
|
|
@@ -63,7 +63,8 @@
|
|
|
63
63
|
],
|
|
64
64
|
"events": [
|
|
65
65
|
{
|
|
66
|
-
"key": "INIT"
|
|
66
|
+
"key": "INIT",
|
|
67
|
+
"name": "Initialize"
|
|
67
68
|
}
|
|
68
69
|
],
|
|
69
70
|
"transitions": [
|
|
@@ -72,11 +73,16 @@
|
|
|
72
73
|
"to": "composing",
|
|
73
74
|
"event": "INIT",
|
|
74
75
|
"effects": [
|
|
76
|
+
[
|
|
77
|
+
"fetch",
|
|
78
|
+
"DrawerMasterItem"
|
|
79
|
+
],
|
|
75
80
|
[
|
|
76
81
|
"render-ui",
|
|
77
82
|
"main",
|
|
78
83
|
{
|
|
79
84
|
"gap": "md",
|
|
85
|
+
"type": "stack",
|
|
80
86
|
"direction": "horizontal",
|
|
81
87
|
"children": [
|
|
82
88
|
{
|
|
@@ -97,14 +103,14 @@
|
|
|
97
103
|
"flex": "2"
|
|
98
104
|
}
|
|
99
105
|
}
|
|
100
|
-
]
|
|
101
|
-
"type": "stack"
|
|
106
|
+
]
|
|
102
107
|
}
|
|
103
108
|
]
|
|
104
109
|
]
|
|
105
110
|
}
|
|
106
111
|
]
|
|
107
|
-
}
|
|
112
|
+
},
|
|
113
|
+
"scope": "collection"
|
|
108
114
|
}
|
|
109
115
|
],
|
|
110
116
|
"pages": [
|
|
@@ -120,4 +126,4 @@
|
|
|
120
126
|
]
|
|
121
127
|
}
|
|
122
128
|
]
|
|
123
|
-
}
|
|
129
|
+
}
|