This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Triggered when an event is added to, removed from, or updated within the current event view. This includes cases when:
function onEventsViewProjectionUpdated(handler: function): void;
handler(event: EventsViewProjectionUpdatedEnvelope): void | Promise<void>
import { eventViews } from "@wix/calendar";
eventViews.onEventsViewProjectionUpdated((event) => {
// handle your event here
});