@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-upload",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-upload as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "UploadFileOrbital",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
{
|
|
44
44
|
"name": "fileSize",
|
|
45
45
|
"type": "number",
|
|
46
|
-
"default": 0
|
|
46
|
+
"default": 0.0
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
"name": "uploadStatus",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"traits": [
|
|
56
56
|
{
|
|
57
57
|
"name": "UploadFileUpload",
|
|
58
|
-
"linkedEntity": "UploadFile",
|
|
59
58
|
"category": "interaction",
|
|
59
|
+
"linkedEntity": "UploadFile",
|
|
60
60
|
"stateMachine": {
|
|
61
61
|
"states": [
|
|
62
62
|
{
|
|
@@ -97,13 +97,13 @@
|
|
|
97
97
|
"key": "FAILED",
|
|
98
98
|
"name": "Failed"
|
|
99
99
|
},
|
|
100
|
-
{
|
|
101
|
-
"key": "RETRY",
|
|
102
|
-
"name": "Retry"
|
|
103
|
-
},
|
|
104
100
|
{
|
|
105
101
|
"key": "RESET",
|
|
106
102
|
"name": "Reset"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"key": "RETRY",
|
|
106
|
+
"name": "Retry"
|
|
107
107
|
}
|
|
108
108
|
],
|
|
109
109
|
"transitions": [
|
|
@@ -116,16 +116,12 @@
|
|
|
116
116
|
"render-ui",
|
|
117
117
|
"main",
|
|
118
118
|
{
|
|
119
|
+
"gap": "lg",
|
|
119
120
|
"type": "stack",
|
|
120
121
|
"direction": "vertical",
|
|
121
|
-
"gap": "lg",
|
|
122
122
|
"align": "center",
|
|
123
123
|
"children": [
|
|
124
124
|
{
|
|
125
|
-
"type": "stack",
|
|
126
|
-
"direction": "horizontal",
|
|
127
|
-
"gap": "sm",
|
|
128
|
-
"align": "center",
|
|
129
125
|
"children": [
|
|
130
126
|
{
|
|
131
127
|
"type": "icon",
|
|
@@ -133,21 +129,25 @@
|
|
|
133
129
|
"size": "lg"
|
|
134
130
|
},
|
|
135
131
|
{
|
|
136
|
-
"type": "typography",
|
|
137
132
|
"content": "Upload",
|
|
138
|
-
"variant": "h2"
|
|
133
|
+
"variant": "h2",
|
|
134
|
+
"type": "typography"
|
|
139
135
|
}
|
|
140
|
-
]
|
|
136
|
+
],
|
|
137
|
+
"direction": "horizontal",
|
|
138
|
+
"gap": "sm",
|
|
139
|
+
"type": "stack",
|
|
140
|
+
"align": "center"
|
|
141
141
|
},
|
|
142
142
|
{
|
|
143
143
|
"type": "divider"
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
|
-
"type": "upload-drop-zone",
|
|
147
|
-
"accept": "*/*",
|
|
148
146
|
"event": "UPLOAD",
|
|
147
|
+
"type": "upload-drop-zone",
|
|
149
148
|
"multiple": false,
|
|
150
|
-
"
|
|
149
|
+
"accept": "*/*",
|
|
150
|
+
"maxSize": 10485760.0
|
|
151
151
|
}
|
|
152
152
|
]
|
|
153
153
|
}
|
|
@@ -173,16 +173,14 @@
|
|
|
173
173
|
"render-ui",
|
|
174
174
|
"main",
|
|
175
175
|
{
|
|
176
|
-
"type": "stack",
|
|
177
176
|
"direction": "vertical",
|
|
178
177
|
"gap": "lg",
|
|
179
178
|
"align": "center",
|
|
180
179
|
"children": [
|
|
181
180
|
{
|
|
182
181
|
"type": "stack",
|
|
183
|
-
"direction": "horizontal",
|
|
184
182
|
"gap": "sm",
|
|
185
|
-
"
|
|
183
|
+
"direction": "horizontal",
|
|
186
184
|
"children": [
|
|
187
185
|
{
|
|
188
186
|
"type": "icon",
|
|
@@ -194,14 +192,15 @@
|
|
|
194
192
|
"content": "Uploading...",
|
|
195
193
|
"variant": "h2"
|
|
196
194
|
}
|
|
197
|
-
]
|
|
195
|
+
],
|
|
196
|
+
"align": "center"
|
|
198
197
|
},
|
|
199
198
|
{
|
|
200
199
|
"type": "divider"
|
|
201
200
|
},
|
|
202
201
|
{
|
|
203
|
-
"type": "typography",
|
|
204
202
|
"variant": "body",
|
|
203
|
+
"type": "typography",
|
|
205
204
|
"content": [
|
|
206
205
|
"object/get",
|
|
207
206
|
[
|
|
@@ -212,15 +211,16 @@
|
|
|
212
211
|
]
|
|
213
212
|
},
|
|
214
213
|
{
|
|
214
|
+
"showPercentage": true,
|
|
215
215
|
"type": "progress-bar",
|
|
216
|
-
"value": 50
|
|
217
|
-
"showPercentage": true
|
|
216
|
+
"value": 50.0
|
|
218
217
|
},
|
|
219
218
|
{
|
|
220
|
-
"
|
|
221
|
-
"
|
|
219
|
+
"size": "md",
|
|
220
|
+
"type": "spinner"
|
|
222
221
|
}
|
|
223
|
-
]
|
|
222
|
+
],
|
|
223
|
+
"type": "stack"
|
|
224
224
|
}
|
|
225
225
|
]
|
|
226
226
|
]
|
|
@@ -239,21 +239,21 @@
|
|
|
239
239
|
"render-ui",
|
|
240
240
|
"main",
|
|
241
241
|
{
|
|
242
|
-
"type": "stack",
|
|
243
|
-
"direction": "vertical",
|
|
244
242
|
"gap": "lg",
|
|
243
|
+
"type": "stack",
|
|
245
244
|
"align": "center",
|
|
245
|
+
"direction": "vertical",
|
|
246
246
|
"children": [
|
|
247
247
|
{
|
|
248
|
+
"gap": "sm",
|
|
248
249
|
"type": "stack",
|
|
249
250
|
"direction": "horizontal",
|
|
250
|
-
"gap": "sm",
|
|
251
251
|
"align": "center",
|
|
252
252
|
"children": [
|
|
253
253
|
{
|
|
254
|
-
"type": "icon",
|
|
255
254
|
"name": "check-circle",
|
|
256
|
-
"size": "lg"
|
|
255
|
+
"size": "lg",
|
|
256
|
+
"type": "icon"
|
|
257
257
|
},
|
|
258
258
|
{
|
|
259
259
|
"type": "typography",
|
|
@@ -266,13 +266,12 @@
|
|
|
266
266
|
"type": "divider"
|
|
267
267
|
},
|
|
268
268
|
{
|
|
269
|
-
"type": "alert",
|
|
270
269
|
"variant": "success",
|
|
270
|
+
"type": "alert",
|
|
271
271
|
"message": "File uploaded successfully."
|
|
272
272
|
},
|
|
273
273
|
{
|
|
274
274
|
"type": "typography",
|
|
275
|
-
"variant": "caption",
|
|
276
275
|
"color": "muted",
|
|
277
276
|
"content": [
|
|
278
277
|
"object/get",
|
|
@@ -281,13 +280,14 @@
|
|
|
281
280
|
"@entity"
|
|
282
281
|
],
|
|
283
282
|
"fileName"
|
|
284
|
-
]
|
|
283
|
+
],
|
|
284
|
+
"variant": "caption"
|
|
285
285
|
},
|
|
286
286
|
{
|
|
287
|
-
"type": "button",
|
|
288
|
-
"label": "Upload Another",
|
|
289
287
|
"event": "RESET",
|
|
290
288
|
"variant": "primary",
|
|
289
|
+
"label": "Upload Another",
|
|
290
|
+
"type": "button",
|
|
291
291
|
"icon": "upload"
|
|
292
292
|
}
|
|
293
293
|
]
|
|
@@ -310,75 +310,75 @@
|
|
|
310
310
|
"main",
|
|
311
311
|
{
|
|
312
312
|
"type": "stack",
|
|
313
|
-
"direction": "vertical",
|
|
314
|
-
"gap": "lg",
|
|
315
313
|
"align": "center",
|
|
316
314
|
"children": [
|
|
317
315
|
{
|
|
318
|
-
"
|
|
319
|
-
"title": "Upload Failed",
|
|
316
|
+
"onRetry": "UPLOAD",
|
|
320
317
|
"message": "Something went wrong. Please try again.",
|
|
321
|
-
"
|
|
318
|
+
"title": "Upload Failed",
|
|
319
|
+
"type": "error-state"
|
|
322
320
|
},
|
|
323
321
|
{
|
|
324
322
|
"type": "stack",
|
|
325
323
|
"direction": "horizontal",
|
|
326
|
-
"gap": "sm",
|
|
327
324
|
"justify": "center",
|
|
328
325
|
"children": [
|
|
329
326
|
{
|
|
330
|
-
"type": "button",
|
|
331
|
-
"label": "Retry",
|
|
332
327
|
"event": "RETRY",
|
|
328
|
+
"label": "Retry",
|
|
333
329
|
"variant": "primary",
|
|
334
|
-
"icon": "rotate-ccw"
|
|
330
|
+
"icon": "rotate-ccw",
|
|
331
|
+
"type": "button"
|
|
335
332
|
},
|
|
336
333
|
{
|
|
337
|
-
"
|
|
334
|
+
"variant": "ghost",
|
|
338
335
|
"label": "Cancel",
|
|
339
336
|
"event": "RESET",
|
|
340
|
-
"
|
|
337
|
+
"type": "button"
|
|
341
338
|
}
|
|
342
|
-
]
|
|
339
|
+
],
|
|
340
|
+
"gap": "sm"
|
|
343
341
|
}
|
|
344
|
-
]
|
|
342
|
+
],
|
|
343
|
+
"direction": "vertical",
|
|
344
|
+
"gap": "lg"
|
|
345
345
|
}
|
|
346
346
|
]
|
|
347
347
|
]
|
|
348
348
|
},
|
|
349
349
|
{
|
|
350
|
-
"from": "
|
|
351
|
-
"to": "
|
|
352
|
-
"event": "
|
|
350
|
+
"from": "complete",
|
|
351
|
+
"to": "idle",
|
|
352
|
+
"event": "RESET",
|
|
353
353
|
"effects": [
|
|
354
354
|
[
|
|
355
355
|
"set",
|
|
356
356
|
"@entity.uploadStatus",
|
|
357
|
-
"
|
|
357
|
+
"idle"
|
|
358
358
|
],
|
|
359
359
|
[
|
|
360
360
|
"render-ui",
|
|
361
361
|
"main",
|
|
362
362
|
{
|
|
363
363
|
"type": "stack",
|
|
364
|
-
"direction": "vertical",
|
|
365
|
-
"gap": "lg",
|
|
366
364
|
"align": "center",
|
|
365
|
+
"gap": "lg",
|
|
366
|
+
"direction": "vertical",
|
|
367
367
|
"children": [
|
|
368
368
|
{
|
|
369
|
-
"type": "stack",
|
|
370
369
|
"direction": "horizontal",
|
|
371
|
-
"
|
|
370
|
+
"type": "stack",
|
|
372
371
|
"align": "center",
|
|
372
|
+
"gap": "sm",
|
|
373
373
|
"children": [
|
|
374
374
|
{
|
|
375
375
|
"type": "icon",
|
|
376
|
-
"
|
|
377
|
-
"
|
|
376
|
+
"size": "lg",
|
|
377
|
+
"name": "upload"
|
|
378
378
|
},
|
|
379
379
|
{
|
|
380
380
|
"type": "typography",
|
|
381
|
-
"content": "
|
|
381
|
+
"content": "Upload",
|
|
382
382
|
"variant": "h2"
|
|
383
383
|
}
|
|
384
384
|
]
|
|
@@ -387,25 +387,11 @@
|
|
|
387
387
|
"type": "divider"
|
|
388
388
|
},
|
|
389
389
|
{
|
|
390
|
-
"
|
|
391
|
-
"
|
|
392
|
-
"
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
"array/first",
|
|
396
|
-
"@entity"
|
|
397
|
-
],
|
|
398
|
-
"fileName"
|
|
399
|
-
]
|
|
400
|
-
},
|
|
401
|
-
{
|
|
402
|
-
"type": "progress-bar",
|
|
403
|
-
"value": 50,
|
|
404
|
-
"showPercentage": true
|
|
405
|
-
},
|
|
406
|
-
{
|
|
407
|
-
"type": "spinner",
|
|
408
|
-
"size": "md"
|
|
390
|
+
"accept": "*/*",
|
|
391
|
+
"maxSize": 10485760.0,
|
|
392
|
+
"event": "UPLOAD",
|
|
393
|
+
"multiple": false,
|
|
394
|
+
"type": "upload-drop-zone"
|
|
409
395
|
}
|
|
410
396
|
]
|
|
411
397
|
}
|
|
@@ -414,37 +400,36 @@
|
|
|
414
400
|
},
|
|
415
401
|
{
|
|
416
402
|
"from": "error",
|
|
417
|
-
"to": "
|
|
418
|
-
"event": "
|
|
403
|
+
"to": "uploading",
|
|
404
|
+
"event": "RETRY",
|
|
419
405
|
"effects": [
|
|
420
406
|
[
|
|
421
407
|
"set",
|
|
422
408
|
"@entity.uploadStatus",
|
|
423
|
-
"
|
|
409
|
+
"uploading"
|
|
424
410
|
],
|
|
425
411
|
[
|
|
426
412
|
"render-ui",
|
|
427
413
|
"main",
|
|
428
414
|
{
|
|
429
|
-
"type": "stack",
|
|
430
415
|
"direction": "vertical",
|
|
431
|
-
"gap": "lg",
|
|
432
416
|
"align": "center",
|
|
417
|
+
"gap": "lg",
|
|
433
418
|
"children": [
|
|
434
419
|
{
|
|
435
|
-
"
|
|
420
|
+
"align": "center",
|
|
436
421
|
"direction": "horizontal",
|
|
422
|
+
"type": "stack",
|
|
437
423
|
"gap": "sm",
|
|
438
|
-
"align": "center",
|
|
439
424
|
"children": [
|
|
440
425
|
{
|
|
441
426
|
"type": "icon",
|
|
442
|
-
"
|
|
443
|
-
"
|
|
427
|
+
"size": "lg",
|
|
428
|
+
"name": "upload"
|
|
444
429
|
},
|
|
445
430
|
{
|
|
431
|
+
"content": "Uploading...",
|
|
446
432
|
"type": "typography",
|
|
447
|
-
"content": "Upload",
|
|
448
433
|
"variant": "h2"
|
|
449
434
|
}
|
|
450
435
|
]
|
|
@@ -453,19 +438,34 @@
|
|
|
453
438
|
"type": "divider"
|
|
454
439
|
},
|
|
455
440
|
{
|
|
456
|
-
"
|
|
457
|
-
"
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
441
|
+
"variant": "body",
|
|
442
|
+
"content": [
|
|
443
|
+
"object/get",
|
|
444
|
+
[
|
|
445
|
+
"array/first",
|
|
446
|
+
"@entity"
|
|
447
|
+
],
|
|
448
|
+
"fileName"
|
|
449
|
+
],
|
|
450
|
+
"type": "typography"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"showPercentage": true,
|
|
454
|
+
"value": 50.0,
|
|
455
|
+
"type": "progress-bar"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"type": "spinner",
|
|
459
|
+
"size": "md"
|
|
461
460
|
}
|
|
462
|
-
]
|
|
461
|
+
],
|
|
462
|
+
"type": "stack"
|
|
463
463
|
}
|
|
464
464
|
]
|
|
465
465
|
]
|
|
466
466
|
},
|
|
467
467
|
{
|
|
468
|
-
"from": "
|
|
468
|
+
"from": "error",
|
|
469
469
|
"to": "idle",
|
|
470
470
|
"event": "RESET",
|
|
471
471
|
"effects": [
|
|
@@ -478,16 +478,14 @@
|
|
|
478
478
|
"render-ui",
|
|
479
479
|
"main",
|
|
480
480
|
{
|
|
481
|
+
"align": "center",
|
|
481
482
|
"type": "stack",
|
|
482
483
|
"direction": "vertical",
|
|
483
|
-
"gap": "lg",
|
|
484
|
-
"align": "center",
|
|
485
484
|
"children": [
|
|
486
485
|
{
|
|
487
486
|
"type": "stack",
|
|
488
487
|
"direction": "horizontal",
|
|
489
488
|
"gap": "sm",
|
|
490
|
-
"align": "center",
|
|
491
489
|
"children": [
|
|
492
490
|
{
|
|
493
491
|
"type": "icon",
|
|
@@ -496,28 +494,31 @@
|
|
|
496
494
|
},
|
|
497
495
|
{
|
|
498
496
|
"type": "typography",
|
|
499
|
-
"
|
|
500
|
-
"
|
|
497
|
+
"variant": "h2",
|
|
498
|
+
"content": "Upload"
|
|
501
499
|
}
|
|
502
|
-
]
|
|
500
|
+
],
|
|
501
|
+
"align": "center"
|
|
503
502
|
},
|
|
504
503
|
{
|
|
505
504
|
"type": "divider"
|
|
506
505
|
},
|
|
507
506
|
{
|
|
508
|
-
"
|
|
509
|
-
"accept": "*/*",
|
|
510
|
-
"event": "UPLOAD",
|
|
507
|
+
"maxSize": 10485760.0,
|
|
511
508
|
"multiple": false,
|
|
512
|
-
"
|
|
509
|
+
"event": "UPLOAD",
|
|
510
|
+
"accept": "*/*",
|
|
511
|
+
"type": "upload-drop-zone"
|
|
513
512
|
}
|
|
514
|
-
]
|
|
513
|
+
],
|
|
514
|
+
"gap": "lg"
|
|
515
515
|
}
|
|
516
516
|
]
|
|
517
517
|
]
|
|
518
518
|
}
|
|
519
519
|
]
|
|
520
|
-
}
|
|
520
|
+
},
|
|
521
|
+
"scope": "instance"
|
|
521
522
|
}
|
|
522
523
|
],
|
|
523
524
|
"pages": [
|
|
@@ -533,4 +534,4 @@
|
|
|
533
534
|
]
|
|
534
535
|
}
|
|
535
536
|
]
|
|
536
|
-
}
|
|
537
|
+
}
|