@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-form-advanced",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-form-advanced as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "FormEntryOrbital",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
{
|
|
44
44
|
"name": "age",
|
|
45
45
|
"type": "number",
|
|
46
|
-
"default": 0
|
|
46
|
+
"default": 0.0
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"name": "isActive",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
54
|
"name": "birthDate",
|
|
55
|
-
"type": "
|
|
55
|
+
"type": "datetime",
|
|
56
56
|
"default": ""
|
|
57
57
|
},
|
|
58
58
|
{
|
|
@@ -68,20 +68,80 @@
|
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
"name": "categoryId",
|
|
71
|
-
"type": "
|
|
72
|
-
"default": ""
|
|
73
|
-
"relation": {
|
|
74
|
-
"entity": "FormEntry",
|
|
75
|
-
"cardinality": "many-to-one"
|
|
76
|
-
}
|
|
71
|
+
"type": "string",
|
|
72
|
+
"default": ""
|
|
77
73
|
}
|
|
78
74
|
]
|
|
79
75
|
},
|
|
80
76
|
"traits": [
|
|
81
77
|
{
|
|
82
78
|
"name": "FormEntryFormAdvanced",
|
|
83
|
-
"linkedEntity": "FormEntry",
|
|
84
79
|
"category": "interaction",
|
|
80
|
+
"linkedEntity": "FormEntry",
|
|
81
|
+
"emits": [
|
|
82
|
+
{
|
|
83
|
+
"event": "FormEntryLoaded",
|
|
84
|
+
"description": "Fired when FormEntry finishes loading",
|
|
85
|
+
"scope": "internal",
|
|
86
|
+
"payload": [
|
|
87
|
+
{
|
|
88
|
+
"name": "id",
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "name",
|
|
93
|
+
"type": "string"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "description",
|
|
97
|
+
"type": "string"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "status",
|
|
101
|
+
"type": "string"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "createdAt",
|
|
105
|
+
"type": "string"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "notes",
|
|
109
|
+
"type": "string"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "age",
|
|
113
|
+
"type": "number"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "isActive",
|
|
117
|
+
"type": "boolean"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "birthDate",
|
|
121
|
+
"type": "datetime"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "priority",
|
|
125
|
+
"type": "string"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "categoryId",
|
|
129
|
+
"type": "relation"
|
|
130
|
+
}
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"event": "FormEntryLoadFailed",
|
|
135
|
+
"description": "Fired when FormEntry fails to load",
|
|
136
|
+
"scope": "internal",
|
|
137
|
+
"payload": [
|
|
138
|
+
{
|
|
139
|
+
"name": "message",
|
|
140
|
+
"type": "string"
|
|
141
|
+
}
|
|
142
|
+
]
|
|
143
|
+
}
|
|
144
|
+
],
|
|
85
145
|
"stateMachine": {
|
|
86
146
|
"states": [
|
|
87
147
|
{
|
|
@@ -111,6 +171,20 @@
|
|
|
111
171
|
{
|
|
112
172
|
"key": "RESET",
|
|
113
173
|
"name": "Reset"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"key": "FormEntryLoaded",
|
|
177
|
+
"name": "FormEntry loaded"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"key": "FormEntryLoadFailed",
|
|
181
|
+
"name": "FormEntry load failed",
|
|
182
|
+
"payload": [
|
|
183
|
+
{
|
|
184
|
+
"name": "message",
|
|
185
|
+
"type": "string"
|
|
186
|
+
}
|
|
187
|
+
]
|
|
114
188
|
}
|
|
115
189
|
],
|
|
116
190
|
"transitions": [
|
|
@@ -123,26 +197,29 @@
|
|
|
123
197
|
"fetch",
|
|
124
198
|
"FormEntry",
|
|
125
199
|
{
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
|
|
200
|
+
"emit": {
|
|
201
|
+
"success": "FormEntryLoaded",
|
|
202
|
+
"failure": "FormEntryLoadFailed"
|
|
203
|
+
}
|
|
129
204
|
}
|
|
130
205
|
],
|
|
131
206
|
[
|
|
132
207
|
"fetch",
|
|
133
|
-
"FormEntry"
|
|
208
|
+
"FormEntry",
|
|
209
|
+
{
|
|
210
|
+
"emit": {
|
|
211
|
+
"failure": "FormEntryLoadFailed",
|
|
212
|
+
"success": "FormEntryLoaded"
|
|
213
|
+
}
|
|
214
|
+
}
|
|
134
215
|
],
|
|
135
216
|
[
|
|
136
217
|
"render-ui",
|
|
137
218
|
"main",
|
|
138
219
|
{
|
|
139
|
-
"type": "stack",
|
|
140
|
-
"direction": "vertical",
|
|
141
|
-
"gap": "lg",
|
|
142
220
|
"children": [
|
|
143
221
|
{
|
|
144
222
|
"type": "stack",
|
|
145
|
-
"direction": "horizontal",
|
|
146
223
|
"gap": "sm",
|
|
147
224
|
"align": "center",
|
|
148
225
|
"children": [
|
|
@@ -153,38 +230,34 @@
|
|
|
153
230
|
},
|
|
154
231
|
{
|
|
155
232
|
"type": "typography",
|
|
156
|
-
"
|
|
157
|
-
"
|
|
233
|
+
"variant": "h2",
|
|
234
|
+
"content": "FormEntry Form"
|
|
158
235
|
}
|
|
159
|
-
]
|
|
236
|
+
],
|
|
237
|
+
"direction": "horizontal"
|
|
160
238
|
},
|
|
161
239
|
{
|
|
162
240
|
"type": "divider"
|
|
163
241
|
},
|
|
164
242
|
{
|
|
165
|
-
"type": "form-section",
|
|
166
|
-
"entity": "FormEntry",
|
|
167
|
-
"mode": "create",
|
|
168
|
-
"submitEvent": "SUBMIT",
|
|
169
|
-
"cancelEvent": "INIT",
|
|
170
243
|
"fields": [
|
|
171
244
|
{
|
|
172
|
-
"
|
|
173
|
-
"
|
|
245
|
+
"label": "Name",
|
|
246
|
+
"name": "name"
|
|
174
247
|
},
|
|
175
248
|
{
|
|
176
249
|
"name": "description",
|
|
177
250
|
"label": "Description"
|
|
178
251
|
},
|
|
179
252
|
{
|
|
180
|
-
"name": "status",
|
|
181
253
|
"label": "Status",
|
|
182
|
-
"type": "enum",
|
|
183
254
|
"values": [
|
|
184
255
|
"active",
|
|
185
256
|
"inactive",
|
|
186
257
|
"pending"
|
|
187
|
-
]
|
|
258
|
+
],
|
|
259
|
+
"type": "enum",
|
|
260
|
+
"name": "status"
|
|
188
261
|
},
|
|
189
262
|
{
|
|
190
263
|
"name": "notes",
|
|
@@ -192,43 +265,51 @@
|
|
|
192
265
|
"type": "textarea"
|
|
193
266
|
},
|
|
194
267
|
{
|
|
195
|
-
"name": "age",
|
|
196
268
|
"label": "Age",
|
|
197
|
-
"type": "number"
|
|
269
|
+
"type": "number",
|
|
270
|
+
"name": "age"
|
|
198
271
|
},
|
|
199
272
|
{
|
|
200
|
-
"name": "isActive",
|
|
201
273
|
"label": "Is Active",
|
|
274
|
+
"name": "isActive",
|
|
202
275
|
"type": "boolean"
|
|
203
276
|
},
|
|
204
277
|
{
|
|
278
|
+
"type": "date",
|
|
205
279
|
"name": "birthDate",
|
|
206
|
-
"label": "Birth Date"
|
|
207
|
-
"type": "date"
|
|
280
|
+
"label": "Birth Date"
|
|
208
281
|
},
|
|
209
282
|
{
|
|
210
283
|
"name": "priority",
|
|
211
|
-
"label": "Priority",
|
|
212
284
|
"type": "enum",
|
|
213
285
|
"values": [
|
|
214
286
|
"low",
|
|
215
287
|
"medium",
|
|
216
288
|
"high",
|
|
217
289
|
"critical"
|
|
218
|
-
]
|
|
290
|
+
],
|
|
291
|
+
"label": "Priority"
|
|
219
292
|
},
|
|
220
293
|
{
|
|
221
|
-
"name": "categoryId",
|
|
222
|
-
"label": "Category ID",
|
|
223
|
-
"type": "relation",
|
|
224
294
|
"relation": {
|
|
225
295
|
"entity": "FormEntry",
|
|
226
296
|
"cardinality": "many-to-one"
|
|
227
|
-
}
|
|
297
|
+
},
|
|
298
|
+
"type": "relation",
|
|
299
|
+
"label": "Category ID",
|
|
300
|
+
"name": "categoryId"
|
|
228
301
|
}
|
|
229
|
-
]
|
|
302
|
+
],
|
|
303
|
+
"mode": "create",
|
|
304
|
+
"type": "form-section",
|
|
305
|
+
"submitEvent": "SUBMIT",
|
|
306
|
+
"entity": "FormEntry",
|
|
307
|
+
"cancelEvent": "INIT"
|
|
230
308
|
}
|
|
231
|
-
]
|
|
309
|
+
],
|
|
310
|
+
"gap": "lg",
|
|
311
|
+
"type": "stack",
|
|
312
|
+
"direction": "vertical"
|
|
232
313
|
}
|
|
233
314
|
]
|
|
234
315
|
]
|
|
@@ -248,20 +329,18 @@
|
|
|
248
329
|
"render-ui",
|
|
249
330
|
"main",
|
|
250
331
|
{
|
|
251
|
-
"type": "stack",
|
|
252
|
-
"direction": "vertical",
|
|
253
332
|
"gap": "lg",
|
|
254
333
|
"align": "center",
|
|
255
334
|
"children": [
|
|
256
335
|
{
|
|
336
|
+
"size": "lg",
|
|
257
337
|
"type": "icon",
|
|
258
|
-
"name": "check-circle"
|
|
259
|
-
"size": "lg"
|
|
338
|
+
"name": "check-circle"
|
|
260
339
|
},
|
|
261
340
|
{
|
|
262
341
|
"type": "typography",
|
|
263
|
-
"
|
|
264
|
-
"
|
|
342
|
+
"variant": "h2",
|
|
343
|
+
"content": "Form Submitted"
|
|
265
344
|
},
|
|
266
345
|
{
|
|
267
346
|
"type": "alert",
|
|
@@ -269,24 +348,16 @@
|
|
|
269
348
|
"message": "Your form has been submitted successfully."
|
|
270
349
|
},
|
|
271
350
|
{
|
|
272
|
-
"type": "grid",
|
|
273
|
-
"columns": 2,
|
|
274
|
-
"gap": "md",
|
|
275
351
|
"children": [
|
|
276
352
|
{
|
|
277
|
-
"type": "stack",
|
|
278
|
-
"direction": "vertical",
|
|
279
|
-
"gap": "xs",
|
|
280
353
|
"children": [
|
|
281
354
|
{
|
|
355
|
+
"color": "muted",
|
|
282
356
|
"type": "typography",
|
|
283
357
|
"variant": "caption",
|
|
284
|
-
"color": "muted",
|
|
285
358
|
"content": "Name"
|
|
286
359
|
},
|
|
287
360
|
{
|
|
288
|
-
"type": "typography",
|
|
289
|
-
"variant": "body",
|
|
290
361
|
"content": [
|
|
291
362
|
"object/get",
|
|
292
363
|
[
|
|
@@ -294,24 +365,29 @@
|
|
|
294
365
|
"@entity"
|
|
295
366
|
],
|
|
296
367
|
"name"
|
|
297
|
-
]
|
|
368
|
+
],
|
|
369
|
+
"type": "typography",
|
|
370
|
+
"variant": "body"
|
|
298
371
|
}
|
|
299
|
-
]
|
|
372
|
+
],
|
|
373
|
+
"gap": "xs",
|
|
374
|
+
"direction": "vertical",
|
|
375
|
+
"type": "stack"
|
|
300
376
|
},
|
|
301
377
|
{
|
|
302
|
-
"type": "stack",
|
|
303
378
|
"direction": "vertical",
|
|
379
|
+
"type": "stack",
|
|
304
380
|
"gap": "xs",
|
|
305
381
|
"children": [
|
|
306
382
|
{
|
|
307
383
|
"type": "typography",
|
|
308
|
-
"variant": "caption",
|
|
309
384
|
"color": "muted",
|
|
310
|
-
"content": "Description"
|
|
385
|
+
"content": "Description",
|
|
386
|
+
"variant": "caption"
|
|
311
387
|
},
|
|
312
388
|
{
|
|
313
|
-
"type": "typography",
|
|
314
389
|
"variant": "body",
|
|
390
|
+
"type": "typography",
|
|
315
391
|
"content": [
|
|
316
392
|
"object/get",
|
|
317
393
|
[
|
|
@@ -325,18 +401,16 @@
|
|
|
325
401
|
},
|
|
326
402
|
{
|
|
327
403
|
"type": "stack",
|
|
328
|
-
"direction": "vertical",
|
|
329
404
|
"gap": "xs",
|
|
405
|
+
"direction": "vertical",
|
|
330
406
|
"children": [
|
|
331
407
|
{
|
|
332
408
|
"type": "typography",
|
|
409
|
+
"content": "Status",
|
|
333
410
|
"variant": "caption",
|
|
334
|
-
"color": "muted"
|
|
335
|
-
"content": "Status"
|
|
411
|
+
"color": "muted"
|
|
336
412
|
},
|
|
337
413
|
{
|
|
338
|
-
"type": "typography",
|
|
339
|
-
"variant": "body",
|
|
340
414
|
"content": [
|
|
341
415
|
"object/get",
|
|
342
416
|
[
|
|
@@ -344,23 +418,23 @@
|
|
|
344
418
|
"@entity"
|
|
345
419
|
],
|
|
346
420
|
"status"
|
|
347
|
-
]
|
|
421
|
+
],
|
|
422
|
+
"variant": "body",
|
|
423
|
+
"type": "typography"
|
|
348
424
|
}
|
|
349
425
|
]
|
|
350
426
|
},
|
|
351
427
|
{
|
|
352
|
-
"type": "stack",
|
|
353
|
-
"direction": "vertical",
|
|
354
428
|
"gap": "xs",
|
|
429
|
+
"direction": "vertical",
|
|
355
430
|
"children": [
|
|
356
431
|
{
|
|
357
|
-
"type": "typography",
|
|
358
|
-
"variant": "caption",
|
|
359
432
|
"color": "muted",
|
|
360
|
-
"content": "Notes"
|
|
433
|
+
"content": "Notes",
|
|
434
|
+
"variant": "caption",
|
|
435
|
+
"type": "typography"
|
|
361
436
|
},
|
|
362
437
|
{
|
|
363
|
-
"type": "typography",
|
|
364
438
|
"variant": "body",
|
|
365
439
|
"content": [
|
|
366
440
|
"object/get",
|
|
@@ -369,9 +443,11 @@
|
|
|
369
443
|
"@entity"
|
|
370
444
|
],
|
|
371
445
|
"notes"
|
|
372
|
-
]
|
|
446
|
+
],
|
|
447
|
+
"type": "typography"
|
|
373
448
|
}
|
|
374
|
-
]
|
|
449
|
+
],
|
|
450
|
+
"type": "stack"
|
|
375
451
|
},
|
|
376
452
|
{
|
|
377
453
|
"type": "stack",
|
|
@@ -380,12 +456,11 @@
|
|
|
380
456
|
"children": [
|
|
381
457
|
{
|
|
382
458
|
"type": "typography",
|
|
459
|
+
"content": "Age",
|
|
383
460
|
"variant": "caption",
|
|
384
|
-
"color": "muted"
|
|
385
|
-
"content": "Age"
|
|
461
|
+
"color": "muted"
|
|
386
462
|
},
|
|
387
463
|
{
|
|
388
|
-
"type": "typography",
|
|
389
464
|
"variant": "body",
|
|
390
465
|
"content": [
|
|
391
466
|
"object/get",
|
|
@@ -394,24 +469,20 @@
|
|
|
394
469
|
"@entity"
|
|
395
470
|
],
|
|
396
471
|
"age"
|
|
397
|
-
]
|
|
472
|
+
],
|
|
473
|
+
"type": "typography"
|
|
398
474
|
}
|
|
399
475
|
]
|
|
400
476
|
},
|
|
401
477
|
{
|
|
402
|
-
"type": "stack",
|
|
403
|
-
"direction": "vertical",
|
|
404
|
-
"gap": "xs",
|
|
405
478
|
"children": [
|
|
406
479
|
{
|
|
407
|
-
"type": "typography",
|
|
408
|
-
"variant": "caption",
|
|
409
480
|
"color": "muted",
|
|
410
|
-
"
|
|
481
|
+
"type": "typography",
|
|
482
|
+
"content": "Is Active",
|
|
483
|
+
"variant": "caption"
|
|
411
484
|
},
|
|
412
485
|
{
|
|
413
|
-
"type": "typography",
|
|
414
|
-
"variant": "body",
|
|
415
486
|
"content": [
|
|
416
487
|
"object/get",
|
|
417
488
|
[
|
|
@@ -419,24 +490,26 @@
|
|
|
419
490
|
"@entity"
|
|
420
491
|
],
|
|
421
492
|
"isActive"
|
|
422
|
-
]
|
|
493
|
+
],
|
|
494
|
+
"type": "typography",
|
|
495
|
+
"variant": "body"
|
|
423
496
|
}
|
|
424
|
-
]
|
|
497
|
+
],
|
|
498
|
+
"type": "stack",
|
|
499
|
+
"gap": "xs",
|
|
500
|
+
"direction": "vertical"
|
|
425
501
|
},
|
|
426
502
|
{
|
|
427
503
|
"type": "stack",
|
|
428
|
-
"direction": "vertical",
|
|
429
504
|
"gap": "xs",
|
|
430
505
|
"children": [
|
|
431
506
|
{
|
|
432
|
-
"type": "typography",
|
|
433
|
-
"variant": "caption",
|
|
434
507
|
"color": "muted",
|
|
435
|
-
"content": "Birth Date"
|
|
508
|
+
"content": "Birth Date",
|
|
509
|
+
"variant": "caption",
|
|
510
|
+
"type": "typography"
|
|
436
511
|
},
|
|
437
512
|
{
|
|
438
|
-
"type": "typography",
|
|
439
|
-
"variant": "body",
|
|
440
513
|
"content": [
|
|
441
514
|
"object/get",
|
|
442
515
|
[
|
|
@@ -444,24 +517,25 @@
|
|
|
444
517
|
"@entity"
|
|
445
518
|
],
|
|
446
519
|
"birthDate"
|
|
447
|
-
]
|
|
520
|
+
],
|
|
521
|
+
"variant": "body",
|
|
522
|
+
"type": "typography"
|
|
448
523
|
}
|
|
449
|
-
]
|
|
524
|
+
],
|
|
525
|
+
"direction": "vertical"
|
|
450
526
|
},
|
|
451
527
|
{
|
|
528
|
+
"gap": "xs",
|
|
452
529
|
"type": "stack",
|
|
453
530
|
"direction": "vertical",
|
|
454
|
-
"gap": "xs",
|
|
455
531
|
"children": [
|
|
456
532
|
{
|
|
457
|
-
"
|
|
458
|
-
"variant": "caption",
|
|
533
|
+
"content": "Priority",
|
|
459
534
|
"color": "muted",
|
|
460
|
-
"
|
|
535
|
+
"type": "typography",
|
|
536
|
+
"variant": "caption"
|
|
461
537
|
},
|
|
462
538
|
{
|
|
463
|
-
"type": "typography",
|
|
464
|
-
"variant": "body",
|
|
465
539
|
"content": [
|
|
466
540
|
"object/get",
|
|
467
541
|
[
|
|
@@ -469,20 +543,19 @@
|
|
|
469
543
|
"@entity"
|
|
470
544
|
],
|
|
471
545
|
"priority"
|
|
472
|
-
]
|
|
546
|
+
],
|
|
547
|
+
"variant": "body",
|
|
548
|
+
"type": "typography"
|
|
473
549
|
}
|
|
474
550
|
]
|
|
475
551
|
},
|
|
476
552
|
{
|
|
477
|
-
"type": "stack",
|
|
478
|
-
"direction": "vertical",
|
|
479
|
-
"gap": "xs",
|
|
480
553
|
"children": [
|
|
481
554
|
{
|
|
482
|
-
"type": "typography",
|
|
483
|
-
"variant": "caption",
|
|
484
555
|
"color": "muted",
|
|
485
|
-
"content": "Category ID"
|
|
556
|
+
"content": "Category ID",
|
|
557
|
+
"variant": "caption",
|
|
558
|
+
"type": "typography"
|
|
486
559
|
},
|
|
487
560
|
{
|
|
488
561
|
"type": "typography",
|
|
@@ -496,9 +569,15 @@
|
|
|
496
569
|
"categoryId"
|
|
497
570
|
]
|
|
498
571
|
}
|
|
499
|
-
]
|
|
572
|
+
],
|
|
573
|
+
"type": "stack",
|
|
574
|
+
"gap": "xs",
|
|
575
|
+
"direction": "vertical"
|
|
500
576
|
}
|
|
501
|
-
]
|
|
577
|
+
],
|
|
578
|
+
"type": "grid",
|
|
579
|
+
"gap": "md",
|
|
580
|
+
"columns": 2.0
|
|
502
581
|
},
|
|
503
582
|
{
|
|
504
583
|
"type": "button",
|
|
@@ -507,7 +586,9 @@
|
|
|
507
586
|
"variant": "primary",
|
|
508
587
|
"icon": "plus"
|
|
509
588
|
}
|
|
510
|
-
]
|
|
589
|
+
],
|
|
590
|
+
"type": "stack",
|
|
591
|
+
"direction": "vertical"
|
|
511
592
|
}
|
|
512
593
|
]
|
|
513
594
|
]
|
|
@@ -521,40 +602,46 @@
|
|
|
521
602
|
"fetch",
|
|
522
603
|
"FormEntry",
|
|
523
604
|
{
|
|
524
|
-
"
|
|
525
|
-
"
|
|
526
|
-
|
|
605
|
+
"emit": {
|
|
606
|
+
"failure": "FormEntryLoadFailed",
|
|
607
|
+
"success": "FormEntryLoaded"
|
|
608
|
+
}
|
|
527
609
|
}
|
|
528
610
|
],
|
|
529
611
|
[
|
|
530
612
|
"fetch",
|
|
531
|
-
"FormEntry"
|
|
613
|
+
"FormEntry",
|
|
614
|
+
{
|
|
615
|
+
"emit": {
|
|
616
|
+
"success": "FormEntryLoaded",
|
|
617
|
+
"failure": "FormEntryLoadFailed"
|
|
618
|
+
}
|
|
619
|
+
}
|
|
532
620
|
],
|
|
533
621
|
[
|
|
534
622
|
"render-ui",
|
|
535
623
|
"main",
|
|
536
624
|
{
|
|
537
|
-
"type": "stack",
|
|
538
625
|
"direction": "vertical",
|
|
539
|
-
"
|
|
626
|
+
"type": "stack",
|
|
540
627
|
"children": [
|
|
541
628
|
{
|
|
542
|
-
"type": "stack",
|
|
543
|
-
"direction": "horizontal",
|
|
544
|
-
"gap": "sm",
|
|
545
|
-
"align": "center",
|
|
546
629
|
"children": [
|
|
547
630
|
{
|
|
548
|
-
"type": "icon",
|
|
549
631
|
"name": "file-text",
|
|
550
|
-
"size": "lg"
|
|
632
|
+
"size": "lg",
|
|
633
|
+
"type": "icon"
|
|
551
634
|
},
|
|
552
635
|
{
|
|
553
636
|
"type": "typography",
|
|
554
637
|
"content": "FormEntry Form",
|
|
555
638
|
"variant": "h2"
|
|
556
639
|
}
|
|
557
|
-
]
|
|
640
|
+
],
|
|
641
|
+
"direction": "horizontal",
|
|
642
|
+
"type": "stack",
|
|
643
|
+
"align": "center",
|
|
644
|
+
"gap": "sm"
|
|
558
645
|
},
|
|
559
646
|
{
|
|
560
647
|
"type": "divider"
|
|
@@ -562,22 +649,20 @@
|
|
|
562
649
|
{
|
|
563
650
|
"type": "form-section",
|
|
564
651
|
"entity": "FormEntry",
|
|
565
|
-
"mode": "create",
|
|
566
652
|
"submitEvent": "SUBMIT",
|
|
567
|
-
"cancelEvent": "INIT",
|
|
568
653
|
"fields": [
|
|
569
654
|
{
|
|
570
|
-
"
|
|
571
|
-
"
|
|
655
|
+
"label": "Name",
|
|
656
|
+
"name": "name"
|
|
572
657
|
},
|
|
573
658
|
{
|
|
574
|
-
"
|
|
575
|
-
"
|
|
659
|
+
"label": "Description",
|
|
660
|
+
"name": "description"
|
|
576
661
|
},
|
|
577
662
|
{
|
|
578
|
-
"name": "status",
|
|
579
663
|
"label": "Status",
|
|
580
664
|
"type": "enum",
|
|
665
|
+
"name": "status",
|
|
581
666
|
"values": [
|
|
582
667
|
"active",
|
|
583
668
|
"inactive",
|
|
@@ -586,18 +671,18 @@
|
|
|
586
671
|
},
|
|
587
672
|
{
|
|
588
673
|
"name": "notes",
|
|
589
|
-
"
|
|
590
|
-
"
|
|
674
|
+
"type": "textarea",
|
|
675
|
+
"label": "Notes"
|
|
591
676
|
},
|
|
592
677
|
{
|
|
593
|
-
"
|
|
678
|
+
"type": "number",
|
|
594
679
|
"label": "Age",
|
|
595
|
-
"
|
|
680
|
+
"name": "age"
|
|
596
681
|
},
|
|
597
682
|
{
|
|
683
|
+
"type": "boolean",
|
|
598
684
|
"name": "isActive",
|
|
599
|
-
"label": "Is Active"
|
|
600
|
-
"type": "boolean"
|
|
685
|
+
"label": "Is Active"
|
|
601
686
|
},
|
|
602
687
|
{
|
|
603
688
|
"name": "birthDate",
|
|
@@ -605,34 +690,38 @@
|
|
|
605
690
|
"type": "date"
|
|
606
691
|
},
|
|
607
692
|
{
|
|
608
|
-
"name": "priority",
|
|
609
693
|
"label": "Priority",
|
|
610
|
-
"type": "enum",
|
|
611
694
|
"values": [
|
|
612
695
|
"low",
|
|
613
696
|
"medium",
|
|
614
697
|
"high",
|
|
615
698
|
"critical"
|
|
616
|
-
]
|
|
699
|
+
],
|
|
700
|
+
"type": "enum",
|
|
701
|
+
"name": "priority"
|
|
617
702
|
},
|
|
618
703
|
{
|
|
619
704
|
"name": "categoryId",
|
|
620
|
-
"label": "Category ID",
|
|
621
|
-
"type": "relation",
|
|
622
705
|
"relation": {
|
|
623
706
|
"entity": "FormEntry",
|
|
624
707
|
"cardinality": "many-to-one"
|
|
625
|
-
}
|
|
708
|
+
},
|
|
709
|
+
"label": "Category ID",
|
|
710
|
+
"type": "relation"
|
|
626
711
|
}
|
|
627
|
-
]
|
|
712
|
+
],
|
|
713
|
+
"mode": "create",
|
|
714
|
+
"cancelEvent": "INIT"
|
|
628
715
|
}
|
|
629
|
-
]
|
|
716
|
+
],
|
|
717
|
+
"gap": "lg"
|
|
630
718
|
}
|
|
631
719
|
]
|
|
632
720
|
]
|
|
633
721
|
}
|
|
634
722
|
]
|
|
635
|
-
}
|
|
723
|
+
},
|
|
724
|
+
"scope": "instance"
|
|
636
725
|
}
|
|
637
726
|
],
|
|
638
727
|
"pages": [
|
|
@@ -648,4 +737,4 @@
|
|
|
648
737
|
]
|
|
649
738
|
}
|
|
650
739
|
]
|
|
651
|
-
}
|
|
740
|
+
}
|