@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-text-effects",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-text-effects as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "TextContentOrbital",
|
|
@@ -50,25 +50,65 @@
|
|
|
50
50
|
"type": "string",
|
|
51
51
|
"default": ""
|
|
52
52
|
}
|
|
53
|
-
],
|
|
54
|
-
"instances": [
|
|
55
|
-
{
|
|
56
|
-
"id": "txt-1",
|
|
57
|
-
"name": "The quick brown fox jumps over the lazy dog",
|
|
58
|
-
"description": "A pangram sentence",
|
|
59
|
-
"status": "active",
|
|
60
|
-
"createdAt": "2026-01-01",
|
|
61
|
-
"content": "The **quick** brown fox _jumps_ over the lazy dog. This demonstrates text animation and highlighting capabilities.",
|
|
62
|
-
"highlightType": "emphasis",
|
|
63
|
-
"reference": "Article 42, Section 3.1 — Typography Standards"
|
|
64
|
-
}
|
|
65
53
|
]
|
|
66
54
|
},
|
|
67
55
|
"traits": [
|
|
68
56
|
{
|
|
69
57
|
"name": "TextContentTextEffects",
|
|
70
|
-
"linkedEntity": "TextContent",
|
|
71
58
|
"category": "interaction",
|
|
59
|
+
"linkedEntity": "TextContent",
|
|
60
|
+
"emits": [
|
|
61
|
+
{
|
|
62
|
+
"event": "TextContentLoaded",
|
|
63
|
+
"description": "Fired when TextContent finishes loading",
|
|
64
|
+
"scope": "internal",
|
|
65
|
+
"payload": [
|
|
66
|
+
{
|
|
67
|
+
"name": "id",
|
|
68
|
+
"type": "string"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "name",
|
|
72
|
+
"type": "string"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "description",
|
|
76
|
+
"type": "string"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "status",
|
|
80
|
+
"type": "string"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "createdAt",
|
|
84
|
+
"type": "string"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "content",
|
|
88
|
+
"type": "string"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "highlightType",
|
|
92
|
+
"type": "string"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "reference",
|
|
96
|
+
"type": "string"
|
|
97
|
+
}
|
|
98
|
+
]
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"event": "TextContentLoadFailed",
|
|
102
|
+
"description": "Fired when TextContent fails to load",
|
|
103
|
+
"scope": "internal",
|
|
104
|
+
"payload": [
|
|
105
|
+
{
|
|
106
|
+
"name": "message",
|
|
107
|
+
"type": "string"
|
|
108
|
+
}
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
],
|
|
72
112
|
"stateMachine": {
|
|
73
113
|
"states": [
|
|
74
114
|
{
|
|
@@ -98,6 +138,20 @@
|
|
|
98
138
|
{
|
|
99
139
|
"key": "RESET",
|
|
100
140
|
"name": "Reset"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"key": "TextContentLoaded",
|
|
144
|
+
"name": "TextContent loaded"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"key": "TextContentLoadFailed",
|
|
148
|
+
"name": "TextContent load failed",
|
|
149
|
+
"payload": [
|
|
150
|
+
{
|
|
151
|
+
"name": "message",
|
|
152
|
+
"type": "string"
|
|
153
|
+
}
|
|
154
|
+
]
|
|
101
155
|
}
|
|
102
156
|
],
|
|
103
157
|
"transitions": [
|
|
@@ -108,39 +162,43 @@
|
|
|
108
162
|
"effects": [
|
|
109
163
|
[
|
|
110
164
|
"fetch",
|
|
111
|
-
"TextContent"
|
|
165
|
+
"TextContent",
|
|
166
|
+
{
|
|
167
|
+
"emit": {
|
|
168
|
+
"failure": "TextContentLoadFailed",
|
|
169
|
+
"success": "TextContentLoaded"
|
|
170
|
+
}
|
|
171
|
+
}
|
|
112
172
|
],
|
|
113
173
|
[
|
|
114
174
|
"render-ui",
|
|
115
175
|
"main",
|
|
116
176
|
{
|
|
117
177
|
"type": "stack",
|
|
118
|
-
"direction": "vertical",
|
|
119
178
|
"gap": "lg",
|
|
120
179
|
"children": [
|
|
121
180
|
{
|
|
122
181
|
"type": "stack",
|
|
123
|
-
"direction": "horizontal",
|
|
124
182
|
"gap": "sm",
|
|
125
|
-
"
|
|
183
|
+
"direction": "horizontal",
|
|
126
184
|
"children": [
|
|
127
185
|
{
|
|
128
|
-
"
|
|
186
|
+
"size": "lg",
|
|
129
187
|
"name": "type",
|
|
130
|
-
"
|
|
188
|
+
"type": "icon"
|
|
131
189
|
},
|
|
132
190
|
{
|
|
133
|
-
"type": "typography",
|
|
134
191
|
"content": "Text Effects",
|
|
135
|
-
"variant": "h2"
|
|
192
|
+
"variant": "h2",
|
|
193
|
+
"type": "typography"
|
|
136
194
|
}
|
|
137
|
-
]
|
|
195
|
+
],
|
|
196
|
+
"align": "center"
|
|
138
197
|
},
|
|
139
198
|
{
|
|
140
199
|
"type": "divider"
|
|
141
200
|
},
|
|
142
201
|
{
|
|
143
|
-
"type": "markdown-content",
|
|
144
202
|
"content": [
|
|
145
203
|
"object/get",
|
|
146
204
|
[
|
|
@@ -148,10 +206,10 @@
|
|
|
148
206
|
"@entity"
|
|
149
207
|
],
|
|
150
208
|
"name"
|
|
151
|
-
]
|
|
209
|
+
],
|
|
210
|
+
"type": "markdown-content"
|
|
152
211
|
},
|
|
153
212
|
{
|
|
154
|
-
"type": "code-block",
|
|
155
213
|
"code": [
|
|
156
214
|
"object/get",
|
|
157
215
|
[
|
|
@@ -160,6 +218,7 @@
|
|
|
160
218
|
],
|
|
161
219
|
"reference"
|
|
162
220
|
],
|
|
221
|
+
"type": "code-block",
|
|
163
222
|
"language": "text"
|
|
164
223
|
},
|
|
165
224
|
{
|
|
@@ -176,27 +235,28 @@
|
|
|
176
235
|
},
|
|
177
236
|
{
|
|
178
237
|
"type": "stack",
|
|
179
|
-
"direction": "horizontal",
|
|
180
238
|
"gap": "sm",
|
|
181
|
-
"justify": "center",
|
|
182
239
|
"children": [
|
|
183
240
|
{
|
|
184
|
-
"type": "button",
|
|
185
|
-
"label": "Animate",
|
|
186
241
|
"event": "ANIMATE",
|
|
242
|
+
"icon": "play",
|
|
243
|
+
"label": "Animate",
|
|
187
244
|
"variant": "primary",
|
|
188
|
-
"
|
|
245
|
+
"type": "button"
|
|
189
246
|
},
|
|
190
247
|
{
|
|
191
|
-
"
|
|
248
|
+
"icon": "highlighter",
|
|
192
249
|
"label": "Highlight",
|
|
250
|
+
"type": "button",
|
|
193
251
|
"event": "HIGHLIGHT",
|
|
194
|
-
"variant": "secondary"
|
|
195
|
-
"icon": "highlighter"
|
|
252
|
+
"variant": "secondary"
|
|
196
253
|
}
|
|
197
|
-
]
|
|
254
|
+
],
|
|
255
|
+
"direction": "horizontal",
|
|
256
|
+
"justify": "center"
|
|
198
257
|
}
|
|
199
|
-
]
|
|
258
|
+
],
|
|
259
|
+
"direction": "vertical"
|
|
200
260
|
}
|
|
201
261
|
]
|
|
202
262
|
]
|
|
@@ -210,33 +270,35 @@
|
|
|
210
270
|
"render-ui",
|
|
211
271
|
"main",
|
|
212
272
|
{
|
|
213
|
-
"type": "stack",
|
|
214
|
-
"direction": "vertical",
|
|
215
273
|
"gap": "lg",
|
|
274
|
+
"direction": "vertical",
|
|
275
|
+
"type": "stack",
|
|
216
276
|
"children": [
|
|
217
277
|
{
|
|
218
|
-
"type": "stack",
|
|
219
278
|
"direction": "horizontal",
|
|
220
|
-
"gap": "sm",
|
|
221
279
|
"align": "center",
|
|
222
280
|
"children": [
|
|
223
281
|
{
|
|
224
282
|
"type": "icon",
|
|
225
|
-
"
|
|
226
|
-
"
|
|
283
|
+
"size": "lg",
|
|
284
|
+
"name": "type"
|
|
227
285
|
},
|
|
228
286
|
{
|
|
229
|
-
"
|
|
287
|
+
"variant": "h2",
|
|
230
288
|
"content": "Text Effects",
|
|
231
|
-
"
|
|
289
|
+
"type": "typography"
|
|
232
290
|
}
|
|
233
|
-
]
|
|
291
|
+
],
|
|
292
|
+
"type": "stack",
|
|
293
|
+
"gap": "sm"
|
|
234
294
|
},
|
|
235
295
|
{
|
|
236
296
|
"type": "divider"
|
|
237
297
|
},
|
|
238
298
|
{
|
|
239
299
|
"type": "typewriter-text",
|
|
300
|
+
"cursor": true,
|
|
301
|
+
"speed": 50.0,
|
|
240
302
|
"text": [
|
|
241
303
|
"object/get",
|
|
242
304
|
[
|
|
@@ -244,12 +306,9 @@
|
|
|
244
306
|
"@entity"
|
|
245
307
|
],
|
|
246
308
|
"name"
|
|
247
|
-
]
|
|
248
|
-
"speed": 50,
|
|
249
|
-
"cursor": true
|
|
309
|
+
]
|
|
250
310
|
},
|
|
251
311
|
{
|
|
252
|
-
"type": "law-reference-tooltip",
|
|
253
312
|
"reference": [
|
|
254
313
|
"object/get",
|
|
255
314
|
[
|
|
@@ -261,18 +320,19 @@
|
|
|
261
320
|
"children": [
|
|
262
321
|
{
|
|
263
322
|
"type": "typography",
|
|
323
|
+
"content": "Hover for reference details",
|
|
264
324
|
"variant": "caption",
|
|
265
|
-
"color": "muted"
|
|
266
|
-
"content": "Hover for reference details"
|
|
325
|
+
"color": "muted"
|
|
267
326
|
}
|
|
268
|
-
]
|
|
327
|
+
],
|
|
328
|
+
"type": "law-reference-tooltip"
|
|
269
329
|
},
|
|
270
330
|
{
|
|
271
331
|
"type": "button",
|
|
272
|
-
"label": "Highlight",
|
|
273
|
-
"event": "HIGHLIGHT",
|
|
274
332
|
"variant": "secondary",
|
|
275
|
-
"icon": "highlighter"
|
|
333
|
+
"icon": "highlighter",
|
|
334
|
+
"label": "Highlight",
|
|
335
|
+
"event": "HIGHLIGHT"
|
|
276
336
|
}
|
|
277
337
|
]
|
|
278
338
|
}
|
|
@@ -280,7 +340,7 @@
|
|
|
280
340
|
]
|
|
281
341
|
},
|
|
282
342
|
{
|
|
283
|
-
"from": "
|
|
343
|
+
"from": "idle",
|
|
284
344
|
"to": "highlighted",
|
|
285
345
|
"event": "HIGHLIGHT",
|
|
286
346
|
"effects": [
|
|
@@ -288,32 +348,33 @@
|
|
|
288
348
|
"render-ui",
|
|
289
349
|
"main",
|
|
290
350
|
{
|
|
291
|
-
"type": "stack",
|
|
292
351
|
"direction": "vertical",
|
|
352
|
+
"type": "stack",
|
|
293
353
|
"gap": "lg",
|
|
294
354
|
"children": [
|
|
295
355
|
{
|
|
296
|
-
"type": "stack",
|
|
297
|
-
"direction": "horizontal",
|
|
298
|
-
"gap": "sm",
|
|
299
|
-
"align": "center",
|
|
300
356
|
"children": [
|
|
301
357
|
{
|
|
358
|
+
"size": "lg",
|
|
302
359
|
"type": "icon",
|
|
303
|
-
"name": "type"
|
|
304
|
-
"size": "lg"
|
|
360
|
+
"name": "type"
|
|
305
361
|
},
|
|
306
362
|
{
|
|
307
363
|
"type": "typography",
|
|
308
364
|
"content": "Text Effects",
|
|
309
365
|
"variant": "h2"
|
|
310
366
|
}
|
|
311
|
-
]
|
|
367
|
+
],
|
|
368
|
+
"gap": "sm",
|
|
369
|
+
"direction": "horizontal",
|
|
370
|
+
"type": "stack",
|
|
371
|
+
"align": "center"
|
|
312
372
|
},
|
|
313
373
|
{
|
|
314
374
|
"type": "divider"
|
|
315
375
|
},
|
|
316
376
|
{
|
|
377
|
+
"highlightColor": "yellow",
|
|
317
378
|
"type": "text-highlight",
|
|
318
379
|
"text": [
|
|
319
380
|
"object/get",
|
|
@@ -323,23 +384,12 @@
|
|
|
323
384
|
],
|
|
324
385
|
"name"
|
|
325
386
|
],
|
|
326
|
-
"highlightColor": "yellow",
|
|
327
387
|
"pattern": "important"
|
|
328
388
|
},
|
|
329
389
|
{
|
|
330
|
-
"type": "law-reference-tooltip",
|
|
331
|
-
"reference": [
|
|
332
|
-
"object/get",
|
|
333
|
-
[
|
|
334
|
-
"array/first",
|
|
335
|
-
"@entity"
|
|
336
|
-
],
|
|
337
|
-
"reference"
|
|
338
|
-
],
|
|
339
390
|
"children": [
|
|
340
391
|
{
|
|
341
392
|
"type": "typography",
|
|
342
|
-
"variant": "body",
|
|
343
393
|
"content": [
|
|
344
394
|
"object/get",
|
|
345
395
|
[
|
|
@@ -347,16 +397,26 @@
|
|
|
347
397
|
"@entity"
|
|
348
398
|
],
|
|
349
399
|
"name"
|
|
350
|
-
]
|
|
400
|
+
],
|
|
401
|
+
"variant": "body"
|
|
351
402
|
}
|
|
352
|
-
]
|
|
403
|
+
],
|
|
404
|
+
"reference": [
|
|
405
|
+
"object/get",
|
|
406
|
+
[
|
|
407
|
+
"array/first",
|
|
408
|
+
"@entity"
|
|
409
|
+
],
|
|
410
|
+
"reference"
|
|
411
|
+
],
|
|
412
|
+
"type": "law-reference-tooltip"
|
|
353
413
|
},
|
|
354
414
|
{
|
|
355
|
-
"type": "button",
|
|
356
415
|
"label": "Reset",
|
|
357
|
-
"event": "RESET",
|
|
358
416
|
"variant": "ghost",
|
|
359
|
-
"icon": "rotate-ccw"
|
|
417
|
+
"icon": "rotate-ccw",
|
|
418
|
+
"event": "RESET",
|
|
419
|
+
"type": "button"
|
|
360
420
|
}
|
|
361
421
|
]
|
|
362
422
|
}
|
|
@@ -364,23 +424,17 @@
|
|
|
364
424
|
]
|
|
365
425
|
},
|
|
366
426
|
{
|
|
367
|
-
"from": "
|
|
368
|
-
"to": "
|
|
369
|
-
"event": "
|
|
427
|
+
"from": "animating",
|
|
428
|
+
"to": "highlighted",
|
|
429
|
+
"event": "HIGHLIGHT",
|
|
370
430
|
"effects": [
|
|
371
431
|
[
|
|
372
432
|
"render-ui",
|
|
373
433
|
"main",
|
|
374
434
|
{
|
|
375
|
-
"type": "stack",
|
|
376
|
-
"direction": "vertical",
|
|
377
435
|
"gap": "lg",
|
|
378
436
|
"children": [
|
|
379
437
|
{
|
|
380
|
-
"type": "stack",
|
|
381
|
-
"direction": "horizontal",
|
|
382
|
-
"gap": "sm",
|
|
383
|
-
"align": "center",
|
|
384
438
|
"children": [
|
|
385
439
|
{
|
|
386
440
|
"type": "icon",
|
|
@@ -388,29 +442,34 @@
|
|
|
388
442
|
"size": "lg"
|
|
389
443
|
},
|
|
390
444
|
{
|
|
391
|
-
"type": "typography",
|
|
392
445
|
"content": "Text Effects",
|
|
393
|
-
"variant": "h2"
|
|
446
|
+
"variant": "h2",
|
|
447
|
+
"type": "typography"
|
|
394
448
|
}
|
|
395
|
-
]
|
|
449
|
+
],
|
|
450
|
+
"gap": "sm",
|
|
451
|
+
"direction": "horizontal",
|
|
452
|
+
"type": "stack",
|
|
453
|
+
"align": "center"
|
|
396
454
|
},
|
|
397
455
|
{
|
|
398
456
|
"type": "divider"
|
|
399
457
|
},
|
|
400
458
|
{
|
|
401
|
-
"
|
|
402
|
-
"
|
|
459
|
+
"pattern": "important",
|
|
460
|
+
"type": "text-highlight",
|
|
461
|
+
"text": [
|
|
403
462
|
"object/get",
|
|
404
463
|
[
|
|
405
464
|
"array/first",
|
|
406
465
|
"@entity"
|
|
407
466
|
],
|
|
408
467
|
"name"
|
|
409
|
-
]
|
|
468
|
+
],
|
|
469
|
+
"highlightColor": "yellow"
|
|
410
470
|
},
|
|
411
471
|
{
|
|
412
|
-
"
|
|
413
|
-
"code": [
|
|
472
|
+
"reference": [
|
|
414
473
|
"object/get",
|
|
415
474
|
[
|
|
416
475
|
"array/first",
|
|
@@ -418,43 +477,32 @@
|
|
|
418
477
|
],
|
|
419
478
|
"reference"
|
|
420
479
|
],
|
|
421
|
-
"
|
|
422
|
-
},
|
|
423
|
-
{
|
|
424
|
-
"type": "typography",
|
|
425
|
-
"variant": "body",
|
|
426
|
-
"content": [
|
|
427
|
-
"object/get",
|
|
428
|
-
[
|
|
429
|
-
"array/first",
|
|
430
|
-
"@entity"
|
|
431
|
-
],
|
|
432
|
-
"name"
|
|
433
|
-
]
|
|
434
|
-
},
|
|
435
|
-
{
|
|
436
|
-
"type": "stack",
|
|
437
|
-
"direction": "horizontal",
|
|
438
|
-
"gap": "sm",
|
|
439
|
-
"justify": "center",
|
|
480
|
+
"type": "law-reference-tooltip",
|
|
440
481
|
"children": [
|
|
441
482
|
{
|
|
442
|
-
"
|
|
443
|
-
"
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
"
|
|
452
|
-
"variant": "secondary",
|
|
453
|
-
"icon": "highlighter"
|
|
483
|
+
"variant": "body",
|
|
484
|
+
"content": [
|
|
485
|
+
"object/get",
|
|
486
|
+
[
|
|
487
|
+
"array/first",
|
|
488
|
+
"@entity"
|
|
489
|
+
],
|
|
490
|
+
"name"
|
|
491
|
+
],
|
|
492
|
+
"type": "typography"
|
|
454
493
|
}
|
|
455
494
|
]
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"icon": "rotate-ccw",
|
|
498
|
+
"label": "Reset",
|
|
499
|
+
"type": "button",
|
|
500
|
+
"variant": "ghost",
|
|
501
|
+
"event": "RESET"
|
|
456
502
|
}
|
|
457
|
-
]
|
|
503
|
+
],
|
|
504
|
+
"direction": "vertical",
|
|
505
|
+
"type": "stack"
|
|
458
506
|
}
|
|
459
507
|
]
|
|
460
508
|
]
|
|
@@ -468,33 +516,29 @@
|
|
|
468
516
|
"render-ui",
|
|
469
517
|
"main",
|
|
470
518
|
{
|
|
471
|
-
"type": "stack",
|
|
472
|
-
"direction": "vertical",
|
|
473
|
-
"gap": "lg",
|
|
474
519
|
"children": [
|
|
475
520
|
{
|
|
476
|
-
"type": "stack",
|
|
477
|
-
"direction": "horizontal",
|
|
478
|
-
"gap": "sm",
|
|
479
521
|
"align": "center",
|
|
480
522
|
"children": [
|
|
481
523
|
{
|
|
482
|
-
"type": "icon",
|
|
483
524
|
"name": "type",
|
|
484
|
-
"size": "lg"
|
|
525
|
+
"size": "lg",
|
|
526
|
+
"type": "icon"
|
|
485
527
|
},
|
|
486
528
|
{
|
|
487
529
|
"type": "typography",
|
|
488
530
|
"content": "Text Effects",
|
|
489
531
|
"variant": "h2"
|
|
490
532
|
}
|
|
491
|
-
]
|
|
533
|
+
],
|
|
534
|
+
"type": "stack",
|
|
535
|
+
"gap": "sm",
|
|
536
|
+
"direction": "horizontal"
|
|
492
537
|
},
|
|
493
538
|
{
|
|
494
539
|
"type": "divider"
|
|
495
540
|
},
|
|
496
541
|
{
|
|
497
|
-
"type": "markdown-content",
|
|
498
542
|
"content": [
|
|
499
543
|
"object/get",
|
|
500
544
|
[
|
|
@@ -502,10 +546,10 @@
|
|
|
502
546
|
"@entity"
|
|
503
547
|
],
|
|
504
548
|
"name"
|
|
505
|
-
]
|
|
549
|
+
],
|
|
550
|
+
"type": "markdown-content"
|
|
506
551
|
},
|
|
507
552
|
{
|
|
508
|
-
"type": "code-block",
|
|
509
553
|
"code": [
|
|
510
554
|
"object/get",
|
|
511
555
|
[
|
|
@@ -514,11 +558,12 @@
|
|
|
514
558
|
],
|
|
515
559
|
"reference"
|
|
516
560
|
],
|
|
561
|
+
"type": "code-block",
|
|
517
562
|
"language": "text"
|
|
518
563
|
},
|
|
519
564
|
{
|
|
520
|
-
"type": "typography",
|
|
521
565
|
"variant": "body",
|
|
566
|
+
"type": "typography",
|
|
522
567
|
"content": [
|
|
523
568
|
"object/get",
|
|
524
569
|
[
|
|
@@ -529,60 +574,61 @@
|
|
|
529
574
|
]
|
|
530
575
|
},
|
|
531
576
|
{
|
|
532
|
-
"type": "stack",
|
|
533
|
-
"direction": "horizontal",
|
|
534
577
|
"gap": "sm",
|
|
535
|
-
"
|
|
578
|
+
"type": "stack",
|
|
536
579
|
"children": [
|
|
537
580
|
{
|
|
538
|
-
"type": "button",
|
|
539
581
|
"label": "Animate",
|
|
540
|
-
"event": "ANIMATE",
|
|
541
582
|
"variant": "primary",
|
|
583
|
+
"event": "ANIMATE",
|
|
584
|
+
"type": "button",
|
|
542
585
|
"icon": "play"
|
|
543
586
|
},
|
|
544
587
|
{
|
|
545
|
-
"type": "button",
|
|
546
|
-
"label": "Highlight",
|
|
547
588
|
"event": "HIGHLIGHT",
|
|
548
|
-
"
|
|
549
|
-
"
|
|
589
|
+
"icon": "highlighter",
|
|
590
|
+
"label": "Highlight",
|
|
591
|
+
"type": "button",
|
|
592
|
+
"variant": "secondary"
|
|
550
593
|
}
|
|
551
|
-
]
|
|
594
|
+
],
|
|
595
|
+
"direction": "horizontal",
|
|
596
|
+
"justify": "center"
|
|
552
597
|
}
|
|
553
|
-
]
|
|
598
|
+
],
|
|
599
|
+
"gap": "lg",
|
|
600
|
+
"type": "stack",
|
|
601
|
+
"direction": "vertical"
|
|
554
602
|
}
|
|
555
603
|
]
|
|
556
604
|
]
|
|
557
605
|
},
|
|
558
606
|
{
|
|
559
|
-
"from": "
|
|
560
|
-
"to": "
|
|
561
|
-
"event": "
|
|
607
|
+
"from": "highlighted",
|
|
608
|
+
"to": "idle",
|
|
609
|
+
"event": "RESET",
|
|
562
610
|
"effects": [
|
|
563
611
|
[
|
|
564
612
|
"render-ui",
|
|
565
613
|
"main",
|
|
566
614
|
{
|
|
567
|
-
"type": "stack",
|
|
568
615
|
"direction": "vertical",
|
|
569
|
-
"gap": "lg",
|
|
570
616
|
"children": [
|
|
571
617
|
{
|
|
618
|
+
"align": "center",
|
|
572
619
|
"type": "stack",
|
|
573
620
|
"direction": "horizontal",
|
|
574
621
|
"gap": "sm",
|
|
575
|
-
"align": "center",
|
|
576
622
|
"children": [
|
|
577
623
|
{
|
|
578
|
-
"type": "icon",
|
|
579
624
|
"name": "type",
|
|
580
|
-
"size": "lg"
|
|
625
|
+
"size": "lg",
|
|
626
|
+
"type": "icon"
|
|
581
627
|
},
|
|
582
628
|
{
|
|
583
|
-
"type": "typography",
|
|
584
629
|
"content": "Text Effects",
|
|
585
|
-
"variant": "h2"
|
|
630
|
+
"variant": "h2",
|
|
631
|
+
"type": "typography"
|
|
586
632
|
}
|
|
587
633
|
]
|
|
588
634
|
},
|
|
@@ -590,8 +636,7 @@
|
|
|
590
636
|
"type": "divider"
|
|
591
637
|
},
|
|
592
638
|
{
|
|
593
|
-
"
|
|
594
|
-
"text": [
|
|
639
|
+
"content": [
|
|
595
640
|
"object/get",
|
|
596
641
|
[
|
|
597
642
|
"array/first",
|
|
@@ -599,12 +644,11 @@
|
|
|
599
644
|
],
|
|
600
645
|
"name"
|
|
601
646
|
],
|
|
602
|
-
"
|
|
603
|
-
"pattern": "important"
|
|
647
|
+
"type": "markdown-content"
|
|
604
648
|
},
|
|
605
649
|
{
|
|
606
|
-
"type": "
|
|
607
|
-
"
|
|
650
|
+
"type": "code-block",
|
|
651
|
+
"code": [
|
|
608
652
|
"object/get",
|
|
609
653
|
[
|
|
610
654
|
"array/first",
|
|
@@ -612,35 +656,52 @@
|
|
|
612
656
|
],
|
|
613
657
|
"reference"
|
|
614
658
|
],
|
|
659
|
+
"language": "text"
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"content": [
|
|
663
|
+
"object/get",
|
|
664
|
+
[
|
|
665
|
+
"array/first",
|
|
666
|
+
"@entity"
|
|
667
|
+
],
|
|
668
|
+
"name"
|
|
669
|
+
],
|
|
670
|
+
"type": "typography",
|
|
671
|
+
"variant": "body"
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"gap": "sm",
|
|
615
675
|
"children": [
|
|
616
676
|
{
|
|
617
|
-
"type": "
|
|
618
|
-
"
|
|
619
|
-
"
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
677
|
+
"type": "button",
|
|
678
|
+
"icon": "play",
|
|
679
|
+
"variant": "primary",
|
|
680
|
+
"event": "ANIMATE",
|
|
681
|
+
"label": "Animate"
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"label": "Highlight",
|
|
685
|
+
"event": "HIGHLIGHT",
|
|
686
|
+
"variant": "secondary",
|
|
687
|
+
"icon": "highlighter",
|
|
688
|
+
"type": "button"
|
|
627
689
|
}
|
|
628
|
-
]
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
"
|
|
632
|
-
"label": "Reset",
|
|
633
|
-
"event": "RESET",
|
|
634
|
-
"variant": "ghost",
|
|
635
|
-
"icon": "rotate-ccw"
|
|
690
|
+
],
|
|
691
|
+
"direction": "horizontal",
|
|
692
|
+
"type": "stack",
|
|
693
|
+
"justify": "center"
|
|
636
694
|
}
|
|
637
|
-
]
|
|
695
|
+
],
|
|
696
|
+
"gap": "lg",
|
|
697
|
+
"type": "stack"
|
|
638
698
|
}
|
|
639
699
|
]
|
|
640
700
|
]
|
|
641
701
|
}
|
|
642
702
|
]
|
|
643
|
-
}
|
|
703
|
+
},
|
|
704
|
+
"scope": "instance"
|
|
644
705
|
}
|
|
645
706
|
],
|
|
646
707
|
"pages": [
|
|
@@ -656,4 +717,4 @@
|
|
|
656
717
|
]
|
|
657
718
|
}
|
|
658
719
|
]
|
|
659
|
-
}
|
|
720
|
+
}
|