@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-gallery",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-gallery as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "GalleryItemOrbital",
|
|
@@ -40,87 +40,57 @@
|
|
|
40
40
|
"type": "string",
|
|
41
41
|
"default": "https://picsum.photos/seed/gallery/800/600"
|
|
42
42
|
}
|
|
43
|
-
],
|
|
44
|
-
"instances": [
|
|
45
|
-
{
|
|
46
|
-
"id": "img-1",
|
|
47
|
-
"name": "Mountain Peak",
|
|
48
|
-
"description": "Gallery image 1",
|
|
49
|
-
"status": "active",
|
|
50
|
-
"createdAt": "2026-01-15",
|
|
51
|
-
"imageUrl": "https://picsum.photos/seed/gallery1/800/600"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"id": "img-2",
|
|
55
|
-
"name": "Ocean Sunset",
|
|
56
|
-
"description": "Gallery image 2",
|
|
57
|
-
"status": "active",
|
|
58
|
-
"createdAt": "2026-01-15",
|
|
59
|
-
"imageUrl": "https://picsum.photos/seed/gallery2/800/600"
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
"id": "img-3",
|
|
63
|
-
"name": "Forest Trail",
|
|
64
|
-
"description": "Gallery image 3",
|
|
65
|
-
"status": "active",
|
|
66
|
-
"createdAt": "2026-01-15",
|
|
67
|
-
"imageUrl": "https://picsum.photos/seed/gallery3/800/600"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"id": "img-4",
|
|
71
|
-
"name": "City Skyline",
|
|
72
|
-
"description": "Gallery image 4",
|
|
73
|
-
"status": "pending",
|
|
74
|
-
"createdAt": "2026-01-15",
|
|
75
|
-
"imageUrl": "https://picsum.photos/seed/gallery4/800/600"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"id": "img-5",
|
|
79
|
-
"name": "Desert Dunes",
|
|
80
|
-
"description": "Gallery image 5",
|
|
81
|
-
"status": "active",
|
|
82
|
-
"createdAt": "2026-01-15",
|
|
83
|
-
"imageUrl": "https://picsum.photos/seed/gallery5/800/600"
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"id": "img-6",
|
|
87
|
-
"name": "Northern Lights",
|
|
88
|
-
"description": "Gallery image 6",
|
|
89
|
-
"status": "active",
|
|
90
|
-
"createdAt": "2026-01-15",
|
|
91
|
-
"imageUrl": "https://picsum.photos/seed/gallery6/800/600"
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"id": "img-7",
|
|
95
|
-
"name": "Coral Reef",
|
|
96
|
-
"description": "Gallery image 7",
|
|
97
|
-
"status": "inactive",
|
|
98
|
-
"createdAt": "2026-01-15",
|
|
99
|
-
"imageUrl": "https://picsum.photos/seed/gallery7/800/600"
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"id": "img-8",
|
|
103
|
-
"name": "Autumn Leaves",
|
|
104
|
-
"description": "Gallery image 8",
|
|
105
|
-
"status": "active",
|
|
106
|
-
"createdAt": "2026-01-15",
|
|
107
|
-
"imageUrl": "https://picsum.photos/seed/gallery8/800/600"
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"id": "img-9",
|
|
111
|
-
"name": "Snowy Valley",
|
|
112
|
-
"description": "Gallery image 9",
|
|
113
|
-
"status": "active",
|
|
114
|
-
"createdAt": "2026-01-15",
|
|
115
|
-
"imageUrl": "https://picsum.photos/seed/gallery9/800/600"
|
|
116
|
-
}
|
|
117
43
|
]
|
|
118
44
|
},
|
|
119
45
|
"traits": [
|
|
120
46
|
{
|
|
121
47
|
"name": "GalleryItemGallery",
|
|
122
|
-
"linkedEntity": "GalleryItem",
|
|
123
48
|
"category": "interaction",
|
|
49
|
+
"linkedEntity": "GalleryItem",
|
|
50
|
+
"emits": [
|
|
51
|
+
{
|
|
52
|
+
"event": "GalleryItemLoaded",
|
|
53
|
+
"description": "Fired when GalleryItem finishes loading",
|
|
54
|
+
"scope": "internal",
|
|
55
|
+
"payload": [
|
|
56
|
+
{
|
|
57
|
+
"name": "id",
|
|
58
|
+
"type": "string"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "name",
|
|
62
|
+
"type": "string"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "description",
|
|
66
|
+
"type": "string"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "status",
|
|
70
|
+
"type": "string"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "createdAt",
|
|
74
|
+
"type": "string"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "imageUrl",
|
|
78
|
+
"type": "string"
|
|
79
|
+
}
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"event": "GalleryItemLoadFailed",
|
|
84
|
+
"description": "Fired when GalleryItem fails to load",
|
|
85
|
+
"scope": "internal",
|
|
86
|
+
"payload": [
|
|
87
|
+
{
|
|
88
|
+
"name": "message",
|
|
89
|
+
"type": "string"
|
|
90
|
+
}
|
|
91
|
+
]
|
|
92
|
+
}
|
|
93
|
+
],
|
|
124
94
|
"stateMachine": {
|
|
125
95
|
"states": [
|
|
126
96
|
{
|
|
@@ -150,6 +120,20 @@
|
|
|
150
120
|
{
|
|
151
121
|
"key": "CLOSE",
|
|
152
122
|
"name": "Close"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"key": "GalleryItemLoaded",
|
|
126
|
+
"name": "GalleryItem loaded"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"key": "GalleryItemLoadFailed",
|
|
130
|
+
"name": "GalleryItem load failed",
|
|
131
|
+
"payload": [
|
|
132
|
+
{
|
|
133
|
+
"name": "message",
|
|
134
|
+
"type": "string"
|
|
135
|
+
}
|
|
136
|
+
]
|
|
153
137
|
}
|
|
154
138
|
],
|
|
155
139
|
"transitions": [
|
|
@@ -160,40 +144,43 @@
|
|
|
160
144
|
"effects": [
|
|
161
145
|
[
|
|
162
146
|
"fetch",
|
|
163
|
-
"GalleryItem"
|
|
147
|
+
"GalleryItem",
|
|
148
|
+
{
|
|
149
|
+
"emit": {
|
|
150
|
+
"success": "GalleryItemLoaded",
|
|
151
|
+
"failure": "GalleryItemLoadFailed"
|
|
152
|
+
}
|
|
153
|
+
}
|
|
164
154
|
],
|
|
165
155
|
[
|
|
166
156
|
"render-ui",
|
|
167
157
|
"main",
|
|
168
158
|
{
|
|
169
|
-
"type": "stack",
|
|
170
|
-
"direction": "vertical",
|
|
171
|
-
"gap": "lg",
|
|
172
159
|
"children": [
|
|
173
160
|
{
|
|
161
|
+
"justify": "space-between",
|
|
162
|
+
"gap": "md",
|
|
174
163
|
"type": "stack",
|
|
175
164
|
"direction": "horizontal",
|
|
176
|
-
"gap": "md",
|
|
177
|
-
"justify": "space-between",
|
|
178
165
|
"align": "center",
|
|
179
166
|
"children": [
|
|
180
167
|
{
|
|
181
|
-
"type": "stack",
|
|
182
|
-
"direction": "horizontal",
|
|
183
|
-
"gap": "sm",
|
|
184
168
|
"align": "center",
|
|
169
|
+
"gap": "sm",
|
|
170
|
+
"direction": "horizontal",
|
|
185
171
|
"children": [
|
|
186
172
|
{
|
|
187
|
-
"type": "icon",
|
|
188
173
|
"name": "image",
|
|
189
|
-
"size": "lg"
|
|
174
|
+
"size": "lg",
|
|
175
|
+
"type": "icon"
|
|
190
176
|
},
|
|
191
177
|
{
|
|
192
|
-
"type": "typography",
|
|
193
178
|
"content": "GalleryItems Gallery",
|
|
194
|
-
"variant": "h2"
|
|
179
|
+
"variant": "h2",
|
|
180
|
+
"type": "typography"
|
|
195
181
|
}
|
|
196
|
-
]
|
|
182
|
+
],
|
|
183
|
+
"type": "stack"
|
|
197
184
|
},
|
|
198
185
|
{
|
|
199
186
|
"type": "typography",
|
|
@@ -207,20 +194,7 @@
|
|
|
207
194
|
"type": "divider"
|
|
208
195
|
},
|
|
209
196
|
{
|
|
210
|
-
"
|
|
211
|
-
"entity": "GalleryItem",
|
|
212
|
-
"imageField": "imageUrl",
|
|
213
|
-
"event": "SELECT"
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
"type": "data-grid",
|
|
217
|
-
"entity": "GalleryItem",
|
|
218
|
-
"cols": 3,
|
|
219
|
-
"gap": "md",
|
|
220
|
-
"imageField": "imageUrl",
|
|
221
|
-
"emptyIcon": "image",
|
|
222
|
-
"emptyTitle": "No images yet",
|
|
223
|
-
"emptyDescription": "Add images to your gallery.",
|
|
197
|
+
"cols": 3.0,
|
|
224
198
|
"itemActions": [
|
|
225
199
|
{
|
|
226
200
|
"label": "View",
|
|
@@ -228,20 +202,30 @@
|
|
|
228
202
|
"icon": "maximize"
|
|
229
203
|
}
|
|
230
204
|
],
|
|
205
|
+
"emptyDescription": "Add images to your gallery.",
|
|
206
|
+
"type": "data-grid",
|
|
207
|
+
"imageField": "imageUrl",
|
|
208
|
+
"emptyTitle": "No images yet",
|
|
209
|
+
"entity": "GalleryItem",
|
|
210
|
+
"emptyIcon": "image",
|
|
231
211
|
"columns": [
|
|
232
212
|
{
|
|
233
213
|
"name": "name",
|
|
234
|
-
"
|
|
235
|
-
"
|
|
214
|
+
"variant": "h4",
|
|
215
|
+
"label": "Title"
|
|
236
216
|
},
|
|
237
217
|
{
|
|
218
|
+
"variant": "badge",
|
|
238
219
|
"name": "status",
|
|
239
|
-
"label": "Status"
|
|
240
|
-
"variant": "badge"
|
|
220
|
+
"label": "Status"
|
|
241
221
|
}
|
|
242
|
-
]
|
|
222
|
+
],
|
|
223
|
+
"gap": "md"
|
|
243
224
|
}
|
|
244
|
-
]
|
|
225
|
+
],
|
|
226
|
+
"type": "stack",
|
|
227
|
+
"gap": "lg",
|
|
228
|
+
"direction": "vertical"
|
|
245
229
|
}
|
|
246
230
|
]
|
|
247
231
|
]
|
|
@@ -256,8 +240,6 @@
|
|
|
256
240
|
"modal",
|
|
257
241
|
{
|
|
258
242
|
"type": "lightbox",
|
|
259
|
-
"isOpen": true,
|
|
260
|
-
"closeAction": "CLOSE",
|
|
261
243
|
"images": [
|
|
262
244
|
{
|
|
263
245
|
"src": "https://picsum.photos/seed/gallery1/800/600",
|
|
@@ -270,13 +252,15 @@
|
|
|
270
252
|
"caption": "Ocean sunset"
|
|
271
253
|
},
|
|
272
254
|
{
|
|
255
|
+
"caption": "Forest trail",
|
|
273
256
|
"src": "https://picsum.photos/seed/gallery3/800/600",
|
|
274
|
-
"alt": "Forest trail"
|
|
275
|
-
"caption": "Forest trail"
|
|
257
|
+
"alt": "Forest trail"
|
|
276
258
|
}
|
|
277
259
|
],
|
|
278
|
-
"currentIndex": 0,
|
|
279
|
-
"
|
|
260
|
+
"currentIndex": 0.0,
|
|
261
|
+
"isOpen": true,
|
|
262
|
+
"showCounter": true,
|
|
263
|
+
"closeAction": "CLOSE"
|
|
280
264
|
}
|
|
281
265
|
]
|
|
282
266
|
]
|
|
@@ -295,88 +279,83 @@
|
|
|
295
279
|
"render-ui",
|
|
296
280
|
"main",
|
|
297
281
|
{
|
|
298
|
-
"type": "stack",
|
|
299
|
-
"direction": "vertical",
|
|
300
|
-
"gap": "lg",
|
|
301
282
|
"children": [
|
|
302
283
|
{
|
|
303
|
-
"type": "stack",
|
|
304
|
-
"direction": "horizontal",
|
|
305
|
-
"gap": "md",
|
|
306
284
|
"justify": "space-between",
|
|
307
|
-
"align": "center",
|
|
308
285
|
"children": [
|
|
309
286
|
{
|
|
310
|
-
"type": "stack",
|
|
311
|
-
"direction": "horizontal",
|
|
312
|
-
"gap": "sm",
|
|
313
|
-
"align": "center",
|
|
314
287
|
"children": [
|
|
315
288
|
{
|
|
316
|
-
"
|
|
289
|
+
"size": "lg",
|
|
317
290
|
"name": "image",
|
|
318
|
-
"
|
|
291
|
+
"type": "icon"
|
|
319
292
|
},
|
|
320
293
|
{
|
|
321
294
|
"type": "typography",
|
|
322
295
|
"content": "GalleryItems Gallery",
|
|
323
296
|
"variant": "h2"
|
|
324
297
|
}
|
|
325
|
-
]
|
|
298
|
+
],
|
|
299
|
+
"align": "center",
|
|
300
|
+
"gap": "sm",
|
|
301
|
+
"direction": "horizontal",
|
|
302
|
+
"type": "stack"
|
|
326
303
|
},
|
|
327
304
|
{
|
|
328
|
-
"
|
|
305
|
+
"content": "Click any image to view full size",
|
|
329
306
|
"variant": "caption",
|
|
330
307
|
"color": "muted",
|
|
331
|
-
"
|
|
308
|
+
"type": "typography"
|
|
332
309
|
}
|
|
333
|
-
]
|
|
310
|
+
],
|
|
311
|
+
"align": "center",
|
|
312
|
+
"direction": "horizontal",
|
|
313
|
+
"type": "stack",
|
|
314
|
+
"gap": "md"
|
|
334
315
|
},
|
|
335
316
|
{
|
|
336
317
|
"type": "divider"
|
|
337
318
|
},
|
|
338
|
-
{
|
|
339
|
-
"type": "carousel",
|
|
340
|
-
"entity": "GalleryItem",
|
|
341
|
-
"imageField": "imageUrl",
|
|
342
|
-
"event": "SELECT"
|
|
343
|
-
},
|
|
344
319
|
{
|
|
345
320
|
"type": "data-grid",
|
|
321
|
+
"emptyIcon": "image",
|
|
346
322
|
"entity": "GalleryItem",
|
|
347
|
-
"cols": 3,
|
|
348
|
-
"gap": "md",
|
|
349
323
|
"imageField": "imageUrl",
|
|
350
|
-
"emptyIcon": "image",
|
|
351
324
|
"emptyTitle": "No images yet",
|
|
325
|
+
"cols": 3.0,
|
|
352
326
|
"emptyDescription": "Add images to your gallery.",
|
|
327
|
+
"gap": "md",
|
|
353
328
|
"itemActions": [
|
|
354
329
|
{
|
|
355
330
|
"label": "View",
|
|
356
|
-
"
|
|
357
|
-
"
|
|
331
|
+
"icon": "maximize",
|
|
332
|
+
"event": "VIEW"
|
|
358
333
|
}
|
|
359
334
|
],
|
|
360
335
|
"columns": [
|
|
361
336
|
{
|
|
362
|
-
"name": "name",
|
|
363
337
|
"label": "Title",
|
|
364
|
-
"variant": "h4"
|
|
338
|
+
"variant": "h4",
|
|
339
|
+
"name": "name"
|
|
365
340
|
},
|
|
366
341
|
{
|
|
367
342
|
"name": "status",
|
|
368
|
-
"
|
|
369
|
-
"
|
|
343
|
+
"variant": "badge",
|
|
344
|
+
"label": "Status"
|
|
370
345
|
}
|
|
371
346
|
]
|
|
372
347
|
}
|
|
373
|
-
]
|
|
348
|
+
],
|
|
349
|
+
"type": "stack",
|
|
350
|
+
"gap": "lg",
|
|
351
|
+
"direction": "vertical"
|
|
374
352
|
}
|
|
375
353
|
]
|
|
376
354
|
]
|
|
377
355
|
}
|
|
378
356
|
]
|
|
379
|
-
}
|
|
357
|
+
},
|
|
358
|
+
"scope": "collection"
|
|
380
359
|
}
|
|
381
360
|
],
|
|
382
361
|
"pages": [
|
|
@@ -392,4 +371,4 @@
|
|
|
392
371
|
]
|
|
393
372
|
}
|
|
394
373
|
]
|
|
395
|
-
}
|
|
374
|
+
}
|