npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@rozie-ui/fullcalendar-vue

v0.1.1

Published

Idiomatic Vue calendar/scheduler — one Rozie source compiled to Vue wrapping FullCalendar.

Readme

@rozie-ui/fullcalendar-vue

Idiomatic vue FullCalendar — a cross-framework calendar/scheduler compiled from one Rozie source wrapping FullCalendar. This package is generated; do not edit src/ by hand.

Install

npm i @rozie-ui/fullcalendar-vue

Peer dependencies: the four @fullcalendar/* engine packages (@fullcalendar/core, @fullcalendar/daygrid, @fullcalendar/timegrid, @fullcalendar/interaction, all ^6.1) + vue. Install them alongside this package. FullCalendar v6 auto-injects its own stylesheet — there is no manual CSS import to add.

Usage

<script setup lang="ts">
import { ref } from 'vue';
import FullCalendar from '@rozie-ui/fullcalendar-vue';

const view = ref('dayGridMonth');
const events = ref([{ id: '1', title: 'Kickoff', start: '2026-06-04' }]);
</script>

<template>
  <FullCalendar v-model:view="view" :events="events" @eventClick="(e) => console.log(e.event, e.view)" />
</template>

Props

| Name | Type | Default | Two-way (model) | Required | | --- | --- | --- | :---: | :---: | | events | Array | [] | | | | view | String | "dayGridMonth" | ✓ | | | weekends | Boolean | true | | | | editable | Boolean | true | | | | selectable | Boolean | true | | | | height | Number | 480 | | | | defaultColor | String | "#3b82f6" | | | | locale | String | "en" | | | | firstDay | Number | 0 | | | | slotDuration | String | "00:30:00" | | | | nowIndicator | Boolean | false | | | | headerToolbar | Object | {…} | | | | options | Object | {} | | |

Events

| Event | Description | | --- | --- | | eventClick | Fired when a calendar event is clicked. Payload { event: { id, title, start, end }, jsEvent, view }. | | dateClick | Fired when an empty date/time cell is clicked. Payload { date, dateStr, allDay, view }. | | eventDrop | Fired after an event is dragged to a new date/time. Payload { event: { id, title, start, end }, delta }. | | select | Fired when a date/time range is selected by drag (requires selectable). Payload { start, end, startStr, endStr, allDay }. | | eventResize | Fired after an event is resized by dragging its edge (requires editable). Payload { event: { id, title, start, end }, startDelta, endDelta }. | | datesSet | Fired whenever the visible date range changes (navigation or view switch). Payload { start, end, view } where view is the active view type string. | | eventMouseEnter | Fired when the pointer enters a calendar event. Payload { event: { id, title, start, end }, jsEvent } (mirrors eventClick). | | eventMouseLeave | Fired when the pointer leaves a calendar event. Payload { event: { id, title, start, end }, jsEvent } (mirrors eventMouseEnter). | | unselect | Fired when a previously selected date/time range is cleared. Payload { jsEvent }. | | loading | Fired when the calendar begins or finishes loading events (e.g. from an event source). Payload { isLoading } boolean. | | eventsSet | Fired after the set of rendered events changes. Payload { events: [{ id, title, start, end }, …] } — the normalized current event set, for persistence/sync consumers. |

Imperative handle

Beyond props/events, the component exposes imperative methods (declared once in the Rozie source via $expose). Grab a handle with the native ref mechanism and call them directly:

<script setup>
import { ref } from 'vue';
const cal = ref();          // template ref
</script>

<template>
  <FullCalendar ref="cal" />
  <button @click="cal.next()">Next</button>
</template>

| Method | Description | | --- | --- | | getApi | Return the underlying FullCalendar Calendar instance for direct API access. | | changeView | Switch the active view — changeView(viewName, dateOrRange?). | | addEvent | Add an event — addEvent(eventInput, source?). | | removeEvent | Remove an event by id — removeEvent(id). | | today | Navigate to today. | | prev | Navigate to the previous date range. | | next | Navigate to the next date range. | | gotoDate | Navigate to a specific date — gotoDate(date). | | getDate | Return the calendar’s current anchor Date (the view model carries only the view type). null before mount. | | getEvents | Return all current events as an EventApi[] (synchronous read; eventsSet is push-only). [] before mount. | | scrollToTime | Scroll a timeGrid view to a time of day — scrollToTime(duration) (e.g. "09:00"). | | updateSize | Force a relayout after the container resized outside FullCalendar’s knowledge (tab reveal, sidebar collapse). | | prevYear | Navigate to the previous year. | | nextYear | Navigate to the next year. | | selectRange | Programmatically select a date/time range — selectRange(dateOrObj, endDate?) (CalendarApi.select). | | clearSelection | Clear the current selection (CalendarApi.unselect). |

Slots

| Slot | Params | | --- | --- | | event | arg | | dayCell | arg | | dayHeader | arg | | slotLabel | arg | | weekNumber | arg | | nowIndicatorContent | arg | | moreLink | arg | | allDayContent | arg | | slotLaneContent | arg | | noEventsContent | arg |