ObjectUIObjectUI

Plugin Calendar View

Merged into Plugin Calendar

The @object-ui/plugin-calendar-view package has been merged into @object-ui/plugin-calendar.

Please use @object-ui/plugin-calendar instead, which now includes both the CalendarView component and the ObjectCalendar component.

See the Plugin Calendar documentation for details.

Migration Guide

Before (plugin-calendar-view)

npm install @object-ui/plugin-calendar-view
import '@object-ui/plugin-calendar-view'

// Or direct import
import { CalendarView } from '@object-ui/plugin-calendar-view'

After (plugin-calendar)

npm install @object-ui/plugin-calendar
import '@object-ui/plugin-calendar'

// Or direct import
import { CalendarView } from '@object-ui/plugin-calendar'

What Changed?

  • The CalendarView component is now exported from @object-ui/plugin-calendar
  • The calendar-view schema type is still registered and works the same way
  • All functionality remains the same - just the package name changed

For full documentation, see Plugin Calendar.

On this page