@almadar/std 6.5.2 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/behaviors/registry/atoms/std-async.orb +147 -86
- package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/behaviors/registry/atoms/std-browse.orb +260 -126
- package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/behaviors/registry/atoms/std-collision.orb +136 -135
- package/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/behaviors/registry/atoms/std-combat.orb +171 -98
- package/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/behaviors/registry/atoms/std-display.orb +491 -587
- package/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/behaviors/registry/atoms/std-filter.orb +311 -326
- package/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/behaviors/registry/atoms/std-input.orb +128 -393
- package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/behaviors/registry/atoms/std-loading.orb +127 -126
- package/behaviors/registry/atoms/std-modal.orb +30 -267
- package/behaviors/registry/atoms/std-movement.orb +391 -292
- package/behaviors/registry/atoms/std-notification.orb +133 -75
- package/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/behaviors/registry/atoms/std-push.orb +172 -36
- package/behaviors/registry/atoms/std-quest.orb +552 -449
- package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/behaviors/registry/atoms/std-rating.orb +123 -65
- package/behaviors/registry/atoms/std-related.orb +202 -26
- package/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/behaviors/registry/atoms/std-score.orb +210 -146
- package/behaviors/registry/atoms/std-search.orb +265 -138
- package/behaviors/registry/atoms/std-selection.orb +311 -220
- package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/behaviors/registry/atoms/std-sort.orb +284 -207
- package/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/behaviors/registry/atoms/std-theme.orb +193 -135
- package/behaviors/registry/atoms/std-timer.orb +320 -344
- package/behaviors/registry/atoms/std-undo.orb +278 -199
- package/behaviors/registry/atoms/std-upload.orb +112 -111
- package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/behaviors/registry/molecules/std-cart.orb +347 -406
- package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/behaviors/registry/molecules/std-detail.orb +133 -138
- package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/behaviors/registry/molecules/std-list.orb +280 -205
- package/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/dist/behaviors/registry/atoms/std-async.orb +147 -86
- package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
- package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
- package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
- package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/dist/behaviors/registry/atoms/std-display.orb +491 -587
- package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
- package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/dist/behaviors/registry/atoms/std-input.orb +128 -393
- package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
- package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
- package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
- package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
- package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/dist/behaviors/registry/atoms/std-push.orb +172 -36
- package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
- package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
- package/dist/behaviors/registry/atoms/std-related.orb +202 -26
- package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/dist/behaviors/registry/atoms/std-score.orb +210 -146
- package/dist/behaviors/registry/atoms/std-search.orb +265 -138
- package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
- package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
- package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
- package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
- package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
- package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
- package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
- package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/dist/behaviors/registry/molecules/std-list.orb +280 -205
- package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/index.js +16 -4
- package/dist/index.js.map +1 -1
- package/dist/modules/core.js +16 -4
- package/dist/modules/core.js.map +1 -1
- package/dist/modules/index.js +16 -4
- package/dist/modules/index.js.map +1 -1
- package/dist/registry.js +16 -4
- package/dist/registry.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-theme",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-theme as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ThemePreferenceOrbital",
|
|
@@ -45,24 +45,61 @@
|
|
|
45
45
|
"type": "string",
|
|
46
46
|
"default": "default"
|
|
47
47
|
}
|
|
48
|
-
],
|
|
49
|
-
"instances": [
|
|
50
|
-
{
|
|
51
|
-
"id": "theme-1",
|
|
52
|
-
"name": "Default Theme",
|
|
53
|
-
"description": "System default",
|
|
54
|
-
"status": "active",
|
|
55
|
-
"createdAt": "2026-01-01",
|
|
56
|
-
"mode": "light",
|
|
57
|
-
"colorScheme": "almadar"
|
|
58
|
-
}
|
|
59
48
|
]
|
|
60
49
|
},
|
|
61
50
|
"traits": [
|
|
62
51
|
{
|
|
63
52
|
"name": "ThemePreferenceTheme",
|
|
64
|
-
"linkedEntity": "ThemePreference",
|
|
65
53
|
"category": "interaction",
|
|
54
|
+
"linkedEntity": "ThemePreference",
|
|
55
|
+
"emits": [
|
|
56
|
+
{
|
|
57
|
+
"event": "ThemePreferenceLoaded",
|
|
58
|
+
"description": "Fired when ThemePreference finishes loading",
|
|
59
|
+
"scope": "internal",
|
|
60
|
+
"payload": [
|
|
61
|
+
{
|
|
62
|
+
"name": "id",
|
|
63
|
+
"type": "string"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "name",
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "description",
|
|
71
|
+
"type": "string"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "status",
|
|
75
|
+
"type": "string"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "createdAt",
|
|
79
|
+
"type": "string"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "mode",
|
|
83
|
+
"type": "string"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "colorScheme",
|
|
87
|
+
"type": "string"
|
|
88
|
+
}
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"event": "ThemePreferenceLoadFailed",
|
|
93
|
+
"description": "Fired when ThemePreference fails to load",
|
|
94
|
+
"scope": "internal",
|
|
95
|
+
"payload": [
|
|
96
|
+
{
|
|
97
|
+
"name": "message",
|
|
98
|
+
"type": "string"
|
|
99
|
+
}
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
],
|
|
66
103
|
"stateMachine": {
|
|
67
104
|
"states": [
|
|
68
105
|
{
|
|
@@ -77,11 +114,11 @@
|
|
|
77
114
|
},
|
|
78
115
|
{
|
|
79
116
|
"key": "TOGGLE",
|
|
80
|
-
"name": "Toggle
|
|
117
|
+
"name": "Toggle"
|
|
81
118
|
},
|
|
82
119
|
{
|
|
83
120
|
"key": "SELECT",
|
|
84
|
-
"name": "Select
|
|
121
|
+
"name": "Select",
|
|
85
122
|
"payload": [
|
|
86
123
|
{
|
|
87
124
|
"name": "theme",
|
|
@@ -89,6 +126,20 @@
|
|
|
89
126
|
"required": true
|
|
90
127
|
}
|
|
91
128
|
]
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"key": "ThemePreferenceLoaded",
|
|
132
|
+
"name": "ThemePreference loaded"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"key": "ThemePreferenceLoadFailed",
|
|
136
|
+
"name": "ThemePreference load failed",
|
|
137
|
+
"payload": [
|
|
138
|
+
{
|
|
139
|
+
"name": "message",
|
|
140
|
+
"type": "string"
|
|
141
|
+
}
|
|
142
|
+
]
|
|
92
143
|
}
|
|
93
144
|
],
|
|
94
145
|
"transitions": [
|
|
@@ -99,31 +150,35 @@
|
|
|
99
150
|
"effects": [
|
|
100
151
|
[
|
|
101
152
|
"fetch",
|
|
102
|
-
"ThemePreference"
|
|
153
|
+
"ThemePreference",
|
|
154
|
+
{
|
|
155
|
+
"emit": {
|
|
156
|
+
"success": "ThemePreferenceLoaded",
|
|
157
|
+
"failure": "ThemePreferenceLoadFailed"
|
|
158
|
+
}
|
|
159
|
+
}
|
|
103
160
|
],
|
|
104
161
|
[
|
|
105
162
|
"render-ui",
|
|
106
163
|
"main",
|
|
107
164
|
{
|
|
108
|
-
"type": "stack",
|
|
109
|
-
"direction": "vertical",
|
|
110
165
|
"gap": "lg",
|
|
111
166
|
"children": [
|
|
112
167
|
{
|
|
113
|
-
"type": "stack",
|
|
114
168
|
"direction": "horizontal",
|
|
115
169
|
"gap": "sm",
|
|
116
170
|
"align": "center",
|
|
171
|
+
"type": "stack",
|
|
117
172
|
"children": [
|
|
118
173
|
{
|
|
174
|
+
"size": "lg",
|
|
119
175
|
"type": "icon",
|
|
120
|
-
"name": "palette"
|
|
121
|
-
"size": "lg"
|
|
176
|
+
"name": "palette"
|
|
122
177
|
},
|
|
123
178
|
{
|
|
179
|
+
"variant": "h2",
|
|
124
180
|
"type": "typography",
|
|
125
|
-
"content": "Theme Settings"
|
|
126
|
-
"variant": "h2"
|
|
181
|
+
"content": "Theme Settings"
|
|
127
182
|
}
|
|
128
183
|
]
|
|
129
184
|
},
|
|
@@ -135,24 +190,24 @@
|
|
|
135
190
|
"children": [
|
|
136
191
|
{
|
|
137
192
|
"type": "stack",
|
|
138
|
-
"direction": "vertical",
|
|
139
|
-
"gap": "md",
|
|
140
193
|
"children": [
|
|
141
194
|
{
|
|
142
|
-
"type": "typography",
|
|
143
195
|
"variant": "h4",
|
|
144
|
-
"content": "Quick Toggle"
|
|
196
|
+
"content": "Quick Toggle",
|
|
197
|
+
"type": "typography"
|
|
145
198
|
},
|
|
146
199
|
{
|
|
147
|
-
"type": "typography",
|
|
148
200
|
"variant": "caption",
|
|
149
|
-
"
|
|
150
|
-
"content": "Switch between light and dark mode"
|
|
201
|
+
"type": "typography",
|
|
202
|
+
"content": "Switch between light and dark mode",
|
|
203
|
+
"color": "muted"
|
|
151
204
|
},
|
|
152
205
|
{
|
|
153
206
|
"type": "theme-toggle"
|
|
154
207
|
}
|
|
155
|
-
]
|
|
208
|
+
],
|
|
209
|
+
"direction": "vertical",
|
|
210
|
+
"gap": "md"
|
|
156
211
|
}
|
|
157
212
|
]
|
|
158
213
|
},
|
|
@@ -160,61 +215,57 @@
|
|
|
160
215
|
"type": "card",
|
|
161
216
|
"children": [
|
|
162
217
|
{
|
|
163
|
-
"type": "stack",
|
|
164
|
-
"direction": "vertical",
|
|
165
|
-
"gap": "md",
|
|
166
218
|
"children": [
|
|
167
219
|
{
|
|
168
220
|
"type": "typography",
|
|
169
|
-
"
|
|
170
|
-
"
|
|
221
|
+
"content": "Theme Palette",
|
|
222
|
+
"variant": "h4"
|
|
171
223
|
},
|
|
172
224
|
{
|
|
173
|
-
"type": "typography",
|
|
174
225
|
"variant": "caption",
|
|
175
226
|
"color": "muted",
|
|
176
|
-
"content": "Choose from available color schemes"
|
|
227
|
+
"content": "Choose from available color schemes",
|
|
228
|
+
"type": "typography"
|
|
177
229
|
},
|
|
178
230
|
{
|
|
179
231
|
"type": "simple-grid",
|
|
180
|
-
"columns": 3,
|
|
181
232
|
"children": [
|
|
182
233
|
{
|
|
183
|
-
"type": "button",
|
|
184
|
-
"label": "Almadar",
|
|
185
234
|
"event": "SELECT",
|
|
186
|
-
"variant": "secondary"
|
|
235
|
+
"variant": "secondary",
|
|
236
|
+
"type": "button",
|
|
237
|
+
"label": "Almadar"
|
|
187
238
|
},
|
|
188
239
|
{
|
|
189
|
-
"
|
|
190
|
-
"label": "Ocean",
|
|
240
|
+
"variant": "secondary",
|
|
191
241
|
"event": "SELECT",
|
|
192
|
-
"
|
|
242
|
+
"label": "Ocean",
|
|
243
|
+
"type": "button"
|
|
193
244
|
},
|
|
194
245
|
{
|
|
195
246
|
"type": "button",
|
|
196
|
-
"
|
|
247
|
+
"variant": "secondary",
|
|
197
248
|
"event": "SELECT",
|
|
198
|
-
"
|
|
249
|
+
"label": "Forest"
|
|
199
250
|
}
|
|
200
|
-
]
|
|
251
|
+
],
|
|
252
|
+
"columns": 3.0
|
|
201
253
|
}
|
|
202
|
-
]
|
|
254
|
+
],
|
|
255
|
+
"gap": "md",
|
|
256
|
+
"direction": "vertical",
|
|
257
|
+
"type": "stack"
|
|
203
258
|
}
|
|
204
259
|
]
|
|
205
260
|
},
|
|
206
261
|
{
|
|
207
|
-
"type": "stack",
|
|
208
|
-
"direction": "horizontal",
|
|
209
|
-
"gap": "md",
|
|
210
262
|
"children": [
|
|
211
263
|
{
|
|
212
264
|
"type": "typography",
|
|
213
|
-
"
|
|
214
|
-
"
|
|
265
|
+
"content": "Current mode:",
|
|
266
|
+
"variant": "caption"
|
|
215
267
|
},
|
|
216
268
|
{
|
|
217
|
-
"type": "badge",
|
|
218
269
|
"label": [
|
|
219
270
|
"object/get",
|
|
220
271
|
[
|
|
@@ -222,12 +273,13 @@
|
|
|
222
273
|
"@entity"
|
|
223
274
|
],
|
|
224
275
|
"mode"
|
|
225
|
-
]
|
|
276
|
+
],
|
|
277
|
+
"type": "badge"
|
|
226
278
|
},
|
|
227
279
|
{
|
|
280
|
+
"content": "Scheme:",
|
|
228
281
|
"type": "typography",
|
|
229
|
-
"variant": "caption"
|
|
230
|
-
"content": "Scheme:"
|
|
282
|
+
"variant": "caption"
|
|
231
283
|
},
|
|
232
284
|
{
|
|
233
285
|
"type": "badge",
|
|
@@ -240,9 +292,14 @@
|
|
|
240
292
|
"colorScheme"
|
|
241
293
|
]
|
|
242
294
|
}
|
|
243
|
-
]
|
|
295
|
+
],
|
|
296
|
+
"direction": "horizontal",
|
|
297
|
+
"type": "stack",
|
|
298
|
+
"gap": "md"
|
|
244
299
|
}
|
|
245
|
-
]
|
|
300
|
+
],
|
|
301
|
+
"direction": "vertical",
|
|
302
|
+
"type": "stack"
|
|
246
303
|
}
|
|
247
304
|
]
|
|
248
305
|
]
|
|
@@ -256,25 +313,22 @@
|
|
|
256
313
|
"render-ui",
|
|
257
314
|
"main",
|
|
258
315
|
{
|
|
259
|
-
"type": "stack",
|
|
260
|
-
"direction": "vertical",
|
|
261
|
-
"gap": "lg",
|
|
262
316
|
"children": [
|
|
263
317
|
{
|
|
318
|
+
"align": "center",
|
|
264
319
|
"type": "stack",
|
|
265
320
|
"direction": "horizontal",
|
|
266
321
|
"gap": "sm",
|
|
267
|
-
"align": "center",
|
|
268
322
|
"children": [
|
|
269
323
|
{
|
|
270
|
-
"type": "icon",
|
|
271
324
|
"name": "palette",
|
|
272
|
-
"size": "lg"
|
|
325
|
+
"size": "lg",
|
|
326
|
+
"type": "icon"
|
|
273
327
|
},
|
|
274
328
|
{
|
|
275
|
-
"
|
|
329
|
+
"variant": "h2",
|
|
276
330
|
"content": "Theme Settings",
|
|
277
|
-
"
|
|
331
|
+
"type": "typography"
|
|
278
332
|
}
|
|
279
333
|
]
|
|
280
334
|
},
|
|
@@ -282,12 +336,9 @@
|
|
|
282
336
|
"type": "divider"
|
|
283
337
|
},
|
|
284
338
|
{
|
|
285
|
-
"type": "card",
|
|
286
339
|
"children": [
|
|
287
340
|
{
|
|
288
341
|
"type": "stack",
|
|
289
|
-
"direction": "vertical",
|
|
290
|
-
"gap": "md",
|
|
291
342
|
"children": [
|
|
292
343
|
{
|
|
293
344
|
"type": "typography",
|
|
@@ -296,68 +347,68 @@
|
|
|
296
347
|
},
|
|
297
348
|
{
|
|
298
349
|
"type": "typography",
|
|
299
|
-
"variant": "caption",
|
|
300
350
|
"color": "muted",
|
|
301
|
-
"content": "Switch between light and dark mode"
|
|
351
|
+
"content": "Switch between light and dark mode",
|
|
352
|
+
"variant": "caption"
|
|
302
353
|
},
|
|
303
354
|
{
|
|
304
355
|
"type": "theme-toggle"
|
|
305
356
|
}
|
|
306
|
-
]
|
|
357
|
+
],
|
|
358
|
+
"gap": "md",
|
|
359
|
+
"direction": "vertical"
|
|
307
360
|
}
|
|
308
|
-
]
|
|
361
|
+
],
|
|
362
|
+
"type": "card"
|
|
309
363
|
},
|
|
310
364
|
{
|
|
311
|
-
"type": "card",
|
|
312
365
|
"children": [
|
|
313
366
|
{
|
|
314
|
-
"type": "stack",
|
|
315
367
|
"direction": "vertical",
|
|
316
368
|
"gap": "md",
|
|
369
|
+
"type": "stack",
|
|
317
370
|
"children": [
|
|
318
371
|
{
|
|
319
|
-
"type": "typography",
|
|
320
372
|
"variant": "h4",
|
|
321
|
-
"content": "Theme Palette"
|
|
373
|
+
"content": "Theme Palette",
|
|
374
|
+
"type": "typography"
|
|
322
375
|
},
|
|
323
376
|
{
|
|
377
|
+
"content": "Choose from available color schemes",
|
|
324
378
|
"type": "typography",
|
|
325
379
|
"variant": "caption",
|
|
326
|
-
"color": "muted"
|
|
327
|
-
"content": "Choose from available color schemes"
|
|
380
|
+
"color": "muted"
|
|
328
381
|
},
|
|
329
382
|
{
|
|
383
|
+
"columns": 3.0,
|
|
330
384
|
"type": "simple-grid",
|
|
331
|
-
"columns": 3,
|
|
332
385
|
"children": [
|
|
333
386
|
{
|
|
387
|
+
"variant": "secondary",
|
|
334
388
|
"type": "button",
|
|
335
|
-
"label": "Almadar",
|
|
336
389
|
"event": "SELECT",
|
|
337
|
-
"
|
|
390
|
+
"label": "Almadar"
|
|
338
391
|
},
|
|
339
392
|
{
|
|
340
|
-
"
|
|
341
|
-
"label": "Ocean",
|
|
393
|
+
"variant": "secondary",
|
|
342
394
|
"event": "SELECT",
|
|
343
|
-
"
|
|
395
|
+
"label": "Ocean",
|
|
396
|
+
"type": "button"
|
|
344
397
|
},
|
|
345
398
|
{
|
|
346
|
-
"type": "button",
|
|
347
399
|
"label": "Forest",
|
|
400
|
+
"variant": "secondary",
|
|
348
401
|
"event": "SELECT",
|
|
349
|
-
"
|
|
402
|
+
"type": "button"
|
|
350
403
|
}
|
|
351
404
|
]
|
|
352
405
|
}
|
|
353
406
|
]
|
|
354
407
|
}
|
|
355
|
-
]
|
|
408
|
+
],
|
|
409
|
+
"type": "card"
|
|
356
410
|
},
|
|
357
411
|
{
|
|
358
|
-
"type": "stack",
|
|
359
|
-
"direction": "horizontal",
|
|
360
|
-
"gap": "md",
|
|
361
412
|
"children": [
|
|
362
413
|
{
|
|
363
414
|
"type": "typography",
|
|
@@ -381,7 +432,6 @@
|
|
|
381
432
|
"content": "Scheme:"
|
|
382
433
|
},
|
|
383
434
|
{
|
|
384
|
-
"type": "badge",
|
|
385
435
|
"label": [
|
|
386
436
|
"object/get",
|
|
387
437
|
[
|
|
@@ -389,11 +439,18 @@
|
|
|
389
439
|
"@entity"
|
|
390
440
|
],
|
|
391
441
|
"colorScheme"
|
|
392
|
-
]
|
|
442
|
+
],
|
|
443
|
+
"type": "badge"
|
|
393
444
|
}
|
|
394
|
-
]
|
|
445
|
+
],
|
|
446
|
+
"type": "stack",
|
|
447
|
+
"gap": "md",
|
|
448
|
+
"direction": "horizontal"
|
|
395
449
|
}
|
|
396
|
-
]
|
|
450
|
+
],
|
|
451
|
+
"gap": "lg",
|
|
452
|
+
"direction": "vertical",
|
|
453
|
+
"type": "stack"
|
|
397
454
|
}
|
|
398
455
|
]
|
|
399
456
|
]
|
|
@@ -412,27 +469,26 @@
|
|
|
412
469
|
"render-ui",
|
|
413
470
|
"main",
|
|
414
471
|
{
|
|
415
|
-
"type": "stack",
|
|
416
|
-
"direction": "vertical",
|
|
417
472
|
"gap": "lg",
|
|
473
|
+
"direction": "vertical",
|
|
418
474
|
"children": [
|
|
419
475
|
{
|
|
420
|
-
"type": "stack",
|
|
421
|
-
"direction": "horizontal",
|
|
422
|
-
"gap": "sm",
|
|
423
|
-
"align": "center",
|
|
424
476
|
"children": [
|
|
425
477
|
{
|
|
426
|
-
"type": "icon",
|
|
427
478
|
"name": "palette",
|
|
479
|
+
"type": "icon",
|
|
428
480
|
"size": "lg"
|
|
429
481
|
},
|
|
430
482
|
{
|
|
431
|
-
"type": "typography",
|
|
432
483
|
"content": "Theme Settings",
|
|
484
|
+
"type": "typography",
|
|
433
485
|
"variant": "h2"
|
|
434
486
|
}
|
|
435
|
-
]
|
|
487
|
+
],
|
|
488
|
+
"type": "stack",
|
|
489
|
+
"direction": "horizontal",
|
|
490
|
+
"align": "center",
|
|
491
|
+
"gap": "sm"
|
|
436
492
|
},
|
|
437
493
|
{
|
|
438
494
|
"type": "divider"
|
|
@@ -442,34 +498,31 @@
|
|
|
442
498
|
"children": [
|
|
443
499
|
{
|
|
444
500
|
"type": "stack",
|
|
445
|
-
"direction": "vertical",
|
|
446
|
-
"gap": "md",
|
|
447
501
|
"children": [
|
|
448
502
|
{
|
|
449
503
|
"type": "typography",
|
|
450
|
-
"
|
|
451
|
-
"
|
|
504
|
+
"content": "Quick Toggle",
|
|
505
|
+
"variant": "h4"
|
|
452
506
|
},
|
|
453
507
|
{
|
|
454
|
-
"type": "typography",
|
|
455
508
|
"variant": "caption",
|
|
456
509
|
"color": "muted",
|
|
510
|
+
"type": "typography",
|
|
457
511
|
"content": "Switch between light and dark mode"
|
|
458
512
|
},
|
|
459
513
|
{
|
|
460
514
|
"type": "theme-toggle"
|
|
461
515
|
}
|
|
462
|
-
]
|
|
516
|
+
],
|
|
517
|
+
"gap": "md",
|
|
518
|
+
"direction": "vertical"
|
|
463
519
|
}
|
|
464
520
|
]
|
|
465
521
|
},
|
|
466
522
|
{
|
|
467
|
-
"type": "card",
|
|
468
523
|
"children": [
|
|
469
524
|
{
|
|
470
|
-
"type": "stack",
|
|
471
525
|
"direction": "vertical",
|
|
472
|
-
"gap": "md",
|
|
473
526
|
"children": [
|
|
474
527
|
{
|
|
475
528
|
"type": "typography",
|
|
@@ -477,19 +530,19 @@
|
|
|
477
530
|
"content": "Theme Palette"
|
|
478
531
|
},
|
|
479
532
|
{
|
|
480
|
-
"type": "typography",
|
|
481
533
|
"variant": "caption",
|
|
482
|
-
"
|
|
483
|
-
"
|
|
534
|
+
"content": "Choose from available color schemes",
|
|
535
|
+
"type": "typography",
|
|
536
|
+
"color": "muted"
|
|
484
537
|
},
|
|
485
538
|
{
|
|
486
539
|
"type": "simple-grid",
|
|
487
|
-
"columns": 3,
|
|
540
|
+
"columns": 3.0,
|
|
488
541
|
"children": [
|
|
489
542
|
{
|
|
490
543
|
"type": "button",
|
|
491
|
-
"label": "Almadar",
|
|
492
544
|
"event": "SELECT",
|
|
545
|
+
"label": "Almadar",
|
|
493
546
|
"variant": "secondary"
|
|
494
547
|
},
|
|
495
548
|
{
|
|
@@ -499,20 +552,21 @@
|
|
|
499
552
|
"variant": "secondary"
|
|
500
553
|
},
|
|
501
554
|
{
|
|
502
|
-
"type": "button",
|
|
503
|
-
"label": "Forest",
|
|
504
555
|
"event": "SELECT",
|
|
505
|
-
"
|
|
556
|
+
"type": "button",
|
|
557
|
+
"variant": "secondary",
|
|
558
|
+
"label": "Forest"
|
|
506
559
|
}
|
|
507
560
|
]
|
|
508
561
|
}
|
|
509
|
-
]
|
|
562
|
+
],
|
|
563
|
+
"type": "stack",
|
|
564
|
+
"gap": "md"
|
|
510
565
|
}
|
|
511
|
-
]
|
|
566
|
+
],
|
|
567
|
+
"type": "card"
|
|
512
568
|
},
|
|
513
569
|
{
|
|
514
|
-
"type": "stack",
|
|
515
|
-
"direction": "horizontal",
|
|
516
570
|
"gap": "md",
|
|
517
571
|
"children": [
|
|
518
572
|
{
|
|
@@ -532,12 +586,11 @@
|
|
|
532
586
|
]
|
|
533
587
|
},
|
|
534
588
|
{
|
|
589
|
+
"content": "Scheme:",
|
|
535
590
|
"type": "typography",
|
|
536
|
-
"variant": "caption"
|
|
537
|
-
"content": "Scheme:"
|
|
591
|
+
"variant": "caption"
|
|
538
592
|
},
|
|
539
593
|
{
|
|
540
|
-
"type": "badge",
|
|
541
594
|
"label": [
|
|
542
595
|
"object/get",
|
|
543
596
|
[
|
|
@@ -545,17 +598,22 @@
|
|
|
545
598
|
"@entity"
|
|
546
599
|
],
|
|
547
600
|
"colorScheme"
|
|
548
|
-
]
|
|
601
|
+
],
|
|
602
|
+
"type": "badge"
|
|
549
603
|
}
|
|
550
|
-
]
|
|
604
|
+
],
|
|
605
|
+
"type": "stack",
|
|
606
|
+
"direction": "horizontal"
|
|
551
607
|
}
|
|
552
|
-
]
|
|
608
|
+
],
|
|
609
|
+
"type": "stack"
|
|
553
610
|
}
|
|
554
611
|
]
|
|
555
612
|
]
|
|
556
613
|
}
|
|
557
614
|
]
|
|
558
|
-
}
|
|
615
|
+
},
|
|
616
|
+
"scope": "collection"
|
|
559
617
|
}
|
|
560
618
|
],
|
|
561
619
|
"pages": [
|
|
@@ -571,4 +629,4 @@
|
|
|
571
629
|
]
|
|
572
630
|
}
|
|
573
631
|
]
|
|
574
|
-
}
|
|
632
|
+
}
|