@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-platformer-canvas",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-platformer-canvas as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "PlatformerWorldOrbital",
|
|
@@ -37,76 +37,70 @@
|
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
39
|
"name": "platforms",
|
|
40
|
-
"type": "array"
|
|
40
|
+
"type": "array",
|
|
41
|
+
"items": {
|
|
42
|
+
"type": "string"
|
|
43
|
+
}
|
|
41
44
|
},
|
|
42
45
|
{
|
|
43
46
|
"name": "player",
|
|
44
47
|
"type": "object"
|
|
45
48
|
}
|
|
46
|
-
],
|
|
47
|
-
"instances": [
|
|
48
|
-
{
|
|
49
|
-
"id": "level",
|
|
50
|
-
"platforms": [
|
|
51
|
-
{
|
|
52
|
-
"x": 0,
|
|
53
|
-
"y": 350,
|
|
54
|
-
"width": 2400,
|
|
55
|
-
"height": 50
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"x": 200,
|
|
59
|
-
"y": 250,
|
|
60
|
-
"width": 150,
|
|
61
|
-
"height": 20
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"x": 500,
|
|
65
|
-
"y": 200,
|
|
66
|
-
"width": 120,
|
|
67
|
-
"height": 20
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"x": 800,
|
|
71
|
-
"y": 280,
|
|
72
|
-
"width": 180,
|
|
73
|
-
"height": 20
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"x": 1100,
|
|
77
|
-
"y": 180,
|
|
78
|
-
"width": 100,
|
|
79
|
-
"height": 20
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"x": 1400,
|
|
83
|
-
"y": 230,
|
|
84
|
-
"width": 160,
|
|
85
|
-
"height": 20
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"x": 1700,
|
|
89
|
-
"y": 150,
|
|
90
|
-
"width": 140,
|
|
91
|
-
"height": 20
|
|
92
|
-
}
|
|
93
|
-
],
|
|
94
|
-
"player": {
|
|
95
|
-
"x": 50,
|
|
96
|
-
"y": 300,
|
|
97
|
-
"width": 30,
|
|
98
|
-
"height": 30,
|
|
99
|
-
"vx": 0,
|
|
100
|
-
"vy": 0
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
49
|
]
|
|
104
50
|
},
|
|
105
51
|
"traits": [
|
|
106
52
|
{
|
|
107
53
|
"name": "PlatformerWorldPlatformerCanvas",
|
|
108
|
-
"linkedEntity": "PlatformerWorld",
|
|
109
54
|
"category": "interaction",
|
|
55
|
+
"linkedEntity": "PlatformerWorld",
|
|
56
|
+
"emits": [
|
|
57
|
+
{
|
|
58
|
+
"event": "PlatformerWorldLoaded",
|
|
59
|
+
"description": "Fired when PlatformerWorld finishes loading",
|
|
60
|
+
"scope": "internal",
|
|
61
|
+
"payload": [
|
|
62
|
+
{
|
|
63
|
+
"name": "id",
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "name",
|
|
68
|
+
"type": "string"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "description",
|
|
72
|
+
"type": "string"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "status",
|
|
76
|
+
"type": "string"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "createdAt",
|
|
80
|
+
"type": "string"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "platforms",
|
|
84
|
+
"type": "[string]"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "player",
|
|
88
|
+
"type": "object"
|
|
89
|
+
}
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"event": "PlatformerWorldLoadFailed",
|
|
94
|
+
"description": "Fired when PlatformerWorld fails to load",
|
|
95
|
+
"scope": "internal",
|
|
96
|
+
"payload": [
|
|
97
|
+
{
|
|
98
|
+
"name": "message",
|
|
99
|
+
"type": "string"
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
}
|
|
103
|
+
],
|
|
110
104
|
"stateMachine": {
|
|
111
105
|
"states": [
|
|
112
106
|
{
|
|
@@ -122,13 +116,17 @@
|
|
|
122
116
|
"key": "INIT",
|
|
123
117
|
"name": "Initialize"
|
|
124
118
|
},
|
|
119
|
+
{
|
|
120
|
+
"key": "START",
|
|
121
|
+
"name": "Start"
|
|
122
|
+
},
|
|
125
123
|
{
|
|
126
124
|
"key": "LEFT",
|
|
127
|
-
"name": "
|
|
125
|
+
"name": "Left"
|
|
128
126
|
},
|
|
129
127
|
{
|
|
130
128
|
"key": "RIGHT",
|
|
131
|
-
"name": "
|
|
129
|
+
"name": "Right"
|
|
132
130
|
},
|
|
133
131
|
{
|
|
134
132
|
"key": "JUMP",
|
|
@@ -139,8 +137,18 @@
|
|
|
139
137
|
"name": "Stop"
|
|
140
138
|
},
|
|
141
139
|
{
|
|
142
|
-
"key": "
|
|
143
|
-
"name": "
|
|
140
|
+
"key": "PlatformerWorldLoaded",
|
|
141
|
+
"name": "PlatformerWorld loaded"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"key": "PlatformerWorldLoadFailed",
|
|
145
|
+
"name": "PlatformerWorld load failed",
|
|
146
|
+
"payload": [
|
|
147
|
+
{
|
|
148
|
+
"name": "message",
|
|
149
|
+
"type": "string"
|
|
150
|
+
}
|
|
151
|
+
]
|
|
144
152
|
}
|
|
145
153
|
],
|
|
146
154
|
"transitions": [
|
|
@@ -151,25 +159,31 @@
|
|
|
151
159
|
"effects": [
|
|
152
160
|
[
|
|
153
161
|
"fetch",
|
|
154
|
-
"PlatformerWorld"
|
|
162
|
+
"PlatformerWorld",
|
|
163
|
+
{
|
|
164
|
+
"emit": {
|
|
165
|
+
"success": "PlatformerWorldLoaded",
|
|
166
|
+
"failure": "PlatformerWorldLoadFailed"
|
|
167
|
+
}
|
|
168
|
+
}
|
|
155
169
|
],
|
|
156
170
|
[
|
|
157
171
|
"render-ui",
|
|
158
172
|
"main",
|
|
159
173
|
{
|
|
160
174
|
"type": "platformer-canvas",
|
|
161
|
-
"platforms": "@entity.platforms",
|
|
162
175
|
"player": "@entity.player",
|
|
163
|
-
"canvasWidth": 800,
|
|
164
|
-
"canvasHeight": 400,
|
|
165
|
-
"worldWidth": 2400,
|
|
166
|
-
"worldHeight": 400,
|
|
167
176
|
"followCamera": true,
|
|
168
177
|
"bgColor": "#1a1a2e",
|
|
178
|
+
"jumpEvent": "JUMP",
|
|
169
179
|
"leftEvent": "LEFT",
|
|
180
|
+
"worldWidth": 2400.0,
|
|
181
|
+
"worldHeight": 400.0,
|
|
182
|
+
"canvasWidth": 800.0,
|
|
170
183
|
"rightEvent": "RIGHT",
|
|
171
|
-
"
|
|
172
|
-
"
|
|
184
|
+
"stopEvent": "STOP",
|
|
185
|
+
"canvasHeight": 400.0,
|
|
186
|
+
"platforms": "@entity.platforms"
|
|
173
187
|
}
|
|
174
188
|
]
|
|
175
189
|
]
|
|
@@ -183,19 +197,19 @@
|
|
|
183
197
|
"render-ui",
|
|
184
198
|
"main",
|
|
185
199
|
{
|
|
186
|
-
"
|
|
187
|
-
"platforms": "@entity.platforms",
|
|
188
|
-
"player": "@entity.player",
|
|
189
|
-
"canvasWidth": 800,
|
|
190
|
-
"canvasHeight": 400,
|
|
191
|
-
"worldWidth": 2400,
|
|
192
|
-
"worldHeight": 400,
|
|
200
|
+
"worldHeight": 400.0,
|
|
193
201
|
"followCamera": true,
|
|
202
|
+
"player": "@entity.player",
|
|
203
|
+
"canvasWidth": 800.0,
|
|
194
204
|
"bgColor": "#1a1a2e",
|
|
195
|
-
"
|
|
205
|
+
"platforms": "@entity.platforms",
|
|
206
|
+
"canvasHeight": 400.0,
|
|
196
207
|
"rightEvent": "RIGHT",
|
|
197
208
|
"jumpEvent": "JUMP",
|
|
198
|
-
"
|
|
209
|
+
"worldWidth": 2400.0,
|
|
210
|
+
"stopEvent": "STOP",
|
|
211
|
+
"leftEvent": "LEFT",
|
|
212
|
+
"type": "platformer-canvas"
|
|
199
213
|
}
|
|
200
214
|
]
|
|
201
215
|
]
|
|
@@ -203,20 +217,17 @@
|
|
|
203
217
|
{
|
|
204
218
|
"from": "running",
|
|
205
219
|
"to": "running",
|
|
206
|
-
"event": "LEFT"
|
|
207
|
-
"effects": []
|
|
220
|
+
"event": "LEFT"
|
|
208
221
|
},
|
|
209
222
|
{
|
|
210
223
|
"from": "running",
|
|
211
224
|
"to": "running",
|
|
212
|
-
"event": "RIGHT"
|
|
213
|
-
"effects": []
|
|
225
|
+
"event": "RIGHT"
|
|
214
226
|
},
|
|
215
227
|
{
|
|
216
228
|
"from": "running",
|
|
217
229
|
"to": "running",
|
|
218
|
-
"event": "JUMP"
|
|
219
|
-
"effects": []
|
|
230
|
+
"event": "JUMP"
|
|
220
231
|
},
|
|
221
232
|
{
|
|
222
233
|
"from": "running",
|
|
@@ -227,25 +238,26 @@
|
|
|
227
238
|
"render-ui",
|
|
228
239
|
"main",
|
|
229
240
|
{
|
|
230
|
-
"
|
|
231
|
-
"
|
|
241
|
+
"rightEvent": "RIGHT",
|
|
242
|
+
"canvasHeight": 400.0,
|
|
243
|
+
"stopEvent": "STOP",
|
|
232
244
|
"player": "@entity.player",
|
|
233
|
-
"canvasWidth": 800,
|
|
234
|
-
"canvasHeight": 400,
|
|
235
|
-
"worldWidth": 2400,
|
|
236
|
-
"worldHeight": 400,
|
|
237
245
|
"followCamera": true,
|
|
238
|
-
"
|
|
246
|
+
"worldHeight": 400.0,
|
|
247
|
+
"type": "platformer-canvas",
|
|
239
248
|
"leftEvent": "LEFT",
|
|
240
|
-
"
|
|
249
|
+
"canvasWidth": 800.0,
|
|
250
|
+
"worldWidth": 2400.0,
|
|
241
251
|
"jumpEvent": "JUMP",
|
|
242
|
-
"
|
|
252
|
+
"platforms": "@entity.platforms",
|
|
253
|
+
"bgColor": "#1a1a2e"
|
|
243
254
|
}
|
|
244
255
|
]
|
|
245
256
|
]
|
|
246
257
|
}
|
|
247
258
|
]
|
|
248
|
-
}
|
|
259
|
+
},
|
|
260
|
+
"scope": "instance"
|
|
249
261
|
}
|
|
250
262
|
],
|
|
251
263
|
"pages": [
|
|
@@ -261,4 +273,4 @@
|
|
|
261
273
|
]
|
|
262
274
|
}
|
|
263
275
|
]
|
|
264
|
-
}
|
|
276
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-push",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-push as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "PushSubscriberOrbital",
|
|
@@ -27,10 +27,46 @@
|
|
|
27
27
|
"linkedEntity": "PushSubscriber",
|
|
28
28
|
"emits": [
|
|
29
29
|
{
|
|
30
|
-
"event": "PUSH_RECEIVED"
|
|
30
|
+
"event": "PUSH_RECEIVED",
|
|
31
|
+
"scope": "external",
|
|
32
|
+
"payload": [
|
|
33
|
+
{
|
|
34
|
+
"name": "message",
|
|
35
|
+
"type": "string"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
31
38
|
},
|
|
32
39
|
{
|
|
33
|
-
"event": "PUSH_DISCONNECTED"
|
|
40
|
+
"event": "PUSH_DISCONNECTED",
|
|
41
|
+
"scope": "external",
|
|
42
|
+
"payload": [
|
|
43
|
+
{
|
|
44
|
+
"name": "reason",
|
|
45
|
+
"type": "string"
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"event": "PushReceived",
|
|
51
|
+
"description": "Fired on every incoming push frame",
|
|
52
|
+
"scope": "internal",
|
|
53
|
+
"payload": [
|
|
54
|
+
{
|
|
55
|
+
"name": "message",
|
|
56
|
+
"type": "string"
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"event": "PushDisconnected",
|
|
62
|
+
"description": "Fired when the push connection drops",
|
|
63
|
+
"scope": "internal",
|
|
64
|
+
"payload": [
|
|
65
|
+
{
|
|
66
|
+
"name": "reason",
|
|
67
|
+
"type": "string"
|
|
68
|
+
}
|
|
69
|
+
]
|
|
34
70
|
}
|
|
35
71
|
],
|
|
36
72
|
"stateMachine": {
|
|
@@ -39,6 +75,9 @@
|
|
|
39
75
|
"name": "idle",
|
|
40
76
|
"isInitial": true
|
|
41
77
|
},
|
|
78
|
+
{
|
|
79
|
+
"name": "connecting"
|
|
80
|
+
},
|
|
42
81
|
{
|
|
43
82
|
"name": "subscribed"
|
|
44
83
|
},
|
|
@@ -48,50 +87,146 @@
|
|
|
48
87
|
],
|
|
49
88
|
"events": [
|
|
50
89
|
{
|
|
51
|
-
"key": "INIT"
|
|
90
|
+
"key": "INIT",
|
|
91
|
+
"name": "Initialize"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"key": "PUSH_RECEIVED",
|
|
95
|
+
"name": "Push Received",
|
|
96
|
+
"payload": [
|
|
97
|
+
{
|
|
98
|
+
"name": "message",
|
|
99
|
+
"type": "string"
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"key": "PUSH_DISCONNECTED",
|
|
105
|
+
"name": "Push Disconnected",
|
|
106
|
+
"payload": [
|
|
107
|
+
{
|
|
108
|
+
"name": "reason",
|
|
109
|
+
"type": "string"
|
|
110
|
+
}
|
|
111
|
+
]
|
|
52
112
|
},
|
|
53
113
|
{
|
|
54
|
-
"key": "
|
|
114
|
+
"key": "PushReceived",
|
|
115
|
+
"name": "Push received"
|
|
55
116
|
},
|
|
56
117
|
{
|
|
57
|
-
"key": "
|
|
118
|
+
"key": "PushDisconnected",
|
|
119
|
+
"name": "Push disconnected"
|
|
58
120
|
}
|
|
59
121
|
],
|
|
60
122
|
"transitions": [
|
|
61
123
|
{
|
|
62
124
|
"from": "idle",
|
|
63
|
-
"to": "
|
|
125
|
+
"to": "connecting",
|
|
64
126
|
"event": "INIT",
|
|
65
127
|
"effects": [
|
|
128
|
+
[
|
|
129
|
+
"fetch",
|
|
130
|
+
"PushSubscriber"
|
|
131
|
+
],
|
|
66
132
|
[
|
|
67
133
|
"os/watch-http",
|
|
68
134
|
"wss://push.example.com",
|
|
69
135
|
{
|
|
70
136
|
"emit": {
|
|
71
|
-
"
|
|
72
|
-
"
|
|
137
|
+
"failure": "PUSH_DISCONNECTED",
|
|
138
|
+
"on_message": "PUSH_RECEIVED"
|
|
73
139
|
}
|
|
74
140
|
}
|
|
75
141
|
],
|
|
142
|
+
[
|
|
143
|
+
"render-ui",
|
|
144
|
+
"main",
|
|
145
|
+
{
|
|
146
|
+
"children": [
|
|
147
|
+
{
|
|
148
|
+
"type": "spinner",
|
|
149
|
+
"size": "sm"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"variant": "caption",
|
|
153
|
+
"type": "typography",
|
|
154
|
+
"content": "Connecting…"
|
|
155
|
+
}
|
|
156
|
+
],
|
|
157
|
+
"gap": "sm",
|
|
158
|
+
"type": "stack",
|
|
159
|
+
"align": "center",
|
|
160
|
+
"direction": "horizontal"
|
|
161
|
+
}
|
|
162
|
+
]
|
|
163
|
+
]
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"from": "connecting",
|
|
167
|
+
"to": "subscribed",
|
|
168
|
+
"event": "PUSH_RECEIVED",
|
|
169
|
+
"effects": [
|
|
170
|
+
[
|
|
171
|
+
"set",
|
|
172
|
+
"@entity.status",
|
|
173
|
+
"subscribed"
|
|
174
|
+
],
|
|
76
175
|
[
|
|
77
176
|
"render-ui",
|
|
78
177
|
"main",
|
|
79
178
|
{
|
|
80
179
|
"direction": "horizontal",
|
|
180
|
+
"gap": "sm",
|
|
81
181
|
"align": "center",
|
|
82
182
|
"type": "stack",
|
|
83
183
|
"children": [
|
|
84
184
|
{
|
|
85
185
|
"name": "wifi",
|
|
186
|
+
"type": "icon",
|
|
187
|
+
"color": "success",
|
|
188
|
+
"size": "sm"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"content": "Connected",
|
|
192
|
+
"variant": "caption",
|
|
193
|
+
"type": "typography"
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
}
|
|
197
|
+
]
|
|
198
|
+
]
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"from": "connecting",
|
|
202
|
+
"to": "reconnecting",
|
|
203
|
+
"event": "PUSH_DISCONNECTED",
|
|
204
|
+
"effects": [
|
|
205
|
+
[
|
|
206
|
+
"set",
|
|
207
|
+
"@entity.status",
|
|
208
|
+
"reconnecting"
|
|
209
|
+
],
|
|
210
|
+
[
|
|
211
|
+
"render-ui",
|
|
212
|
+
"main",
|
|
213
|
+
{
|
|
214
|
+
"children": [
|
|
215
|
+
{
|
|
216
|
+
"name": "wifi-off",
|
|
217
|
+
"color": "warning",
|
|
86
218
|
"size": "sm",
|
|
87
219
|
"type": "icon"
|
|
88
220
|
},
|
|
89
221
|
{
|
|
90
|
-
"type": "typography",
|
|
91
222
|
"variant": "caption",
|
|
92
|
-
"
|
|
223
|
+
"type": "typography",
|
|
224
|
+
"content": "Reconnecting…"
|
|
93
225
|
}
|
|
94
226
|
],
|
|
227
|
+
"align": "center",
|
|
228
|
+
"type": "stack",
|
|
229
|
+
"direction": "horizontal",
|
|
95
230
|
"gap": "sm"
|
|
96
231
|
}
|
|
97
232
|
]
|
|
@@ -111,23 +246,23 @@
|
|
|
111
246
|
"render-ui",
|
|
112
247
|
"main",
|
|
113
248
|
{
|
|
249
|
+
"gap": "sm",
|
|
114
250
|
"direction": "horizontal",
|
|
115
|
-
"align": "center",
|
|
116
251
|
"children": [
|
|
117
252
|
{
|
|
253
|
+
"type": "icon",
|
|
118
254
|
"size": "sm",
|
|
119
255
|
"name": "wifi",
|
|
120
|
-
"color": "success"
|
|
121
|
-
"type": "icon"
|
|
256
|
+
"color": "success"
|
|
122
257
|
},
|
|
123
258
|
{
|
|
124
|
-
"content": "Connected",
|
|
125
259
|
"variant": "caption",
|
|
126
|
-
"type": "typography"
|
|
260
|
+
"type": "typography",
|
|
261
|
+
"content": "Connected"
|
|
127
262
|
}
|
|
128
263
|
],
|
|
129
|
-
"
|
|
130
|
-
"
|
|
264
|
+
"type": "stack",
|
|
265
|
+
"align": "center"
|
|
131
266
|
}
|
|
132
267
|
]
|
|
133
268
|
]
|
|
@@ -149,20 +284,20 @@
|
|
|
149
284
|
"align": "center",
|
|
150
285
|
"children": [
|
|
151
286
|
{
|
|
152
|
-
"
|
|
287
|
+
"size": "sm",
|
|
153
288
|
"name": "wifi-off",
|
|
154
289
|
"color": "warning",
|
|
155
|
-
"
|
|
290
|
+
"type": "icon"
|
|
156
291
|
},
|
|
157
292
|
{
|
|
293
|
+
"content": "Reconnecting…",
|
|
158
294
|
"type": "typography",
|
|
159
|
-
"variant": "caption"
|
|
160
|
-
"content": "Reconnecting…"
|
|
295
|
+
"variant": "caption"
|
|
161
296
|
}
|
|
162
297
|
],
|
|
298
|
+
"direction": "horizontal",
|
|
163
299
|
"type": "stack",
|
|
164
|
-
"gap": "sm"
|
|
165
|
-
"direction": "horizontal"
|
|
300
|
+
"gap": "sm"
|
|
166
301
|
}
|
|
167
302
|
]
|
|
168
303
|
]
|
|
@@ -181,23 +316,23 @@
|
|
|
181
316
|
"render-ui",
|
|
182
317
|
"main",
|
|
183
318
|
{
|
|
184
|
-
"gap": "sm",
|
|
185
|
-
"direction": "horizontal",
|
|
186
319
|
"type": "stack",
|
|
320
|
+
"gap": "sm",
|
|
187
321
|
"align": "center",
|
|
188
322
|
"children": [
|
|
189
323
|
{
|
|
190
324
|
"type": "icon",
|
|
191
|
-
"
|
|
325
|
+
"color": "success",
|
|
192
326
|
"name": "wifi",
|
|
193
|
-
"
|
|
327
|
+
"size": "sm"
|
|
194
328
|
},
|
|
195
329
|
{
|
|
330
|
+
"variant": "caption",
|
|
196
331
|
"type": "typography",
|
|
197
|
-
"content": "Connected"
|
|
198
|
-
"variant": "caption"
|
|
332
|
+
"content": "Connected"
|
|
199
333
|
}
|
|
200
|
-
]
|
|
334
|
+
],
|
|
335
|
+
"direction": "horizontal"
|
|
201
336
|
}
|
|
202
337
|
]
|
|
203
338
|
]
|
|
@@ -211,20 +346,20 @@
|
|
|
211
346
|
"render-ui",
|
|
212
347
|
"main",
|
|
213
348
|
{
|
|
349
|
+
"type": "stack",
|
|
214
350
|
"gap": "sm",
|
|
215
351
|
"direction": "horizontal",
|
|
216
|
-
"type": "stack",
|
|
217
352
|
"align": "center",
|
|
218
353
|
"children": [
|
|
219
354
|
{
|
|
355
|
+
"type": "icon",
|
|
220
356
|
"size": "sm",
|
|
221
357
|
"name": "wifi-off",
|
|
222
|
-
"type": "icon",
|
|
223
358
|
"color": "destructive"
|
|
224
359
|
},
|
|
225
360
|
{
|
|
226
|
-
"variant": "caption",
|
|
227
361
|
"content": "Disconnected",
|
|
362
|
+
"variant": "caption",
|
|
228
363
|
"type": "typography"
|
|
229
364
|
}
|
|
230
365
|
]
|
|
@@ -233,7 +368,8 @@
|
|
|
233
368
|
]
|
|
234
369
|
}
|
|
235
370
|
]
|
|
236
|
-
}
|
|
371
|
+
},
|
|
372
|
+
"scope": "instance"
|
|
237
373
|
}
|
|
238
374
|
],
|
|
239
375
|
"pages": [
|
|
@@ -249,4 +385,4 @@
|
|
|
249
385
|
]
|
|
250
386
|
}
|
|
251
387
|
]
|
|
252
|
-
}
|
|
388
|
+
}
|