@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
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"traits": [
|
|
51
51
|
{
|
|
52
52
|
"name": "TextInputInput",
|
|
53
|
-
"linkedEntity": "TextInput",
|
|
54
53
|
"category": "interaction",
|
|
54
|
+
"linkedEntity": "TextInput",
|
|
55
55
|
"stateMachine": {
|
|
56
56
|
"states": [
|
|
57
57
|
{
|
|
@@ -74,10 +74,6 @@
|
|
|
74
74
|
"key": "FOCUS",
|
|
75
75
|
"name": "Focus"
|
|
76
76
|
},
|
|
77
|
-
{
|
|
78
|
-
"key": "BLUR",
|
|
79
|
-
"name": "Blur"
|
|
80
|
-
},
|
|
81
77
|
{
|
|
82
78
|
"key": "CHANGE",
|
|
83
79
|
"name": "Change",
|
|
@@ -89,6 +85,10 @@
|
|
|
89
85
|
}
|
|
90
86
|
]
|
|
91
87
|
},
|
|
88
|
+
{
|
|
89
|
+
"key": "BLUR",
|
|
90
|
+
"name": "Blur"
|
|
91
|
+
},
|
|
92
92
|
{
|
|
93
93
|
"key": "VALIDATE",
|
|
94
94
|
"name": "Validate"
|
|
@@ -100,18 +100,19 @@
|
|
|
100
100
|
"to": "idle",
|
|
101
101
|
"event": "INIT",
|
|
102
102
|
"effects": [
|
|
103
|
+
[
|
|
104
|
+
"fetch",
|
|
105
|
+
"TextInput"
|
|
106
|
+
],
|
|
103
107
|
[
|
|
104
108
|
"render-ui",
|
|
105
109
|
"main",
|
|
106
110
|
{
|
|
107
111
|
"type": "stack",
|
|
108
|
-
"direction": "vertical",
|
|
109
|
-
"gap": "lg",
|
|
110
112
|
"children": [
|
|
111
113
|
{
|
|
112
|
-
"type": "stack",
|
|
113
|
-
"direction": "horizontal",
|
|
114
114
|
"gap": "sm",
|
|
115
|
+
"direction": "horizontal",
|
|
115
116
|
"align": "center",
|
|
116
117
|
"children": [
|
|
117
118
|
{
|
|
@@ -120,76 +121,31 @@
|
|
|
120
121
|
"size": "lg"
|
|
121
122
|
},
|
|
122
123
|
{
|
|
123
|
-
"
|
|
124
|
+
"variant": "h2",
|
|
124
125
|
"content": "TextInput",
|
|
125
|
-
"
|
|
126
|
+
"type": "typography"
|
|
126
127
|
}
|
|
127
|
-
]
|
|
128
|
+
],
|
|
129
|
+
"type": "stack"
|
|
128
130
|
},
|
|
129
131
|
{
|
|
130
132
|
"type": "divider"
|
|
131
133
|
},
|
|
132
134
|
{
|
|
133
|
-
"type": "form-field",
|
|
134
|
-
"label": "TextInput",
|
|
135
|
-
"hint": "Type to enter a value.",
|
|
136
135
|
"children": [
|
|
137
136
|
{
|
|
138
|
-
"type": "input",
|
|
139
137
|
"placeholder": "Enter textinput...",
|
|
138
|
+
"type": "input",
|
|
140
139
|
"event": "CHANGE"
|
|
141
140
|
}
|
|
142
|
-
]
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
"type": "form-field"
|
|
146
|
-
"label": "Toggle",
|
|
147
|
-
"children": [
|
|
148
|
-
{
|
|
149
|
-
"type": "switch",
|
|
150
|
-
"event": "TOGGLE"
|
|
151
|
-
}
|
|
152
|
-
]
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
"type": "form-field",
|
|
156
|
-
"label": "Choice",
|
|
157
|
-
"children": [
|
|
158
|
-
{
|
|
159
|
-
"type": "radio",
|
|
160
|
-
"name": "choice",
|
|
161
|
-
"event": "CHANGE"
|
|
162
|
-
}
|
|
163
|
-
]
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
"type": "form-field",
|
|
167
|
-
"label": "Range",
|
|
168
|
-
"children": [
|
|
169
|
-
{
|
|
170
|
-
"type": "range-slider",
|
|
171
|
-
"min": 0,
|
|
172
|
-
"max": 100,
|
|
173
|
-
"event": "CHANGE"
|
|
174
|
-
}
|
|
175
|
-
]
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
"type": "form-field",
|
|
179
|
-
"label": "Quantity",
|
|
180
|
-
"children": [
|
|
181
|
-
{
|
|
182
|
-
"type": "number-stepper",
|
|
183
|
-
"min": 0,
|
|
184
|
-
"step": 1,
|
|
185
|
-
"event": "CHANGE"
|
|
186
|
-
}
|
|
187
|
-
]
|
|
141
|
+
],
|
|
142
|
+
"hint": "Type to enter a value.",
|
|
143
|
+
"label": "TextInput",
|
|
144
|
+
"type": "form-field"
|
|
188
145
|
},
|
|
189
146
|
{
|
|
190
|
-
"type": "typography",
|
|
191
|
-
"variant": "caption",
|
|
192
147
|
"color": "muted",
|
|
148
|
+
"type": "typography",
|
|
193
149
|
"content": [
|
|
194
150
|
"object/get",
|
|
195
151
|
[
|
|
@@ -197,9 +153,12 @@
|
|
|
197
153
|
"@entity"
|
|
198
154
|
],
|
|
199
155
|
"value"
|
|
200
|
-
]
|
|
156
|
+
],
|
|
157
|
+
"variant": "caption"
|
|
201
158
|
}
|
|
202
|
-
]
|
|
159
|
+
],
|
|
160
|
+
"gap": "lg",
|
|
161
|
+
"direction": "vertical"
|
|
203
162
|
}
|
|
204
163
|
]
|
|
205
164
|
]
|
|
@@ -218,8 +177,6 @@
|
|
|
218
177
|
"render-ui",
|
|
219
178
|
"main",
|
|
220
179
|
{
|
|
221
|
-
"type": "stack",
|
|
222
|
-
"direction": "vertical",
|
|
223
180
|
"gap": "lg",
|
|
224
181
|
"children": [
|
|
225
182
|
{
|
|
@@ -234,9 +191,9 @@
|
|
|
234
191
|
"size": "lg"
|
|
235
192
|
},
|
|
236
193
|
{
|
|
237
|
-
"type": "typography",
|
|
238
194
|
"content": "TextInput",
|
|
239
|
-
"variant": "h2"
|
|
195
|
+
"variant": "h2",
|
|
196
|
+
"type": "typography"
|
|
240
197
|
}
|
|
241
198
|
]
|
|
242
199
|
},
|
|
@@ -245,64 +202,17 @@
|
|
|
245
202
|
},
|
|
246
203
|
{
|
|
247
204
|
"type": "form-field",
|
|
248
|
-
"label": "TextInput",
|
|
249
|
-
"hint": "Type to enter a value.",
|
|
250
205
|
"children": [
|
|
251
206
|
{
|
|
252
|
-
"
|
|
207
|
+
"event": "CHANGE",
|
|
253
208
|
"placeholder": "Enter textinput...",
|
|
254
|
-
"
|
|
255
|
-
}
|
|
256
|
-
]
|
|
257
|
-
},
|
|
258
|
-
{
|
|
259
|
-
"type": "form-field",
|
|
260
|
-
"label": "Toggle",
|
|
261
|
-
"children": [
|
|
262
|
-
{
|
|
263
|
-
"type": "switch",
|
|
264
|
-
"event": "TOGGLE"
|
|
265
|
-
}
|
|
266
|
-
]
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
"type": "form-field",
|
|
270
|
-
"label": "Choice",
|
|
271
|
-
"children": [
|
|
272
|
-
{
|
|
273
|
-
"type": "radio",
|
|
274
|
-
"name": "choice",
|
|
275
|
-
"event": "CHANGE"
|
|
276
|
-
}
|
|
277
|
-
]
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
"type": "form-field",
|
|
281
|
-
"label": "Range",
|
|
282
|
-
"children": [
|
|
283
|
-
{
|
|
284
|
-
"type": "range-slider",
|
|
285
|
-
"min": 0,
|
|
286
|
-
"max": 100,
|
|
287
|
-
"event": "CHANGE"
|
|
209
|
+
"type": "input"
|
|
288
210
|
}
|
|
289
|
-
]
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
"type": "form-field",
|
|
293
|
-
"label": "Quantity",
|
|
294
|
-
"children": [
|
|
295
|
-
{
|
|
296
|
-
"type": "number-stepper",
|
|
297
|
-
"min": 0,
|
|
298
|
-
"step": 1,
|
|
299
|
-
"event": "CHANGE"
|
|
300
|
-
}
|
|
301
|
-
]
|
|
211
|
+
],
|
|
212
|
+
"label": "TextInput",
|
|
213
|
+
"hint": "Type to enter a value."
|
|
302
214
|
},
|
|
303
215
|
{
|
|
304
|
-
"type": "typography",
|
|
305
|
-
"variant": "caption",
|
|
306
216
|
"color": "muted",
|
|
307
217
|
"content": [
|
|
308
218
|
"object/get",
|
|
@@ -311,9 +221,13 @@
|
|
|
311
221
|
"@entity"
|
|
312
222
|
],
|
|
313
223
|
"value"
|
|
314
|
-
]
|
|
224
|
+
],
|
|
225
|
+
"variant": "caption",
|
|
226
|
+
"type": "typography"
|
|
315
227
|
}
|
|
316
|
-
]
|
|
228
|
+
],
|
|
229
|
+
"type": "stack",
|
|
230
|
+
"direction": "vertical"
|
|
317
231
|
}
|
|
318
232
|
]
|
|
319
233
|
]
|
|
@@ -333,14 +247,13 @@
|
|
|
333
247
|
"main",
|
|
334
248
|
{
|
|
335
249
|
"type": "stack",
|
|
336
|
-
"direction": "vertical",
|
|
337
250
|
"gap": "lg",
|
|
338
251
|
"children": [
|
|
339
252
|
{
|
|
253
|
+
"align": "center",
|
|
340
254
|
"type": "stack",
|
|
341
|
-
"direction": "horizontal",
|
|
342
255
|
"gap": "sm",
|
|
343
|
-
"
|
|
256
|
+
"direction": "horizontal",
|
|
344
257
|
"children": [
|
|
345
258
|
{
|
|
346
259
|
"type": "icon",
|
|
@@ -348,9 +261,9 @@
|
|
|
348
261
|
"size": "lg"
|
|
349
262
|
},
|
|
350
263
|
{
|
|
351
|
-
"type": "typography",
|
|
352
264
|
"content": "TextInput",
|
|
353
|
-
"variant": "h2"
|
|
265
|
+
"variant": "h2",
|
|
266
|
+
"type": "typography"
|
|
354
267
|
}
|
|
355
268
|
]
|
|
356
269
|
},
|
|
@@ -363,61 +276,13 @@
|
|
|
363
276
|
"hint": "Type to enter a value.",
|
|
364
277
|
"children": [
|
|
365
278
|
{
|
|
279
|
+
"event": "CHANGE",
|
|
366
280
|
"type": "input",
|
|
367
|
-
"placeholder": "Enter textinput..."
|
|
368
|
-
"event": "CHANGE"
|
|
281
|
+
"placeholder": "Enter textinput..."
|
|
369
282
|
}
|
|
370
283
|
]
|
|
371
284
|
},
|
|
372
285
|
{
|
|
373
|
-
"type": "form-field",
|
|
374
|
-
"label": "Toggle",
|
|
375
|
-
"children": [
|
|
376
|
-
{
|
|
377
|
-
"type": "switch",
|
|
378
|
-
"event": "TOGGLE"
|
|
379
|
-
}
|
|
380
|
-
]
|
|
381
|
-
},
|
|
382
|
-
{
|
|
383
|
-
"type": "form-field",
|
|
384
|
-
"label": "Choice",
|
|
385
|
-
"children": [
|
|
386
|
-
{
|
|
387
|
-
"type": "radio",
|
|
388
|
-
"name": "choice",
|
|
389
|
-
"event": "CHANGE"
|
|
390
|
-
}
|
|
391
|
-
]
|
|
392
|
-
},
|
|
393
|
-
{
|
|
394
|
-
"type": "form-field",
|
|
395
|
-
"label": "Range",
|
|
396
|
-
"children": [
|
|
397
|
-
{
|
|
398
|
-
"type": "range-slider",
|
|
399
|
-
"min": 0,
|
|
400
|
-
"max": 100,
|
|
401
|
-
"event": "CHANGE"
|
|
402
|
-
}
|
|
403
|
-
]
|
|
404
|
-
},
|
|
405
|
-
{
|
|
406
|
-
"type": "form-field",
|
|
407
|
-
"label": "Quantity",
|
|
408
|
-
"children": [
|
|
409
|
-
{
|
|
410
|
-
"type": "number-stepper",
|
|
411
|
-
"min": 0,
|
|
412
|
-
"step": 1,
|
|
413
|
-
"event": "CHANGE"
|
|
414
|
-
}
|
|
415
|
-
]
|
|
416
|
-
},
|
|
417
|
-
{
|
|
418
|
-
"type": "typography",
|
|
419
|
-
"variant": "caption",
|
|
420
|
-
"color": "muted",
|
|
421
286
|
"content": [
|
|
422
287
|
"object/get",
|
|
423
288
|
[
|
|
@@ -425,9 +290,13 @@
|
|
|
425
290
|
"@entity"
|
|
426
291
|
],
|
|
427
292
|
"value"
|
|
428
|
-
]
|
|
293
|
+
],
|
|
294
|
+
"type": "typography",
|
|
295
|
+
"color": "muted",
|
|
296
|
+
"variant": "caption"
|
|
429
297
|
}
|
|
430
|
-
]
|
|
298
|
+
],
|
|
299
|
+
"direction": "vertical"
|
|
431
300
|
}
|
|
432
301
|
]
|
|
433
302
|
]
|
|
@@ -446,35 +315,33 @@
|
|
|
446
315
|
"render-ui",
|
|
447
316
|
"main",
|
|
448
317
|
{
|
|
449
|
-
"type": "stack",
|
|
450
|
-
"direction": "vertical",
|
|
451
318
|
"gap": "lg",
|
|
452
319
|
"children": [
|
|
453
320
|
{
|
|
454
|
-
"type": "stack",
|
|
455
|
-
"direction": "horizontal",
|
|
456
|
-
"gap": "sm",
|
|
457
|
-
"align": "center",
|
|
458
321
|
"children": [
|
|
459
322
|
{
|
|
460
323
|
"type": "icon",
|
|
461
|
-
"
|
|
462
|
-
"
|
|
324
|
+
"size": "lg",
|
|
325
|
+
"name": "text-cursor-input"
|
|
463
326
|
},
|
|
464
327
|
{
|
|
465
|
-
"
|
|
328
|
+
"variant": "h2",
|
|
466
329
|
"content": "TextInput",
|
|
467
|
-
"
|
|
330
|
+
"type": "typography"
|
|
468
331
|
}
|
|
469
|
-
]
|
|
332
|
+
],
|
|
333
|
+
"direction": "horizontal",
|
|
334
|
+
"type": "stack",
|
|
335
|
+
"align": "center",
|
|
336
|
+
"gap": "sm"
|
|
470
337
|
},
|
|
471
338
|
{
|
|
472
339
|
"type": "divider"
|
|
473
340
|
},
|
|
474
341
|
{
|
|
475
342
|
"type": "form-field",
|
|
476
|
-
"label": "TextInput",
|
|
477
343
|
"hint": "Type to enter a value.",
|
|
344
|
+
"label": "TextInput",
|
|
478
345
|
"children": [
|
|
479
346
|
{
|
|
480
347
|
"type": "input",
|
|
@@ -484,54 +351,7 @@
|
|
|
484
351
|
]
|
|
485
352
|
},
|
|
486
353
|
{
|
|
487
|
-
"type": "form-field",
|
|
488
|
-
"label": "Toggle",
|
|
489
|
-
"children": [
|
|
490
|
-
{
|
|
491
|
-
"type": "switch",
|
|
492
|
-
"event": "TOGGLE"
|
|
493
|
-
}
|
|
494
|
-
]
|
|
495
|
-
},
|
|
496
|
-
{
|
|
497
|
-
"type": "form-field",
|
|
498
|
-
"label": "Choice",
|
|
499
|
-
"children": [
|
|
500
|
-
{
|
|
501
|
-
"type": "radio",
|
|
502
|
-
"name": "choice",
|
|
503
|
-
"event": "CHANGE"
|
|
504
|
-
}
|
|
505
|
-
]
|
|
506
|
-
},
|
|
507
|
-
{
|
|
508
|
-
"type": "form-field",
|
|
509
|
-
"label": "Range",
|
|
510
|
-
"children": [
|
|
511
|
-
{
|
|
512
|
-
"type": "range-slider",
|
|
513
|
-
"min": 0,
|
|
514
|
-
"max": 100,
|
|
515
|
-
"event": "CHANGE"
|
|
516
|
-
}
|
|
517
|
-
]
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
"type": "form-field",
|
|
521
|
-
"label": "Quantity",
|
|
522
|
-
"children": [
|
|
523
|
-
{
|
|
524
|
-
"type": "number-stepper",
|
|
525
|
-
"min": 0,
|
|
526
|
-
"step": 1,
|
|
527
|
-
"event": "CHANGE"
|
|
528
|
-
}
|
|
529
|
-
]
|
|
530
|
-
},
|
|
531
|
-
{
|
|
532
|
-
"type": "typography",
|
|
533
354
|
"variant": "caption",
|
|
534
|
-
"color": "muted",
|
|
535
355
|
"content": [
|
|
536
356
|
"object/get",
|
|
537
357
|
[
|
|
@@ -539,9 +359,13 @@
|
|
|
539
359
|
"@entity"
|
|
540
360
|
],
|
|
541
361
|
"value"
|
|
542
|
-
]
|
|
362
|
+
],
|
|
363
|
+
"color": "muted",
|
|
364
|
+
"type": "typography"
|
|
543
365
|
}
|
|
544
|
-
]
|
|
366
|
+
],
|
|
367
|
+
"direction": "vertical",
|
|
368
|
+
"type": "stack"
|
|
545
369
|
}
|
|
546
370
|
]
|
|
547
371
|
]
|
|
@@ -560,25 +384,25 @@
|
|
|
560
384
|
"render-ui",
|
|
561
385
|
"main",
|
|
562
386
|
{
|
|
387
|
+
"gap": "lg",
|
|
563
388
|
"type": "stack",
|
|
564
389
|
"direction": "vertical",
|
|
565
|
-
"gap": "lg",
|
|
566
390
|
"children": [
|
|
567
391
|
{
|
|
568
392
|
"type": "stack",
|
|
393
|
+
"align": "center",
|
|
569
394
|
"direction": "horizontal",
|
|
570
395
|
"gap": "sm",
|
|
571
|
-
"align": "center",
|
|
572
396
|
"children": [
|
|
573
397
|
{
|
|
574
|
-
"type": "icon",
|
|
575
398
|
"name": "text-cursor-input",
|
|
399
|
+
"type": "icon",
|
|
576
400
|
"size": "lg"
|
|
577
401
|
},
|
|
578
402
|
{
|
|
579
403
|
"type": "typography",
|
|
580
|
-
"
|
|
581
|
-
"
|
|
404
|
+
"variant": "h2",
|
|
405
|
+
"content": "TextInput"
|
|
582
406
|
}
|
|
583
407
|
]
|
|
584
408
|
},
|
|
@@ -586,16 +410,16 @@
|
|
|
586
410
|
"type": "divider"
|
|
587
411
|
},
|
|
588
412
|
{
|
|
589
|
-
"type": "form-field",
|
|
590
|
-
"label": "TextInput",
|
|
591
|
-
"hint": "Validating...",
|
|
592
413
|
"children": [
|
|
593
414
|
{
|
|
594
415
|
"type": "input",
|
|
595
416
|
"placeholder": "Enter textinput...",
|
|
596
417
|
"event": "CHANGE"
|
|
597
418
|
}
|
|
598
|
-
]
|
|
419
|
+
],
|
|
420
|
+
"type": "form-field",
|
|
421
|
+
"label": "TextInput",
|
|
422
|
+
"hint": "Validating..."
|
|
599
423
|
},
|
|
600
424
|
{
|
|
601
425
|
"type": "alert",
|
|
@@ -608,22 +432,16 @@
|
|
|
608
432
|
]
|
|
609
433
|
},
|
|
610
434
|
{
|
|
611
|
-
"from": "
|
|
612
|
-
"to": "
|
|
613
|
-
"event": "
|
|
435
|
+
"from": "focused",
|
|
436
|
+
"to": "focused",
|
|
437
|
+
"event": "INIT",
|
|
614
438
|
"effects": [
|
|
615
|
-
[
|
|
616
|
-
"set",
|
|
617
|
-
"@entity.inputStatus",
|
|
618
|
-
"idle"
|
|
619
|
-
],
|
|
620
439
|
[
|
|
621
440
|
"render-ui",
|
|
622
441
|
"main",
|
|
623
442
|
{
|
|
624
443
|
"type": "stack",
|
|
625
444
|
"direction": "vertical",
|
|
626
|
-
"gap": "lg",
|
|
627
445
|
"children": [
|
|
628
446
|
{
|
|
629
447
|
"type": "stack",
|
|
@@ -632,14 +450,14 @@
|
|
|
632
450
|
"align": "center",
|
|
633
451
|
"children": [
|
|
634
452
|
{
|
|
635
|
-
"type": "icon",
|
|
636
453
|
"name": "text-cursor-input",
|
|
637
|
-
"size": "lg"
|
|
454
|
+
"size": "lg",
|
|
455
|
+
"type": "icon"
|
|
638
456
|
},
|
|
639
457
|
{
|
|
458
|
+
"variant": "h2",
|
|
640
459
|
"type": "typography",
|
|
641
|
-
"content": "TextInput"
|
|
642
|
-
"variant": "h2"
|
|
460
|
+
"content": "TextInput"
|
|
643
461
|
}
|
|
644
462
|
]
|
|
645
463
|
},
|
|
@@ -659,54 +477,8 @@
|
|
|
659
477
|
]
|
|
660
478
|
},
|
|
661
479
|
{
|
|
662
|
-
"type": "form-field",
|
|
663
|
-
"label": "Toggle",
|
|
664
|
-
"children": [
|
|
665
|
-
{
|
|
666
|
-
"type": "switch",
|
|
667
|
-
"event": "TOGGLE"
|
|
668
|
-
}
|
|
669
|
-
]
|
|
670
|
-
},
|
|
671
|
-
{
|
|
672
|
-
"type": "form-field",
|
|
673
|
-
"label": "Choice",
|
|
674
|
-
"children": [
|
|
675
|
-
{
|
|
676
|
-
"type": "radio",
|
|
677
|
-
"name": "choice",
|
|
678
|
-
"event": "CHANGE"
|
|
679
|
-
}
|
|
680
|
-
]
|
|
681
|
-
},
|
|
682
|
-
{
|
|
683
|
-
"type": "form-field",
|
|
684
|
-
"label": "Range",
|
|
685
|
-
"children": [
|
|
686
|
-
{
|
|
687
|
-
"type": "range-slider",
|
|
688
|
-
"min": 0,
|
|
689
|
-
"max": 100,
|
|
690
|
-
"event": "CHANGE"
|
|
691
|
-
}
|
|
692
|
-
]
|
|
693
|
-
},
|
|
694
|
-
{
|
|
695
|
-
"type": "form-field",
|
|
696
|
-
"label": "Quantity",
|
|
697
|
-
"children": [
|
|
698
|
-
{
|
|
699
|
-
"type": "number-stepper",
|
|
700
|
-
"min": 0,
|
|
701
|
-
"step": 1,
|
|
702
|
-
"event": "CHANGE"
|
|
703
|
-
}
|
|
704
|
-
]
|
|
705
|
-
},
|
|
706
|
-
{
|
|
707
|
-
"type": "typography",
|
|
708
480
|
"variant": "caption",
|
|
709
|
-
"
|
|
481
|
+
"type": "typography",
|
|
710
482
|
"content": [
|
|
711
483
|
"object/get",
|
|
712
484
|
[
|
|
@@ -714,41 +486,45 @@
|
|
|
714
486
|
"@entity"
|
|
715
487
|
],
|
|
716
488
|
"value"
|
|
717
|
-
]
|
|
489
|
+
],
|
|
490
|
+
"color": "muted"
|
|
718
491
|
}
|
|
719
|
-
]
|
|
492
|
+
],
|
|
493
|
+
"gap": "lg"
|
|
720
494
|
}
|
|
721
495
|
]
|
|
722
496
|
]
|
|
723
497
|
},
|
|
724
498
|
{
|
|
725
|
-
"from": "
|
|
726
|
-
"to": "
|
|
727
|
-
"event": "
|
|
499
|
+
"from": "validating",
|
|
500
|
+
"to": "idle",
|
|
501
|
+
"event": "BLUR",
|
|
728
502
|
"effects": [
|
|
503
|
+
[
|
|
504
|
+
"set",
|
|
505
|
+
"@entity.inputStatus",
|
|
506
|
+
"idle"
|
|
507
|
+
],
|
|
729
508
|
[
|
|
730
509
|
"render-ui",
|
|
731
510
|
"main",
|
|
732
511
|
{
|
|
733
|
-
"type": "stack",
|
|
734
|
-
"direction": "vertical",
|
|
735
|
-
"gap": "lg",
|
|
736
512
|
"children": [
|
|
737
513
|
{
|
|
738
|
-
"type": "stack",
|
|
739
|
-
"direction": "horizontal",
|
|
740
514
|
"gap": "sm",
|
|
515
|
+
"type": "stack",
|
|
741
516
|
"align": "center",
|
|
517
|
+
"direction": "horizontal",
|
|
742
518
|
"children": [
|
|
743
519
|
{
|
|
744
|
-
"type": "icon",
|
|
745
520
|
"name": "text-cursor-input",
|
|
521
|
+
"type": "icon",
|
|
746
522
|
"size": "lg"
|
|
747
523
|
},
|
|
748
524
|
{
|
|
749
|
-
"type": "typography",
|
|
750
525
|
"content": "TextInput",
|
|
751
|
-
"variant": "h2"
|
|
526
|
+
"variant": "h2",
|
|
527
|
+
"type": "typography"
|
|
752
528
|
}
|
|
753
529
|
]
|
|
754
530
|
},
|
|
@@ -756,66 +532,19 @@
|
|
|
756
532
|
"type": "divider"
|
|
757
533
|
},
|
|
758
534
|
{
|
|
759
|
-
"type": "form-field",
|
|
760
|
-
"label": "TextInput",
|
|
761
535
|
"hint": "Type to enter a value.",
|
|
762
|
-
"children": [
|
|
763
|
-
{
|
|
764
|
-
"type": "input",
|
|
765
|
-
"placeholder": "Enter textinput...",
|
|
766
|
-
"event": "CHANGE"
|
|
767
|
-
}
|
|
768
|
-
]
|
|
769
|
-
},
|
|
770
|
-
{
|
|
771
536
|
"type": "form-field",
|
|
772
|
-
"label": "Toggle",
|
|
773
537
|
"children": [
|
|
774
538
|
{
|
|
775
|
-
"
|
|
776
|
-
"
|
|
777
|
-
|
|
778
|
-
]
|
|
779
|
-
},
|
|
780
|
-
{
|
|
781
|
-
"type": "form-field",
|
|
782
|
-
"label": "Choice",
|
|
783
|
-
"children": [
|
|
784
|
-
{
|
|
785
|
-
"type": "radio",
|
|
786
|
-
"name": "choice",
|
|
787
|
-
"event": "CHANGE"
|
|
788
|
-
}
|
|
789
|
-
]
|
|
790
|
-
},
|
|
791
|
-
{
|
|
792
|
-
"type": "form-field",
|
|
793
|
-
"label": "Range",
|
|
794
|
-
"children": [
|
|
795
|
-
{
|
|
796
|
-
"type": "range-slider",
|
|
797
|
-
"min": 0,
|
|
798
|
-
"max": 100,
|
|
799
|
-
"event": "CHANGE"
|
|
800
|
-
}
|
|
801
|
-
]
|
|
802
|
-
},
|
|
803
|
-
{
|
|
804
|
-
"type": "form-field",
|
|
805
|
-
"label": "Quantity",
|
|
806
|
-
"children": [
|
|
807
|
-
{
|
|
808
|
-
"type": "number-stepper",
|
|
809
|
-
"min": 0,
|
|
810
|
-
"step": 1,
|
|
811
|
-
"event": "CHANGE"
|
|
539
|
+
"event": "CHANGE",
|
|
540
|
+
"placeholder": "Enter textinput...",
|
|
541
|
+
"type": "input"
|
|
812
542
|
}
|
|
813
|
-
]
|
|
543
|
+
],
|
|
544
|
+
"label": "TextInput"
|
|
814
545
|
},
|
|
815
546
|
{
|
|
816
547
|
"type": "typography",
|
|
817
|
-
"variant": "caption",
|
|
818
|
-
"color": "muted",
|
|
819
548
|
"content": [
|
|
820
549
|
"object/get",
|
|
821
550
|
[
|
|
@@ -823,9 +552,14 @@
|
|
|
823
552
|
"@entity"
|
|
824
553
|
],
|
|
825
554
|
"value"
|
|
826
|
-
]
|
|
555
|
+
],
|
|
556
|
+
"variant": "caption",
|
|
557
|
+
"color": "muted"
|
|
827
558
|
}
|
|
828
|
-
]
|
|
559
|
+
],
|
|
560
|
+
"type": "stack",
|
|
561
|
+
"direction": "vertical",
|
|
562
|
+
"gap": "lg"
|
|
829
563
|
}
|
|
830
564
|
]
|
|
831
565
|
]
|
|
@@ -839,14 +573,8 @@
|
|
|
839
573
|
"render-ui",
|
|
840
574
|
"main",
|
|
841
575
|
{
|
|
842
|
-
"type": "stack",
|
|
843
|
-
"direction": "vertical",
|
|
844
|
-
"gap": "lg",
|
|
845
576
|
"children": [
|
|
846
577
|
{
|
|
847
|
-
"type": "stack",
|
|
848
|
-
"direction": "horizontal",
|
|
849
|
-
"gap": "sm",
|
|
850
578
|
"align": "center",
|
|
851
579
|
"children": [
|
|
852
580
|
{
|
|
@@ -859,35 +587,42 @@
|
|
|
859
587
|
"content": "TextInput",
|
|
860
588
|
"variant": "h2"
|
|
861
589
|
}
|
|
862
|
-
]
|
|
590
|
+
],
|
|
591
|
+
"direction": "horizontal",
|
|
592
|
+
"type": "stack",
|
|
593
|
+
"gap": "sm"
|
|
863
594
|
},
|
|
864
595
|
{
|
|
865
596
|
"type": "divider"
|
|
866
597
|
},
|
|
867
598
|
{
|
|
868
|
-
"type": "form-field",
|
|
869
|
-
"label": "TextInput",
|
|
870
599
|
"hint": "Validating...",
|
|
871
600
|
"children": [
|
|
872
601
|
{
|
|
873
|
-
"type": "input",
|
|
874
602
|
"placeholder": "Enter textinput...",
|
|
875
|
-
"event": "CHANGE"
|
|
603
|
+
"event": "CHANGE",
|
|
604
|
+
"type": "input"
|
|
876
605
|
}
|
|
877
|
-
]
|
|
606
|
+
],
|
|
607
|
+
"label": "TextInput",
|
|
608
|
+
"type": "form-field"
|
|
878
609
|
},
|
|
879
610
|
{
|
|
880
611
|
"type": "alert",
|
|
881
612
|
"variant": "info",
|
|
882
613
|
"message": "Validating input..."
|
|
883
614
|
}
|
|
884
|
-
]
|
|
615
|
+
],
|
|
616
|
+
"direction": "vertical",
|
|
617
|
+
"type": "stack",
|
|
618
|
+
"gap": "lg"
|
|
885
619
|
}
|
|
886
620
|
]
|
|
887
621
|
]
|
|
888
622
|
}
|
|
889
623
|
]
|
|
890
|
-
}
|
|
624
|
+
},
|
|
625
|
+
"scope": "instance"
|
|
891
626
|
}
|
|
892
627
|
],
|
|
893
628
|
"pages": [
|
|
@@ -903,4 +638,4 @@
|
|
|
903
638
|
]
|
|
904
639
|
}
|
|
905
640
|
]
|
|
906
|
-
}
|
|
641
|
+
}
|