@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,45 +38,20 @@
|
|
|
38
38
|
{
|
|
39
39
|
"name": "remaining",
|
|
40
40
|
"type": "number",
|
|
41
|
-
"default": 0
|
|
41
|
+
"default": 0.0
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
"name": "duration",
|
|
45
45
|
"type": "number",
|
|
46
|
-
"default": 0
|
|
46
|
+
"default": 0.0
|
|
47
47
|
}
|
|
48
48
|
]
|
|
49
49
|
},
|
|
50
50
|
"traits": [
|
|
51
51
|
{
|
|
52
52
|
"name": "TimerSessionTimer",
|
|
53
|
-
"linkedEntity": "TimerSession",
|
|
54
53
|
"category": "interaction",
|
|
55
|
-
"
|
|
56
|
-
{
|
|
57
|
-
"name": "countdown",
|
|
58
|
-
"interval": 1000,
|
|
59
|
-
"appliesTo": [
|
|
60
|
-
"running"
|
|
61
|
-
],
|
|
62
|
-
"guard": [
|
|
63
|
-
">",
|
|
64
|
-
"@entity.remaining",
|
|
65
|
-
0
|
|
66
|
-
],
|
|
67
|
-
"effects": [
|
|
68
|
-
[
|
|
69
|
-
"set",
|
|
70
|
-
"@entity.remaining",
|
|
71
|
-
[
|
|
72
|
-
"-",
|
|
73
|
-
"@entity.remaining",
|
|
74
|
-
1
|
|
75
|
-
]
|
|
76
|
-
]
|
|
77
|
-
]
|
|
78
|
-
}
|
|
79
|
-
],
|
|
54
|
+
"linkedEntity": "TimerSession",
|
|
80
55
|
"stateMachine": {
|
|
81
56
|
"states": [
|
|
82
57
|
{
|
|
@@ -102,25 +77,25 @@
|
|
|
102
77
|
"key": "START",
|
|
103
78
|
"name": "Start"
|
|
104
79
|
},
|
|
80
|
+
{
|
|
81
|
+
"key": "TICK",
|
|
82
|
+
"name": "Tick"
|
|
83
|
+
},
|
|
105
84
|
{
|
|
106
85
|
"key": "PAUSE",
|
|
107
86
|
"name": "Pause"
|
|
108
87
|
},
|
|
109
88
|
{
|
|
110
|
-
"key": "
|
|
111
|
-
"name": "
|
|
89
|
+
"key": "EXPIRE",
|
|
90
|
+
"name": "Expire"
|
|
112
91
|
},
|
|
113
92
|
{
|
|
114
93
|
"key": "RESET",
|
|
115
94
|
"name": "Reset"
|
|
116
95
|
},
|
|
117
96
|
{
|
|
118
|
-
"key": "
|
|
119
|
-
"name": "
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"key": "EXPIRE",
|
|
123
|
-
"name": "Expire"
|
|
97
|
+
"key": "RESUME",
|
|
98
|
+
"name": "Resume"
|
|
124
99
|
}
|
|
125
100
|
],
|
|
126
101
|
"transitions": [
|
|
@@ -133,40 +108,39 @@
|
|
|
133
108
|
"render-ui",
|
|
134
109
|
"main",
|
|
135
110
|
{
|
|
136
|
-
"type": "stack",
|
|
137
111
|
"direction": "vertical",
|
|
138
112
|
"gap": "lg",
|
|
139
|
-
"
|
|
113
|
+
"type": "stack",
|
|
140
114
|
"children": [
|
|
141
115
|
{
|
|
142
|
-
"type": "stack",
|
|
143
116
|
"direction": "vertical",
|
|
117
|
+
"type": "stack",
|
|
144
118
|
"gap": "md",
|
|
145
|
-
"align": "center",
|
|
146
119
|
"children": [
|
|
147
120
|
{
|
|
148
|
-
"type": "stack",
|
|
149
|
-
"direction": "horizontal",
|
|
150
121
|
"gap": "sm",
|
|
151
|
-
"align": "center",
|
|
152
122
|
"children": [
|
|
153
123
|
{
|
|
154
|
-
"type": "icon",
|
|
155
124
|
"name": "clock",
|
|
125
|
+
"type": "icon",
|
|
156
126
|
"size": "lg"
|
|
157
127
|
},
|
|
158
128
|
{
|
|
159
129
|
"type": "typography",
|
|
160
|
-
"
|
|
161
|
-
"
|
|
130
|
+
"variant": "h2",
|
|
131
|
+
"content": "Timer"
|
|
162
132
|
}
|
|
163
|
-
]
|
|
133
|
+
],
|
|
134
|
+
"align": "center",
|
|
135
|
+
"type": "stack",
|
|
136
|
+
"direction": "horizontal"
|
|
164
137
|
},
|
|
165
138
|
{
|
|
166
139
|
"type": "divider"
|
|
167
140
|
},
|
|
168
141
|
{
|
|
169
142
|
"type": "animated-counter",
|
|
143
|
+
"duration": 500.0,
|
|
170
144
|
"value": [
|
|
171
145
|
"object/get",
|
|
172
146
|
[
|
|
@@ -175,12 +149,9 @@
|
|
|
175
149
|
],
|
|
176
150
|
"remaining"
|
|
177
151
|
],
|
|
178
|
-
"suffix": "s"
|
|
179
|
-
"duration": 500
|
|
152
|
+
"suffix": "s"
|
|
180
153
|
},
|
|
181
154
|
{
|
|
182
|
-
"type": "stat-display",
|
|
183
|
-
"label": "Time Remaining",
|
|
184
155
|
"value": [
|
|
185
156
|
"object/get",
|
|
186
157
|
[
|
|
@@ -189,9 +160,12 @@
|
|
|
189
160
|
],
|
|
190
161
|
"remaining"
|
|
191
162
|
],
|
|
192
|
-
"
|
|
163
|
+
"label": "Time Remaining",
|
|
164
|
+
"max": 60.0,
|
|
165
|
+
"type": "stat-display"
|
|
193
166
|
},
|
|
194
167
|
{
|
|
168
|
+
"min": 0.0,
|
|
195
169
|
"type": "meter",
|
|
196
170
|
"value": [
|
|
197
171
|
"object/get",
|
|
@@ -201,11 +175,10 @@
|
|
|
201
175
|
],
|
|
202
176
|
"remaining"
|
|
203
177
|
],
|
|
204
|
-
"
|
|
205
|
-
"max": 60
|
|
178
|
+
"max": 60.0
|
|
206
179
|
},
|
|
207
180
|
{
|
|
208
|
-
"
|
|
181
|
+
"max": 60.0,
|
|
209
182
|
"value": [
|
|
210
183
|
"object/get",
|
|
211
184
|
[
|
|
@@ -214,12 +187,11 @@
|
|
|
214
187
|
],
|
|
215
188
|
"remaining"
|
|
216
189
|
],
|
|
217
|
-
"
|
|
190
|
+
"type": "progress-bar",
|
|
218
191
|
"color": "primary",
|
|
219
192
|
"showPercentage": true
|
|
220
193
|
},
|
|
221
194
|
{
|
|
222
|
-
"type": "badge",
|
|
223
195
|
"label": [
|
|
224
196
|
"object/get",
|
|
225
197
|
[
|
|
@@ -227,42 +199,45 @@
|
|
|
227
199
|
"@entity"
|
|
228
200
|
],
|
|
229
201
|
"status"
|
|
230
|
-
]
|
|
202
|
+
],
|
|
203
|
+
"type": "badge"
|
|
231
204
|
}
|
|
232
|
-
]
|
|
205
|
+
],
|
|
206
|
+
"align": "center"
|
|
233
207
|
},
|
|
234
208
|
{
|
|
235
|
-
"type": "stack",
|
|
236
|
-
"direction": "horizontal",
|
|
237
|
-
"gap": "sm",
|
|
238
|
-
"justify": "center",
|
|
239
209
|
"children": [
|
|
240
210
|
{
|
|
241
211
|
"type": "button",
|
|
242
|
-
"
|
|
212
|
+
"icon": "play",
|
|
243
213
|
"event": "START",
|
|
244
214
|
"variant": "primary",
|
|
245
|
-
"
|
|
215
|
+
"label": "Start"
|
|
246
216
|
},
|
|
247
217
|
{
|
|
248
|
-
"
|
|
218
|
+
"variant": "ghost",
|
|
249
219
|
"label": "Pause",
|
|
250
220
|
"event": "PAUSE",
|
|
251
|
-
"
|
|
221
|
+
"disabled": true,
|
|
252
222
|
"icon": "pause",
|
|
253
|
-
"
|
|
223
|
+
"type": "button"
|
|
254
224
|
},
|
|
255
225
|
{
|
|
256
|
-
"type": "button",
|
|
257
226
|
"label": "Reset",
|
|
227
|
+
"disabled": true,
|
|
258
228
|
"event": "RESET",
|
|
229
|
+
"type": "button",
|
|
259
230
|
"variant": "ghost",
|
|
260
|
-
"icon": "rotate-ccw"
|
|
261
|
-
"disabled": true
|
|
231
|
+
"icon": "rotate-ccw"
|
|
262
232
|
}
|
|
263
|
-
]
|
|
233
|
+
],
|
|
234
|
+
"gap": "sm",
|
|
235
|
+
"type": "stack",
|
|
236
|
+
"direction": "horizontal",
|
|
237
|
+
"justify": "center"
|
|
264
238
|
}
|
|
265
|
-
]
|
|
239
|
+
],
|
|
240
|
+
"align": "center"
|
|
266
241
|
}
|
|
267
242
|
]
|
|
268
243
|
]
|
|
@@ -275,7 +250,7 @@
|
|
|
275
250
|
[
|
|
276
251
|
"set",
|
|
277
252
|
"@entity.remaining",
|
|
278
|
-
60
|
|
253
|
+
60.0
|
|
279
254
|
],
|
|
280
255
|
[
|
|
281
256
|
"set",
|
|
@@ -286,26 +261,24 @@
|
|
|
286
261
|
"render-ui",
|
|
287
262
|
"main",
|
|
288
263
|
{
|
|
289
|
-
"type": "stack",
|
|
290
|
-
"direction": "vertical",
|
|
291
264
|
"gap": "lg",
|
|
265
|
+
"type": "stack",
|
|
292
266
|
"align": "center",
|
|
267
|
+
"direction": "vertical",
|
|
293
268
|
"children": [
|
|
294
269
|
{
|
|
295
|
-
"type": "stack",
|
|
296
270
|
"direction": "vertical",
|
|
297
271
|
"gap": "md",
|
|
272
|
+
"type": "stack",
|
|
298
273
|
"align": "center",
|
|
299
274
|
"children": [
|
|
300
275
|
{
|
|
301
|
-
"type": "stack",
|
|
302
|
-
"direction": "horizontal",
|
|
303
|
-
"gap": "sm",
|
|
304
276
|
"align": "center",
|
|
277
|
+
"type": "stack",
|
|
305
278
|
"children": [
|
|
306
279
|
{
|
|
307
|
-
"type": "icon",
|
|
308
280
|
"name": "clock",
|
|
281
|
+
"type": "icon",
|
|
309
282
|
"size": "lg"
|
|
310
283
|
},
|
|
311
284
|
{
|
|
@@ -313,13 +286,16 @@
|
|
|
313
286
|
"content": "Timer",
|
|
314
287
|
"variant": "h2"
|
|
315
288
|
}
|
|
316
|
-
]
|
|
289
|
+
],
|
|
290
|
+
"direction": "horizontal",
|
|
291
|
+
"gap": "sm"
|
|
317
292
|
},
|
|
318
293
|
{
|
|
319
294
|
"type": "divider"
|
|
320
295
|
},
|
|
321
296
|
{
|
|
322
|
-
"
|
|
297
|
+
"suffix": "s",
|
|
298
|
+
"duration": 500.0,
|
|
323
299
|
"value": [
|
|
324
300
|
"object/get",
|
|
325
301
|
[
|
|
@@ -328,8 +304,7 @@
|
|
|
328
304
|
],
|
|
329
305
|
"remaining"
|
|
330
306
|
],
|
|
331
|
-
"
|
|
332
|
-
"duration": 500
|
|
307
|
+
"type": "animated-counter"
|
|
333
308
|
},
|
|
334
309
|
{
|
|
335
310
|
"type": "stat-display",
|
|
@@ -342,10 +317,12 @@
|
|
|
342
317
|
],
|
|
343
318
|
"remaining"
|
|
344
319
|
],
|
|
345
|
-
"max": 60
|
|
320
|
+
"max": 60.0
|
|
346
321
|
},
|
|
347
322
|
{
|
|
348
323
|
"type": "meter",
|
|
324
|
+
"min": 0.0,
|
|
325
|
+
"max": 60.0,
|
|
349
326
|
"value": [
|
|
350
327
|
"object/get",
|
|
351
328
|
[
|
|
@@ -353,12 +330,13 @@
|
|
|
353
330
|
"@entity"
|
|
354
331
|
],
|
|
355
332
|
"remaining"
|
|
356
|
-
]
|
|
357
|
-
"min": 0,
|
|
358
|
-
"max": 60
|
|
333
|
+
]
|
|
359
334
|
},
|
|
360
335
|
{
|
|
336
|
+
"showPercentage": true,
|
|
361
337
|
"type": "progress-bar",
|
|
338
|
+
"max": 60.0,
|
|
339
|
+
"color": "primary",
|
|
362
340
|
"value": [
|
|
363
341
|
"object/get",
|
|
364
342
|
[
|
|
@@ -366,13 +344,9 @@
|
|
|
366
344
|
"@entity"
|
|
367
345
|
],
|
|
368
346
|
"remaining"
|
|
369
|
-
]
|
|
370
|
-
"max": 60,
|
|
371
|
-
"color": "primary",
|
|
372
|
-
"showPercentage": true
|
|
347
|
+
]
|
|
373
348
|
},
|
|
374
349
|
{
|
|
375
|
-
"type": "badge",
|
|
376
350
|
"label": [
|
|
377
351
|
"object/get",
|
|
378
352
|
[
|
|
@@ -380,7 +354,8 @@
|
|
|
380
354
|
"@entity"
|
|
381
355
|
],
|
|
382
356
|
"status"
|
|
383
|
-
]
|
|
357
|
+
],
|
|
358
|
+
"type": "badge"
|
|
384
359
|
}
|
|
385
360
|
]
|
|
386
361
|
},
|
|
@@ -388,23 +363,23 @@
|
|
|
388
363
|
"type": "stack",
|
|
389
364
|
"direction": "horizontal",
|
|
390
365
|
"gap": "sm",
|
|
391
|
-
"justify": "center",
|
|
392
366
|
"children": [
|
|
393
367
|
{
|
|
394
|
-
"
|
|
368
|
+
"variant": "secondary",
|
|
395
369
|
"label": "Pause",
|
|
396
370
|
"event": "PAUSE",
|
|
397
|
-
"
|
|
371
|
+
"type": "button",
|
|
398
372
|
"icon": "pause"
|
|
399
373
|
},
|
|
400
374
|
{
|
|
401
|
-
"type": "button",
|
|
402
375
|
"label": "Reset",
|
|
403
376
|
"event": "RESET",
|
|
377
|
+
"type": "button",
|
|
404
378
|
"variant": "ghost",
|
|
405
379
|
"icon": "rotate-ccw"
|
|
406
380
|
}
|
|
407
|
-
]
|
|
381
|
+
],
|
|
382
|
+
"justify": "center"
|
|
408
383
|
}
|
|
409
384
|
]
|
|
410
385
|
}
|
|
@@ -420,31 +395,31 @@
|
|
|
420
395
|
"render-ui",
|
|
421
396
|
"main",
|
|
422
397
|
{
|
|
398
|
+
"align": "center",
|
|
423
399
|
"type": "stack",
|
|
424
400
|
"direction": "vertical",
|
|
425
401
|
"gap": "lg",
|
|
426
|
-
"align": "center",
|
|
427
402
|
"children": [
|
|
428
403
|
{
|
|
429
|
-
"type": "stack",
|
|
430
|
-
"direction": "vertical",
|
|
431
404
|
"gap": "md",
|
|
405
|
+
"direction": "vertical",
|
|
406
|
+
"type": "stack",
|
|
432
407
|
"align": "center",
|
|
433
408
|
"children": [
|
|
434
409
|
{
|
|
435
410
|
"type": "stack",
|
|
436
|
-
"direction": "horizontal",
|
|
437
411
|
"gap": "sm",
|
|
412
|
+
"direction": "horizontal",
|
|
438
413
|
"align": "center",
|
|
439
414
|
"children": [
|
|
440
415
|
{
|
|
441
|
-
"type": "icon",
|
|
442
416
|
"name": "clock",
|
|
417
|
+
"type": "icon",
|
|
443
418
|
"size": "lg"
|
|
444
419
|
},
|
|
445
420
|
{
|
|
446
|
-
"type": "typography",
|
|
447
421
|
"content": "Timer",
|
|
422
|
+
"type": "typography",
|
|
448
423
|
"variant": "h2"
|
|
449
424
|
}
|
|
450
425
|
]
|
|
@@ -453,6 +428,7 @@
|
|
|
453
428
|
"type": "divider"
|
|
454
429
|
},
|
|
455
430
|
{
|
|
431
|
+
"suffix": "s",
|
|
456
432
|
"type": "animated-counter",
|
|
457
433
|
"value": [
|
|
458
434
|
"object/get",
|
|
@@ -462,11 +438,9 @@
|
|
|
462
438
|
],
|
|
463
439
|
"remaining"
|
|
464
440
|
],
|
|
465
|
-
"
|
|
466
|
-
"duration": 500
|
|
441
|
+
"duration": 500.0
|
|
467
442
|
},
|
|
468
443
|
{
|
|
469
|
-
"type": "stat-display",
|
|
470
444
|
"label": "Time Remaining",
|
|
471
445
|
"value": [
|
|
472
446
|
"object/get",
|
|
@@ -476,10 +450,10 @@
|
|
|
476
450
|
],
|
|
477
451
|
"remaining"
|
|
478
452
|
],
|
|
479
|
-
"max": 60
|
|
453
|
+
"max": 60.0,
|
|
454
|
+
"type": "stat-display"
|
|
480
455
|
},
|
|
481
456
|
{
|
|
482
|
-
"type": "meter",
|
|
483
457
|
"value": [
|
|
484
458
|
"object/get",
|
|
485
459
|
[
|
|
@@ -488,11 +462,13 @@
|
|
|
488
462
|
],
|
|
489
463
|
"remaining"
|
|
490
464
|
],
|
|
491
|
-
"
|
|
492
|
-
"max": 60
|
|
465
|
+
"type": "meter",
|
|
466
|
+
"max": 60.0,
|
|
467
|
+
"min": 0.0
|
|
493
468
|
},
|
|
494
469
|
{
|
|
495
470
|
"type": "progress-bar",
|
|
471
|
+
"showPercentage": true,
|
|
496
472
|
"value": [
|
|
497
473
|
"object/get",
|
|
498
474
|
[
|
|
@@ -501,9 +477,8 @@
|
|
|
501
477
|
],
|
|
502
478
|
"remaining"
|
|
503
479
|
],
|
|
504
|
-
"max": 60,
|
|
505
480
|
"color": "primary",
|
|
506
|
-
"
|
|
481
|
+
"max": 60.0
|
|
507
482
|
},
|
|
508
483
|
{
|
|
509
484
|
"type": "badge",
|
|
@@ -520,23 +495,23 @@
|
|
|
520
495
|
},
|
|
521
496
|
{
|
|
522
497
|
"type": "stack",
|
|
523
|
-
"direction": "horizontal",
|
|
524
498
|
"gap": "sm",
|
|
499
|
+
"direction": "horizontal",
|
|
525
500
|
"justify": "center",
|
|
526
501
|
"children": [
|
|
527
502
|
{
|
|
528
503
|
"type": "button",
|
|
529
|
-
"label": "Pause",
|
|
530
|
-
"event": "PAUSE",
|
|
531
504
|
"variant": "secondary",
|
|
532
|
-
"icon": "pause"
|
|
505
|
+
"icon": "pause",
|
|
506
|
+
"event": "PAUSE",
|
|
507
|
+
"label": "Pause"
|
|
533
508
|
},
|
|
534
509
|
{
|
|
535
510
|
"type": "button",
|
|
536
|
-
"label": "Reset",
|
|
537
511
|
"event": "RESET",
|
|
538
512
|
"variant": "ghost",
|
|
539
|
-
"icon": "rotate-ccw"
|
|
513
|
+
"icon": "rotate-ccw",
|
|
514
|
+
"label": "Reset"
|
|
540
515
|
}
|
|
541
516
|
]
|
|
542
517
|
}
|
|
@@ -559,31 +534,26 @@
|
|
|
559
534
|
"render-ui",
|
|
560
535
|
"main",
|
|
561
536
|
{
|
|
562
|
-
"type": "stack",
|
|
563
537
|
"direction": "vertical",
|
|
564
|
-
"gap": "lg",
|
|
565
|
-
"align": "center",
|
|
566
538
|
"children": [
|
|
567
539
|
{
|
|
568
|
-
"type": "stack",
|
|
569
|
-
"direction": "vertical",
|
|
570
|
-
"gap": "md",
|
|
571
540
|
"align": "center",
|
|
541
|
+
"gap": "md",
|
|
572
542
|
"children": [
|
|
573
543
|
{
|
|
574
|
-
"type": "stack",
|
|
575
544
|
"direction": "horizontal",
|
|
576
|
-
"
|
|
545
|
+
"type": "stack",
|
|
577
546
|
"align": "center",
|
|
547
|
+
"gap": "sm",
|
|
578
548
|
"children": [
|
|
579
549
|
{
|
|
580
|
-
"
|
|
550
|
+
"size": "lg",
|
|
581
551
|
"name": "clock",
|
|
582
|
-
"
|
|
552
|
+
"type": "icon"
|
|
583
553
|
},
|
|
584
554
|
{
|
|
585
|
-
"type": "typography",
|
|
586
555
|
"content": "Timer",
|
|
556
|
+
"type": "typography",
|
|
587
557
|
"variant": "h2"
|
|
588
558
|
}
|
|
589
559
|
]
|
|
@@ -592,6 +562,8 @@
|
|
|
592
562
|
"type": "divider"
|
|
593
563
|
},
|
|
594
564
|
{
|
|
565
|
+
"duration": 500.0,
|
|
566
|
+
"suffix": "s",
|
|
595
567
|
"type": "animated-counter",
|
|
596
568
|
"value": [
|
|
597
569
|
"object/get",
|
|
@@ -600,12 +572,11 @@
|
|
|
600
572
|
"@entity"
|
|
601
573
|
],
|
|
602
574
|
"remaining"
|
|
603
|
-
]
|
|
604
|
-
"suffix": "s",
|
|
605
|
-
"duration": 500
|
|
575
|
+
]
|
|
606
576
|
},
|
|
607
577
|
{
|
|
608
578
|
"type": "stat-display",
|
|
579
|
+
"max": 60.0,
|
|
609
580
|
"label": "Time Remaining",
|
|
610
581
|
"value": [
|
|
611
582
|
"object/get",
|
|
@@ -614,11 +585,11 @@
|
|
|
614
585
|
"@entity"
|
|
615
586
|
],
|
|
616
587
|
"remaining"
|
|
617
|
-
]
|
|
618
|
-
"max": 60
|
|
588
|
+
]
|
|
619
589
|
},
|
|
620
590
|
{
|
|
621
591
|
"type": "meter",
|
|
592
|
+
"min": 0.0,
|
|
622
593
|
"value": [
|
|
623
594
|
"object/get",
|
|
624
595
|
[
|
|
@@ -627,11 +598,11 @@
|
|
|
627
598
|
],
|
|
628
599
|
"remaining"
|
|
629
600
|
],
|
|
630
|
-
"
|
|
631
|
-
"max": 60
|
|
601
|
+
"max": 60.0
|
|
632
602
|
},
|
|
633
603
|
{
|
|
634
|
-
"
|
|
604
|
+
"showPercentage": true,
|
|
605
|
+
"max": 60.0,
|
|
635
606
|
"value": [
|
|
636
607
|
"object/get",
|
|
637
608
|
[
|
|
@@ -640,12 +611,10 @@
|
|
|
640
611
|
],
|
|
641
612
|
"remaining"
|
|
642
613
|
],
|
|
643
|
-
"
|
|
644
|
-
"color": "primary"
|
|
645
|
-
"showPercentage": true
|
|
614
|
+
"type": "progress-bar",
|
|
615
|
+
"color": "primary"
|
|
646
616
|
},
|
|
647
617
|
{
|
|
648
|
-
"type": "badge",
|
|
649
618
|
"label": [
|
|
650
619
|
"object/get",
|
|
651
620
|
[
|
|
@@ -653,79 +622,82 @@
|
|
|
653
622
|
"@entity"
|
|
654
623
|
],
|
|
655
624
|
"status"
|
|
656
|
-
]
|
|
625
|
+
],
|
|
626
|
+
"type": "badge"
|
|
657
627
|
}
|
|
658
|
-
]
|
|
628
|
+
],
|
|
629
|
+
"type": "stack",
|
|
630
|
+
"direction": "vertical"
|
|
659
631
|
},
|
|
660
632
|
{
|
|
661
633
|
"type": "stack",
|
|
662
|
-
"direction": "horizontal",
|
|
663
|
-
"gap": "sm",
|
|
664
634
|
"justify": "center",
|
|
665
635
|
"children": [
|
|
666
636
|
{
|
|
667
|
-
"
|
|
668
|
-
"label": "Resume",
|
|
637
|
+
"icon": "play",
|
|
669
638
|
"event": "RESUME",
|
|
670
639
|
"variant": "primary",
|
|
671
|
-
"
|
|
640
|
+
"type": "button",
|
|
641
|
+
"label": "Resume"
|
|
672
642
|
},
|
|
673
643
|
{
|
|
674
|
-
"
|
|
644
|
+
"icon": "rotate-ccw",
|
|
675
645
|
"label": "Reset",
|
|
676
|
-
"event": "RESET",
|
|
677
646
|
"variant": "ghost",
|
|
678
|
-
"
|
|
647
|
+
"event": "RESET",
|
|
648
|
+
"type": "button"
|
|
679
649
|
}
|
|
680
|
-
]
|
|
650
|
+
],
|
|
651
|
+
"direction": "horizontal",
|
|
652
|
+
"gap": "sm"
|
|
681
653
|
}
|
|
682
|
-
]
|
|
654
|
+
],
|
|
655
|
+
"align": "center",
|
|
656
|
+
"type": "stack",
|
|
657
|
+
"gap": "lg"
|
|
683
658
|
}
|
|
684
659
|
]
|
|
685
660
|
]
|
|
686
661
|
},
|
|
687
662
|
{
|
|
688
|
-
"from": "
|
|
689
|
-
"to": "
|
|
690
|
-
"event": "
|
|
663
|
+
"from": "running",
|
|
664
|
+
"to": "expired",
|
|
665
|
+
"event": "EXPIRE",
|
|
691
666
|
"effects": [
|
|
692
667
|
[
|
|
693
668
|
"set",
|
|
694
669
|
"@entity.status",
|
|
695
|
-
"
|
|
670
|
+
"expired"
|
|
696
671
|
],
|
|
697
672
|
[
|
|
698
673
|
"render-ui",
|
|
699
674
|
"main",
|
|
700
675
|
{
|
|
701
|
-
"type": "stack",
|
|
702
676
|
"direction": "vertical",
|
|
703
|
-
"gap": "lg",
|
|
704
|
-
"align": "center",
|
|
705
677
|
"children": [
|
|
706
678
|
{
|
|
707
|
-
"type": "stack",
|
|
708
679
|
"direction": "vertical",
|
|
680
|
+
"type": "stack",
|
|
709
681
|
"gap": "md",
|
|
710
682
|
"align": "center",
|
|
711
683
|
"children": [
|
|
712
684
|
{
|
|
713
685
|
"type": "stack",
|
|
714
|
-
"direction": "horizontal",
|
|
715
686
|
"gap": "sm",
|
|
716
687
|
"align": "center",
|
|
717
688
|
"children": [
|
|
718
689
|
{
|
|
719
|
-
"type": "icon",
|
|
720
690
|
"name": "clock",
|
|
691
|
+
"type": "icon",
|
|
721
692
|
"size": "lg"
|
|
722
693
|
},
|
|
723
694
|
{
|
|
695
|
+
"variant": "h2",
|
|
724
696
|
"type": "typography",
|
|
725
|
-
"content": "Timer"
|
|
726
|
-
"variant": "h2"
|
|
697
|
+
"content": "Timer"
|
|
727
698
|
}
|
|
728
|
-
]
|
|
699
|
+
],
|
|
700
|
+
"direction": "horizontal"
|
|
729
701
|
},
|
|
730
702
|
{
|
|
731
703
|
"type": "divider"
|
|
@@ -741,7 +713,7 @@
|
|
|
741
713
|
"remaining"
|
|
742
714
|
],
|
|
743
715
|
"suffix": "s",
|
|
744
|
-
"duration": 500
|
|
716
|
+
"duration": 500.0
|
|
745
717
|
},
|
|
746
718
|
{
|
|
747
719
|
"type": "stat-display",
|
|
@@ -754,10 +726,10 @@
|
|
|
754
726
|
],
|
|
755
727
|
"remaining"
|
|
756
728
|
],
|
|
757
|
-
"max": 60
|
|
729
|
+
"max": 60.0
|
|
758
730
|
},
|
|
759
731
|
{
|
|
760
|
-
"
|
|
732
|
+
"min": 0.0,
|
|
761
733
|
"value": [
|
|
762
734
|
"object/get",
|
|
763
735
|
[
|
|
@@ -766,11 +738,14 @@
|
|
|
766
738
|
],
|
|
767
739
|
"remaining"
|
|
768
740
|
],
|
|
769
|
-
"
|
|
770
|
-
"
|
|
741
|
+
"max": 60.0,
|
|
742
|
+
"type": "meter"
|
|
771
743
|
},
|
|
772
744
|
{
|
|
773
745
|
"type": "progress-bar",
|
|
746
|
+
"color": "primary",
|
|
747
|
+
"showPercentage": true,
|
|
748
|
+
"max": 60.0,
|
|
774
749
|
"value": [
|
|
775
750
|
"object/get",
|
|
776
751
|
[
|
|
@@ -778,10 +753,7 @@
|
|
|
778
753
|
"@entity"
|
|
779
754
|
],
|
|
780
755
|
"remaining"
|
|
781
|
-
]
|
|
782
|
-
"max": 60,
|
|
783
|
-
"color": "primary",
|
|
784
|
-
"showPercentage": true
|
|
756
|
+
]
|
|
785
757
|
},
|
|
786
758
|
{
|
|
787
759
|
"type": "badge",
|
|
@@ -797,62 +769,55 @@
|
|
|
797
769
|
]
|
|
798
770
|
},
|
|
799
771
|
{
|
|
772
|
+
"content": "Time is up!",
|
|
773
|
+
"type": "typography",
|
|
774
|
+
"variant": "h3"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"justify": "center",
|
|
800
778
|
"type": "stack",
|
|
801
|
-
"direction": "horizontal",
|
|
802
779
|
"gap": "sm",
|
|
803
|
-
"
|
|
780
|
+
"direction": "horizontal",
|
|
804
781
|
"children": [
|
|
805
782
|
{
|
|
806
|
-
"type": "button",
|
|
807
|
-
"label": "Pause",
|
|
808
|
-
"event": "PAUSE",
|
|
809
|
-
"variant": "secondary",
|
|
810
|
-
"icon": "pause"
|
|
811
|
-
},
|
|
812
|
-
{
|
|
813
|
-
"type": "button",
|
|
814
783
|
"label": "Reset",
|
|
815
784
|
"event": "RESET",
|
|
816
|
-
"variant": "
|
|
785
|
+
"variant": "primary",
|
|
786
|
+
"type": "button",
|
|
817
787
|
"icon": "rotate-ccw"
|
|
818
788
|
}
|
|
819
789
|
]
|
|
820
790
|
}
|
|
821
|
-
]
|
|
791
|
+
],
|
|
792
|
+
"gap": "lg",
|
|
793
|
+
"align": "center",
|
|
794
|
+
"type": "stack"
|
|
822
795
|
}
|
|
823
796
|
]
|
|
824
797
|
]
|
|
825
798
|
},
|
|
826
799
|
{
|
|
827
800
|
"from": "running",
|
|
828
|
-
"to": "
|
|
829
|
-
"event": "
|
|
801
|
+
"to": "idle",
|
|
802
|
+
"event": "RESET",
|
|
830
803
|
"effects": [
|
|
831
804
|
[
|
|
832
805
|
"set",
|
|
833
806
|
"@entity.status",
|
|
834
|
-
"
|
|
807
|
+
"idle"
|
|
835
808
|
],
|
|
836
809
|
[
|
|
837
810
|
"render-ui",
|
|
838
811
|
"main",
|
|
839
812
|
{
|
|
840
|
-
"
|
|
813
|
+
"align": "center",
|
|
841
814
|
"direction": "vertical",
|
|
815
|
+
"type": "stack",
|
|
842
816
|
"gap": "lg",
|
|
843
|
-
"align": "center",
|
|
844
817
|
"children": [
|
|
845
818
|
{
|
|
846
|
-
"type": "stack",
|
|
847
|
-
"direction": "vertical",
|
|
848
|
-
"gap": "md",
|
|
849
|
-
"align": "center",
|
|
850
819
|
"children": [
|
|
851
820
|
{
|
|
852
|
-
"type": "stack",
|
|
853
|
-
"direction": "horizontal",
|
|
854
|
-
"gap": "sm",
|
|
855
|
-
"align": "center",
|
|
856
821
|
"children": [
|
|
857
822
|
{
|
|
858
823
|
"type": "icon",
|
|
@@ -864,13 +829,16 @@
|
|
|
864
829
|
"content": "Timer",
|
|
865
830
|
"variant": "h2"
|
|
866
831
|
}
|
|
867
|
-
]
|
|
832
|
+
],
|
|
833
|
+
"type": "stack",
|
|
834
|
+
"align": "center",
|
|
835
|
+
"direction": "horizontal",
|
|
836
|
+
"gap": "sm"
|
|
868
837
|
},
|
|
869
838
|
{
|
|
870
839
|
"type": "divider"
|
|
871
840
|
},
|
|
872
841
|
{
|
|
873
|
-
"type": "animated-counter",
|
|
874
842
|
"value": [
|
|
875
843
|
"object/get",
|
|
876
844
|
[
|
|
@@ -880,7 +848,8 @@
|
|
|
880
848
|
"remaining"
|
|
881
849
|
],
|
|
882
850
|
"suffix": "s",
|
|
883
|
-
"
|
|
851
|
+
"type": "animated-counter",
|
|
852
|
+
"duration": 500.0
|
|
884
853
|
},
|
|
885
854
|
{
|
|
886
855
|
"type": "stat-display",
|
|
@@ -893,9 +862,11 @@
|
|
|
893
862
|
],
|
|
894
863
|
"remaining"
|
|
895
864
|
],
|
|
896
|
-
"max": 60
|
|
865
|
+
"max": 60.0
|
|
897
866
|
},
|
|
898
867
|
{
|
|
868
|
+
"max": 60.0,
|
|
869
|
+
"min": 0.0,
|
|
899
870
|
"type": "meter",
|
|
900
871
|
"value": [
|
|
901
872
|
"object/get",
|
|
@@ -904,12 +875,11 @@
|
|
|
904
875
|
"@entity"
|
|
905
876
|
],
|
|
906
877
|
"remaining"
|
|
907
|
-
]
|
|
908
|
-
"min": 0,
|
|
909
|
-
"max": 60
|
|
878
|
+
]
|
|
910
879
|
},
|
|
911
880
|
{
|
|
912
|
-
"
|
|
881
|
+
"showPercentage": true,
|
|
882
|
+
"color": "primary",
|
|
913
883
|
"value": [
|
|
914
884
|
"object/get",
|
|
915
885
|
[
|
|
@@ -918,12 +888,10 @@
|
|
|
918
888
|
],
|
|
919
889
|
"remaining"
|
|
920
890
|
],
|
|
921
|
-
"
|
|
922
|
-
"
|
|
923
|
-
"showPercentage": true
|
|
891
|
+
"type": "progress-bar",
|
|
892
|
+
"max": 60.0
|
|
924
893
|
},
|
|
925
894
|
{
|
|
926
|
-
"type": "badge",
|
|
927
895
|
"label": [
|
|
928
896
|
"object/get",
|
|
929
897
|
[
|
|
@@ -931,27 +899,43 @@
|
|
|
931
899
|
"@entity"
|
|
932
900
|
],
|
|
933
901
|
"status"
|
|
934
|
-
]
|
|
902
|
+
],
|
|
903
|
+
"type": "badge"
|
|
935
904
|
}
|
|
936
|
-
]
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
"
|
|
940
|
-
"
|
|
941
|
-
"variant": "h3"
|
|
905
|
+
],
|
|
906
|
+
"type": "stack",
|
|
907
|
+
"direction": "vertical",
|
|
908
|
+
"gap": "md",
|
|
909
|
+
"align": "center"
|
|
942
910
|
},
|
|
943
911
|
{
|
|
944
912
|
"type": "stack",
|
|
945
|
-
"direction": "horizontal",
|
|
946
913
|
"gap": "sm",
|
|
914
|
+
"direction": "horizontal",
|
|
947
915
|
"justify": "center",
|
|
948
916
|
"children": [
|
|
949
917
|
{
|
|
918
|
+
"label": "Start",
|
|
919
|
+
"icon": "play",
|
|
950
920
|
"type": "button",
|
|
951
|
-
"label": "Reset",
|
|
952
|
-
"event": "RESET",
|
|
953
921
|
"variant": "primary",
|
|
954
|
-
"
|
|
922
|
+
"event": "START"
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
"event": "PAUSE",
|
|
926
|
+
"disabled": true,
|
|
927
|
+
"variant": "ghost",
|
|
928
|
+
"label": "Pause",
|
|
929
|
+
"type": "button",
|
|
930
|
+
"icon": "pause"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"type": "button",
|
|
934
|
+
"variant": "ghost",
|
|
935
|
+
"disabled": true,
|
|
936
|
+
"icon": "rotate-ccw",
|
|
937
|
+
"label": "Reset",
|
|
938
|
+
"event": "RESET"
|
|
955
939
|
}
|
|
956
940
|
]
|
|
957
941
|
}
|
|
@@ -961,52 +945,49 @@
|
|
|
961
945
|
]
|
|
962
946
|
},
|
|
963
947
|
{
|
|
964
|
-
"from": "
|
|
965
|
-
"to": "
|
|
966
|
-
"event": "
|
|
948
|
+
"from": "paused",
|
|
949
|
+
"to": "running",
|
|
950
|
+
"event": "RESUME",
|
|
967
951
|
"effects": [
|
|
968
952
|
[
|
|
969
953
|
"set",
|
|
970
954
|
"@entity.status",
|
|
971
|
-
"
|
|
955
|
+
"running"
|
|
972
956
|
],
|
|
973
957
|
[
|
|
974
958
|
"render-ui",
|
|
975
959
|
"main",
|
|
976
960
|
{
|
|
977
|
-
"type": "stack",
|
|
978
961
|
"direction": "vertical",
|
|
979
962
|
"gap": "lg",
|
|
980
963
|
"align": "center",
|
|
981
964
|
"children": [
|
|
982
965
|
{
|
|
983
|
-
"type": "stack",
|
|
984
|
-
"direction": "vertical",
|
|
985
|
-
"gap": "md",
|
|
986
|
-
"align": "center",
|
|
987
966
|
"children": [
|
|
988
967
|
{
|
|
989
|
-
"type": "stack",
|
|
990
|
-
"direction": "horizontal",
|
|
991
|
-
"gap": "sm",
|
|
992
|
-
"align": "center",
|
|
993
968
|
"children": [
|
|
994
969
|
{
|
|
995
|
-
"type": "icon",
|
|
996
970
|
"name": "clock",
|
|
971
|
+
"type": "icon",
|
|
997
972
|
"size": "lg"
|
|
998
973
|
},
|
|
999
974
|
{
|
|
975
|
+
"variant": "h2",
|
|
1000
976
|
"type": "typography",
|
|
1001
|
-
"content": "Timer"
|
|
1002
|
-
"variant": "h2"
|
|
977
|
+
"content": "Timer"
|
|
1003
978
|
}
|
|
1004
|
-
]
|
|
979
|
+
],
|
|
980
|
+
"direction": "horizontal",
|
|
981
|
+
"gap": "sm",
|
|
982
|
+
"align": "center",
|
|
983
|
+
"type": "stack"
|
|
1005
984
|
},
|
|
1006
985
|
{
|
|
1007
986
|
"type": "divider"
|
|
1008
987
|
},
|
|
1009
988
|
{
|
|
989
|
+
"suffix": "s",
|
|
990
|
+
"duration": 500.0,
|
|
1010
991
|
"type": "animated-counter",
|
|
1011
992
|
"value": [
|
|
1012
993
|
"object/get",
|
|
@@ -1015,12 +996,11 @@
|
|
|
1015
996
|
"@entity"
|
|
1016
997
|
],
|
|
1017
998
|
"remaining"
|
|
1018
|
-
]
|
|
1019
|
-
"suffix": "s",
|
|
1020
|
-
"duration": 500
|
|
999
|
+
]
|
|
1021
1000
|
},
|
|
1022
1001
|
{
|
|
1023
1002
|
"type": "stat-display",
|
|
1003
|
+
"max": 60.0,
|
|
1024
1004
|
"label": "Time Remaining",
|
|
1025
1005
|
"value": [
|
|
1026
1006
|
"object/get",
|
|
@@ -1029,11 +1009,10 @@
|
|
|
1029
1009
|
"@entity"
|
|
1030
1010
|
],
|
|
1031
1011
|
"remaining"
|
|
1032
|
-
]
|
|
1033
|
-
"max": 60
|
|
1012
|
+
]
|
|
1034
1013
|
},
|
|
1035
1014
|
{
|
|
1036
|
-
"
|
|
1015
|
+
"min": 0.0,
|
|
1037
1016
|
"value": [
|
|
1038
1017
|
"object/get",
|
|
1039
1018
|
[
|
|
@@ -1042,11 +1021,14 @@
|
|
|
1042
1021
|
],
|
|
1043
1022
|
"remaining"
|
|
1044
1023
|
],
|
|
1045
|
-
"
|
|
1046
|
-
"
|
|
1024
|
+
"max": 60.0,
|
|
1025
|
+
"type": "meter"
|
|
1047
1026
|
},
|
|
1048
1027
|
{
|
|
1028
|
+
"max": 60.0,
|
|
1049
1029
|
"type": "progress-bar",
|
|
1030
|
+
"color": "primary",
|
|
1031
|
+
"showPercentage": true,
|
|
1050
1032
|
"value": [
|
|
1051
1033
|
"object/get",
|
|
1052
1034
|
[
|
|
@@ -1054,13 +1036,9 @@
|
|
|
1054
1036
|
"@entity"
|
|
1055
1037
|
],
|
|
1056
1038
|
"remaining"
|
|
1057
|
-
]
|
|
1058
|
-
"max": 60,
|
|
1059
|
-
"color": "primary",
|
|
1060
|
-
"showPercentage": true
|
|
1039
|
+
]
|
|
1061
1040
|
},
|
|
1062
1041
|
{
|
|
1063
|
-
"type": "badge",
|
|
1064
1042
|
"label": [
|
|
1065
1043
|
"object/get",
|
|
1066
1044
|
[
|
|
@@ -1068,42 +1046,39 @@
|
|
|
1068
1046
|
"@entity"
|
|
1069
1047
|
],
|
|
1070
1048
|
"status"
|
|
1071
|
-
]
|
|
1049
|
+
],
|
|
1050
|
+
"type": "badge"
|
|
1072
1051
|
}
|
|
1073
|
-
]
|
|
1052
|
+
],
|
|
1053
|
+
"type": "stack",
|
|
1054
|
+
"direction": "vertical",
|
|
1055
|
+
"align": "center",
|
|
1056
|
+
"gap": "md"
|
|
1074
1057
|
},
|
|
1075
1058
|
{
|
|
1076
|
-
"type": "stack",
|
|
1077
|
-
"direction": "horizontal",
|
|
1078
|
-
"gap": "sm",
|
|
1079
1059
|
"justify": "center",
|
|
1080
1060
|
"children": [
|
|
1081
1061
|
{
|
|
1082
|
-
"
|
|
1083
|
-
"label": "Start",
|
|
1084
|
-
"event": "START",
|
|
1085
|
-
"variant": "primary",
|
|
1086
|
-
"icon": "play"
|
|
1087
|
-
},
|
|
1088
|
-
{
|
|
1089
|
-
"type": "button",
|
|
1062
|
+
"variant": "secondary",
|
|
1090
1063
|
"label": "Pause",
|
|
1091
|
-
"event": "PAUSE",
|
|
1092
|
-
"variant": "ghost",
|
|
1093
1064
|
"icon": "pause",
|
|
1094
|
-
"
|
|
1065
|
+
"event": "PAUSE",
|
|
1066
|
+
"type": "button"
|
|
1095
1067
|
},
|
|
1096
1068
|
{
|
|
1097
|
-
"type": "button",
|
|
1098
|
-
"label": "Reset",
|
|
1099
1069
|
"event": "RESET",
|
|
1100
|
-
"variant": "ghost",
|
|
1101
1070
|
"icon": "rotate-ccw",
|
|
1102
|
-
"
|
|
1071
|
+
"label": "Reset",
|
|
1072
|
+
"variant": "ghost",
|
|
1073
|
+
"type": "button"
|
|
1103
1074
|
}
|
|
1104
|
-
]
|
|
1075
|
+
],
|
|
1076
|
+
"type": "stack",
|
|
1077
|
+
"direction": "horizontal",
|
|
1078
|
+
"gap": "sm"
|
|
1105
1079
|
}
|
|
1106
|
-
]
|
|
1080
|
+
],
|
|
1081
|
+
"type": "stack"
|
|
1107
1082
|
}
|
|
1108
1083
|
]
|
|
1109
1084
|
]
|
|
@@ -1122,21 +1097,17 @@
|
|
|
1122
1097
|
"render-ui",
|
|
1123
1098
|
"main",
|
|
1124
1099
|
{
|
|
1125
|
-
"type": "stack",
|
|
1126
|
-
"direction": "vertical",
|
|
1127
1100
|
"gap": "lg",
|
|
1128
|
-
"align": "center",
|
|
1129
1101
|
"children": [
|
|
1130
1102
|
{
|
|
1131
|
-
"type": "stack",
|
|
1132
|
-
"direction": "vertical",
|
|
1133
1103
|
"gap": "md",
|
|
1104
|
+
"direction": "vertical",
|
|
1105
|
+
"type": "stack",
|
|
1134
1106
|
"align": "center",
|
|
1135
1107
|
"children": [
|
|
1136
1108
|
{
|
|
1137
|
-
"type": "stack",
|
|
1138
|
-
"direction": "horizontal",
|
|
1139
1109
|
"gap": "sm",
|
|
1110
|
+
"type": "stack",
|
|
1140
1111
|
"align": "center",
|
|
1141
1112
|
"children": [
|
|
1142
1113
|
{
|
|
@@ -1145,17 +1116,17 @@
|
|
|
1145
1116
|
"size": "lg"
|
|
1146
1117
|
},
|
|
1147
1118
|
{
|
|
1119
|
+
"variant": "h2",
|
|
1148
1120
|
"type": "typography",
|
|
1149
|
-
"content": "Timer"
|
|
1150
|
-
"variant": "h2"
|
|
1121
|
+
"content": "Timer"
|
|
1151
1122
|
}
|
|
1152
|
-
]
|
|
1123
|
+
],
|
|
1124
|
+
"direction": "horizontal"
|
|
1153
1125
|
},
|
|
1154
1126
|
{
|
|
1155
1127
|
"type": "divider"
|
|
1156
1128
|
},
|
|
1157
1129
|
{
|
|
1158
|
-
"type": "animated-counter",
|
|
1159
1130
|
"value": [
|
|
1160
1131
|
"object/get",
|
|
1161
1132
|
[
|
|
@@ -1165,11 +1136,12 @@
|
|
|
1165
1136
|
"remaining"
|
|
1166
1137
|
],
|
|
1167
1138
|
"suffix": "s",
|
|
1168
|
-
"
|
|
1139
|
+
"type": "animated-counter",
|
|
1140
|
+
"duration": 500.0
|
|
1169
1141
|
},
|
|
1170
1142
|
{
|
|
1143
|
+
"max": 60.0,
|
|
1171
1144
|
"type": "stat-display",
|
|
1172
|
-
"label": "Time Remaining",
|
|
1173
1145
|
"value": [
|
|
1174
1146
|
"object/get",
|
|
1175
1147
|
[
|
|
@@ -1178,9 +1150,10 @@
|
|
|
1178
1150
|
],
|
|
1179
1151
|
"remaining"
|
|
1180
1152
|
],
|
|
1181
|
-
"
|
|
1153
|
+
"label": "Time Remaining"
|
|
1182
1154
|
},
|
|
1183
1155
|
{
|
|
1156
|
+
"min": 0.0,
|
|
1184
1157
|
"type": "meter",
|
|
1185
1158
|
"value": [
|
|
1186
1159
|
"object/get",
|
|
@@ -1190,11 +1163,10 @@
|
|
|
1190
1163
|
],
|
|
1191
1164
|
"remaining"
|
|
1192
1165
|
],
|
|
1193
|
-
"
|
|
1194
|
-
"max": 60
|
|
1166
|
+
"max": 60.0
|
|
1195
1167
|
},
|
|
1196
1168
|
{
|
|
1197
|
-
"
|
|
1169
|
+
"showPercentage": true,
|
|
1198
1170
|
"value": [
|
|
1199
1171
|
"object/get",
|
|
1200
1172
|
[
|
|
@@ -1203,9 +1175,9 @@
|
|
|
1203
1175
|
],
|
|
1204
1176
|
"remaining"
|
|
1205
1177
|
],
|
|
1206
|
-
"max": 60,
|
|
1207
|
-
"
|
|
1208
|
-
"
|
|
1178
|
+
"max": 60.0,
|
|
1179
|
+
"type": "progress-bar",
|
|
1180
|
+
"color": "primary"
|
|
1209
1181
|
},
|
|
1210
1182
|
{
|
|
1211
1183
|
"type": "badge",
|
|
@@ -1222,36 +1194,39 @@
|
|
|
1222
1194
|
},
|
|
1223
1195
|
{
|
|
1224
1196
|
"type": "stack",
|
|
1225
|
-
"direction": "horizontal",
|
|
1226
|
-
"gap": "sm",
|
|
1227
1197
|
"justify": "center",
|
|
1198
|
+
"gap": "sm",
|
|
1199
|
+
"direction": "horizontal",
|
|
1228
1200
|
"children": [
|
|
1229
1201
|
{
|
|
1230
|
-
"type": "button",
|
|
1231
1202
|
"label": "Start",
|
|
1232
|
-
"event": "START",
|
|
1233
1203
|
"variant": "primary",
|
|
1234
|
-
"icon": "play"
|
|
1204
|
+
"icon": "play",
|
|
1205
|
+
"type": "button",
|
|
1206
|
+
"event": "START"
|
|
1235
1207
|
},
|
|
1236
1208
|
{
|
|
1237
|
-
"type": "button",
|
|
1238
|
-
"label": "Pause",
|
|
1239
|
-
"event": "PAUSE",
|
|
1240
1209
|
"variant": "ghost",
|
|
1210
|
+
"type": "button",
|
|
1241
1211
|
"icon": "pause",
|
|
1242
|
-
"disabled": true
|
|
1212
|
+
"disabled": true,
|
|
1213
|
+
"label": "Pause",
|
|
1214
|
+
"event": "PAUSE"
|
|
1243
1215
|
},
|
|
1244
1216
|
{
|
|
1245
1217
|
"type": "button",
|
|
1246
|
-
"label": "Reset",
|
|
1247
1218
|
"event": "RESET",
|
|
1248
1219
|
"variant": "ghost",
|
|
1249
1220
|
"icon": "rotate-ccw",
|
|
1250
|
-
"disabled": true
|
|
1221
|
+
"disabled": true,
|
|
1222
|
+
"label": "Reset"
|
|
1251
1223
|
}
|
|
1252
1224
|
]
|
|
1253
1225
|
}
|
|
1254
|
-
]
|
|
1226
|
+
],
|
|
1227
|
+
"direction": "vertical",
|
|
1228
|
+
"align": "center",
|
|
1229
|
+
"type": "stack"
|
|
1255
1230
|
}
|
|
1256
1231
|
]
|
|
1257
1232
|
]
|
|
@@ -1270,26 +1245,22 @@
|
|
|
1270
1245
|
"render-ui",
|
|
1271
1246
|
"main",
|
|
1272
1247
|
{
|
|
1273
|
-
"type": "stack",
|
|
1274
|
-
"direction": "vertical",
|
|
1275
1248
|
"gap": "lg",
|
|
1276
1249
|
"align": "center",
|
|
1250
|
+
"direction": "vertical",
|
|
1251
|
+
"type": "stack",
|
|
1277
1252
|
"children": [
|
|
1278
1253
|
{
|
|
1279
1254
|
"type": "stack",
|
|
1280
|
-
"direction": "vertical",
|
|
1281
|
-
"gap": "md",
|
|
1282
|
-
"align": "center",
|
|
1283
1255
|
"children": [
|
|
1284
1256
|
{
|
|
1285
|
-
"type": "stack",
|
|
1286
1257
|
"direction": "horizontal",
|
|
1287
1258
|
"gap": "sm",
|
|
1288
1259
|
"align": "center",
|
|
1289
1260
|
"children": [
|
|
1290
1261
|
{
|
|
1291
|
-
"type": "icon",
|
|
1292
1262
|
"name": "clock",
|
|
1263
|
+
"type": "icon",
|
|
1293
1264
|
"size": "lg"
|
|
1294
1265
|
},
|
|
1295
1266
|
{
|
|
@@ -1297,7 +1268,8 @@
|
|
|
1297
1268
|
"content": "Timer",
|
|
1298
1269
|
"variant": "h2"
|
|
1299
1270
|
}
|
|
1300
|
-
]
|
|
1271
|
+
],
|
|
1272
|
+
"type": "stack"
|
|
1301
1273
|
},
|
|
1302
1274
|
{
|
|
1303
1275
|
"type": "divider"
|
|
@@ -1312,12 +1284,11 @@
|
|
|
1312
1284
|
],
|
|
1313
1285
|
"remaining"
|
|
1314
1286
|
],
|
|
1315
|
-
"
|
|
1316
|
-
"
|
|
1287
|
+
"duration": 500.0,
|
|
1288
|
+
"suffix": "s"
|
|
1317
1289
|
},
|
|
1318
1290
|
{
|
|
1319
|
-
"
|
|
1320
|
-
"label": "Time Remaining",
|
|
1291
|
+
"max": 60.0,
|
|
1321
1292
|
"value": [
|
|
1322
1293
|
"object/get",
|
|
1323
1294
|
[
|
|
@@ -1326,10 +1297,11 @@
|
|
|
1326
1297
|
],
|
|
1327
1298
|
"remaining"
|
|
1328
1299
|
],
|
|
1329
|
-
"
|
|
1300
|
+
"label": "Time Remaining",
|
|
1301
|
+
"type": "stat-display"
|
|
1330
1302
|
},
|
|
1331
1303
|
{
|
|
1332
|
-
"
|
|
1304
|
+
"max": 60.0,
|
|
1333
1305
|
"value": [
|
|
1334
1306
|
"object/get",
|
|
1335
1307
|
[
|
|
@@ -1338,11 +1310,12 @@
|
|
|
1338
1310
|
],
|
|
1339
1311
|
"remaining"
|
|
1340
1312
|
],
|
|
1341
|
-
"min": 0,
|
|
1342
|
-
"
|
|
1313
|
+
"min": 0.0,
|
|
1314
|
+
"type": "meter"
|
|
1343
1315
|
},
|
|
1344
1316
|
{
|
|
1345
1317
|
"type": "progress-bar",
|
|
1318
|
+
"max": 60.0,
|
|
1346
1319
|
"value": [
|
|
1347
1320
|
"object/get",
|
|
1348
1321
|
[
|
|
@@ -1351,9 +1324,8 @@
|
|
|
1351
1324
|
],
|
|
1352
1325
|
"remaining"
|
|
1353
1326
|
],
|
|
1354
|
-
"
|
|
1355
|
-
"color": "primary"
|
|
1356
|
-
"showPercentage": true
|
|
1327
|
+
"showPercentage": true,
|
|
1328
|
+
"color": "primary"
|
|
1357
1329
|
},
|
|
1358
1330
|
{
|
|
1359
1331
|
"type": "badge",
|
|
@@ -1366,38 +1338,41 @@
|
|
|
1366
1338
|
"status"
|
|
1367
1339
|
]
|
|
1368
1340
|
}
|
|
1369
|
-
]
|
|
1341
|
+
],
|
|
1342
|
+
"align": "center",
|
|
1343
|
+
"direction": "vertical",
|
|
1344
|
+
"gap": "md"
|
|
1370
1345
|
},
|
|
1371
1346
|
{
|
|
1372
1347
|
"type": "stack",
|
|
1373
|
-
"direction": "horizontal",
|
|
1374
1348
|
"gap": "sm",
|
|
1375
1349
|
"justify": "center",
|
|
1376
1350
|
"children": [
|
|
1377
1351
|
{
|
|
1352
|
+
"icon": "play",
|
|
1378
1353
|
"type": "button",
|
|
1379
|
-
"label": "Start",
|
|
1380
1354
|
"event": "START",
|
|
1381
|
-
"
|
|
1382
|
-
"
|
|
1355
|
+
"label": "Start",
|
|
1356
|
+
"variant": "primary"
|
|
1383
1357
|
},
|
|
1384
1358
|
{
|
|
1385
|
-
"
|
|
1386
|
-
"label": "Pause",
|
|
1359
|
+
"disabled": true,
|
|
1387
1360
|
"event": "PAUSE",
|
|
1361
|
+
"type": "button",
|
|
1388
1362
|
"variant": "ghost",
|
|
1389
1363
|
"icon": "pause",
|
|
1390
|
-
"
|
|
1364
|
+
"label": "Pause"
|
|
1391
1365
|
},
|
|
1392
1366
|
{
|
|
1393
|
-
"type": "button",
|
|
1394
1367
|
"label": "Reset",
|
|
1395
|
-
"event": "RESET",
|
|
1396
|
-
"variant": "ghost",
|
|
1397
1368
|
"icon": "rotate-ccw",
|
|
1398
|
-
"disabled": true
|
|
1369
|
+
"disabled": true,
|
|
1370
|
+
"event": "RESET",
|
|
1371
|
+
"type": "button",
|
|
1372
|
+
"variant": "ghost"
|
|
1399
1373
|
}
|
|
1400
|
-
]
|
|
1374
|
+
],
|
|
1375
|
+
"direction": "horizontal"
|
|
1401
1376
|
}
|
|
1402
1377
|
]
|
|
1403
1378
|
}
|
|
@@ -1405,7 +1380,8 @@
|
|
|
1405
1380
|
]
|
|
1406
1381
|
}
|
|
1407
1382
|
]
|
|
1408
|
-
}
|
|
1383
|
+
},
|
|
1384
|
+
"scope": "instance"
|
|
1409
1385
|
}
|
|
1410
1386
|
],
|
|
1411
1387
|
"pages": [
|
|
@@ -1421,4 +1397,4 @@
|
|
|
1421
1397
|
]
|
|
1422
1398
|
}
|
|
1423
1399
|
]
|
|
1424
|
-
}
|
|
1400
|
+
}
|