@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-calendar",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-calendar as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "CalendarEventOrbital",
|
|
@@ -48,47 +48,67 @@
|
|
|
48
48
|
{
|
|
49
49
|
"name": "duration",
|
|
50
50
|
"type": "number",
|
|
51
|
-
"default": 60
|
|
52
|
-
}
|
|
53
|
-
],
|
|
54
|
-
"instances": [
|
|
55
|
-
{
|
|
56
|
-
"id": "evt-1",
|
|
57
|
-
"name": "Team Standup",
|
|
58
|
-
"description": "Daily sync",
|
|
59
|
-
"status": "active",
|
|
60
|
-
"createdAt": "2026-03-19",
|
|
61
|
-
"date": "2026-03-19",
|
|
62
|
-
"time": "09:00",
|
|
63
|
-
"duration": 30
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"id": "evt-2",
|
|
67
|
-
"name": "Sprint Review",
|
|
68
|
-
"description": "End of sprint demo",
|
|
69
|
-
"status": "active",
|
|
70
|
-
"createdAt": "2026-03-19",
|
|
71
|
-
"date": "2026-03-21",
|
|
72
|
-
"time": "14:00",
|
|
73
|
-
"duration": 60
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"id": "evt-3",
|
|
77
|
-
"name": "Design Workshop",
|
|
78
|
-
"description": "UI/UX review session",
|
|
79
|
-
"status": "pending",
|
|
80
|
-
"createdAt": "2026-03-19",
|
|
81
|
-
"date": "2026-03-22",
|
|
82
|
-
"time": "10:30",
|
|
83
|
-
"duration": 90
|
|
51
|
+
"default": 60.0
|
|
84
52
|
}
|
|
85
53
|
]
|
|
86
54
|
},
|
|
87
55
|
"traits": [
|
|
88
56
|
{
|
|
89
57
|
"name": "CalendarEventCalendar",
|
|
90
|
-
"linkedEntity": "CalendarEvent",
|
|
91
58
|
"category": "interaction",
|
|
59
|
+
"linkedEntity": "CalendarEvent",
|
|
60
|
+
"emits": [
|
|
61
|
+
{
|
|
62
|
+
"event": "CalendarEventLoaded",
|
|
63
|
+
"description": "Fired when CalendarEvent finishes loading",
|
|
64
|
+
"scope": "internal",
|
|
65
|
+
"payload": [
|
|
66
|
+
{
|
|
67
|
+
"name": "id",
|
|
68
|
+
"type": "string"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "name",
|
|
72
|
+
"type": "string"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "description",
|
|
76
|
+
"type": "string"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "status",
|
|
80
|
+
"type": "string"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "createdAt",
|
|
84
|
+
"type": "string"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "date",
|
|
88
|
+
"type": "string"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "time",
|
|
92
|
+
"type": "string"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "duration",
|
|
96
|
+
"type": "number"
|
|
97
|
+
}
|
|
98
|
+
]
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"event": "CalendarEventLoadFailed",
|
|
102
|
+
"description": "Fired when CalendarEvent fails to load",
|
|
103
|
+
"scope": "internal",
|
|
104
|
+
"payload": [
|
|
105
|
+
{
|
|
106
|
+
"name": "message",
|
|
107
|
+
"type": "string"
|
|
108
|
+
}
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
],
|
|
92
112
|
"stateMachine": {
|
|
93
113
|
"states": [
|
|
94
114
|
{
|
|
@@ -132,6 +152,20 @@
|
|
|
132
152
|
{
|
|
133
153
|
"key": "BACK",
|
|
134
154
|
"name": "Back"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"key": "CalendarEventLoaded",
|
|
158
|
+
"name": "CalendarEvent loaded"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"key": "CalendarEventLoadFailed",
|
|
162
|
+
"name": "CalendarEvent load failed",
|
|
163
|
+
"payload": [
|
|
164
|
+
{
|
|
165
|
+
"name": "message",
|
|
166
|
+
"type": "string"
|
|
167
|
+
}
|
|
168
|
+
]
|
|
135
169
|
}
|
|
136
170
|
],
|
|
137
171
|
"transitions": [
|
|
@@ -142,27 +176,29 @@
|
|
|
142
176
|
"effects": [
|
|
143
177
|
[
|
|
144
178
|
"fetch",
|
|
145
|
-
"CalendarEvent"
|
|
179
|
+
"CalendarEvent",
|
|
180
|
+
{
|
|
181
|
+
"emit": {
|
|
182
|
+
"success": "CalendarEventLoaded",
|
|
183
|
+
"failure": "CalendarEventLoadFailed"
|
|
184
|
+
}
|
|
185
|
+
}
|
|
146
186
|
],
|
|
147
187
|
[
|
|
148
188
|
"render-ui",
|
|
149
189
|
"main",
|
|
150
190
|
{
|
|
151
191
|
"type": "stack",
|
|
152
|
-
"direction": "vertical",
|
|
153
192
|
"gap": "lg",
|
|
154
193
|
"children": [
|
|
155
194
|
{
|
|
156
|
-
"type": "stack",
|
|
157
195
|
"direction": "horizontal",
|
|
158
196
|
"gap": "md",
|
|
159
|
-
"justify": "space-between",
|
|
160
|
-
"align": "center",
|
|
161
197
|
"children": [
|
|
162
198
|
{
|
|
163
199
|
"type": "stack",
|
|
164
|
-
"direction": "horizontal",
|
|
165
200
|
"gap": "sm",
|
|
201
|
+
"direction": "horizontal",
|
|
166
202
|
"align": "center",
|
|
167
203
|
"children": [
|
|
168
204
|
{
|
|
@@ -178,20 +214,23 @@
|
|
|
178
214
|
]
|
|
179
215
|
},
|
|
180
216
|
{
|
|
217
|
+
"endDate": "2026-12-31",
|
|
181
218
|
"type": "date-range-selector",
|
|
182
219
|
"startDate": "2026-01-01",
|
|
183
|
-
"endDate": "2026-12-31",
|
|
184
220
|
"onSelect": "SELECT_DAY"
|
|
185
221
|
}
|
|
186
|
-
]
|
|
222
|
+
],
|
|
223
|
+
"justify": "space-between",
|
|
224
|
+
"type": "stack",
|
|
225
|
+
"align": "center"
|
|
187
226
|
},
|
|
188
227
|
{
|
|
189
228
|
"type": "divider"
|
|
190
229
|
},
|
|
191
230
|
{
|
|
231
|
+
"month": 3.0,
|
|
192
232
|
"type": "calendar-grid",
|
|
193
|
-
"
|
|
194
|
-
"year": 2026
|
|
233
|
+
"year": 2026.0
|
|
195
234
|
},
|
|
196
235
|
{
|
|
197
236
|
"type": "divider"
|
|
@@ -202,44 +241,45 @@
|
|
|
202
241
|
"content": "Upcoming Events"
|
|
203
242
|
},
|
|
204
243
|
{
|
|
205
|
-
"type": "data-list",
|
|
206
|
-
"entity": "CalendarEvent",
|
|
207
|
-
"emptyIcon": "calendar",
|
|
208
|
-
"emptyTitle": "No events",
|
|
209
244
|
"emptyDescription": "No events scheduled.",
|
|
210
245
|
"columns": [
|
|
211
246
|
{
|
|
212
|
-
"
|
|
213
|
-
"label": "Event",
|
|
247
|
+
"icon": "calendar",
|
|
214
248
|
"variant": "h4",
|
|
215
|
-
"
|
|
249
|
+
"label": "Event",
|
|
250
|
+
"name": "name"
|
|
216
251
|
},
|
|
217
252
|
{
|
|
218
|
-
"name": "time",
|
|
219
253
|
"label": "Time",
|
|
254
|
+
"name": "time",
|
|
220
255
|
"variant": "badge"
|
|
221
256
|
},
|
|
222
257
|
{
|
|
223
258
|
"name": "date",
|
|
224
|
-
"
|
|
259
|
+
"format": "date",
|
|
225
260
|
"variant": "caption",
|
|
226
|
-
"
|
|
261
|
+
"label": "Date"
|
|
227
262
|
},
|
|
228
263
|
{
|
|
229
|
-
"name": "status",
|
|
230
264
|
"label": "Status",
|
|
231
|
-
"variant": "badge"
|
|
265
|
+
"variant": "badge",
|
|
266
|
+
"name": "status"
|
|
232
267
|
}
|
|
233
268
|
],
|
|
234
269
|
"itemActions": [
|
|
235
270
|
{
|
|
236
|
-
"
|
|
271
|
+
"icon": "eye",
|
|
237
272
|
"event": "SELECT_DAY",
|
|
238
|
-
"
|
|
273
|
+
"label": "View"
|
|
239
274
|
}
|
|
240
|
-
]
|
|
275
|
+
],
|
|
276
|
+
"emptyIcon": "calendar",
|
|
277
|
+
"emptyTitle": "No events",
|
|
278
|
+
"type": "data-list",
|
|
279
|
+
"entity": "CalendarEvent"
|
|
241
280
|
}
|
|
242
|
-
]
|
|
281
|
+
],
|
|
282
|
+
"direction": "vertical"
|
|
243
283
|
}
|
|
244
284
|
]
|
|
245
285
|
]
|
|
@@ -251,74 +291,74 @@
|
|
|
251
291
|
"effects": [
|
|
252
292
|
[
|
|
253
293
|
"fetch",
|
|
254
|
-
"CalendarEvent"
|
|
294
|
+
"CalendarEvent",
|
|
295
|
+
{
|
|
296
|
+
"emit": {
|
|
297
|
+
"failure": "CalendarEventLoadFailed",
|
|
298
|
+
"success": "CalendarEventLoaded"
|
|
299
|
+
}
|
|
300
|
+
}
|
|
255
301
|
],
|
|
256
302
|
[
|
|
257
303
|
"render-ui",
|
|
258
304
|
"main",
|
|
259
305
|
{
|
|
260
|
-
"type": "stack",
|
|
261
306
|
"direction": "vertical",
|
|
262
|
-
"gap": "lg",
|
|
263
307
|
"children": [
|
|
264
308
|
{
|
|
265
|
-
"type": "stack",
|
|
266
|
-
"direction": "horizontal",
|
|
267
|
-
"gap": "md",
|
|
268
309
|
"justify": "space-between",
|
|
269
|
-
"align": "center",
|
|
270
310
|
"children": [
|
|
271
311
|
{
|
|
272
|
-
"type": "stack",
|
|
273
|
-
"direction": "horizontal",
|
|
274
|
-
"gap": "sm",
|
|
275
|
-
"align": "center",
|
|
276
312
|
"children": [
|
|
277
313
|
{
|
|
314
|
+
"size": "lg",
|
|
278
315
|
"type": "icon",
|
|
279
|
-
"name": "clock"
|
|
280
|
-
"size": "lg"
|
|
316
|
+
"name": "clock"
|
|
281
317
|
},
|
|
282
318
|
{
|
|
283
|
-
"type": "typography",
|
|
284
319
|
"content": "Day View",
|
|
285
|
-
"variant": "h2"
|
|
320
|
+
"variant": "h2",
|
|
321
|
+
"type": "typography"
|
|
286
322
|
}
|
|
287
|
-
]
|
|
323
|
+
],
|
|
324
|
+
"type": "stack",
|
|
325
|
+
"direction": "horizontal",
|
|
326
|
+
"align": "center",
|
|
327
|
+
"gap": "sm"
|
|
288
328
|
},
|
|
289
329
|
{
|
|
290
|
-
"
|
|
291
|
-
"label": "Back to Month",
|
|
330
|
+
"icon": "arrow-left",
|
|
292
331
|
"event": "BACK",
|
|
293
|
-
"
|
|
294
|
-
"
|
|
332
|
+
"label": "Back to Month",
|
|
333
|
+
"type": "button",
|
|
334
|
+
"variant": "ghost"
|
|
295
335
|
}
|
|
296
|
-
]
|
|
336
|
+
],
|
|
337
|
+
"direction": "horizontal",
|
|
338
|
+
"type": "stack",
|
|
339
|
+
"align": "center",
|
|
340
|
+
"gap": "md"
|
|
297
341
|
},
|
|
298
342
|
{
|
|
299
343
|
"type": "divider"
|
|
300
344
|
},
|
|
301
345
|
{
|
|
302
|
-
"type": "typography",
|
|
303
346
|
"variant": "h4",
|
|
347
|
+
"type": "typography",
|
|
304
348
|
"content": "Events for Selected Day"
|
|
305
349
|
},
|
|
306
350
|
{
|
|
307
|
-
"type": "data-grid",
|
|
308
|
-
"entity": "CalendarEvent",
|
|
309
351
|
"emptyIcon": "calendar",
|
|
310
|
-
"emptyTitle": "No events today",
|
|
311
|
-
"emptyDescription": "Select a time slot to add an event.",
|
|
312
352
|
"columns": [
|
|
313
353
|
{
|
|
314
|
-
"
|
|
354
|
+
"icon": "clock",
|
|
315
355
|
"label": "Event",
|
|
316
|
-
"
|
|
317
|
-
"
|
|
356
|
+
"name": "name",
|
|
357
|
+
"variant": "h4"
|
|
318
358
|
},
|
|
319
359
|
{
|
|
320
|
-
"name": "time",
|
|
321
360
|
"label": "Time",
|
|
361
|
+
"name": "time",
|
|
322
362
|
"variant": "badge"
|
|
323
363
|
},
|
|
324
364
|
{
|
|
@@ -327,15 +367,21 @@
|
|
|
327
367
|
"variant": "badge"
|
|
328
368
|
}
|
|
329
369
|
],
|
|
370
|
+
"emptyDescription": "Select a time slot to add an event.",
|
|
330
371
|
"itemActions": [
|
|
331
372
|
{
|
|
332
|
-
"
|
|
373
|
+
"icon": "check",
|
|
333
374
|
"event": "SELECT_SLOT",
|
|
334
|
-
"
|
|
375
|
+
"label": "Select"
|
|
335
376
|
}
|
|
336
|
-
]
|
|
377
|
+
],
|
|
378
|
+
"entity": "CalendarEvent",
|
|
379
|
+
"type": "data-grid",
|
|
380
|
+
"emptyTitle": "No events today"
|
|
337
381
|
}
|
|
338
|
-
]
|
|
382
|
+
],
|
|
383
|
+
"gap": "lg",
|
|
384
|
+
"type": "stack"
|
|
339
385
|
}
|
|
340
386
|
]
|
|
341
387
|
]
|
|
@@ -354,62 +400,59 @@
|
|
|
354
400
|
"render-ui",
|
|
355
401
|
"main",
|
|
356
402
|
{
|
|
357
|
-
"type": "stack",
|
|
358
403
|
"direction": "vertical",
|
|
359
|
-
"gap": "lg",
|
|
360
404
|
"children": [
|
|
361
405
|
{
|
|
362
406
|
"type": "stack",
|
|
363
|
-
"direction": "horizontal",
|
|
364
|
-
"gap": "md",
|
|
365
|
-
"justify": "space-between",
|
|
366
|
-
"align": "center",
|
|
367
407
|
"children": [
|
|
368
408
|
{
|
|
369
409
|
"type": "stack",
|
|
370
|
-
"direction": "horizontal",
|
|
371
410
|
"gap": "sm",
|
|
372
|
-
"align": "center",
|
|
373
411
|
"children": [
|
|
374
412
|
{
|
|
413
|
+
"size": "lg",
|
|
375
414
|
"type": "icon",
|
|
376
|
-
"name": "clock"
|
|
377
|
-
"size": "lg"
|
|
415
|
+
"name": "clock"
|
|
378
416
|
},
|
|
379
417
|
{
|
|
380
418
|
"type": "typography",
|
|
381
419
|
"content": "Day View",
|
|
382
420
|
"variant": "h2"
|
|
383
421
|
}
|
|
384
|
-
]
|
|
422
|
+
],
|
|
423
|
+
"direction": "horizontal",
|
|
424
|
+
"align": "center"
|
|
385
425
|
},
|
|
386
426
|
{
|
|
427
|
+
"icon": "arrow-left",
|
|
428
|
+
"event": "BACK",
|
|
387
429
|
"type": "button",
|
|
388
430
|
"label": "Back to Month",
|
|
389
|
-
"
|
|
390
|
-
"variant": "ghost",
|
|
391
|
-
"icon": "arrow-left"
|
|
431
|
+
"variant": "ghost"
|
|
392
432
|
}
|
|
393
|
-
]
|
|
433
|
+
],
|
|
434
|
+
"gap": "md",
|
|
435
|
+
"justify": "space-between",
|
|
436
|
+
"align": "center",
|
|
437
|
+
"direction": "horizontal"
|
|
394
438
|
},
|
|
395
439
|
{
|
|
396
440
|
"type": "divider"
|
|
397
441
|
},
|
|
398
442
|
{
|
|
399
443
|
"type": "typography",
|
|
400
|
-
"
|
|
401
|
-
"
|
|
444
|
+
"content": "Events for Selected Day",
|
|
445
|
+
"variant": "h4"
|
|
402
446
|
},
|
|
403
447
|
{
|
|
448
|
+
"emptyTitle": "No events today",
|
|
404
449
|
"type": "data-grid",
|
|
405
450
|
"entity": "CalendarEvent",
|
|
406
|
-
"emptyIcon": "calendar",
|
|
407
|
-
"emptyTitle": "No events today",
|
|
408
451
|
"emptyDescription": "Select a time slot to add an event.",
|
|
409
452
|
"columns": [
|
|
410
453
|
{
|
|
411
|
-
"name": "name",
|
|
412
454
|
"label": "Event",
|
|
455
|
+
"name": "name",
|
|
413
456
|
"variant": "h4",
|
|
414
457
|
"icon": "clock"
|
|
415
458
|
},
|
|
@@ -420,19 +463,22 @@
|
|
|
420
463
|
},
|
|
421
464
|
{
|
|
422
465
|
"name": "status",
|
|
423
|
-
"
|
|
424
|
-
"
|
|
466
|
+
"variant": "badge",
|
|
467
|
+
"label": "Status"
|
|
425
468
|
}
|
|
426
469
|
],
|
|
470
|
+
"emptyIcon": "calendar",
|
|
427
471
|
"itemActions": [
|
|
428
472
|
{
|
|
429
|
-
"label": "Select",
|
|
430
473
|
"event": "SELECT_SLOT",
|
|
431
|
-
"icon": "check"
|
|
474
|
+
"icon": "check",
|
|
475
|
+
"label": "Select"
|
|
432
476
|
}
|
|
433
477
|
]
|
|
434
478
|
}
|
|
435
|
-
]
|
|
479
|
+
],
|
|
480
|
+
"gap": "lg",
|
|
481
|
+
"type": "stack"
|
|
436
482
|
}
|
|
437
483
|
]
|
|
438
484
|
]
|
|
@@ -444,104 +490,110 @@
|
|
|
444
490
|
"effects": [
|
|
445
491
|
[
|
|
446
492
|
"fetch",
|
|
447
|
-
"CalendarEvent"
|
|
493
|
+
"CalendarEvent",
|
|
494
|
+
{
|
|
495
|
+
"emit": {
|
|
496
|
+
"failure": "CalendarEventLoadFailed",
|
|
497
|
+
"success": "CalendarEventLoaded"
|
|
498
|
+
}
|
|
499
|
+
}
|
|
448
500
|
],
|
|
449
501
|
[
|
|
450
502
|
"render-ui",
|
|
451
503
|
"main",
|
|
452
504
|
{
|
|
453
|
-
"type": "stack",
|
|
454
505
|
"direction": "vertical",
|
|
455
|
-
"gap": "lg",
|
|
456
506
|
"children": [
|
|
457
507
|
{
|
|
458
508
|
"type": "stack",
|
|
459
|
-
"direction": "horizontal",
|
|
460
|
-
"gap": "md",
|
|
461
509
|
"justify": "space-between",
|
|
462
|
-
"
|
|
510
|
+
"gap": "md",
|
|
463
511
|
"children": [
|
|
464
512
|
{
|
|
465
|
-
"type": "stack",
|
|
466
|
-
"direction": "horizontal",
|
|
467
|
-
"gap": "sm",
|
|
468
|
-
"align": "center",
|
|
469
513
|
"children": [
|
|
470
514
|
{
|
|
515
|
+
"size": "lg",
|
|
471
516
|
"type": "icon",
|
|
472
|
-
"name": "calendar"
|
|
473
|
-
"size": "lg"
|
|
517
|
+
"name": "calendar"
|
|
474
518
|
},
|
|
475
519
|
{
|
|
476
|
-
"type": "typography",
|
|
477
520
|
"content": "CalendarEvents Calendar",
|
|
521
|
+
"type": "typography",
|
|
478
522
|
"variant": "h2"
|
|
479
523
|
}
|
|
480
|
-
]
|
|
524
|
+
],
|
|
525
|
+
"align": "center",
|
|
526
|
+
"direction": "horizontal",
|
|
527
|
+
"gap": "sm",
|
|
528
|
+
"type": "stack"
|
|
481
529
|
},
|
|
482
530
|
{
|
|
483
|
-
"
|
|
484
|
-
"startDate": "2026-01-01",
|
|
531
|
+
"onSelect": "SELECT_DAY",
|
|
485
532
|
"endDate": "2026-12-31",
|
|
486
|
-
"
|
|
533
|
+
"startDate": "2026-01-01",
|
|
534
|
+
"type": "date-range-selector"
|
|
487
535
|
}
|
|
488
|
-
]
|
|
536
|
+
],
|
|
537
|
+
"direction": "horizontal",
|
|
538
|
+
"align": "center"
|
|
489
539
|
},
|
|
490
540
|
{
|
|
491
541
|
"type": "divider"
|
|
492
542
|
},
|
|
493
543
|
{
|
|
494
544
|
"type": "calendar-grid",
|
|
495
|
-
"month": 3,
|
|
496
|
-
"year": 2026
|
|
545
|
+
"month": 3.0,
|
|
546
|
+
"year": 2026.0
|
|
497
547
|
},
|
|
498
548
|
{
|
|
499
549
|
"type": "divider"
|
|
500
550
|
},
|
|
501
551
|
{
|
|
502
|
-
"type": "typography",
|
|
503
552
|
"variant": "h4",
|
|
553
|
+
"type": "typography",
|
|
504
554
|
"content": "Upcoming Events"
|
|
505
555
|
},
|
|
506
556
|
{
|
|
557
|
+
"itemActions": [
|
|
558
|
+
{
|
|
559
|
+
"label": "View",
|
|
560
|
+
"event": "SELECT_DAY",
|
|
561
|
+
"icon": "eye"
|
|
562
|
+
}
|
|
563
|
+
],
|
|
507
564
|
"type": "data-list",
|
|
508
565
|
"entity": "CalendarEvent",
|
|
509
|
-
"emptyIcon": "calendar",
|
|
510
566
|
"emptyTitle": "No events",
|
|
511
|
-
"emptyDescription": "No events scheduled.",
|
|
512
567
|
"columns": [
|
|
513
568
|
{
|
|
514
569
|
"name": "name",
|
|
515
570
|
"label": "Event",
|
|
516
|
-
"
|
|
517
|
-
"
|
|
571
|
+
"icon": "calendar",
|
|
572
|
+
"variant": "h4"
|
|
518
573
|
},
|
|
519
574
|
{
|
|
520
|
-
"
|
|
575
|
+
"variant": "badge",
|
|
521
576
|
"label": "Time",
|
|
522
|
-
"
|
|
577
|
+
"name": "time"
|
|
523
578
|
},
|
|
524
579
|
{
|
|
525
580
|
"name": "date",
|
|
526
581
|
"label": "Date",
|
|
527
|
-
"
|
|
528
|
-
"
|
|
582
|
+
"format": "date",
|
|
583
|
+
"variant": "caption"
|
|
529
584
|
},
|
|
530
585
|
{
|
|
531
|
-
"
|
|
586
|
+
"variant": "badge",
|
|
532
587
|
"label": "Status",
|
|
533
|
-
"
|
|
588
|
+
"name": "status"
|
|
534
589
|
}
|
|
535
590
|
],
|
|
536
|
-
"
|
|
537
|
-
|
|
538
|
-
"label": "View",
|
|
539
|
-
"event": "SELECT_DAY",
|
|
540
|
-
"icon": "eye"
|
|
541
|
-
}
|
|
542
|
-
]
|
|
591
|
+
"emptyIcon": "calendar",
|
|
592
|
+
"emptyDescription": "No events scheduled."
|
|
543
593
|
}
|
|
544
|
-
]
|
|
594
|
+
],
|
|
595
|
+
"type": "stack",
|
|
596
|
+
"gap": "lg"
|
|
545
597
|
}
|
|
546
598
|
]
|
|
547
599
|
]
|
|
@@ -553,28 +605,29 @@
|
|
|
553
605
|
"effects": [
|
|
554
606
|
[
|
|
555
607
|
"fetch",
|
|
556
|
-
"CalendarEvent"
|
|
608
|
+
"CalendarEvent",
|
|
609
|
+
{
|
|
610
|
+
"emit": {
|
|
611
|
+
"failure": "CalendarEventLoadFailed",
|
|
612
|
+
"success": "CalendarEventLoaded"
|
|
613
|
+
}
|
|
614
|
+
}
|
|
557
615
|
],
|
|
558
616
|
[
|
|
559
617
|
"render-ui",
|
|
560
618
|
"main",
|
|
561
619
|
{
|
|
562
|
-
"type": "stack",
|
|
563
620
|
"direction": "vertical",
|
|
621
|
+
"type": "stack",
|
|
564
622
|
"gap": "lg",
|
|
565
623
|
"children": [
|
|
566
624
|
{
|
|
567
625
|
"type": "stack",
|
|
568
|
-
"direction": "horizontal",
|
|
569
626
|
"gap": "md",
|
|
570
|
-
"justify": "space-between",
|
|
571
627
|
"align": "center",
|
|
628
|
+
"justify": "space-between",
|
|
572
629
|
"children": [
|
|
573
630
|
{
|
|
574
|
-
"type": "stack",
|
|
575
|
-
"direction": "horizontal",
|
|
576
|
-
"gap": "sm",
|
|
577
|
-
"align": "center",
|
|
578
631
|
"children": [
|
|
579
632
|
{
|
|
580
633
|
"type": "icon",
|
|
@@ -582,73 +635,78 @@
|
|
|
582
635
|
"size": "lg"
|
|
583
636
|
},
|
|
584
637
|
{
|
|
585
|
-
"type": "typography",
|
|
586
638
|
"content": "CalendarEvents Calendar",
|
|
587
|
-
"variant": "h2"
|
|
639
|
+
"variant": "h2",
|
|
640
|
+
"type": "typography"
|
|
588
641
|
}
|
|
589
|
-
]
|
|
642
|
+
],
|
|
643
|
+
"gap": "sm",
|
|
644
|
+
"direction": "horizontal",
|
|
645
|
+
"type": "stack",
|
|
646
|
+
"align": "center"
|
|
590
647
|
},
|
|
591
648
|
{
|
|
649
|
+
"onSelect": "SELECT_DAY",
|
|
592
650
|
"type": "date-range-selector",
|
|
593
651
|
"startDate": "2026-01-01",
|
|
594
|
-
"endDate": "2026-12-31"
|
|
595
|
-
"onSelect": "SELECT_DAY"
|
|
652
|
+
"endDate": "2026-12-31"
|
|
596
653
|
}
|
|
597
|
-
]
|
|
654
|
+
],
|
|
655
|
+
"direction": "horizontal"
|
|
598
656
|
},
|
|
599
657
|
{
|
|
600
658
|
"type": "divider"
|
|
601
659
|
},
|
|
602
660
|
{
|
|
661
|
+
"year": 2026.0,
|
|
603
662
|
"type": "calendar-grid",
|
|
604
|
-
"month": 3
|
|
605
|
-
"year": 2026
|
|
663
|
+
"month": 3.0
|
|
606
664
|
},
|
|
607
665
|
{
|
|
608
666
|
"type": "divider"
|
|
609
667
|
},
|
|
610
668
|
{
|
|
611
|
-
"type": "typography",
|
|
612
669
|
"variant": "h4",
|
|
670
|
+
"type": "typography",
|
|
613
671
|
"content": "Upcoming Events"
|
|
614
672
|
},
|
|
615
673
|
{
|
|
616
|
-
"type": "data-list",
|
|
617
|
-
"entity": "CalendarEvent",
|
|
618
674
|
"emptyIcon": "calendar",
|
|
619
|
-
"emptyTitle": "No events",
|
|
620
|
-
"emptyDescription": "No events scheduled.",
|
|
621
675
|
"columns": [
|
|
622
676
|
{
|
|
623
|
-
"name": "name",
|
|
624
677
|
"label": "Event",
|
|
625
|
-
"
|
|
626
|
-
"
|
|
678
|
+
"icon": "calendar",
|
|
679
|
+
"name": "name",
|
|
680
|
+
"variant": "h4"
|
|
627
681
|
},
|
|
628
682
|
{
|
|
629
|
-
"name": "time",
|
|
630
683
|
"label": "Time",
|
|
684
|
+
"name": "time",
|
|
631
685
|
"variant": "badge"
|
|
632
686
|
},
|
|
633
687
|
{
|
|
634
|
-
"name": "date",
|
|
635
688
|
"label": "Date",
|
|
689
|
+
"format": "date",
|
|
636
690
|
"variant": "caption",
|
|
637
|
-
"
|
|
691
|
+
"name": "date"
|
|
638
692
|
},
|
|
639
693
|
{
|
|
640
|
-
"name": "status",
|
|
641
694
|
"label": "Status",
|
|
642
|
-
"variant": "badge"
|
|
695
|
+
"variant": "badge",
|
|
696
|
+
"name": "status"
|
|
643
697
|
}
|
|
644
698
|
],
|
|
699
|
+
"emptyDescription": "No events scheduled.",
|
|
645
700
|
"itemActions": [
|
|
646
701
|
{
|
|
647
|
-
"label": "View",
|
|
648
702
|
"event": "SELECT_DAY",
|
|
649
|
-
"icon": "eye"
|
|
703
|
+
"icon": "eye",
|
|
704
|
+
"label": "View"
|
|
650
705
|
}
|
|
651
|
-
]
|
|
706
|
+
],
|
|
707
|
+
"type": "data-list",
|
|
708
|
+
"entity": "CalendarEvent",
|
|
709
|
+
"emptyTitle": "No events"
|
|
652
710
|
}
|
|
653
711
|
]
|
|
654
712
|
}
|
|
@@ -662,70 +720,72 @@
|
|
|
662
720
|
"effects": [
|
|
663
721
|
[
|
|
664
722
|
"fetch",
|
|
665
|
-
"CalendarEvent"
|
|
723
|
+
"CalendarEvent",
|
|
724
|
+
{
|
|
725
|
+
"emit": {
|
|
726
|
+
"success": "CalendarEventLoaded",
|
|
727
|
+
"failure": "CalendarEventLoadFailed"
|
|
728
|
+
}
|
|
729
|
+
}
|
|
666
730
|
],
|
|
667
731
|
[
|
|
668
732
|
"render-ui",
|
|
669
733
|
"main",
|
|
670
734
|
{
|
|
671
735
|
"type": "stack",
|
|
672
|
-
"direction": "vertical",
|
|
673
736
|
"gap": "lg",
|
|
674
737
|
"children": [
|
|
675
738
|
{
|
|
676
|
-
"type": "stack",
|
|
677
|
-
"direction": "horizontal",
|
|
678
|
-
"gap": "md",
|
|
679
739
|
"justify": "space-between",
|
|
680
740
|
"align": "center",
|
|
741
|
+
"gap": "md",
|
|
742
|
+
"direction": "horizontal",
|
|
681
743
|
"children": [
|
|
682
744
|
{
|
|
683
|
-
"type": "stack",
|
|
684
745
|
"direction": "horizontal",
|
|
685
746
|
"gap": "sm",
|
|
747
|
+
"type": "stack",
|
|
686
748
|
"align": "center",
|
|
687
749
|
"children": [
|
|
688
750
|
{
|
|
689
|
-
"
|
|
751
|
+
"size": "lg",
|
|
690
752
|
"name": "clock",
|
|
691
|
-
"
|
|
753
|
+
"type": "icon"
|
|
692
754
|
},
|
|
693
755
|
{
|
|
694
|
-
"
|
|
756
|
+
"variant": "h2",
|
|
695
757
|
"content": "Day View",
|
|
696
|
-
"
|
|
758
|
+
"type": "typography"
|
|
697
759
|
}
|
|
698
760
|
]
|
|
699
761
|
},
|
|
700
762
|
{
|
|
763
|
+
"variant": "ghost",
|
|
701
764
|
"type": "button",
|
|
702
|
-
"label": "Back to Month",
|
|
703
765
|
"event": "BACK",
|
|
704
|
-
"
|
|
766
|
+
"label": "Back to Month",
|
|
705
767
|
"icon": "arrow-left"
|
|
706
768
|
}
|
|
707
|
-
]
|
|
769
|
+
],
|
|
770
|
+
"type": "stack"
|
|
708
771
|
},
|
|
709
772
|
{
|
|
710
773
|
"type": "divider"
|
|
711
774
|
},
|
|
712
775
|
{
|
|
776
|
+
"content": "Events for Selected Day",
|
|
713
777
|
"type": "typography",
|
|
714
|
-
"variant": "h4"
|
|
715
|
-
"content": "Events for Selected Day"
|
|
778
|
+
"variant": "h4"
|
|
716
779
|
},
|
|
717
780
|
{
|
|
718
|
-
"type": "data-grid",
|
|
719
|
-
"entity": "CalendarEvent",
|
|
720
|
-
"emptyIcon": "calendar",
|
|
721
781
|
"emptyTitle": "No events today",
|
|
722
782
|
"emptyDescription": "Select a time slot to add an event.",
|
|
723
783
|
"columns": [
|
|
724
784
|
{
|
|
725
|
-
"name": "name",
|
|
726
785
|
"label": "Event",
|
|
727
786
|
"variant": "h4",
|
|
728
|
-
"icon": "clock"
|
|
787
|
+
"icon": "clock",
|
|
788
|
+
"name": "name"
|
|
729
789
|
},
|
|
730
790
|
{
|
|
731
791
|
"name": "time",
|
|
@@ -738,21 +798,26 @@
|
|
|
738
798
|
"variant": "badge"
|
|
739
799
|
}
|
|
740
800
|
],
|
|
801
|
+
"type": "data-grid",
|
|
802
|
+
"entity": "CalendarEvent",
|
|
741
803
|
"itemActions": [
|
|
742
804
|
{
|
|
743
805
|
"label": "Select",
|
|
744
806
|
"event": "SELECT_SLOT",
|
|
745
807
|
"icon": "check"
|
|
746
808
|
}
|
|
747
|
-
]
|
|
809
|
+
],
|
|
810
|
+
"emptyIcon": "calendar"
|
|
748
811
|
}
|
|
749
|
-
]
|
|
812
|
+
],
|
|
813
|
+
"direction": "vertical"
|
|
750
814
|
}
|
|
751
815
|
]
|
|
752
816
|
]
|
|
753
817
|
}
|
|
754
818
|
]
|
|
755
|
-
}
|
|
819
|
+
},
|
|
820
|
+
"scope": "collection"
|
|
756
821
|
}
|
|
757
822
|
],
|
|
758
823
|
"pages": [
|
|
@@ -768,4 +833,4 @@
|
|
|
768
833
|
]
|
|
769
834
|
}
|
|
770
835
|
]
|
|
771
|
-
}
|
|
836
|
+
}
|