feat: run persisted monthly events

This commit is contained in:
2026-07-25 08:23:59 +00:00
parent 88afcb5465
commit fb1074c5e8
10 changed files with 494 additions and 35 deletions
@@ -8,6 +8,11 @@ export const composeCalendarHandlers = (
return undefined;
}
return {
beforeMonthChanged: (context) => {
for (const handler of resolved) {
handler.beforeMonthChanged?.(context);
}
},
onMonthChanged: (context) => {
for (const handler of resolved) {
handler.onMonthChanged?.(context);