Merge plugin-calendar-view into plugin-calendar#218
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Merge plugin-calendar-view into plugin-calendar
Merge plugin-calendar-view into plugin-calendar
Jan 26, 2026
hotlong
approved these changes
Jan 26, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request consolidates the @object-ui/plugin-calendar-view package into @object-ui/plugin-calendar, creating a unified calendar plugin package that provides both standalone and ObjectQL-integrated calendar components.
Changes:
- Merged CalendarView component and calendar-view renderer from plugin-calendar-view into plugin-calendar
- Both schema types (
calendar-viewandobject-calendar) now registered from a single package - Removed the separate
@object-ui/plugin-calendar-viewpackage and all its files - Updated documentation with migration guides and comprehensive examples
- Fixed date manipulation bugs in CalendarView using proper Date cloning with
.getTime()
Reviewed changes
Copilot reviewed 13 out of 14 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| pnpm-lock.yaml | Removed plugin-calendar-view package dependency and updated lucide-react version |
| packages/plugin-calendar/src/index.tsx | Added exports for CalendarView component and types, imported calendar-view-renderer |
| packages/plugin-calendar/src/calendar-view-renderer.tsx | Fixed import path to use CalendarView directly instead of from index |
| packages/plugin-calendar/src/CalendarView.tsx | Fixed date mutation bugs using getTime() for proper cloning, removed renderer export |
| packages/plugin-calendar/package.json | Updated description to reflect merged functionality |
| packages/plugin-calendar-view/* | Deleted entire plugin-calendar-view package (vite.config.ts, tsconfig.json, package.json, README.md) |
| content/docs/plugins/plugin-calendar.mdx | Extensive updates with CalendarView documentation, examples, and migration guide |
| content/docs/plugins/plugin-calendar-view.mdx | Replaced with migration notice redirecting to plugin-calendar |
| content/docs/plugins/meta.json | Removed plugin-calendar-view from navigation |
| apps/site/package.json | Removed plugin-calendar-view dependency |
| apps/site/app/components/InteractiveDemo.tsx | Removed plugin-calendar-view import |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
Comment on lines
+119
to
+122
| ## ObjectCalendar Component | ||
|
|
||
| Calendar component designed for use with ObjectQL data sources. | ||
|
|
There was a problem hiding this comment.
Duplicate section headers detected. Lines 117 and 119 both have "## ObjectCalendar Component" heading. One of these duplicate headings should be removed to maintain proper document structure.
Suggested change
| ## ObjectCalendar Component | |
| Calendar component designed for use with ObjectQL data sources. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Consolidates two calendar packages into one. The
@object-ui/plugin-calendar-viewpackage is now part of@object-ui/plugin-calendar.Changes
Package Structure
CalendarViewcomponent andcalendar-viewrenderer intoplugin-calendarcalendar-viewandobject-calendar) now registered from single packagepackages/plugin-calendar-viewdirectoryExports
Dependencies
@object-ui/plugin-calendar-viewfrom site appMigration
No breaking changes to schema API or component props.
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.