6 June 2026
⚠️ Breaking changes
Read before upgrading. This release contains a breaking API change to
onCellClick. If you useonCellClickor theCellClickInfotype, update your code as below.
- The
CellClickInfotype is renamed toCellInfo— update any import ofCellClickInfo. - The cell-info payload no longer has
resourceId; it now carries the fullresourceobject. Replaceinfo.resourceIdwithinfo.resource?.idin youronCellClickhandler. (#180)
Features
- feat: add
isCellDisabledprop — returntrueto disable a cell (blocks event-creation clicks, rejects drag-and-drop, grays it out); composes withbusinessHours. BothisCellDisabledandonCellClickreceive the fullresourceobject in resource calendars (#180) — Closes#79
Fixes
- fix: editing a recurring series with scope "all" now fully resets the series — clears EXDATEs and removes stale detached overrides, so a previously modified occurrence is no longer duplicated (Google Calendar behavior) (
#182) — Thanks @maxdelorme! — Closes#151