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

ngx-m3-calendar

v21.0.0

Published

A Material 3 calendar component for Angular with day, week, and month views

Downloads

372

Readme

ngx-m3-calendar

About

A drop-in calendar component built on Angular Material 3 design tokens. Fully standalone, signal-based, and ready for Angular 19+.

Features

  • Three views - Day, week, and month with smooth switching
  • Material 3 - Uses --mat-sys-* design tokens for theming
  • Time-positioned events - Events placed at correct times with proper duration heights
  • Overlap handling - Simultaneous events displayed side-by-side
  • Current time indicator - Live red line showing current time (updates every 30s)
  • Customizable labels - Override all text via labels input (i18n ready)
  • Configurable work hours - Set startHour / endHour for day/week grids
  • Event colors - Per-event color override via color property
  • Responsive - Adapts to smaller screens
  • Accessible - ARIA labels, keyboard navigation, screen reader friendly
  • Standalone - No modules, just import and use

Installation

npm install ngx-m3-calendar

Requires @angular/material >= 19 with a Material 3 theme configured.

Usage

import { MatCalendarComponent, CalendarEvent } from 'ngx-m3-calendar';

@Component({
  imports: [MatCalendarComponent],
  template: `
    <mc-calendar
      [events]="events"
      [viewMode]="'week'"
      (eventClicked)="onEvent($event)"
    />
  `,
})
export class MyComponent {
  events: CalendarEvent[] = [
    {
      title: 'Team standup',
      start: '2026-03-26T09:00:00',
      end: '2026-03-26T09:30:00',
    },
    {
      title: 'Lunch',
      start: '2026-03-26T12:00:00',
      end: '2026-03-26T13:00:00',
      color: '#e8f5e9',
    },
  ];

  onEvent(event: CalendarEvent) {
    console.log('Clicked:', event);
  }
}

Inputs

| Input | Type | Default | Description | |-------|------|---------|-------------| | events | CalendarEvent[] | [] | Events to display | | selectedDate | Date | new Date() | Focused date | | viewMode | 'day' \| 'week' \| 'month' | 'month' | Active view | | showViewToggle | boolean | true | Show day/week/month toggle | | labels | Partial<CalendarLabels> | English | Override button/label text | | startHour | number | 9 | First hour in day/week grid | | endHour | number | 18 | Last hour in day/week grid | | weekStartsOn | number | 1 (Mon) | 0 = Sunday, 1 = Monday | | darkMode | boolean | false | Adjusts custom event colors for dark themes |

Outputs

| Output | Type | Description | |--------|------|-------------| | eventClicked | CalendarEvent | Fired when an event is clicked | | dateSelected | Date | Fired on date navigation | | viewModeChanged | CalendarViewMode | Fired when view mode changes |

CalendarEvent Interface

interface CalendarEvent {
  id?: string | null;
  title: string;
  description?: string | null;
  start: string | Date;
  end?: string | Date | null;
  isAllDay?: boolean;
  color?: string | null;  // CSS color for this event
  data?: unknown;          // Attach any custom data
}

Localization

<mc-calendar
  [labels]="{
    today: 'Heute',
    day: 'Tag',
    week: 'Woche',
    month: 'Monat',
    allDay: 'Ganztags',
    noEvents: 'Keine Termine',
    weekdays: ['Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa', 'So']
  }"
/>

License

MIT