@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
|
@@ -38,43 +38,86 @@
|
|
|
38
38
|
{
|
|
39
39
|
"name": "total",
|
|
40
40
|
"type": "number",
|
|
41
|
-
"default": 0
|
|
41
|
+
"default": 0.0
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
"name": "combo",
|
|
45
45
|
"type": "number",
|
|
46
|
-
"default": 1
|
|
46
|
+
"default": 1.0
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"name": "points",
|
|
50
50
|
"type": "number",
|
|
51
|
-
"default": 0
|
|
51
|
+
"default": 0.0
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
54
|
"name": "multiplier",
|
|
55
55
|
"type": "number",
|
|
56
|
-
"default": 1
|
|
57
|
-
}
|
|
58
|
-
],
|
|
59
|
-
"instances": [
|
|
60
|
-
{
|
|
61
|
-
"id": "score-1",
|
|
62
|
-
"name": "Player 1",
|
|
63
|
-
"description": "Current session",
|
|
64
|
-
"status": "active",
|
|
65
|
-
"createdAt": "2026-03-19",
|
|
66
|
-
"total": 1250,
|
|
67
|
-
"combo": 3,
|
|
68
|
-
"points": 150,
|
|
69
|
-
"multiplier": 2
|
|
56
|
+
"default": 1.0
|
|
70
57
|
}
|
|
71
58
|
]
|
|
72
59
|
},
|
|
73
60
|
"traits": [
|
|
74
61
|
{
|
|
75
62
|
"name": "ScoreEntryScore",
|
|
76
|
-
"linkedEntity": "ScoreEntry",
|
|
77
63
|
"category": "interaction",
|
|
64
|
+
"linkedEntity": "ScoreEntry",
|
|
65
|
+
"emits": [
|
|
66
|
+
{
|
|
67
|
+
"event": "ScoreEntryLoaded",
|
|
68
|
+
"description": "Fired when ScoreEntry finishes loading",
|
|
69
|
+
"scope": "internal",
|
|
70
|
+
"payload": [
|
|
71
|
+
{
|
|
72
|
+
"name": "id",
|
|
73
|
+
"type": "string"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "name",
|
|
77
|
+
"type": "string"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "description",
|
|
81
|
+
"type": "string"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "status",
|
|
85
|
+
"type": "string"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "createdAt",
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "total",
|
|
93
|
+
"type": "number"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "combo",
|
|
97
|
+
"type": "number"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "points",
|
|
101
|
+
"type": "number"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "multiplier",
|
|
105
|
+
"type": "number"
|
|
106
|
+
}
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"event": "ScoreEntryLoadFailed",
|
|
111
|
+
"description": "Fired when ScoreEntry fails to load",
|
|
112
|
+
"scope": "internal",
|
|
113
|
+
"payload": [
|
|
114
|
+
{
|
|
115
|
+
"name": "message",
|
|
116
|
+
"type": "string"
|
|
117
|
+
}
|
|
118
|
+
]
|
|
119
|
+
}
|
|
120
|
+
],
|
|
78
121
|
"stateMachine": {
|
|
79
122
|
"states": [
|
|
80
123
|
{
|
|
@@ -89,7 +132,7 @@
|
|
|
89
132
|
},
|
|
90
133
|
{
|
|
91
134
|
"key": "ADD",
|
|
92
|
-
"name": "Add
|
|
135
|
+
"name": "Add",
|
|
93
136
|
"payload": [
|
|
94
137
|
{
|
|
95
138
|
"name": "points",
|
|
@@ -100,7 +143,7 @@
|
|
|
100
143
|
},
|
|
101
144
|
{
|
|
102
145
|
"key": "SUBTRACT",
|
|
103
|
-
"name": "Subtract
|
|
146
|
+
"name": "Subtract",
|
|
104
147
|
"payload": [
|
|
105
148
|
{
|
|
106
149
|
"name": "points",
|
|
@@ -109,10 +152,6 @@
|
|
|
109
152
|
}
|
|
110
153
|
]
|
|
111
154
|
},
|
|
112
|
-
{
|
|
113
|
-
"key": "RESET",
|
|
114
|
-
"name": "Reset"
|
|
115
|
-
},
|
|
116
155
|
{
|
|
117
156
|
"key": "COMBO",
|
|
118
157
|
"name": "Combo",
|
|
@@ -123,6 +162,24 @@
|
|
|
123
162
|
"required": true
|
|
124
163
|
}
|
|
125
164
|
]
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"key": "RESET",
|
|
168
|
+
"name": "Reset"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"key": "ScoreEntryLoaded",
|
|
172
|
+
"name": "ScoreEntry loaded"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"key": "ScoreEntryLoadFailed",
|
|
176
|
+
"name": "ScoreEntry load failed",
|
|
177
|
+
"payload": [
|
|
178
|
+
{
|
|
179
|
+
"name": "message",
|
|
180
|
+
"type": "string"
|
|
181
|
+
}
|
|
182
|
+
]
|
|
126
183
|
}
|
|
127
184
|
],
|
|
128
185
|
"transitions": [
|
|
@@ -133,19 +190,24 @@
|
|
|
133
190
|
"effects": [
|
|
134
191
|
[
|
|
135
192
|
"fetch",
|
|
136
|
-
"ScoreEntry"
|
|
193
|
+
"ScoreEntry",
|
|
194
|
+
{
|
|
195
|
+
"emit": {
|
|
196
|
+
"failure": "ScoreEntryLoadFailed",
|
|
197
|
+
"success": "ScoreEntryLoaded"
|
|
198
|
+
}
|
|
199
|
+
}
|
|
137
200
|
],
|
|
138
201
|
[
|
|
139
202
|
"render-ui",
|
|
140
203
|
"main",
|
|
141
204
|
{
|
|
142
|
-
"type": "stack",
|
|
143
205
|
"direction": "vertical",
|
|
144
|
-
"gap": "lg",
|
|
145
|
-
"align": "center",
|
|
146
206
|
"children": [
|
|
147
207
|
{
|
|
208
|
+
"multiplier": 1.0,
|
|
148
209
|
"type": "score-board",
|
|
210
|
+
"level": 1.0,
|
|
149
211
|
"score": [
|
|
150
212
|
"object/get",
|
|
151
213
|
[
|
|
@@ -154,7 +216,7 @@
|
|
|
154
216
|
],
|
|
155
217
|
"total"
|
|
156
218
|
],
|
|
157
|
-
"highScore": 0,
|
|
219
|
+
"highScore": 0.0,
|
|
158
220
|
"combo": [
|
|
159
221
|
"object/get",
|
|
160
222
|
[
|
|
@@ -162,12 +224,10 @@
|
|
|
162
224
|
"@entity"
|
|
163
225
|
],
|
|
164
226
|
"combo"
|
|
165
|
-
]
|
|
166
|
-
"multiplier": 1,
|
|
167
|
-
"level": 1
|
|
227
|
+
]
|
|
168
228
|
},
|
|
169
229
|
{
|
|
170
|
-
"
|
|
230
|
+
"duration": 300.0,
|
|
171
231
|
"value": [
|
|
172
232
|
"object/get",
|
|
173
233
|
[
|
|
@@ -177,10 +237,10 @@
|
|
|
177
237
|
"total"
|
|
178
238
|
],
|
|
179
239
|
"prefix": "Score: ",
|
|
180
|
-
"
|
|
240
|
+
"type": "animated-counter"
|
|
181
241
|
},
|
|
182
242
|
{
|
|
183
|
-
"
|
|
243
|
+
"showValue": true,
|
|
184
244
|
"value": [
|
|
185
245
|
"object/get",
|
|
186
246
|
[
|
|
@@ -189,49 +249,52 @@
|
|
|
189
249
|
],
|
|
190
250
|
"points"
|
|
191
251
|
],
|
|
192
|
-
"
|
|
252
|
+
"type": "trend-indicator"
|
|
193
253
|
},
|
|
194
254
|
{
|
|
195
|
-
"
|
|
196
|
-
"
|
|
255
|
+
"size": "md",
|
|
256
|
+
"type": "spacer"
|
|
197
257
|
},
|
|
198
258
|
{
|
|
199
|
-
"type": "stack",
|
|
200
259
|
"direction": "horizontal",
|
|
201
|
-
"
|
|
260
|
+
"type": "stack",
|
|
202
261
|
"justify": "center",
|
|
262
|
+
"gap": "sm",
|
|
203
263
|
"children": [
|
|
204
264
|
{
|
|
205
|
-
"type": "button",
|
|
206
|
-
"label": "Add",
|
|
207
265
|
"event": "ADD",
|
|
266
|
+
"label": "Add",
|
|
208
267
|
"variant": "primary",
|
|
268
|
+
"type": "button",
|
|
209
269
|
"icon": "plus"
|
|
210
270
|
},
|
|
211
271
|
{
|
|
272
|
+
"event": "SUBTRACT",
|
|
273
|
+
"icon": "minus",
|
|
212
274
|
"type": "button",
|
|
213
275
|
"label": "Subtract",
|
|
214
|
-
"
|
|
215
|
-
"variant": "secondary",
|
|
216
|
-
"icon": "minus"
|
|
276
|
+
"variant": "secondary"
|
|
217
277
|
},
|
|
218
278
|
{
|
|
279
|
+
"icon": "zap",
|
|
219
280
|
"type": "button",
|
|
220
281
|
"label": "Combo",
|
|
221
|
-
"event": "COMBO",
|
|
222
282
|
"variant": "secondary",
|
|
223
|
-
"
|
|
283
|
+
"event": "COMBO"
|
|
224
284
|
},
|
|
225
285
|
{
|
|
286
|
+
"event": "RESET",
|
|
226
287
|
"type": "button",
|
|
227
288
|
"label": "Reset",
|
|
228
|
-
"event": "RESET",
|
|
229
289
|
"variant": "ghost",
|
|
230
290
|
"icon": "rotate-ccw"
|
|
231
291
|
}
|
|
232
292
|
]
|
|
233
293
|
}
|
|
234
|
-
]
|
|
294
|
+
],
|
|
295
|
+
"type": "stack",
|
|
296
|
+
"gap": "lg",
|
|
297
|
+
"align": "center"
|
|
235
298
|
}
|
|
236
299
|
]
|
|
237
300
|
]
|
|
@@ -250,12 +313,12 @@
|
|
|
250
313
|
"render-ui",
|
|
251
314
|
"main",
|
|
252
315
|
{
|
|
253
|
-
"type": "stack",
|
|
254
316
|
"direction": "vertical",
|
|
255
|
-
"
|
|
317
|
+
"type": "stack",
|
|
256
318
|
"align": "center",
|
|
257
319
|
"children": [
|
|
258
320
|
{
|
|
321
|
+
"level": 1.0,
|
|
259
322
|
"type": "score-board",
|
|
260
323
|
"score": [
|
|
261
324
|
"object/get",
|
|
@@ -265,7 +328,7 @@
|
|
|
265
328
|
],
|
|
266
329
|
"total"
|
|
267
330
|
],
|
|
268
|
-
"
|
|
331
|
+
"multiplier": 1.0,
|
|
269
332
|
"combo": [
|
|
270
333
|
"object/get",
|
|
271
334
|
[
|
|
@@ -274,11 +337,12 @@
|
|
|
274
337
|
],
|
|
275
338
|
"combo"
|
|
276
339
|
],
|
|
277
|
-
"
|
|
278
|
-
"level": 1
|
|
340
|
+
"highScore": 0.0
|
|
279
341
|
},
|
|
280
342
|
{
|
|
281
343
|
"type": "animated-counter",
|
|
344
|
+
"prefix": "Score: ",
|
|
345
|
+
"duration": 300.0,
|
|
282
346
|
"value": [
|
|
283
347
|
"object/get",
|
|
284
348
|
[
|
|
@@ -286,12 +350,11 @@
|
|
|
286
350
|
"@entity"
|
|
287
351
|
],
|
|
288
352
|
"total"
|
|
289
|
-
]
|
|
290
|
-
"prefix": "Score: ",
|
|
291
|
-
"duration": 300
|
|
353
|
+
]
|
|
292
354
|
},
|
|
293
355
|
{
|
|
294
356
|
"type": "trend-indicator",
|
|
357
|
+
"showValue": true,
|
|
295
358
|
"value": [
|
|
296
359
|
"object/get",
|
|
297
360
|
[
|
|
@@ -299,50 +362,50 @@
|
|
|
299
362
|
"@entity"
|
|
300
363
|
],
|
|
301
364
|
"points"
|
|
302
|
-
]
|
|
303
|
-
"showValue": true
|
|
365
|
+
]
|
|
304
366
|
},
|
|
305
367
|
{
|
|
306
368
|
"type": "spacer",
|
|
307
369
|
"size": "md"
|
|
308
370
|
},
|
|
309
371
|
{
|
|
310
|
-
"type": "stack",
|
|
311
|
-
"direction": "horizontal",
|
|
312
372
|
"gap": "sm",
|
|
313
|
-
"justify": "center",
|
|
314
373
|
"children": [
|
|
315
374
|
{
|
|
316
375
|
"type": "button",
|
|
317
376
|
"label": "Add",
|
|
377
|
+
"icon": "plus",
|
|
318
378
|
"event": "ADD",
|
|
319
|
-
"variant": "primary"
|
|
320
|
-
"icon": "plus"
|
|
379
|
+
"variant": "primary"
|
|
321
380
|
},
|
|
322
381
|
{
|
|
323
|
-
"type": "button",
|
|
324
382
|
"label": "Subtract",
|
|
325
383
|
"event": "SUBTRACT",
|
|
384
|
+
"type": "button",
|
|
326
385
|
"variant": "secondary",
|
|
327
386
|
"icon": "minus"
|
|
328
387
|
},
|
|
329
388
|
{
|
|
330
|
-
"
|
|
331
|
-
"label": "Combo",
|
|
389
|
+
"icon": "zap",
|
|
332
390
|
"event": "COMBO",
|
|
333
391
|
"variant": "secondary",
|
|
334
|
-
"
|
|
392
|
+
"label": "Combo",
|
|
393
|
+
"type": "button"
|
|
335
394
|
},
|
|
336
395
|
{
|
|
337
|
-
"type": "button",
|
|
338
396
|
"label": "Reset",
|
|
339
|
-
"event": "RESET",
|
|
340
397
|
"variant": "ghost",
|
|
341
|
-
"icon": "rotate-ccw"
|
|
398
|
+
"icon": "rotate-ccw",
|
|
399
|
+
"type": "button",
|
|
400
|
+
"event": "RESET"
|
|
342
401
|
}
|
|
343
|
-
]
|
|
402
|
+
],
|
|
403
|
+
"type": "stack",
|
|
404
|
+
"justify": "center",
|
|
405
|
+
"direction": "horizontal"
|
|
344
406
|
}
|
|
345
|
-
]
|
|
407
|
+
],
|
|
408
|
+
"gap": "lg"
|
|
346
409
|
}
|
|
347
410
|
]
|
|
348
411
|
]
|
|
@@ -362,12 +425,11 @@
|
|
|
362
425
|
"main",
|
|
363
426
|
{
|
|
364
427
|
"type": "stack",
|
|
428
|
+
"align": "center",
|
|
365
429
|
"direction": "vertical",
|
|
366
430
|
"gap": "lg",
|
|
367
|
-
"align": "center",
|
|
368
431
|
"children": [
|
|
369
432
|
{
|
|
370
|
-
"type": "score-board",
|
|
371
433
|
"score": [
|
|
372
434
|
"object/get",
|
|
373
435
|
[
|
|
@@ -376,7 +438,7 @@
|
|
|
376
438
|
],
|
|
377
439
|
"total"
|
|
378
440
|
],
|
|
379
|
-
"highScore": 0,
|
|
441
|
+
"highScore": 0.0,
|
|
380
442
|
"combo": [
|
|
381
443
|
"object/get",
|
|
382
444
|
[
|
|
@@ -385,11 +447,11 @@
|
|
|
385
447
|
],
|
|
386
448
|
"combo"
|
|
387
449
|
],
|
|
388
|
-
"multiplier": 1,
|
|
389
|
-
"
|
|
450
|
+
"multiplier": 1.0,
|
|
451
|
+
"type": "score-board",
|
|
452
|
+
"level": 1.0
|
|
390
453
|
},
|
|
391
454
|
{
|
|
392
|
-
"type": "animated-counter",
|
|
393
455
|
"value": [
|
|
394
456
|
"object/get",
|
|
395
457
|
[
|
|
@@ -398,8 +460,9 @@
|
|
|
398
460
|
],
|
|
399
461
|
"total"
|
|
400
462
|
],
|
|
463
|
+
"type": "animated-counter",
|
|
401
464
|
"prefix": "Score: ",
|
|
402
|
-
"duration": 300
|
|
465
|
+
"duration": 300.0
|
|
403
466
|
},
|
|
404
467
|
{
|
|
405
468
|
"type": "trend-indicator",
|
|
@@ -418,38 +481,38 @@
|
|
|
418
481
|
"size": "md"
|
|
419
482
|
},
|
|
420
483
|
{
|
|
421
|
-
"type": "stack",
|
|
422
484
|
"direction": "horizontal",
|
|
423
|
-
"gap": "sm",
|
|
424
485
|
"justify": "center",
|
|
486
|
+
"gap": "sm",
|
|
487
|
+
"type": "stack",
|
|
425
488
|
"children": [
|
|
426
489
|
{
|
|
490
|
+
"icon": "plus",
|
|
427
491
|
"type": "button",
|
|
428
|
-
"label": "Add",
|
|
429
492
|
"event": "ADD",
|
|
430
493
|
"variant": "primary",
|
|
431
|
-
"
|
|
494
|
+
"label": "Add"
|
|
432
495
|
},
|
|
433
496
|
{
|
|
497
|
+
"variant": "secondary",
|
|
434
498
|
"type": "button",
|
|
435
|
-
"label": "Subtract",
|
|
436
499
|
"event": "SUBTRACT",
|
|
437
|
-
"
|
|
500
|
+
"label": "Subtract",
|
|
438
501
|
"icon": "minus"
|
|
439
502
|
},
|
|
440
503
|
{
|
|
441
504
|
"type": "button",
|
|
442
505
|
"label": "Combo",
|
|
443
506
|
"event": "COMBO",
|
|
444
|
-
"
|
|
445
|
-
"
|
|
507
|
+
"icon": "zap",
|
|
508
|
+
"variant": "secondary"
|
|
446
509
|
},
|
|
447
510
|
{
|
|
448
511
|
"type": "button",
|
|
449
|
-
"
|
|
450
|
-
"event": "RESET",
|
|
512
|
+
"icon": "rotate-ccw",
|
|
451
513
|
"variant": "ghost",
|
|
452
|
-
"
|
|
514
|
+
"label": "Reset",
|
|
515
|
+
"event": "RESET"
|
|
453
516
|
}
|
|
454
517
|
]
|
|
455
518
|
}
|
|
@@ -472,17 +535,16 @@
|
|
|
472
535
|
"render-ui",
|
|
473
536
|
"main",
|
|
474
537
|
{
|
|
475
|
-
"type": "stack",
|
|
476
|
-
"direction": "vertical",
|
|
477
538
|
"gap": "lg",
|
|
478
539
|
"align": "center",
|
|
540
|
+
"type": "stack",
|
|
541
|
+
"direction": "vertical",
|
|
479
542
|
"children": [
|
|
480
543
|
{
|
|
481
|
-
"
|
|
482
|
-
"
|
|
544
|
+
"trigger": true,
|
|
545
|
+
"type": "confetti-effect"
|
|
483
546
|
},
|
|
484
547
|
{
|
|
485
|
-
"type": "score-board",
|
|
486
548
|
"score": [
|
|
487
549
|
"object/get",
|
|
488
550
|
[
|
|
@@ -491,7 +553,9 @@
|
|
|
491
553
|
],
|
|
492
554
|
"total"
|
|
493
555
|
],
|
|
494
|
-
"
|
|
556
|
+
"type": "score-board",
|
|
557
|
+
"level": 1.0,
|
|
558
|
+
"highScore": 0.0,
|
|
495
559
|
"combo": [
|
|
496
560
|
"object/get",
|
|
497
561
|
[
|
|
@@ -500,11 +564,9 @@
|
|
|
500
564
|
],
|
|
501
565
|
"combo"
|
|
502
566
|
],
|
|
503
|
-
"multiplier": 1
|
|
504
|
-
"level": 1
|
|
567
|
+
"multiplier": 1.0
|
|
505
568
|
},
|
|
506
569
|
{
|
|
507
|
-
"type": "animated-counter",
|
|
508
570
|
"value": [
|
|
509
571
|
"object/get",
|
|
510
572
|
[
|
|
@@ -513,8 +575,9 @@
|
|
|
513
575
|
],
|
|
514
576
|
"total"
|
|
515
577
|
],
|
|
578
|
+
"type": "animated-counter",
|
|
516
579
|
"prefix": "Score: ",
|
|
517
|
-
"duration": 300
|
|
580
|
+
"duration": 300.0
|
|
518
581
|
},
|
|
519
582
|
{
|
|
520
583
|
"type": "trend-indicator",
|
|
@@ -533,38 +596,38 @@
|
|
|
533
596
|
"size": "md"
|
|
534
597
|
},
|
|
535
598
|
{
|
|
599
|
+
"justify": "center",
|
|
536
600
|
"type": "stack",
|
|
537
601
|
"direction": "horizontal",
|
|
538
602
|
"gap": "sm",
|
|
539
|
-
"justify": "center",
|
|
540
603
|
"children": [
|
|
541
604
|
{
|
|
542
|
-
"type": "button",
|
|
543
|
-
"label": "Add",
|
|
544
|
-
"event": "ADD",
|
|
545
605
|
"variant": "primary",
|
|
546
|
-
"icon": "plus"
|
|
606
|
+
"icon": "plus",
|
|
607
|
+
"event": "ADD",
|
|
608
|
+
"label": "Add",
|
|
609
|
+
"type": "button"
|
|
547
610
|
},
|
|
548
611
|
{
|
|
549
|
-
"type": "button",
|
|
550
612
|
"label": "Subtract",
|
|
551
|
-
"event": "SUBTRACT",
|
|
552
613
|
"variant": "secondary",
|
|
553
|
-
"
|
|
614
|
+
"event": "SUBTRACT",
|
|
615
|
+
"icon": "minus",
|
|
616
|
+
"type": "button"
|
|
554
617
|
},
|
|
555
618
|
{
|
|
619
|
+
"icon": "zap",
|
|
620
|
+
"variant": "secondary",
|
|
556
621
|
"type": "button",
|
|
557
622
|
"label": "Combo",
|
|
558
|
-
"event": "COMBO"
|
|
559
|
-
"variant": "secondary",
|
|
560
|
-
"icon": "zap"
|
|
623
|
+
"event": "COMBO"
|
|
561
624
|
},
|
|
562
625
|
{
|
|
563
|
-
"type": "button",
|
|
564
|
-
"label": "Reset",
|
|
565
626
|
"event": "RESET",
|
|
566
627
|
"variant": "ghost",
|
|
567
|
-
"icon": "rotate-ccw"
|
|
628
|
+
"icon": "rotate-ccw",
|
|
629
|
+
"type": "button",
|
|
630
|
+
"label": "Reset"
|
|
568
631
|
}
|
|
569
632
|
]
|
|
570
633
|
}
|
|
@@ -581,43 +644,43 @@
|
|
|
581
644
|
[
|
|
582
645
|
"set",
|
|
583
646
|
"@entity.total",
|
|
584
|
-
0
|
|
647
|
+
0.0
|
|
585
648
|
],
|
|
586
649
|
[
|
|
587
650
|
"set",
|
|
588
651
|
"@entity.combo",
|
|
589
|
-
1
|
|
652
|
+
1.0
|
|
590
653
|
],
|
|
591
654
|
[
|
|
592
655
|
"render-ui",
|
|
593
656
|
"main",
|
|
594
657
|
{
|
|
595
658
|
"type": "stack",
|
|
596
|
-
"direction": "vertical",
|
|
597
659
|
"gap": "lg",
|
|
598
660
|
"align": "center",
|
|
661
|
+
"direction": "vertical",
|
|
599
662
|
"children": [
|
|
600
663
|
{
|
|
664
|
+
"multiplier": 1.0,
|
|
665
|
+
"level": 1.0,
|
|
601
666
|
"type": "score-board",
|
|
602
|
-
"
|
|
667
|
+
"combo": [
|
|
603
668
|
"object/get",
|
|
604
669
|
[
|
|
605
670
|
"array/first",
|
|
606
671
|
"@entity"
|
|
607
672
|
],
|
|
608
|
-
"
|
|
673
|
+
"combo"
|
|
609
674
|
],
|
|
610
|
-
"highScore": 0,
|
|
611
|
-
"
|
|
675
|
+
"highScore": 0.0,
|
|
676
|
+
"score": [
|
|
612
677
|
"object/get",
|
|
613
678
|
[
|
|
614
679
|
"array/first",
|
|
615
680
|
"@entity"
|
|
616
681
|
],
|
|
617
|
-
"
|
|
618
|
-
]
|
|
619
|
-
"multiplier": 1,
|
|
620
|
-
"level": 1
|
|
682
|
+
"total"
|
|
683
|
+
]
|
|
621
684
|
},
|
|
622
685
|
{
|
|
623
686
|
"type": "animated-counter",
|
|
@@ -630,10 +693,9 @@
|
|
|
630
693
|
"total"
|
|
631
694
|
],
|
|
632
695
|
"prefix": "Score: ",
|
|
633
|
-
"duration": 300
|
|
696
|
+
"duration": 300.0
|
|
634
697
|
},
|
|
635
698
|
{
|
|
636
|
-
"type": "trend-indicator",
|
|
637
699
|
"value": [
|
|
638
700
|
"object/get",
|
|
639
701
|
[
|
|
@@ -642,47 +704,48 @@
|
|
|
642
704
|
],
|
|
643
705
|
"points"
|
|
644
706
|
],
|
|
645
|
-
"showValue": true
|
|
707
|
+
"showValue": true,
|
|
708
|
+
"type": "trend-indicator"
|
|
646
709
|
},
|
|
647
710
|
{
|
|
648
711
|
"type": "spacer",
|
|
649
712
|
"size": "md"
|
|
650
713
|
},
|
|
651
714
|
{
|
|
652
|
-
"type": "stack",
|
|
653
|
-
"direction": "horizontal",
|
|
654
|
-
"gap": "sm",
|
|
655
|
-
"justify": "center",
|
|
656
715
|
"children": [
|
|
657
716
|
{
|
|
717
|
+
"variant": "primary",
|
|
658
718
|
"type": "button",
|
|
719
|
+
"icon": "plus",
|
|
659
720
|
"label": "Add",
|
|
660
|
-
"event": "ADD"
|
|
661
|
-
"variant": "primary",
|
|
662
|
-
"icon": "plus"
|
|
721
|
+
"event": "ADD"
|
|
663
722
|
},
|
|
664
723
|
{
|
|
665
|
-
"type": "button",
|
|
666
|
-
"label": "Subtract",
|
|
667
|
-
"event": "SUBTRACT",
|
|
668
724
|
"variant": "secondary",
|
|
669
|
-
"
|
|
725
|
+
"label": "Subtract",
|
|
726
|
+
"icon": "minus",
|
|
727
|
+
"type": "button",
|
|
728
|
+
"event": "SUBTRACT"
|
|
670
729
|
},
|
|
671
730
|
{
|
|
731
|
+
"event": "COMBO",
|
|
672
732
|
"type": "button",
|
|
673
733
|
"label": "Combo",
|
|
674
|
-
"event": "COMBO",
|
|
675
734
|
"variant": "secondary",
|
|
676
735
|
"icon": "zap"
|
|
677
736
|
},
|
|
678
737
|
{
|
|
679
|
-
"type": "button",
|
|
680
|
-
"label": "Reset",
|
|
681
738
|
"event": "RESET",
|
|
682
739
|
"variant": "ghost",
|
|
740
|
+
"type": "button",
|
|
741
|
+
"label": "Reset",
|
|
683
742
|
"icon": "rotate-ccw"
|
|
684
743
|
}
|
|
685
|
-
]
|
|
744
|
+
],
|
|
745
|
+
"direction": "horizontal",
|
|
746
|
+
"type": "stack",
|
|
747
|
+
"gap": "sm",
|
|
748
|
+
"justify": "center"
|
|
686
749
|
}
|
|
687
750
|
]
|
|
688
751
|
}
|
|
@@ -690,7 +753,8 @@
|
|
|
690
753
|
]
|
|
691
754
|
}
|
|
692
755
|
]
|
|
693
|
-
}
|
|
756
|
+
},
|
|
757
|
+
"scope": "instance"
|
|
694
758
|
}
|
|
695
759
|
],
|
|
696
760
|
"pages": [
|
|
@@ -706,4 +770,4 @@
|
|
|
706
770
|
]
|
|
707
771
|
}
|
|
708
772
|
]
|
|
709
|
-
}
|
|
773
|
+
}
|