@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
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"traits": [
|
|
46
46
|
{
|
|
47
47
|
"name": "LoadableItemLoading",
|
|
48
|
-
"linkedEntity": "LoadableItem",
|
|
49
48
|
"category": "interaction",
|
|
49
|
+
"linkedEntity": "LoadableItem",
|
|
50
50
|
"stateMachine": {
|
|
51
51
|
"states": [
|
|
52
52
|
{
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
"key": "START",
|
|
73
|
-
"name": "Start
|
|
73
|
+
"name": "Start"
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
"key": "LOADED",
|
|
@@ -104,15 +104,14 @@
|
|
|
104
104
|
"children": [
|
|
105
105
|
{
|
|
106
106
|
"type": "stack",
|
|
107
|
-
"direction": "vertical",
|
|
108
107
|
"gap": "lg",
|
|
108
|
+
"direction": "vertical",
|
|
109
109
|
"align": "center",
|
|
110
110
|
"children": [
|
|
111
111
|
{
|
|
112
|
+
"gap": "sm",
|
|
112
113
|
"type": "stack",
|
|
113
114
|
"direction": "horizontal",
|
|
114
|
-
"gap": "sm",
|
|
115
|
-
"align": "center",
|
|
116
115
|
"children": [
|
|
117
116
|
{
|
|
118
117
|
"type": "icon",
|
|
@@ -121,26 +120,27 @@
|
|
|
121
120
|
},
|
|
122
121
|
{
|
|
123
122
|
"type": "typography",
|
|
124
|
-
"
|
|
125
|
-
"
|
|
123
|
+
"variant": "h2",
|
|
124
|
+
"content": "LoadableItem"
|
|
126
125
|
}
|
|
127
|
-
]
|
|
126
|
+
],
|
|
127
|
+
"align": "center"
|
|
128
128
|
},
|
|
129
129
|
{
|
|
130
130
|
"type": "divider"
|
|
131
131
|
},
|
|
132
132
|
{
|
|
133
|
-
"type": "typography",
|
|
134
|
-
"variant": "body",
|
|
135
133
|
"color": "muted",
|
|
136
|
-
"
|
|
134
|
+
"variant": "body",
|
|
135
|
+
"content": "Ready to load loadableitem. Click Start to begin.",
|
|
136
|
+
"type": "typography"
|
|
137
137
|
},
|
|
138
138
|
{
|
|
139
|
-
"type": "button",
|
|
140
139
|
"label": "Start",
|
|
140
|
+
"icon": "play",
|
|
141
|
+
"type": "button",
|
|
141
142
|
"event": "START",
|
|
142
|
-
"variant": "primary"
|
|
143
|
-
"icon": "play"
|
|
143
|
+
"variant": "primary"
|
|
144
144
|
}
|
|
145
145
|
]
|
|
146
146
|
}
|
|
@@ -165,7 +165,6 @@
|
|
|
165
165
|
{
|
|
166
166
|
"type": "stack",
|
|
167
167
|
"direction": "vertical",
|
|
168
|
-
"gap": "lg",
|
|
169
168
|
"align": "center",
|
|
170
169
|
"children": [
|
|
171
170
|
{
|
|
@@ -179,14 +178,15 @@
|
|
|
179
178
|
},
|
|
180
179
|
{
|
|
181
180
|
"type": "progress-bar",
|
|
182
|
-
"
|
|
183
|
-
"
|
|
181
|
+
"showPercentage": true,
|
|
182
|
+
"value": 50.0
|
|
184
183
|
},
|
|
185
184
|
{
|
|
186
|
-
"
|
|
187
|
-
"
|
|
185
|
+
"variant": "text",
|
|
186
|
+
"type": "skeleton"
|
|
188
187
|
}
|
|
189
|
-
]
|
|
188
|
+
],
|
|
189
|
+
"gap": "lg"
|
|
190
190
|
}
|
|
191
191
|
]
|
|
192
192
|
]
|
|
@@ -205,26 +205,24 @@
|
|
|
205
205
|
"render-ui",
|
|
206
206
|
"main",
|
|
207
207
|
{
|
|
208
|
-
"type": "stack",
|
|
209
|
-
"direction": "vertical",
|
|
210
|
-
"gap": "lg",
|
|
211
208
|
"align": "center",
|
|
209
|
+
"type": "stack",
|
|
212
210
|
"children": [
|
|
213
211
|
{
|
|
212
|
+
"align": "center",
|
|
214
213
|
"type": "stack",
|
|
215
214
|
"direction": "horizontal",
|
|
216
215
|
"gap": "md",
|
|
217
|
-
"align": "center",
|
|
218
216
|
"children": [
|
|
219
217
|
{
|
|
220
218
|
"type": "icon",
|
|
221
|
-
"
|
|
222
|
-
"
|
|
219
|
+
"size": "lg",
|
|
220
|
+
"name": "check-circle"
|
|
223
221
|
},
|
|
224
222
|
{
|
|
225
|
-
"type": "typography",
|
|
226
223
|
"content": "Success",
|
|
227
|
-
"variant": "h2"
|
|
224
|
+
"variant": "h2",
|
|
225
|
+
"type": "typography"
|
|
228
226
|
}
|
|
229
227
|
]
|
|
230
228
|
},
|
|
@@ -237,13 +235,15 @@
|
|
|
237
235
|
"message": "Operation completed successfully."
|
|
238
236
|
},
|
|
239
237
|
{
|
|
240
|
-
"type": "button",
|
|
241
|
-
"label": "Reset",
|
|
242
|
-
"event": "RESET",
|
|
243
238
|
"variant": "ghost",
|
|
244
|
-
"
|
|
239
|
+
"event": "RESET",
|
|
240
|
+
"type": "button",
|
|
241
|
+
"icon": "rotate-ccw",
|
|
242
|
+
"label": "Reset"
|
|
245
243
|
}
|
|
246
|
-
]
|
|
244
|
+
],
|
|
245
|
+
"gap": "lg",
|
|
246
|
+
"direction": "vertical"
|
|
247
247
|
}
|
|
248
248
|
]
|
|
249
249
|
]
|
|
@@ -262,92 +262,50 @@
|
|
|
262
262
|
"render-ui",
|
|
263
263
|
"main",
|
|
264
264
|
{
|
|
265
|
-
"type": "error-boundary",
|
|
266
265
|
"children": [
|
|
267
266
|
{
|
|
268
|
-
"type": "stack",
|
|
269
|
-
"direction": "vertical",
|
|
270
|
-
"gap": "lg",
|
|
271
|
-
"align": "center",
|
|
272
267
|
"children": [
|
|
273
268
|
{
|
|
274
|
-
"
|
|
269
|
+
"onRetry": "START",
|
|
275
270
|
"title": "Error",
|
|
276
|
-
"
|
|
277
|
-
"
|
|
271
|
+
"type": "error-state",
|
|
272
|
+
"message": "Something went wrong. Please try again."
|
|
278
273
|
},
|
|
279
274
|
{
|
|
280
275
|
"type": "stack",
|
|
281
276
|
"direction": "horizontal",
|
|
282
|
-
"gap": "sm",
|
|
283
277
|
"justify": "center",
|
|
284
278
|
"children": [
|
|
285
279
|
{
|
|
286
|
-
"type": "button",
|
|
287
|
-
"label": "Retry",
|
|
288
280
|
"event": "START",
|
|
281
|
+
"icon": "rotate-ccw",
|
|
289
282
|
"variant": "primary",
|
|
290
|
-
"
|
|
283
|
+
"label": "Retry",
|
|
284
|
+
"type": "button"
|
|
291
285
|
},
|
|
292
286
|
{
|
|
293
|
-
"type": "button",
|
|
294
|
-
"label": "Reset",
|
|
295
287
|
"event": "RESET",
|
|
296
|
-
"
|
|
288
|
+
"label": "Reset",
|
|
289
|
+
"variant": "ghost",
|
|
290
|
+
"type": "button"
|
|
297
291
|
}
|
|
298
|
-
]
|
|
292
|
+
],
|
|
293
|
+
"gap": "sm"
|
|
299
294
|
}
|
|
300
|
-
]
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
]
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
"from": "error",
|
|
309
|
-
"to": "loading",
|
|
310
|
-
"event": "START",
|
|
311
|
-
"effects": [
|
|
312
|
-
[
|
|
313
|
-
"set",
|
|
314
|
-
"@entity.loadingStatus",
|
|
315
|
-
"loading"
|
|
316
|
-
],
|
|
317
|
-
[
|
|
318
|
-
"render-ui",
|
|
319
|
-
"main",
|
|
320
|
-
{
|
|
321
|
-
"type": "stack",
|
|
322
|
-
"direction": "vertical",
|
|
323
|
-
"gap": "lg",
|
|
324
|
-
"align": "center",
|
|
325
|
-
"children": [
|
|
326
|
-
{
|
|
327
|
-
"type": "loading-state",
|
|
328
|
-
"title": "Loading",
|
|
329
|
-
"message": "Loading loadableitem..."
|
|
330
|
-
},
|
|
331
|
-
{
|
|
332
|
-
"type": "spinner",
|
|
333
|
-
"size": "lg"
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
"type": "progress-bar",
|
|
337
|
-
"value": 50,
|
|
338
|
-
"showPercentage": true
|
|
339
|
-
},
|
|
340
|
-
{
|
|
341
|
-
"type": "skeleton",
|
|
342
|
-
"variant": "text"
|
|
295
|
+
],
|
|
296
|
+
"type": "stack",
|
|
297
|
+
"align": "center",
|
|
298
|
+
"direction": "vertical",
|
|
299
|
+
"gap": "lg"
|
|
343
300
|
}
|
|
344
|
-
]
|
|
301
|
+
],
|
|
302
|
+
"type": "error-boundary"
|
|
345
303
|
}
|
|
346
304
|
]
|
|
347
305
|
]
|
|
348
306
|
},
|
|
349
307
|
{
|
|
350
|
-
"from": "
|
|
308
|
+
"from": "success",
|
|
351
309
|
"to": "idle",
|
|
352
310
|
"event": "RESET",
|
|
353
311
|
"effects": [
|
|
@@ -363,46 +321,46 @@
|
|
|
363
321
|
"type": "center",
|
|
364
322
|
"children": [
|
|
365
323
|
{
|
|
366
|
-
"type": "stack",
|
|
367
324
|
"direction": "vertical",
|
|
368
|
-
"gap": "lg",
|
|
369
|
-
"align": "center",
|
|
370
325
|
"children": [
|
|
371
326
|
{
|
|
372
|
-
"type": "stack",
|
|
373
327
|
"direction": "horizontal",
|
|
374
|
-
"gap": "sm",
|
|
375
|
-
"align": "center",
|
|
376
328
|
"children": [
|
|
377
329
|
{
|
|
378
330
|
"type": "icon",
|
|
379
|
-
"
|
|
380
|
-
"
|
|
331
|
+
"size": "lg",
|
|
332
|
+
"name": "play-circle"
|
|
381
333
|
},
|
|
382
334
|
{
|
|
383
|
-
"type": "typography",
|
|
384
335
|
"content": "LoadableItem",
|
|
336
|
+
"type": "typography",
|
|
385
337
|
"variant": "h2"
|
|
386
338
|
}
|
|
387
|
-
]
|
|
339
|
+
],
|
|
340
|
+
"type": "stack",
|
|
341
|
+
"gap": "sm",
|
|
342
|
+
"align": "center"
|
|
388
343
|
},
|
|
389
344
|
{
|
|
390
345
|
"type": "divider"
|
|
391
346
|
},
|
|
392
347
|
{
|
|
393
348
|
"type": "typography",
|
|
394
|
-
"variant": "body",
|
|
395
349
|
"color": "muted",
|
|
350
|
+
"variant": "body",
|
|
396
351
|
"content": "Ready to load loadableitem. Click Start to begin."
|
|
397
352
|
},
|
|
398
353
|
{
|
|
399
|
-
"type": "button",
|
|
400
|
-
"label": "Start",
|
|
401
354
|
"event": "START",
|
|
402
355
|
"variant": "primary",
|
|
356
|
+
"type": "button",
|
|
357
|
+
"label": "Start",
|
|
403
358
|
"icon": "play"
|
|
404
359
|
}
|
|
405
|
-
]
|
|
360
|
+
],
|
|
361
|
+
"align": "center",
|
|
362
|
+
"type": "stack",
|
|
363
|
+
"gap": "lg"
|
|
406
364
|
}
|
|
407
365
|
]
|
|
408
366
|
}
|
|
@@ -410,7 +368,49 @@
|
|
|
410
368
|
]
|
|
411
369
|
},
|
|
412
370
|
{
|
|
413
|
-
"from": "
|
|
371
|
+
"from": "error",
|
|
372
|
+
"to": "loading",
|
|
373
|
+
"event": "START",
|
|
374
|
+
"effects": [
|
|
375
|
+
[
|
|
376
|
+
"set",
|
|
377
|
+
"@entity.loadingStatus",
|
|
378
|
+
"loading"
|
|
379
|
+
],
|
|
380
|
+
[
|
|
381
|
+
"render-ui",
|
|
382
|
+
"main",
|
|
383
|
+
{
|
|
384
|
+
"align": "center",
|
|
385
|
+
"direction": "vertical",
|
|
386
|
+
"children": [
|
|
387
|
+
{
|
|
388
|
+
"type": "loading-state",
|
|
389
|
+
"title": "Loading",
|
|
390
|
+
"message": "Loading loadableitem..."
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"size": "lg",
|
|
394
|
+
"type": "spinner"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"type": "progress-bar",
|
|
398
|
+
"value": 50.0,
|
|
399
|
+
"showPercentage": true
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"type": "skeleton",
|
|
403
|
+
"variant": "text"
|
|
404
|
+
}
|
|
405
|
+
],
|
|
406
|
+
"gap": "lg",
|
|
407
|
+
"type": "stack"
|
|
408
|
+
}
|
|
409
|
+
]
|
|
410
|
+
]
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"from": "error",
|
|
414
414
|
"to": "idle",
|
|
415
415
|
"event": "RESET",
|
|
416
416
|
"effects": [
|
|
@@ -426,15 +426,8 @@
|
|
|
426
426
|
"type": "center",
|
|
427
427
|
"children": [
|
|
428
428
|
{
|
|
429
|
-
"type": "stack",
|
|
430
|
-
"direction": "vertical",
|
|
431
|
-
"gap": "lg",
|
|
432
|
-
"align": "center",
|
|
433
429
|
"children": [
|
|
434
430
|
{
|
|
435
|
-
"type": "stack",
|
|
436
|
-
"direction": "horizontal",
|
|
437
|
-
"gap": "sm",
|
|
438
431
|
"align": "center",
|
|
439
432
|
"children": [
|
|
440
433
|
{
|
|
@@ -447,25 +440,32 @@
|
|
|
447
440
|
"content": "LoadableItem",
|
|
448
441
|
"variant": "h2"
|
|
449
442
|
}
|
|
450
|
-
]
|
|
443
|
+
],
|
|
444
|
+
"gap": "sm",
|
|
445
|
+
"type": "stack",
|
|
446
|
+
"direction": "horizontal"
|
|
451
447
|
},
|
|
452
448
|
{
|
|
453
449
|
"type": "divider"
|
|
454
450
|
},
|
|
455
451
|
{
|
|
456
|
-
"
|
|
457
|
-
"variant": "body",
|
|
452
|
+
"content": "Ready to load loadableitem. Click Start to begin.",
|
|
458
453
|
"color": "muted",
|
|
459
|
-
"
|
|
454
|
+
"type": "typography",
|
|
455
|
+
"variant": "body"
|
|
460
456
|
},
|
|
461
457
|
{
|
|
458
|
+
"icon": "play",
|
|
462
459
|
"type": "button",
|
|
463
|
-
"label": "Start",
|
|
464
460
|
"event": "START",
|
|
465
|
-
"
|
|
466
|
-
"
|
|
461
|
+
"label": "Start",
|
|
462
|
+
"variant": "primary"
|
|
467
463
|
}
|
|
468
|
-
]
|
|
464
|
+
],
|
|
465
|
+
"gap": "lg",
|
|
466
|
+
"align": "center",
|
|
467
|
+
"direction": "vertical",
|
|
468
|
+
"type": "stack"
|
|
469
469
|
}
|
|
470
470
|
]
|
|
471
471
|
}
|
|
@@ -473,7 +473,8 @@
|
|
|
473
473
|
]
|
|
474
474
|
}
|
|
475
475
|
]
|
|
476
|
-
}
|
|
476
|
+
},
|
|
477
|
+
"scope": "instance"
|
|
477
478
|
}
|
|
478
479
|
],
|
|
479
480
|
"pages": [
|
|
@@ -489,4 +490,4 @@
|
|
|
489
490
|
]
|
|
490
491
|
}
|
|
491
492
|
]
|
|
492
|
-
}
|
|
493
|
+
}
|