@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-display",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-display as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "DisplayItemOrbital",
|
|
@@ -40,8 +40,48 @@
|
|
|
40
40
|
"traits": [
|
|
41
41
|
{
|
|
42
42
|
"name": "DisplayItemDisplay",
|
|
43
|
-
"linkedEntity": "DisplayItem",
|
|
44
43
|
"category": "interaction",
|
|
44
|
+
"linkedEntity": "DisplayItem",
|
|
45
|
+
"emits": [
|
|
46
|
+
{
|
|
47
|
+
"event": "DisplayItemLoaded",
|
|
48
|
+
"description": "Fired when DisplayItem finishes loading",
|
|
49
|
+
"scope": "internal",
|
|
50
|
+
"payload": [
|
|
51
|
+
{
|
|
52
|
+
"name": "id",
|
|
53
|
+
"type": "string"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "name",
|
|
57
|
+
"type": "string"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "description",
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "status",
|
|
65
|
+
"type": "string"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "createdAt",
|
|
69
|
+
"type": "string"
|
|
70
|
+
}
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"event": "DisplayItemLoadFailed",
|
|
75
|
+
"description": "Fired when DisplayItem fails to load",
|
|
76
|
+
"scope": "internal",
|
|
77
|
+
"payload": [
|
|
78
|
+
{
|
|
79
|
+
"name": "message",
|
|
80
|
+
"type": "string"
|
|
81
|
+
}
|
|
82
|
+
]
|
|
83
|
+
}
|
|
84
|
+
],
|
|
45
85
|
"stateMachine": {
|
|
46
86
|
"states": [
|
|
47
87
|
{
|
|
@@ -71,6 +111,20 @@
|
|
|
71
111
|
{
|
|
72
112
|
"key": "REFRESHED",
|
|
73
113
|
"name": "Refreshed"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"key": "DisplayItemLoaded",
|
|
117
|
+
"name": "DisplayItem loaded"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"key": "DisplayItemLoadFailed",
|
|
121
|
+
"name": "DisplayItem load failed",
|
|
122
|
+
"payload": [
|
|
123
|
+
{
|
|
124
|
+
"name": "message",
|
|
125
|
+
"type": "string"
|
|
126
|
+
}
|
|
127
|
+
]
|
|
74
128
|
}
|
|
75
129
|
],
|
|
76
130
|
"transitions": [
|
|
@@ -81,18 +135,20 @@
|
|
|
81
135
|
"effects": [
|
|
82
136
|
[
|
|
83
137
|
"fetch",
|
|
84
|
-
"DisplayItem"
|
|
138
|
+
"DisplayItem",
|
|
139
|
+
{
|
|
140
|
+
"emit": {
|
|
141
|
+
"failure": "DisplayItemLoadFailed",
|
|
142
|
+
"success": "DisplayItemLoaded"
|
|
143
|
+
}
|
|
144
|
+
}
|
|
85
145
|
],
|
|
86
146
|
[
|
|
87
147
|
"render-ui",
|
|
88
148
|
"main",
|
|
89
149
|
{
|
|
90
|
-
"type": "scaled-diagram",
|
|
91
150
|
"children": [
|
|
92
151
|
{
|
|
93
|
-
"type": "stack",
|
|
94
|
-
"direction": "vertical",
|
|
95
|
-
"gap": "lg",
|
|
96
152
|
"children": [
|
|
97
153
|
{
|
|
98
154
|
"type": "breadcrumb",
|
|
@@ -107,15 +163,11 @@
|
|
|
107
163
|
]
|
|
108
164
|
},
|
|
109
165
|
{
|
|
110
|
-
"type": "stack",
|
|
111
|
-
"direction": "horizontal",
|
|
112
166
|
"gap": "md",
|
|
167
|
+
"type": "stack",
|
|
113
168
|
"justify": "space-between",
|
|
114
169
|
"children": [
|
|
115
170
|
{
|
|
116
|
-
"type": "stack",
|
|
117
|
-
"direction": "horizontal",
|
|
118
|
-
"gap": "md",
|
|
119
171
|
"children": [
|
|
120
172
|
{
|
|
121
173
|
"type": "icon",
|
|
@@ -123,69 +175,47 @@
|
|
|
123
175
|
"size": "lg"
|
|
124
176
|
},
|
|
125
177
|
{
|
|
126
|
-
"
|
|
178
|
+
"variant": "h2",
|
|
127
179
|
"content": "DisplayItems",
|
|
128
|
-
"
|
|
180
|
+
"type": "typography"
|
|
129
181
|
}
|
|
130
|
-
]
|
|
182
|
+
],
|
|
183
|
+
"direction": "horizontal",
|
|
184
|
+
"gap": "md",
|
|
185
|
+
"type": "stack"
|
|
131
186
|
},
|
|
132
187
|
{
|
|
133
|
-
"type": "button",
|
|
134
188
|
"label": "Refresh",
|
|
189
|
+
"icon": "refresh-cw",
|
|
135
190
|
"event": "REFRESH",
|
|
136
191
|
"variant": "secondary",
|
|
137
|
-
"
|
|
192
|
+
"type": "button"
|
|
138
193
|
}
|
|
139
|
-
]
|
|
194
|
+
],
|
|
195
|
+
"direction": "horizontal"
|
|
140
196
|
},
|
|
141
197
|
{
|
|
142
198
|
"type": "divider"
|
|
143
199
|
},
|
|
144
|
-
{
|
|
145
|
-
"type": "stats-grid",
|
|
146
|
-
"columns": 3,
|
|
147
|
-
"children": [
|
|
148
|
-
{
|
|
149
|
-
"type": "stat-display",
|
|
150
|
-
"label": "Total",
|
|
151
|
-
"value": ["array/len", "@entity"]
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
"type": "stat-display",
|
|
155
|
-
"label": "Latest",
|
|
156
|
-
"value": ["object/get", ["array/first", "@entity"], "name"]
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
"type": "stat-display",
|
|
160
|
-
"label": "Status",
|
|
161
|
-
"value": "Healthy"
|
|
162
|
-
}
|
|
163
|
-
]
|
|
164
|
-
},
|
|
165
200
|
{
|
|
166
201
|
"type": "box",
|
|
167
202
|
"padding": "md",
|
|
168
203
|
"children": [
|
|
169
204
|
{
|
|
170
|
-
"type": "simple-grid",
|
|
171
|
-
"columns": 3,
|
|
172
205
|
"children": [
|
|
173
206
|
{
|
|
174
|
-
"type": "card",
|
|
175
207
|
"children": [
|
|
176
208
|
{
|
|
177
|
-
"type": "stack",
|
|
178
|
-
"direction": "vertical",
|
|
179
209
|
"gap": "sm",
|
|
210
|
+
"direction": "vertical",
|
|
211
|
+
"type": "stack",
|
|
180
212
|
"children": [
|
|
181
213
|
{
|
|
182
|
-
"type": "typography",
|
|
183
214
|
"variant": "caption",
|
|
215
|
+
"type": "typography",
|
|
184
216
|
"content": "Name"
|
|
185
217
|
},
|
|
186
218
|
{
|
|
187
|
-
"type": "typography",
|
|
188
|
-
"variant": "h3",
|
|
189
219
|
"content": [
|
|
190
220
|
"object/get",
|
|
191
221
|
[
|
|
@@ -193,19 +223,19 @@
|
|
|
193
223
|
"@entity"
|
|
194
224
|
],
|
|
195
225
|
"name"
|
|
196
|
-
]
|
|
226
|
+
],
|
|
227
|
+
"type": "typography",
|
|
228
|
+
"variant": "h3"
|
|
197
229
|
}
|
|
198
230
|
]
|
|
199
231
|
}
|
|
200
|
-
]
|
|
232
|
+
],
|
|
233
|
+
"type": "card"
|
|
201
234
|
},
|
|
202
235
|
{
|
|
203
|
-
"type": "card",
|
|
204
236
|
"children": [
|
|
205
237
|
{
|
|
206
|
-
"type": "stack",
|
|
207
238
|
"direction": "vertical",
|
|
208
|
-
"gap": "sm",
|
|
209
239
|
"children": [
|
|
210
240
|
{
|
|
211
241
|
"type": "typography",
|
|
@@ -214,7 +244,6 @@
|
|
|
214
244
|
},
|
|
215
245
|
{
|
|
216
246
|
"type": "typography",
|
|
217
|
-
"variant": "h3",
|
|
218
247
|
"content": [
|
|
219
248
|
"object/get",
|
|
220
249
|
[
|
|
@@ -222,19 +251,22 @@
|
|
|
222
251
|
"@entity"
|
|
223
252
|
],
|
|
224
253
|
"description"
|
|
225
|
-
]
|
|
254
|
+
],
|
|
255
|
+
"variant": "h3"
|
|
226
256
|
}
|
|
227
|
-
]
|
|
257
|
+
],
|
|
258
|
+
"gap": "sm",
|
|
259
|
+
"type": "stack"
|
|
228
260
|
}
|
|
229
|
-
]
|
|
261
|
+
],
|
|
262
|
+
"type": "card"
|
|
230
263
|
},
|
|
231
264
|
{
|
|
232
|
-
"type": "card",
|
|
233
265
|
"children": [
|
|
234
266
|
{
|
|
235
|
-
"type": "stack",
|
|
236
|
-
"direction": "vertical",
|
|
237
267
|
"gap": "sm",
|
|
268
|
+
"direction": "vertical",
|
|
269
|
+
"type": "stack",
|
|
238
270
|
"children": [
|
|
239
271
|
{
|
|
240
272
|
"type": "typography",
|
|
@@ -255,7 +287,8 @@
|
|
|
255
287
|
}
|
|
256
288
|
]
|
|
257
289
|
}
|
|
258
|
-
]
|
|
290
|
+
],
|
|
291
|
+
"type": "card"
|
|
259
292
|
},
|
|
260
293
|
{
|
|
261
294
|
"type": "card",
|
|
@@ -263,7 +296,6 @@
|
|
|
263
296
|
{
|
|
264
297
|
"type": "stack",
|
|
265
298
|
"direction": "vertical",
|
|
266
|
-
"gap": "sm",
|
|
267
299
|
"children": [
|
|
268
300
|
{
|
|
269
301
|
"type": "typography",
|
|
@@ -272,7 +304,6 @@
|
|
|
272
304
|
},
|
|
273
305
|
{
|
|
274
306
|
"type": "typography",
|
|
275
|
-
"variant": "h3",
|
|
276
307
|
"content": [
|
|
277
308
|
"object/get",
|
|
278
309
|
[
|
|
@@ -280,13 +311,17 @@
|
|
|
280
311
|
"@entity"
|
|
281
312
|
],
|
|
282
313
|
"createdAt"
|
|
283
|
-
]
|
|
314
|
+
],
|
|
315
|
+
"variant": "h3"
|
|
284
316
|
}
|
|
285
|
-
]
|
|
317
|
+
],
|
|
318
|
+
"gap": "sm"
|
|
286
319
|
}
|
|
287
320
|
]
|
|
288
321
|
}
|
|
289
|
-
]
|
|
322
|
+
],
|
|
323
|
+
"columns": 3.0,
|
|
324
|
+
"type": "simple-grid"
|
|
290
325
|
}
|
|
291
326
|
]
|
|
292
327
|
},
|
|
@@ -294,16 +329,13 @@
|
|
|
294
329
|
"type": "divider"
|
|
295
330
|
},
|
|
296
331
|
{
|
|
297
|
-
"type": "grid",
|
|
298
|
-
"columns": 2,
|
|
299
|
-
"gap": "md",
|
|
300
332
|
"children": [
|
|
301
333
|
{
|
|
302
334
|
"type": "card",
|
|
303
335
|
"children": [
|
|
304
336
|
{
|
|
305
|
-
"type": "typography",
|
|
306
337
|
"variant": "caption",
|
|
338
|
+
"type": "typography",
|
|
307
339
|
"content": "Chart View"
|
|
308
340
|
}
|
|
309
341
|
]
|
|
@@ -312,48 +344,50 @@
|
|
|
312
344
|
"type": "card",
|
|
313
345
|
"children": [
|
|
314
346
|
{
|
|
315
|
-
"type": "typography",
|
|
316
347
|
"variant": "caption",
|
|
317
|
-
"content": "Graph View"
|
|
348
|
+
"content": "Graph View",
|
|
349
|
+
"type": "typography"
|
|
318
350
|
}
|
|
319
351
|
]
|
|
320
352
|
}
|
|
321
|
-
]
|
|
353
|
+
],
|
|
354
|
+
"gap": "md",
|
|
355
|
+
"type": "grid",
|
|
356
|
+
"columns": 2.0
|
|
322
357
|
},
|
|
323
358
|
{
|
|
324
|
-
"type": "line-chart",
|
|
325
359
|
"data": [
|
|
326
360
|
{
|
|
327
|
-
"
|
|
328
|
-
"
|
|
361
|
+
"value": 12.0,
|
|
362
|
+
"date": "Jan"
|
|
329
363
|
},
|
|
330
364
|
{
|
|
331
365
|
"date": "Feb",
|
|
332
|
-
"value": 19
|
|
366
|
+
"value": 19.0
|
|
333
367
|
},
|
|
334
368
|
{
|
|
335
369
|
"date": "Mar",
|
|
336
|
-
"value": 15
|
|
370
|
+
"value": 15.0
|
|
337
371
|
},
|
|
338
372
|
{
|
|
339
373
|
"date": "Apr",
|
|
340
|
-
"value": 25
|
|
374
|
+
"value": 25.0
|
|
341
375
|
},
|
|
342
376
|
{
|
|
343
377
|
"date": "May",
|
|
344
|
-
"value": 22
|
|
378
|
+
"value": 22.0
|
|
345
379
|
},
|
|
346
380
|
{
|
|
347
|
-
"
|
|
348
|
-
"
|
|
381
|
+
"value": 30.0,
|
|
382
|
+
"date": "Jun"
|
|
349
383
|
}
|
|
350
384
|
],
|
|
351
|
-
"
|
|
385
|
+
"type": "line-chart",
|
|
352
386
|
"yKey": "value",
|
|
353
|
-
"title": "Trend"
|
|
387
|
+
"title": "Trend",
|
|
388
|
+
"xKey": "date"
|
|
354
389
|
},
|
|
355
390
|
{
|
|
356
|
-
"type": "chart-legend",
|
|
357
391
|
"items": [
|
|
358
392
|
{
|
|
359
393
|
"label": "Current",
|
|
@@ -363,65 +397,51 @@
|
|
|
363
397
|
"label": "Previous",
|
|
364
398
|
"color": "muted"
|
|
365
399
|
}
|
|
366
|
-
]
|
|
400
|
+
],
|
|
401
|
+
"type": "chart-legend"
|
|
367
402
|
},
|
|
368
403
|
{
|
|
404
|
+
"width": 400.0,
|
|
405
|
+
"height": 200.0,
|
|
369
406
|
"type": "graph-view",
|
|
370
407
|
"nodes": [
|
|
371
408
|
{
|
|
372
|
-
"
|
|
409
|
+
"x": 50.0,
|
|
373
410
|
"label": "Start",
|
|
374
|
-
"
|
|
375
|
-
"y": 100
|
|
411
|
+
"id": "a",
|
|
412
|
+
"y": 100.0
|
|
376
413
|
},
|
|
377
414
|
{
|
|
378
|
-
"id": "b",
|
|
379
415
|
"label": "Process",
|
|
380
|
-
"
|
|
381
|
-
"
|
|
416
|
+
"y": 50.0,
|
|
417
|
+
"id": "b",
|
|
418
|
+
"x": 200.0
|
|
382
419
|
},
|
|
383
420
|
{
|
|
384
|
-
"id": "c",
|
|
385
421
|
"label": "End",
|
|
386
|
-
"x": 350,
|
|
387
|
-
"
|
|
422
|
+
"x": 350.0,
|
|
423
|
+
"id": "c",
|
|
424
|
+
"y": 100.0
|
|
388
425
|
}
|
|
389
426
|
],
|
|
390
427
|
"edges": [
|
|
391
428
|
{
|
|
392
|
-
"
|
|
393
|
-
"
|
|
394
|
-
},
|
|
395
|
-
{
|
|
396
|
-
"from": "b",
|
|
397
|
-
"to": "c"
|
|
398
|
-
}
|
|
399
|
-
],
|
|
400
|
-
"width": 400,
|
|
401
|
-
"height": 200
|
|
402
|
-
},
|
|
403
|
-
{
|
|
404
|
-
"type": "accordion",
|
|
405
|
-
"items": [
|
|
406
|
-
{
|
|
407
|
-
"label": "Details",
|
|
408
|
-
"content": {
|
|
409
|
-
"type": "typography",
|
|
410
|
-
"content": "Grouped display details"
|
|
411
|
-
}
|
|
429
|
+
"to": "b",
|
|
430
|
+
"from": "a"
|
|
412
431
|
},
|
|
413
432
|
{
|
|
414
|
-
"
|
|
415
|
-
"
|
|
416
|
-
"type": "typography",
|
|
417
|
-
"content": "Recent activity"
|
|
418
|
-
}
|
|
433
|
+
"to": "c",
|
|
434
|
+
"from": "b"
|
|
419
435
|
}
|
|
420
436
|
]
|
|
421
437
|
}
|
|
422
|
-
]
|
|
438
|
+
],
|
|
439
|
+
"type": "stack",
|
|
440
|
+
"direction": "vertical",
|
|
441
|
+
"gap": "lg"
|
|
423
442
|
}
|
|
424
|
-
]
|
|
443
|
+
],
|
|
444
|
+
"type": "scaled-diagram"
|
|
425
445
|
}
|
|
426
446
|
]
|
|
427
447
|
]
|
|
@@ -433,7 +453,13 @@
|
|
|
433
453
|
"effects": [
|
|
434
454
|
[
|
|
435
455
|
"fetch",
|
|
436
|
-
"DisplayItem"
|
|
456
|
+
"DisplayItem",
|
|
457
|
+
{
|
|
458
|
+
"emit": {
|
|
459
|
+
"success": "DisplayItemLoaded",
|
|
460
|
+
"failure": "DisplayItemLoadFailed"
|
|
461
|
+
}
|
|
462
|
+
}
|
|
437
463
|
],
|
|
438
464
|
[
|
|
439
465
|
"render-ui",
|
|
@@ -442,9 +468,6 @@
|
|
|
442
468
|
"type": "scaled-diagram",
|
|
443
469
|
"children": [
|
|
444
470
|
{
|
|
445
|
-
"type": "stack",
|
|
446
|
-
"direction": "vertical",
|
|
447
|
-
"gap": "lg",
|
|
448
471
|
"children": [
|
|
449
472
|
{
|
|
450
473
|
"type": "breadcrumb",
|
|
@@ -460,9 +483,6 @@
|
|
|
460
483
|
},
|
|
461
484
|
{
|
|
462
485
|
"type": "stack",
|
|
463
|
-
"direction": "horizontal",
|
|
464
|
-
"gap": "md",
|
|
465
|
-
"justify": "space-between",
|
|
466
486
|
"children": [
|
|
467
487
|
{
|
|
468
488
|
"type": "stack",
|
|
@@ -475,65 +495,44 @@
|
|
|
475
495
|
"size": "lg"
|
|
476
496
|
},
|
|
477
497
|
{
|
|
478
|
-
"
|
|
498
|
+
"variant": "h2",
|
|
479
499
|
"content": "DisplayItems",
|
|
480
|
-
"
|
|
500
|
+
"type": "typography"
|
|
481
501
|
}
|
|
482
502
|
]
|
|
483
503
|
},
|
|
484
504
|
{
|
|
485
505
|
"type": "button",
|
|
486
|
-
"label": "Refresh",
|
|
487
506
|
"event": "REFRESH",
|
|
488
507
|
"variant": "secondary",
|
|
489
|
-
"icon": "refresh-cw"
|
|
508
|
+
"icon": "refresh-cw",
|
|
509
|
+
"label": "Refresh"
|
|
490
510
|
}
|
|
491
|
-
]
|
|
511
|
+
],
|
|
512
|
+
"direction": "horizontal",
|
|
513
|
+
"gap": "md",
|
|
514
|
+
"justify": "space-between"
|
|
492
515
|
},
|
|
493
516
|
{
|
|
494
517
|
"type": "divider"
|
|
495
518
|
},
|
|
496
|
-
{
|
|
497
|
-
"type": "stats-grid",
|
|
498
|
-
"columns": 3,
|
|
499
|
-
"children": [
|
|
500
|
-
{
|
|
501
|
-
"type": "stat-display",
|
|
502
|
-
"label": "Total",
|
|
503
|
-
"value": ["array/len", "@entity"]
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
"type": "stat-display",
|
|
507
|
-
"label": "Latest",
|
|
508
|
-
"value": ["object/get", ["array/first", "@entity"], "name"]
|
|
509
|
-
},
|
|
510
|
-
{
|
|
511
|
-
"type": "stat-display",
|
|
512
|
-
"label": "Status",
|
|
513
|
-
"value": "Healthy"
|
|
514
|
-
}
|
|
515
|
-
]
|
|
516
|
-
},
|
|
517
519
|
{
|
|
518
520
|
"type": "box",
|
|
519
521
|
"padding": "md",
|
|
520
522
|
"children": [
|
|
521
523
|
{
|
|
522
|
-
"type": "simple-grid",
|
|
523
|
-
"columns": 3,
|
|
524
524
|
"children": [
|
|
525
525
|
{
|
|
526
526
|
"type": "card",
|
|
527
527
|
"children": [
|
|
528
528
|
{
|
|
529
|
-
"type": "stack",
|
|
530
529
|
"direction": "vertical",
|
|
531
530
|
"gap": "sm",
|
|
532
531
|
"children": [
|
|
533
532
|
{
|
|
534
|
-
"type": "typography",
|
|
535
533
|
"variant": "caption",
|
|
536
|
-
"content": "Name"
|
|
534
|
+
"content": "Name",
|
|
535
|
+
"type": "typography"
|
|
537
536
|
},
|
|
538
537
|
{
|
|
539
538
|
"type": "typography",
|
|
@@ -547,7 +546,8 @@
|
|
|
547
546
|
"name"
|
|
548
547
|
]
|
|
549
548
|
}
|
|
550
|
-
]
|
|
549
|
+
],
|
|
550
|
+
"type": "stack"
|
|
551
551
|
}
|
|
552
552
|
]
|
|
553
553
|
},
|
|
@@ -557,12 +557,11 @@
|
|
|
557
557
|
{
|
|
558
558
|
"type": "stack",
|
|
559
559
|
"direction": "vertical",
|
|
560
|
-
"gap": "sm",
|
|
561
560
|
"children": [
|
|
562
561
|
{
|
|
563
|
-
"
|
|
562
|
+
"content": "Description",
|
|
564
563
|
"variant": "caption",
|
|
565
|
-
"
|
|
564
|
+
"type": "typography"
|
|
566
565
|
},
|
|
567
566
|
{
|
|
568
567
|
"type": "typography",
|
|
@@ -576,12 +575,12 @@
|
|
|
576
575
|
"description"
|
|
577
576
|
]
|
|
578
577
|
}
|
|
579
|
-
]
|
|
578
|
+
],
|
|
579
|
+
"gap": "sm"
|
|
580
580
|
}
|
|
581
581
|
]
|
|
582
582
|
},
|
|
583
583
|
{
|
|
584
|
-
"type": "card",
|
|
585
584
|
"children": [
|
|
586
585
|
{
|
|
587
586
|
"type": "stack",
|
|
@@ -607,7 +606,8 @@
|
|
|
607
606
|
}
|
|
608
607
|
]
|
|
609
608
|
}
|
|
610
|
-
]
|
|
609
|
+
],
|
|
610
|
+
"type": "card"
|
|
611
611
|
},
|
|
612
612
|
{
|
|
613
613
|
"type": "card",
|
|
@@ -615,7 +615,6 @@
|
|
|
615
615
|
{
|
|
616
616
|
"type": "stack",
|
|
617
617
|
"direction": "vertical",
|
|
618
|
-
"gap": "sm",
|
|
619
618
|
"children": [
|
|
620
619
|
{
|
|
621
620
|
"type": "typography",
|
|
@@ -624,7 +623,6 @@
|
|
|
624
623
|
},
|
|
625
624
|
{
|
|
626
625
|
"type": "typography",
|
|
627
|
-
"variant": "h3",
|
|
628
626
|
"content": [
|
|
629
627
|
"object/get",
|
|
630
628
|
[
|
|
@@ -632,13 +630,17 @@
|
|
|
632
630
|
"@entity"
|
|
633
631
|
],
|
|
634
632
|
"createdAt"
|
|
635
|
-
]
|
|
633
|
+
],
|
|
634
|
+
"variant": "h3"
|
|
636
635
|
}
|
|
637
|
-
]
|
|
636
|
+
],
|
|
637
|
+
"gap": "sm"
|
|
638
638
|
}
|
|
639
639
|
]
|
|
640
640
|
}
|
|
641
|
-
]
|
|
641
|
+
],
|
|
642
|
+
"type": "simple-grid",
|
|
643
|
+
"columns": 3.0
|
|
642
644
|
}
|
|
643
645
|
]
|
|
644
646
|
},
|
|
@@ -646,17 +648,16 @@
|
|
|
646
648
|
"type": "divider"
|
|
647
649
|
},
|
|
648
650
|
{
|
|
651
|
+
"columns": 2.0,
|
|
649
652
|
"type": "grid",
|
|
650
|
-
"columns": 2,
|
|
651
|
-
"gap": "md",
|
|
652
653
|
"children": [
|
|
653
654
|
{
|
|
654
655
|
"type": "card",
|
|
655
656
|
"children": [
|
|
656
657
|
{
|
|
658
|
+
"content": "Chart View",
|
|
657
659
|
"type": "typography",
|
|
658
|
-
"variant": "caption"
|
|
659
|
-
"content": "Chart View"
|
|
660
|
+
"variant": "caption"
|
|
660
661
|
}
|
|
661
662
|
]
|
|
662
663
|
},
|
|
@@ -664,52 +665,53 @@
|
|
|
664
665
|
"type": "card",
|
|
665
666
|
"children": [
|
|
666
667
|
{
|
|
668
|
+
"content": "Graph View",
|
|
667
669
|
"type": "typography",
|
|
668
|
-
"variant": "caption"
|
|
669
|
-
"content": "Graph View"
|
|
670
|
+
"variant": "caption"
|
|
670
671
|
}
|
|
671
672
|
]
|
|
672
673
|
}
|
|
673
|
-
]
|
|
674
|
+
],
|
|
675
|
+
"gap": "md"
|
|
674
676
|
},
|
|
675
677
|
{
|
|
676
678
|
"type": "line-chart",
|
|
679
|
+
"title": "Trend",
|
|
677
680
|
"data": [
|
|
678
681
|
{
|
|
679
|
-
"
|
|
680
|
-
"
|
|
682
|
+
"value": 12.0,
|
|
683
|
+
"date": "Jan"
|
|
681
684
|
},
|
|
682
685
|
{
|
|
683
686
|
"date": "Feb",
|
|
684
|
-
"value": 19
|
|
687
|
+
"value": 19.0
|
|
685
688
|
},
|
|
686
689
|
{
|
|
687
690
|
"date": "Mar",
|
|
688
|
-
"value": 15
|
|
691
|
+
"value": 15.0
|
|
689
692
|
},
|
|
690
693
|
{
|
|
691
|
-
"
|
|
692
|
-
"
|
|
694
|
+
"value": 25.0,
|
|
695
|
+
"date": "Apr"
|
|
693
696
|
},
|
|
694
697
|
{
|
|
695
|
-
"
|
|
696
|
-
"
|
|
698
|
+
"value": 22.0,
|
|
699
|
+
"date": "May"
|
|
697
700
|
},
|
|
698
701
|
{
|
|
699
702
|
"date": "Jun",
|
|
700
|
-
"value": 30
|
|
703
|
+
"value": 30.0
|
|
701
704
|
}
|
|
702
705
|
],
|
|
703
706
|
"xKey": "date",
|
|
704
|
-
"yKey": "value"
|
|
705
|
-
"title": "Trend"
|
|
707
|
+
"yKey": "value"
|
|
706
708
|
},
|
|
707
709
|
{
|
|
708
710
|
"type": "chart-legend",
|
|
709
711
|
"items": [
|
|
710
712
|
{
|
|
711
|
-
"
|
|
712
|
-
"
|
|
713
|
+
"color": "primary",
|
|
714
|
+
"label": "Current"
|
|
713
715
|
},
|
|
714
716
|
{
|
|
715
717
|
"label": "Previous",
|
|
@@ -718,25 +720,27 @@
|
|
|
718
720
|
]
|
|
719
721
|
},
|
|
720
722
|
{
|
|
723
|
+
"width": 400.0,
|
|
724
|
+
"height": 200.0,
|
|
721
725
|
"type": "graph-view",
|
|
722
726
|
"nodes": [
|
|
723
727
|
{
|
|
724
|
-
"
|
|
728
|
+
"x": 50.0,
|
|
725
729
|
"label": "Start",
|
|
726
|
-
"
|
|
727
|
-
"y": 100
|
|
730
|
+
"id": "a",
|
|
731
|
+
"y": 100.0
|
|
728
732
|
},
|
|
729
733
|
{
|
|
730
734
|
"id": "b",
|
|
731
735
|
"label": "Process",
|
|
732
|
-
"x": 200,
|
|
733
|
-
"y": 50
|
|
736
|
+
"x": 200.0,
|
|
737
|
+
"y": 50.0
|
|
734
738
|
},
|
|
735
739
|
{
|
|
736
|
-
"id": "c",
|
|
737
740
|
"label": "End",
|
|
738
|
-
"x": 350,
|
|
739
|
-
"y": 100
|
|
741
|
+
"x": 350.0,
|
|
742
|
+
"y": 100.0,
|
|
743
|
+
"id": "c"
|
|
740
744
|
}
|
|
741
745
|
],
|
|
742
746
|
"edges": [
|
|
@@ -745,33 +749,15 @@
|
|
|
745
749
|
"to": "b"
|
|
746
750
|
},
|
|
747
751
|
{
|
|
748
|
-
"
|
|
749
|
-
"
|
|
750
|
-
}
|
|
751
|
-
],
|
|
752
|
-
"width": 400,
|
|
753
|
-
"height": 200
|
|
754
|
-
},
|
|
755
|
-
{
|
|
756
|
-
"type": "accordion",
|
|
757
|
-
"items": [
|
|
758
|
-
{
|
|
759
|
-
"label": "Details",
|
|
760
|
-
"content": {
|
|
761
|
-
"type": "typography",
|
|
762
|
-
"content": "Grouped display details"
|
|
763
|
-
}
|
|
764
|
-
},
|
|
765
|
-
{
|
|
766
|
-
"label": "Activity",
|
|
767
|
-
"content": {
|
|
768
|
-
"type": "typography",
|
|
769
|
-
"content": "Recent activity"
|
|
770
|
-
}
|
|
752
|
+
"to": "c",
|
|
753
|
+
"from": "b"
|
|
771
754
|
}
|
|
772
755
|
]
|
|
773
756
|
}
|
|
774
|
-
]
|
|
757
|
+
],
|
|
758
|
+
"direction": "vertical",
|
|
759
|
+
"gap": "lg",
|
|
760
|
+
"type": "stack"
|
|
775
761
|
}
|
|
776
762
|
]
|
|
777
763
|
}
|
|
@@ -785,7 +771,13 @@
|
|
|
785
771
|
"effects": [
|
|
786
772
|
[
|
|
787
773
|
"fetch",
|
|
788
|
-
"DisplayItem"
|
|
774
|
+
"DisplayItem",
|
|
775
|
+
{
|
|
776
|
+
"emit": {
|
|
777
|
+
"success": "DisplayItemLoaded",
|
|
778
|
+
"failure": "DisplayItemLoadFailed"
|
|
779
|
+
}
|
|
780
|
+
}
|
|
789
781
|
],
|
|
790
782
|
[
|
|
791
783
|
"render-ui",
|
|
@@ -794,12 +786,11 @@
|
|
|
794
786
|
"type": "scaled-diagram",
|
|
795
787
|
"children": [
|
|
796
788
|
{
|
|
797
|
-
"type": "stack",
|
|
798
|
-
"direction": "vertical",
|
|
799
789
|
"gap": "lg",
|
|
790
|
+
"direction": "vertical",
|
|
791
|
+
"type": "stack",
|
|
800
792
|
"children": [
|
|
801
793
|
{
|
|
802
|
-
"type": "breadcrumb",
|
|
803
794
|
"items": [
|
|
804
795
|
{
|
|
805
796
|
"label": "Home",
|
|
@@ -808,18 +799,12 @@
|
|
|
808
799
|
{
|
|
809
800
|
"label": "DisplayItems"
|
|
810
801
|
}
|
|
811
|
-
]
|
|
802
|
+
],
|
|
803
|
+
"type": "breadcrumb"
|
|
812
804
|
},
|
|
813
805
|
{
|
|
814
|
-
"type": "stack",
|
|
815
|
-
"direction": "horizontal",
|
|
816
|
-
"gap": "md",
|
|
817
|
-
"justify": "space-between",
|
|
818
806
|
"children": [
|
|
819
807
|
{
|
|
820
|
-
"type": "stack",
|
|
821
|
-
"direction": "horizontal",
|
|
822
|
-
"gap": "md",
|
|
823
808
|
"children": [
|
|
824
809
|
{
|
|
825
810
|
"type": "icon",
|
|
@@ -831,61 +816,45 @@
|
|
|
831
816
|
"content": "DisplayItems",
|
|
832
817
|
"variant": "h2"
|
|
833
818
|
}
|
|
834
|
-
]
|
|
819
|
+
],
|
|
820
|
+
"direction": "horizontal",
|
|
821
|
+
"gap": "md",
|
|
822
|
+
"type": "stack"
|
|
835
823
|
},
|
|
836
824
|
{
|
|
837
825
|
"type": "button",
|
|
838
|
-
"
|
|
826
|
+
"icon": "refresh-cw",
|
|
839
827
|
"event": "REFRESH",
|
|
840
828
|
"variant": "secondary",
|
|
841
|
-
"
|
|
829
|
+
"label": "Refresh"
|
|
842
830
|
}
|
|
843
|
-
]
|
|
831
|
+
],
|
|
832
|
+
"gap": "md",
|
|
833
|
+
"direction": "horizontal",
|
|
834
|
+
"type": "stack",
|
|
835
|
+
"justify": "space-between"
|
|
844
836
|
},
|
|
845
837
|
{
|
|
846
838
|
"type": "divider"
|
|
847
839
|
},
|
|
848
840
|
{
|
|
849
|
-
"type": "stats-grid",
|
|
850
|
-
"columns": 3,
|
|
851
|
-
"children": [
|
|
852
|
-
{
|
|
853
|
-
"type": "stat-display",
|
|
854
|
-
"label": "Total",
|
|
855
|
-
"value": ["array/len", "@entity"]
|
|
856
|
-
},
|
|
857
|
-
{
|
|
858
|
-
"type": "stat-display",
|
|
859
|
-
"label": "Latest",
|
|
860
|
-
"value": ["object/get", ["array/first", "@entity"], "name"]
|
|
861
|
-
},
|
|
862
|
-
{
|
|
863
|
-
"type": "stat-display",
|
|
864
|
-
"label": "Status",
|
|
865
|
-
"value": "Healthy"
|
|
866
|
-
}
|
|
867
|
-
]
|
|
868
|
-
},
|
|
869
|
-
{
|
|
870
|
-
"type": "box",
|
|
871
841
|
"padding": "md",
|
|
872
842
|
"children": [
|
|
873
843
|
{
|
|
844
|
+
"columns": 3.0,
|
|
874
845
|
"type": "simple-grid",
|
|
875
|
-
"columns": 3,
|
|
876
846
|
"children": [
|
|
877
847
|
{
|
|
878
848
|
"type": "card",
|
|
879
849
|
"children": [
|
|
880
850
|
{
|
|
881
|
-
"type": "stack",
|
|
882
851
|
"direction": "vertical",
|
|
883
|
-
"
|
|
852
|
+
"type": "stack",
|
|
884
853
|
"children": [
|
|
885
854
|
{
|
|
886
|
-
"
|
|
855
|
+
"content": "Name",
|
|
887
856
|
"variant": "caption",
|
|
888
|
-
"
|
|
857
|
+
"type": "typography"
|
|
889
858
|
},
|
|
890
859
|
{
|
|
891
860
|
"type": "typography",
|
|
@@ -899,7 +868,8 @@
|
|
|
899
868
|
"name"
|
|
900
869
|
]
|
|
901
870
|
}
|
|
902
|
-
]
|
|
871
|
+
],
|
|
872
|
+
"gap": "sm"
|
|
903
873
|
}
|
|
904
874
|
]
|
|
905
875
|
},
|
|
@@ -907,8 +877,6 @@
|
|
|
907
877
|
"type": "card",
|
|
908
878
|
"children": [
|
|
909
879
|
{
|
|
910
|
-
"type": "stack",
|
|
911
|
-
"direction": "vertical",
|
|
912
880
|
"gap": "sm",
|
|
913
881
|
"children": [
|
|
914
882
|
{
|
|
@@ -928,25 +896,22 @@
|
|
|
928
896
|
"description"
|
|
929
897
|
]
|
|
930
898
|
}
|
|
931
|
-
]
|
|
899
|
+
],
|
|
900
|
+
"type": "stack",
|
|
901
|
+
"direction": "vertical"
|
|
932
902
|
}
|
|
933
903
|
]
|
|
934
904
|
},
|
|
935
905
|
{
|
|
936
|
-
"type": "card",
|
|
937
906
|
"children": [
|
|
938
907
|
{
|
|
939
|
-
"type": "stack",
|
|
940
|
-
"direction": "vertical",
|
|
941
|
-
"gap": "sm",
|
|
942
908
|
"children": [
|
|
943
909
|
{
|
|
944
|
-
"type": "typography",
|
|
945
910
|
"variant": "caption",
|
|
946
|
-
"content": "Status"
|
|
911
|
+
"content": "Status",
|
|
912
|
+
"type": "typography"
|
|
947
913
|
},
|
|
948
914
|
{
|
|
949
|
-
"type": "typography",
|
|
950
915
|
"variant": "h3",
|
|
951
916
|
"content": [
|
|
952
917
|
"object/get",
|
|
@@ -955,28 +920,30 @@
|
|
|
955
920
|
"@entity"
|
|
956
921
|
],
|
|
957
922
|
"status"
|
|
958
|
-
]
|
|
923
|
+
],
|
|
924
|
+
"type": "typography"
|
|
959
925
|
}
|
|
960
|
-
]
|
|
926
|
+
],
|
|
927
|
+
"gap": "sm",
|
|
928
|
+
"direction": "vertical",
|
|
929
|
+
"type": "stack"
|
|
961
930
|
}
|
|
962
|
-
]
|
|
931
|
+
],
|
|
932
|
+
"type": "card"
|
|
963
933
|
},
|
|
964
934
|
{
|
|
965
|
-
"type": "card",
|
|
966
935
|
"children": [
|
|
967
936
|
{
|
|
968
|
-
"type": "stack",
|
|
969
937
|
"direction": "vertical",
|
|
970
938
|
"gap": "sm",
|
|
939
|
+
"type": "stack",
|
|
971
940
|
"children": [
|
|
972
941
|
{
|
|
942
|
+
"content": "CreatedAt",
|
|
973
943
|
"type": "typography",
|
|
974
|
-
"variant": "caption"
|
|
975
|
-
"content": "CreatedAt"
|
|
944
|
+
"variant": "caption"
|
|
976
945
|
},
|
|
977
946
|
{
|
|
978
|
-
"type": "typography",
|
|
979
|
-
"variant": "h3",
|
|
980
947
|
"content": [
|
|
981
948
|
"object/get",
|
|
982
949
|
[
|
|
@@ -984,80 +951,83 @@
|
|
|
984
951
|
"@entity"
|
|
985
952
|
],
|
|
986
953
|
"createdAt"
|
|
987
|
-
]
|
|
954
|
+
],
|
|
955
|
+
"variant": "h3",
|
|
956
|
+
"type": "typography"
|
|
988
957
|
}
|
|
989
958
|
]
|
|
990
959
|
}
|
|
991
|
-
]
|
|
960
|
+
],
|
|
961
|
+
"type": "card"
|
|
992
962
|
}
|
|
993
963
|
]
|
|
994
964
|
}
|
|
995
|
-
]
|
|
965
|
+
],
|
|
966
|
+
"type": "box"
|
|
996
967
|
},
|
|
997
968
|
{
|
|
998
969
|
"type": "divider"
|
|
999
970
|
},
|
|
1000
971
|
{
|
|
1001
|
-
"type": "grid",
|
|
1002
|
-
"columns": 2,
|
|
1003
972
|
"gap": "md",
|
|
973
|
+
"columns": 2.0,
|
|
1004
974
|
"children": [
|
|
1005
975
|
{
|
|
1006
|
-
"type": "card",
|
|
1007
976
|
"children": [
|
|
1008
977
|
{
|
|
1009
978
|
"type": "typography",
|
|
1010
|
-
"
|
|
1011
|
-
"
|
|
979
|
+
"content": "Chart View",
|
|
980
|
+
"variant": "caption"
|
|
1012
981
|
}
|
|
1013
|
-
]
|
|
982
|
+
],
|
|
983
|
+
"type": "card"
|
|
1014
984
|
},
|
|
1015
985
|
{
|
|
1016
986
|
"type": "card",
|
|
1017
987
|
"children": [
|
|
1018
988
|
{
|
|
1019
|
-
"
|
|
989
|
+
"content": "Graph View",
|
|
1020
990
|
"variant": "caption",
|
|
1021
|
-
"
|
|
991
|
+
"type": "typography"
|
|
1022
992
|
}
|
|
1023
993
|
]
|
|
1024
994
|
}
|
|
1025
|
-
]
|
|
995
|
+
],
|
|
996
|
+
"type": "grid"
|
|
1026
997
|
},
|
|
1027
998
|
{
|
|
1028
|
-
"
|
|
999
|
+
"yKey": "value",
|
|
1000
|
+
"title": "Trend",
|
|
1029
1001
|
"data": [
|
|
1030
1002
|
{
|
|
1031
1003
|
"date": "Jan",
|
|
1032
|
-
"value": 12
|
|
1004
|
+
"value": 12.0
|
|
1033
1005
|
},
|
|
1034
1006
|
{
|
|
1035
|
-
"
|
|
1036
|
-
"
|
|
1007
|
+
"value": 19.0,
|
|
1008
|
+
"date": "Feb"
|
|
1037
1009
|
},
|
|
1038
1010
|
{
|
|
1039
1011
|
"date": "Mar",
|
|
1040
|
-
"value": 15
|
|
1012
|
+
"value": 15.0
|
|
1041
1013
|
},
|
|
1042
1014
|
{
|
|
1043
|
-
"
|
|
1044
|
-
"
|
|
1015
|
+
"value": 25.0,
|
|
1016
|
+
"date": "Apr"
|
|
1045
1017
|
},
|
|
1046
1018
|
{
|
|
1047
|
-
"
|
|
1048
|
-
"
|
|
1019
|
+
"value": 22.0,
|
|
1020
|
+
"date": "May"
|
|
1049
1021
|
},
|
|
1050
1022
|
{
|
|
1051
|
-
"
|
|
1052
|
-
"
|
|
1023
|
+
"value": 30.0,
|
|
1024
|
+
"date": "Jun"
|
|
1053
1025
|
}
|
|
1054
1026
|
],
|
|
1055
|
-
"
|
|
1056
|
-
"
|
|
1057
|
-
"title": "Trend"
|
|
1027
|
+
"type": "line-chart",
|
|
1028
|
+
"xKey": "date"
|
|
1058
1029
|
},
|
|
1059
1030
|
{
|
|
1060
|
-
"type": "chart-legend",
|
|
1061
1031
|
"items": [
|
|
1062
1032
|
{
|
|
1063
1033
|
"label": "Current",
|
|
@@ -1067,61 +1037,43 @@
|
|
|
1067
1037
|
"label": "Previous",
|
|
1068
1038
|
"color": "muted"
|
|
1069
1039
|
}
|
|
1070
|
-
]
|
|
1040
|
+
],
|
|
1041
|
+
"type": "chart-legend"
|
|
1071
1042
|
},
|
|
1072
1043
|
{
|
|
1073
|
-
"
|
|
1044
|
+
"width": 400.0,
|
|
1074
1045
|
"nodes": [
|
|
1075
1046
|
{
|
|
1076
|
-
"id": "a",
|
|
1077
1047
|
"label": "Start",
|
|
1078
|
-
"
|
|
1079
|
-
"
|
|
1048
|
+
"y": 100.0,
|
|
1049
|
+
"id": "a",
|
|
1050
|
+
"x": 50.0
|
|
1080
1051
|
},
|
|
1081
1052
|
{
|
|
1082
1053
|
"id": "b",
|
|
1083
1054
|
"label": "Process",
|
|
1084
|
-
"
|
|
1085
|
-
"
|
|
1055
|
+
"y": 50.0,
|
|
1056
|
+
"x": 200.0
|
|
1086
1057
|
},
|
|
1087
1058
|
{
|
|
1088
|
-
"
|
|
1059
|
+
"y": 100.0,
|
|
1089
1060
|
"label": "End",
|
|
1090
|
-
"
|
|
1091
|
-
"
|
|
1061
|
+
"id": "c",
|
|
1062
|
+
"x": 350.0
|
|
1092
1063
|
}
|
|
1093
1064
|
],
|
|
1065
|
+
"height": 200.0,
|
|
1094
1066
|
"edges": [
|
|
1095
1067
|
{
|
|
1096
|
-
"
|
|
1097
|
-
"
|
|
1068
|
+
"to": "b",
|
|
1069
|
+
"from": "a"
|
|
1098
1070
|
},
|
|
1099
1071
|
{
|
|
1100
1072
|
"from": "b",
|
|
1101
1073
|
"to": "c"
|
|
1102
1074
|
}
|
|
1103
1075
|
],
|
|
1104
|
-
"
|
|
1105
|
-
"height": 200
|
|
1106
|
-
},
|
|
1107
|
-
{
|
|
1108
|
-
"type": "accordion",
|
|
1109
|
-
"items": [
|
|
1110
|
-
{
|
|
1111
|
-
"label": "Details",
|
|
1112
|
-
"content": {
|
|
1113
|
-
"type": "typography",
|
|
1114
|
-
"content": "Grouped display details"
|
|
1115
|
-
}
|
|
1116
|
-
},
|
|
1117
|
-
{
|
|
1118
|
-
"label": "Activity",
|
|
1119
|
-
"content": {
|
|
1120
|
-
"type": "typography",
|
|
1121
|
-
"content": "Recent activity"
|
|
1122
|
-
}
|
|
1123
|
-
}
|
|
1124
|
-
]
|
|
1076
|
+
"type": "graph-view"
|
|
1125
1077
|
}
|
|
1126
1078
|
]
|
|
1127
1079
|
}
|
|
@@ -1137,7 +1089,13 @@
|
|
|
1137
1089
|
"effects": [
|
|
1138
1090
|
[
|
|
1139
1091
|
"fetch",
|
|
1140
|
-
"DisplayItem"
|
|
1092
|
+
"DisplayItem",
|
|
1093
|
+
{
|
|
1094
|
+
"emit": {
|
|
1095
|
+
"success": "DisplayItemLoaded",
|
|
1096
|
+
"failure": "DisplayItemLoadFailed"
|
|
1097
|
+
}
|
|
1098
|
+
}
|
|
1141
1099
|
],
|
|
1142
1100
|
[
|
|
1143
1101
|
"render-ui",
|
|
@@ -1146,12 +1104,8 @@
|
|
|
1146
1104
|
"type": "scaled-diagram",
|
|
1147
1105
|
"children": [
|
|
1148
1106
|
{
|
|
1149
|
-
"type": "stack",
|
|
1150
|
-
"direction": "vertical",
|
|
1151
|
-
"gap": "lg",
|
|
1152
1107
|
"children": [
|
|
1153
1108
|
{
|
|
1154
|
-
"type": "breadcrumb",
|
|
1155
1109
|
"items": [
|
|
1156
1110
|
{
|
|
1157
1111
|
"label": "Home",
|
|
@@ -1160,84 +1114,62 @@
|
|
|
1160
1114
|
{
|
|
1161
1115
|
"label": "DisplayItems"
|
|
1162
1116
|
}
|
|
1163
|
-
]
|
|
1117
|
+
],
|
|
1118
|
+
"type": "breadcrumb"
|
|
1164
1119
|
},
|
|
1165
1120
|
{
|
|
1166
|
-
"type": "stack",
|
|
1167
1121
|
"direction": "horizontal",
|
|
1168
|
-
"gap": "md",
|
|
1169
|
-
"justify": "space-between",
|
|
1170
1122
|
"children": [
|
|
1171
1123
|
{
|
|
1172
|
-
"type": "stack",
|
|
1173
|
-
"direction": "horizontal",
|
|
1174
|
-
"gap": "md",
|
|
1175
1124
|
"children": [
|
|
1176
1125
|
{
|
|
1177
|
-
"type": "icon",
|
|
1178
1126
|
"name": "bar-chart-2",
|
|
1127
|
+
"type": "icon",
|
|
1179
1128
|
"size": "lg"
|
|
1180
1129
|
},
|
|
1181
1130
|
{
|
|
1182
|
-
"type": "typography",
|
|
1183
1131
|
"content": "DisplayItems",
|
|
1132
|
+
"type": "typography",
|
|
1184
1133
|
"variant": "h2"
|
|
1185
1134
|
}
|
|
1186
|
-
]
|
|
1135
|
+
],
|
|
1136
|
+
"direction": "horizontal",
|
|
1137
|
+
"type": "stack",
|
|
1138
|
+
"gap": "md"
|
|
1187
1139
|
},
|
|
1188
1140
|
{
|
|
1141
|
+
"icon": "refresh-cw",
|
|
1189
1142
|
"type": "button",
|
|
1190
|
-
"label": "Refresh",
|
|
1191
1143
|
"event": "REFRESH",
|
|
1192
1144
|
"variant": "secondary",
|
|
1193
|
-
"
|
|
1145
|
+
"label": "Refresh"
|
|
1194
1146
|
}
|
|
1195
|
-
]
|
|
1147
|
+
],
|
|
1148
|
+
"type": "stack",
|
|
1149
|
+
"justify": "space-between",
|
|
1150
|
+
"gap": "md"
|
|
1196
1151
|
},
|
|
1197
1152
|
{
|
|
1198
1153
|
"type": "divider"
|
|
1199
1154
|
},
|
|
1200
|
-
{
|
|
1201
|
-
"type": "stats-grid",
|
|
1202
|
-
"columns": 3,
|
|
1203
|
-
"children": [
|
|
1204
|
-
{
|
|
1205
|
-
"type": "stat-display",
|
|
1206
|
-
"label": "Total",
|
|
1207
|
-
"value": ["array/len", "@entity"]
|
|
1208
|
-
},
|
|
1209
|
-
{
|
|
1210
|
-
"type": "stat-display",
|
|
1211
|
-
"label": "Latest",
|
|
1212
|
-
"value": ["object/get", ["array/first", "@entity"], "name"]
|
|
1213
|
-
},
|
|
1214
|
-
{
|
|
1215
|
-
"type": "stat-display",
|
|
1216
|
-
"label": "Status",
|
|
1217
|
-
"value": "Healthy"
|
|
1218
|
-
}
|
|
1219
|
-
]
|
|
1220
|
-
},
|
|
1221
1155
|
{
|
|
1222
1156
|
"type": "box",
|
|
1223
|
-
"padding": "md",
|
|
1224
1157
|
"children": [
|
|
1225
1158
|
{
|
|
1226
|
-
"
|
|
1227
|
-
"columns": 3,
|
|
1159
|
+
"columns": 3.0,
|
|
1228
1160
|
"children": [
|
|
1229
1161
|
{
|
|
1230
1162
|
"type": "card",
|
|
1231
1163
|
"children": [
|
|
1232
1164
|
{
|
|
1233
1165
|
"type": "stack",
|
|
1234
|
-
"direction": "vertical",
|
|
1235
1166
|
"gap": "sm",
|
|
1167
|
+
"direction": "vertical",
|
|
1236
1168
|
"children": [
|
|
1237
1169
|
{
|
|
1238
|
-
"type": "typography",
|
|
1239
1170
|
"variant": "caption",
|
|
1240
|
-
"content": "Name"
|
|
1171
|
+
"content": "Name",
|
|
1172
|
+
"type": "typography"
|
|
1241
1173
|
},
|
|
1242
1174
|
{
|
|
1243
1175
|
"type": "typography",
|
|
@@ -1256,17 +1188,13 @@
|
|
|
1256
1188
|
]
|
|
1257
1189
|
},
|
|
1258
1190
|
{
|
|
1259
|
-
"type": "card",
|
|
1260
1191
|
"children": [
|
|
1261
1192
|
{
|
|
1262
|
-
"type": "stack",
|
|
1263
|
-
"direction": "vertical",
|
|
1264
|
-
"gap": "sm",
|
|
1265
1193
|
"children": [
|
|
1266
1194
|
{
|
|
1267
|
-
"
|
|
1195
|
+
"content": "Description",
|
|
1268
1196
|
"variant": "caption",
|
|
1269
|
-
"
|
|
1197
|
+
"type": "typography"
|
|
1270
1198
|
},
|
|
1271
1199
|
{
|
|
1272
1200
|
"type": "typography",
|
|
@@ -1280,22 +1208,23 @@
|
|
|
1280
1208
|
"description"
|
|
1281
1209
|
]
|
|
1282
1210
|
}
|
|
1283
|
-
]
|
|
1211
|
+
],
|
|
1212
|
+
"gap": "sm",
|
|
1213
|
+
"type": "stack",
|
|
1214
|
+
"direction": "vertical"
|
|
1284
1215
|
}
|
|
1285
|
-
]
|
|
1216
|
+
],
|
|
1217
|
+
"type": "card"
|
|
1286
1218
|
},
|
|
1287
1219
|
{
|
|
1288
|
-
"type": "card",
|
|
1289
1220
|
"children": [
|
|
1290
1221
|
{
|
|
1291
1222
|
"type": "stack",
|
|
1292
|
-
"direction": "vertical",
|
|
1293
|
-
"gap": "sm",
|
|
1294
1223
|
"children": [
|
|
1295
1224
|
{
|
|
1296
|
-
"
|
|
1225
|
+
"content": "Status",
|
|
1297
1226
|
"variant": "caption",
|
|
1298
|
-
"
|
|
1227
|
+
"type": "typography"
|
|
1299
1228
|
},
|
|
1300
1229
|
{
|
|
1301
1230
|
"type": "typography",
|
|
@@ -1309,26 +1238,25 @@
|
|
|
1309
1238
|
"status"
|
|
1310
1239
|
]
|
|
1311
1240
|
}
|
|
1312
|
-
]
|
|
1241
|
+
],
|
|
1242
|
+
"direction": "vertical",
|
|
1243
|
+
"gap": "sm"
|
|
1313
1244
|
}
|
|
1314
|
-
]
|
|
1245
|
+
],
|
|
1246
|
+
"type": "card"
|
|
1315
1247
|
},
|
|
1316
1248
|
{
|
|
1317
|
-
"type": "card",
|
|
1318
1249
|
"children": [
|
|
1319
1250
|
{
|
|
1320
1251
|
"type": "stack",
|
|
1321
1252
|
"direction": "vertical",
|
|
1322
|
-
"gap": "sm",
|
|
1323
1253
|
"children": [
|
|
1324
1254
|
{
|
|
1325
1255
|
"type": "typography",
|
|
1326
|
-
"
|
|
1327
|
-
"
|
|
1256
|
+
"content": "CreatedAt",
|
|
1257
|
+
"variant": "caption"
|
|
1328
1258
|
},
|
|
1329
1259
|
{
|
|
1330
|
-
"type": "typography",
|
|
1331
|
-
"variant": "h3",
|
|
1332
1260
|
"content": [
|
|
1333
1261
|
"object/get",
|
|
1334
1262
|
[
|
|
@@ -1336,31 +1264,35 @@
|
|
|
1336
1264
|
"@entity"
|
|
1337
1265
|
],
|
|
1338
1266
|
"createdAt"
|
|
1339
|
-
]
|
|
1267
|
+
],
|
|
1268
|
+
"type": "typography",
|
|
1269
|
+
"variant": "h3"
|
|
1340
1270
|
}
|
|
1341
|
-
]
|
|
1271
|
+
],
|
|
1272
|
+
"gap": "sm"
|
|
1342
1273
|
}
|
|
1343
|
-
]
|
|
1274
|
+
],
|
|
1275
|
+
"type": "card"
|
|
1344
1276
|
}
|
|
1345
|
-
]
|
|
1277
|
+
],
|
|
1278
|
+
"type": "simple-grid"
|
|
1346
1279
|
}
|
|
1347
|
-
]
|
|
1280
|
+
],
|
|
1281
|
+
"padding": "md"
|
|
1348
1282
|
},
|
|
1349
1283
|
{
|
|
1350
1284
|
"type": "divider"
|
|
1351
1285
|
},
|
|
1352
1286
|
{
|
|
1353
1287
|
"type": "grid",
|
|
1354
|
-
"columns": 2,
|
|
1355
|
-
"gap": "md",
|
|
1356
1288
|
"children": [
|
|
1357
1289
|
{
|
|
1358
1290
|
"type": "card",
|
|
1359
1291
|
"children": [
|
|
1360
1292
|
{
|
|
1361
1293
|
"type": "typography",
|
|
1362
|
-
"
|
|
1363
|
-
"
|
|
1294
|
+
"content": "Chart View",
|
|
1295
|
+
"variant": "caption"
|
|
1364
1296
|
}
|
|
1365
1297
|
]
|
|
1366
1298
|
},
|
|
@@ -1374,42 +1306,43 @@
|
|
|
1374
1306
|
}
|
|
1375
1307
|
]
|
|
1376
1308
|
}
|
|
1377
|
-
]
|
|
1309
|
+
],
|
|
1310
|
+
"columns": 2.0,
|
|
1311
|
+
"gap": "md"
|
|
1378
1312
|
},
|
|
1379
1313
|
{
|
|
1314
|
+
"yKey": "value",
|
|
1380
1315
|
"type": "line-chart",
|
|
1316
|
+
"title": "Trend",
|
|
1317
|
+
"xKey": "date",
|
|
1381
1318
|
"data": [
|
|
1382
1319
|
{
|
|
1383
1320
|
"date": "Jan",
|
|
1384
|
-
"value": 12
|
|
1321
|
+
"value": 12.0
|
|
1385
1322
|
},
|
|
1386
1323
|
{
|
|
1387
1324
|
"date": "Feb",
|
|
1388
|
-
"value": 19
|
|
1325
|
+
"value": 19.0
|
|
1389
1326
|
},
|
|
1390
1327
|
{
|
|
1391
|
-
"
|
|
1392
|
-
"
|
|
1328
|
+
"value": 15.0,
|
|
1329
|
+
"date": "Mar"
|
|
1393
1330
|
},
|
|
1394
1331
|
{
|
|
1395
|
-
"
|
|
1396
|
-
"
|
|
1332
|
+
"value": 25.0,
|
|
1333
|
+
"date": "Apr"
|
|
1397
1334
|
},
|
|
1398
1335
|
{
|
|
1399
|
-
"
|
|
1400
|
-
"
|
|
1336
|
+
"value": 22.0,
|
|
1337
|
+
"date": "May"
|
|
1401
1338
|
},
|
|
1402
1339
|
{
|
|
1403
1340
|
"date": "Jun",
|
|
1404
|
-
"value": 30
|
|
1341
|
+
"value": 30.0
|
|
1405
1342
|
}
|
|
1406
|
-
]
|
|
1407
|
-
"xKey": "date",
|
|
1408
|
-
"yKey": "value",
|
|
1409
|
-
"title": "Trend"
|
|
1343
|
+
]
|
|
1410
1344
|
},
|
|
1411
1345
|
{
|
|
1412
|
-
"type": "chart-legend",
|
|
1413
1346
|
"items": [
|
|
1414
1347
|
{
|
|
1415
1348
|
"label": "Current",
|
|
@@ -1419,30 +1352,12 @@
|
|
|
1419
1352
|
"label": "Previous",
|
|
1420
1353
|
"color": "muted"
|
|
1421
1354
|
}
|
|
1422
|
-
]
|
|
1355
|
+
],
|
|
1356
|
+
"type": "chart-legend"
|
|
1423
1357
|
},
|
|
1424
1358
|
{
|
|
1425
|
-
"
|
|
1426
|
-
"
|
|
1427
|
-
{
|
|
1428
|
-
"id": "a",
|
|
1429
|
-
"label": "Start",
|
|
1430
|
-
"x": 50,
|
|
1431
|
-
"y": 100
|
|
1432
|
-
},
|
|
1433
|
-
{
|
|
1434
|
-
"id": "b",
|
|
1435
|
-
"label": "Process",
|
|
1436
|
-
"x": 200,
|
|
1437
|
-
"y": 50
|
|
1438
|
-
},
|
|
1439
|
-
{
|
|
1440
|
-
"id": "c",
|
|
1441
|
-
"label": "End",
|
|
1442
|
-
"x": 350,
|
|
1443
|
-
"y": 100
|
|
1444
|
-
}
|
|
1445
|
-
],
|
|
1359
|
+
"width": 400.0,
|
|
1360
|
+
"height": 200.0,
|
|
1446
1361
|
"edges": [
|
|
1447
1362
|
{
|
|
1448
1363
|
"from": "a",
|
|
@@ -1453,29 +1368,32 @@
|
|
|
1453
1368
|
"to": "c"
|
|
1454
1369
|
}
|
|
1455
1370
|
],
|
|
1456
|
-
"
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1371
|
+
"nodes": [
|
|
1372
|
+
{
|
|
1373
|
+
"id": "a",
|
|
1374
|
+
"y": 100.0,
|
|
1375
|
+
"label": "Start",
|
|
1376
|
+
"x": 50.0
|
|
1377
|
+
},
|
|
1462
1378
|
{
|
|
1463
|
-
"
|
|
1464
|
-
"
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
}
|
|
1379
|
+
"id": "b",
|
|
1380
|
+
"x": 200.0,
|
|
1381
|
+
"y": 50.0,
|
|
1382
|
+
"label": "Process"
|
|
1468
1383
|
},
|
|
1469
1384
|
{
|
|
1470
|
-
"label": "
|
|
1471
|
-
"
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
}
|
|
1385
|
+
"label": "End",
|
|
1386
|
+
"y": 100.0,
|
|
1387
|
+
"id": "c",
|
|
1388
|
+
"x": 350.0
|
|
1475
1389
|
}
|
|
1476
|
-
]
|
|
1390
|
+
],
|
|
1391
|
+
"type": "graph-view"
|
|
1477
1392
|
}
|
|
1478
|
-
]
|
|
1393
|
+
],
|
|
1394
|
+
"direction": "vertical",
|
|
1395
|
+
"type": "stack",
|
|
1396
|
+
"gap": "lg"
|
|
1479
1397
|
}
|
|
1480
1398
|
]
|
|
1481
1399
|
}
|
|
@@ -1489,7 +1407,13 @@
|
|
|
1489
1407
|
"effects": [
|
|
1490
1408
|
[
|
|
1491
1409
|
"fetch",
|
|
1492
|
-
"DisplayItem"
|
|
1410
|
+
"DisplayItem",
|
|
1411
|
+
{
|
|
1412
|
+
"emit": {
|
|
1413
|
+
"success": "DisplayItemLoaded",
|
|
1414
|
+
"failure": "DisplayItemLoadFailed"
|
|
1415
|
+
}
|
|
1416
|
+
}
|
|
1493
1417
|
],
|
|
1494
1418
|
[
|
|
1495
1419
|
"render-ui",
|
|
@@ -1499,15 +1423,13 @@
|
|
|
1499
1423
|
"children": [
|
|
1500
1424
|
{
|
|
1501
1425
|
"type": "stack",
|
|
1502
|
-
"direction": "vertical",
|
|
1503
|
-
"gap": "lg",
|
|
1504
1426
|
"children": [
|
|
1505
1427
|
{
|
|
1506
1428
|
"type": "breadcrumb",
|
|
1507
1429
|
"items": [
|
|
1508
1430
|
{
|
|
1509
|
-
"
|
|
1510
|
-
"
|
|
1431
|
+
"href": "/",
|
|
1432
|
+
"label": "Home"
|
|
1511
1433
|
},
|
|
1512
1434
|
{
|
|
1513
1435
|
"label": "DisplayItems"
|
|
@@ -1516,84 +1438,56 @@
|
|
|
1516
1438
|
},
|
|
1517
1439
|
{
|
|
1518
1440
|
"type": "stack",
|
|
1519
|
-
"direction": "horizontal",
|
|
1520
1441
|
"gap": "md",
|
|
1521
1442
|
"justify": "space-between",
|
|
1522
1443
|
"children": [
|
|
1523
1444
|
{
|
|
1524
|
-
"type": "stack",
|
|
1525
1445
|
"direction": "horizontal",
|
|
1526
|
-
"gap": "md",
|
|
1527
1446
|
"children": [
|
|
1528
1447
|
{
|
|
1529
|
-
"type": "icon",
|
|
1530
1448
|
"name": "bar-chart-2",
|
|
1531
|
-
"size": "lg"
|
|
1449
|
+
"size": "lg",
|
|
1450
|
+
"type": "icon"
|
|
1532
1451
|
},
|
|
1533
1452
|
{
|
|
1534
1453
|
"type": "typography",
|
|
1535
1454
|
"content": "DisplayItems",
|
|
1536
1455
|
"variant": "h2"
|
|
1537
1456
|
}
|
|
1538
|
-
]
|
|
1457
|
+
],
|
|
1458
|
+
"gap": "md",
|
|
1459
|
+
"type": "stack"
|
|
1539
1460
|
},
|
|
1540
1461
|
{
|
|
1541
|
-
"type": "button",
|
|
1542
|
-
"label": "Refresh",
|
|
1543
|
-
"event": "REFRESH",
|
|
1544
1462
|
"variant": "secondary",
|
|
1545
|
-
"icon": "refresh-cw"
|
|
1463
|
+
"icon": "refresh-cw",
|
|
1464
|
+
"event": "REFRESH",
|
|
1465
|
+
"type": "button",
|
|
1466
|
+
"label": "Refresh"
|
|
1546
1467
|
}
|
|
1547
|
-
]
|
|
1468
|
+
],
|
|
1469
|
+
"direction": "horizontal"
|
|
1548
1470
|
},
|
|
1549
1471
|
{
|
|
1550
1472
|
"type": "divider"
|
|
1551
1473
|
},
|
|
1552
1474
|
{
|
|
1553
|
-
"type": "stats-grid",
|
|
1554
|
-
"columns": 3,
|
|
1555
|
-
"children": [
|
|
1556
|
-
{
|
|
1557
|
-
"type": "stat-display",
|
|
1558
|
-
"label": "Total",
|
|
1559
|
-
"value": ["array/len", "@entity"]
|
|
1560
|
-
},
|
|
1561
|
-
{
|
|
1562
|
-
"type": "stat-display",
|
|
1563
|
-
"label": "Latest",
|
|
1564
|
-
"value": ["object/get", ["array/first", "@entity"], "name"]
|
|
1565
|
-
},
|
|
1566
|
-
{
|
|
1567
|
-
"type": "stat-display",
|
|
1568
|
-
"label": "Status",
|
|
1569
|
-
"value": "Healthy"
|
|
1570
|
-
}
|
|
1571
|
-
]
|
|
1572
|
-
},
|
|
1573
|
-
{
|
|
1574
|
-
"type": "box",
|
|
1575
|
-
"padding": "md",
|
|
1576
1475
|
"children": [
|
|
1577
1476
|
{
|
|
1578
1477
|
"type": "simple-grid",
|
|
1579
|
-
"columns": 3,
|
|
1478
|
+
"columns": 3.0,
|
|
1580
1479
|
"children": [
|
|
1581
1480
|
{
|
|
1582
1481
|
"type": "card",
|
|
1583
1482
|
"children": [
|
|
1584
1483
|
{
|
|
1585
|
-
"type": "stack",
|
|
1586
|
-
"direction": "vertical",
|
|
1587
|
-
"gap": "sm",
|
|
1588
1484
|
"children": [
|
|
1589
1485
|
{
|
|
1590
|
-
"type": "typography",
|
|
1591
1486
|
"variant": "caption",
|
|
1487
|
+
"type": "typography",
|
|
1592
1488
|
"content": "Name"
|
|
1593
1489
|
},
|
|
1594
1490
|
{
|
|
1595
|
-
"type": "typography",
|
|
1596
|
-
"variant": "h3",
|
|
1597
1491
|
"content": [
|
|
1598
1492
|
"object/get",
|
|
1599
1493
|
[
|
|
@@ -1601,19 +1495,23 @@
|
|
|
1601
1495
|
"@entity"
|
|
1602
1496
|
],
|
|
1603
1497
|
"name"
|
|
1604
|
-
]
|
|
1498
|
+
],
|
|
1499
|
+
"type": "typography",
|
|
1500
|
+
"variant": "h3"
|
|
1605
1501
|
}
|
|
1606
|
-
]
|
|
1502
|
+
],
|
|
1503
|
+
"type": "stack",
|
|
1504
|
+
"direction": "vertical",
|
|
1505
|
+
"gap": "sm"
|
|
1607
1506
|
}
|
|
1608
1507
|
]
|
|
1609
1508
|
},
|
|
1610
1509
|
{
|
|
1611
|
-
"type": "card",
|
|
1612
1510
|
"children": [
|
|
1613
1511
|
{
|
|
1614
1512
|
"type": "stack",
|
|
1615
|
-
"direction": "vertical",
|
|
1616
1513
|
"gap": "sm",
|
|
1514
|
+
"direction": "vertical",
|
|
1617
1515
|
"children": [
|
|
1618
1516
|
{
|
|
1619
1517
|
"type": "typography",
|
|
@@ -1621,8 +1519,6 @@
|
|
|
1621
1519
|
"content": "Description"
|
|
1622
1520
|
},
|
|
1623
1521
|
{
|
|
1624
|
-
"type": "typography",
|
|
1625
|
-
"variant": "h3",
|
|
1626
1522
|
"content": [
|
|
1627
1523
|
"object/get",
|
|
1628
1524
|
[
|
|
@@ -1630,28 +1526,27 @@
|
|
|
1630
1526
|
"@entity"
|
|
1631
1527
|
],
|
|
1632
1528
|
"description"
|
|
1633
|
-
]
|
|
1529
|
+
],
|
|
1530
|
+
"type": "typography",
|
|
1531
|
+
"variant": "h3"
|
|
1634
1532
|
}
|
|
1635
1533
|
]
|
|
1636
1534
|
}
|
|
1637
|
-
]
|
|
1535
|
+
],
|
|
1536
|
+
"type": "card"
|
|
1638
1537
|
},
|
|
1639
1538
|
{
|
|
1640
1539
|
"type": "card",
|
|
1641
1540
|
"children": [
|
|
1642
1541
|
{
|
|
1643
|
-
"type": "stack",
|
|
1644
|
-
"direction": "vertical",
|
|
1645
1542
|
"gap": "sm",
|
|
1646
1543
|
"children": [
|
|
1647
1544
|
{
|
|
1648
|
-
"type": "typography",
|
|
1649
1545
|
"variant": "caption",
|
|
1546
|
+
"type": "typography",
|
|
1650
1547
|
"content": "Status"
|
|
1651
1548
|
},
|
|
1652
1549
|
{
|
|
1653
|
-
"type": "typography",
|
|
1654
|
-
"variant": "h3",
|
|
1655
1550
|
"content": [
|
|
1656
1551
|
"object/get",
|
|
1657
1552
|
[
|
|
@@ -1659,28 +1554,28 @@
|
|
|
1659
1554
|
"@entity"
|
|
1660
1555
|
],
|
|
1661
1556
|
"status"
|
|
1662
|
-
]
|
|
1557
|
+
],
|
|
1558
|
+
"type": "typography",
|
|
1559
|
+
"variant": "h3"
|
|
1663
1560
|
}
|
|
1664
|
-
]
|
|
1561
|
+
],
|
|
1562
|
+
"direction": "vertical",
|
|
1563
|
+
"type": "stack"
|
|
1665
1564
|
}
|
|
1666
1565
|
]
|
|
1667
1566
|
},
|
|
1668
1567
|
{
|
|
1669
|
-
"type": "card",
|
|
1670
1568
|
"children": [
|
|
1671
1569
|
{
|
|
1672
|
-
"type": "stack",
|
|
1673
|
-
"direction": "vertical",
|
|
1674
|
-
"gap": "sm",
|
|
1675
1570
|
"children": [
|
|
1676
1571
|
{
|
|
1572
|
+
"content": "CreatedAt",
|
|
1677
1573
|
"type": "typography",
|
|
1678
|
-
"variant": "caption"
|
|
1679
|
-
"content": "CreatedAt"
|
|
1574
|
+
"variant": "caption"
|
|
1680
1575
|
},
|
|
1681
1576
|
{
|
|
1682
|
-
"type": "typography",
|
|
1683
1577
|
"variant": "h3",
|
|
1578
|
+
"type": "typography",
|
|
1684
1579
|
"content": [
|
|
1685
1580
|
"object/get",
|
|
1686
1581
|
[
|
|
@@ -1690,125 +1585,133 @@
|
|
|
1690
1585
|
"createdAt"
|
|
1691
1586
|
]
|
|
1692
1587
|
}
|
|
1693
|
-
]
|
|
1588
|
+
],
|
|
1589
|
+
"direction": "vertical",
|
|
1590
|
+
"gap": "sm",
|
|
1591
|
+
"type": "stack"
|
|
1694
1592
|
}
|
|
1695
|
-
]
|
|
1593
|
+
],
|
|
1594
|
+
"type": "card"
|
|
1696
1595
|
}
|
|
1697
1596
|
]
|
|
1698
1597
|
}
|
|
1699
|
-
]
|
|
1598
|
+
],
|
|
1599
|
+
"padding": "md",
|
|
1600
|
+
"type": "box"
|
|
1700
1601
|
},
|
|
1701
1602
|
{
|
|
1702
1603
|
"type": "divider"
|
|
1703
1604
|
},
|
|
1704
1605
|
{
|
|
1705
1606
|
"type": "grid",
|
|
1706
|
-
"columns": 2,
|
|
1707
1607
|
"gap": "md",
|
|
1708
1608
|
"children": [
|
|
1709
1609
|
{
|
|
1710
|
-
"type": "card",
|
|
1711
1610
|
"children": [
|
|
1712
1611
|
{
|
|
1713
|
-
"type": "typography",
|
|
1714
1612
|
"variant": "caption",
|
|
1715
|
-
"content": "Chart View"
|
|
1613
|
+
"content": "Chart View",
|
|
1614
|
+
"type": "typography"
|
|
1716
1615
|
}
|
|
1717
|
-
]
|
|
1616
|
+
],
|
|
1617
|
+
"type": "card"
|
|
1718
1618
|
},
|
|
1719
1619
|
{
|
|
1720
|
-
"type": "card",
|
|
1721
1620
|
"children": [
|
|
1722
1621
|
{
|
|
1723
1622
|
"type": "typography",
|
|
1724
|
-
"
|
|
1725
|
-
"
|
|
1623
|
+
"content": "Graph View",
|
|
1624
|
+
"variant": "caption"
|
|
1726
1625
|
}
|
|
1727
|
-
]
|
|
1626
|
+
],
|
|
1627
|
+
"type": "card"
|
|
1728
1628
|
}
|
|
1729
|
-
]
|
|
1629
|
+
],
|
|
1630
|
+
"columns": 2.0
|
|
1730
1631
|
},
|
|
1731
1632
|
{
|
|
1732
|
-
"type": "line-chart",
|
|
1733
1633
|
"data": [
|
|
1734
1634
|
{
|
|
1735
|
-
"
|
|
1736
|
-
"
|
|
1635
|
+
"value": 12.0,
|
|
1636
|
+
"date": "Jan"
|
|
1737
1637
|
},
|
|
1738
1638
|
{
|
|
1739
1639
|
"date": "Feb",
|
|
1740
|
-
"value": 19
|
|
1640
|
+
"value": 19.0
|
|
1741
1641
|
},
|
|
1742
1642
|
{
|
|
1743
|
-
"
|
|
1744
|
-
"
|
|
1643
|
+
"value": 15.0,
|
|
1644
|
+
"date": "Mar"
|
|
1745
1645
|
},
|
|
1746
1646
|
{
|
|
1747
1647
|
"date": "Apr",
|
|
1748
|
-
"value": 25
|
|
1648
|
+
"value": 25.0
|
|
1749
1649
|
},
|
|
1750
1650
|
{
|
|
1751
1651
|
"date": "May",
|
|
1752
|
-
"value": 22
|
|
1652
|
+
"value": 22.0
|
|
1753
1653
|
},
|
|
1754
1654
|
{
|
|
1755
1655
|
"date": "Jun",
|
|
1756
|
-
"value": 30
|
|
1656
|
+
"value": 30.0
|
|
1757
1657
|
}
|
|
1758
1658
|
],
|
|
1759
1659
|
"xKey": "date",
|
|
1760
|
-
"
|
|
1761
|
-
"title": "Trend"
|
|
1660
|
+
"type": "line-chart",
|
|
1661
|
+
"title": "Trend",
|
|
1662
|
+
"yKey": "value"
|
|
1762
1663
|
},
|
|
1763
1664
|
{
|
|
1764
|
-
"type": "chart-legend",
|
|
1765
1665
|
"items": [
|
|
1766
1666
|
{
|
|
1767
|
-
"
|
|
1768
|
-
"
|
|
1667
|
+
"color": "primary",
|
|
1668
|
+
"label": "Current"
|
|
1769
1669
|
},
|
|
1770
1670
|
{
|
|
1771
1671
|
"label": "Previous",
|
|
1772
1672
|
"color": "muted"
|
|
1773
1673
|
}
|
|
1774
|
-
]
|
|
1674
|
+
],
|
|
1675
|
+
"type": "chart-legend"
|
|
1775
1676
|
},
|
|
1776
1677
|
{
|
|
1678
|
+
"height": 200.0,
|
|
1679
|
+
"width": 400.0,
|
|
1777
1680
|
"type": "graph-view",
|
|
1778
1681
|
"nodes": [
|
|
1779
1682
|
{
|
|
1780
|
-
"id": "a",
|
|
1781
1683
|
"label": "Start",
|
|
1782
|
-
"x": 50,
|
|
1783
|
-
"y": 100
|
|
1684
|
+
"x": 50.0,
|
|
1685
|
+
"y": 100.0,
|
|
1686
|
+
"id": "a"
|
|
1784
1687
|
},
|
|
1785
1688
|
{
|
|
1786
1689
|
"id": "b",
|
|
1787
1690
|
"label": "Process",
|
|
1788
|
-
"x": 200,
|
|
1789
|
-
"y": 50
|
|
1691
|
+
"x": 200.0,
|
|
1692
|
+
"y": 50.0
|
|
1790
1693
|
},
|
|
1791
1694
|
{
|
|
1792
1695
|
"id": "c",
|
|
1793
1696
|
"label": "End",
|
|
1794
|
-
"x": 350,
|
|
1795
|
-
"y": 100
|
|
1697
|
+
"x": 350.0,
|
|
1698
|
+
"y": 100.0
|
|
1796
1699
|
}
|
|
1797
1700
|
],
|
|
1798
1701
|
"edges": [
|
|
1799
1702
|
{
|
|
1800
|
-
"
|
|
1801
|
-
"
|
|
1703
|
+
"to": "b",
|
|
1704
|
+
"from": "a"
|
|
1802
1705
|
},
|
|
1803
1706
|
{
|
|
1804
1707
|
"from": "b",
|
|
1805
1708
|
"to": "c"
|
|
1806
1709
|
}
|
|
1807
|
-
]
|
|
1808
|
-
"width": 400,
|
|
1809
|
-
"height": 200
|
|
1710
|
+
]
|
|
1810
1711
|
}
|
|
1811
|
-
]
|
|
1712
|
+
],
|
|
1713
|
+
"gap": "lg",
|
|
1714
|
+
"direction": "vertical"
|
|
1812
1715
|
}
|
|
1813
1716
|
]
|
|
1814
1717
|
}
|
|
@@ -1816,7 +1719,8 @@
|
|
|
1816
1719
|
]
|
|
1817
1720
|
}
|
|
1818
1721
|
]
|
|
1819
|
-
}
|
|
1722
|
+
},
|
|
1723
|
+
"scope": "collection"
|
|
1820
1724
|
}
|
|
1821
1725
|
],
|
|
1822
1726
|
"pages": [
|
|
@@ -1832,4 +1736,4 @@
|
|
|
1832
1736
|
]
|
|
1833
1737
|
}
|
|
1834
1738
|
]
|
|
1835
|
-
}
|
|
1739
|
+
}
|