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

@iqx-limited/angular-calendar

v0.0.7

Published

A lightweight and elegant Angular calendar component built with Preact and Tailwind CSS.

Readme

Angular Calendar

A lightweight and elegant Angular calendar component built with Preact and Tailwind CSS. This project was originally forked from:

https://github.com/dayflow-js/calendar

Overview

Angular Calendar provides an easily integratable, highly customizable calendar component designed with "standalone" Angular principles. This means you can import and use the component directly, without relying on complex NgModule hierarchies. Built with performance in mind using Preact for rendering, and styled effortlessly with Tailwind CSS.


Table of Contents


Features

  • 📅 Simple, elegant calendar UI
  • ⚡ Standalone component – no NgModule required
  • 🎨 Fully customizable via Tailwind CSS classes
  • 🚀 Fast and lightweight, powered by Preact under the hood
  • 🧩 Easy integration and configuration
  • 🅰️ Compatible with modern Angular (v21+ Standalone API)

Installation

Install via npm:

npm install @iqx-limited/angular-calendar

Peer dependencies required:

npm install preact tailwindcss

Usage

Basic Example

Import the standalone component and use it directly in your component:

import { CalendarComponent } from '@iqx-limited/angular-calendar';

// In your component metadata or routing config
@Component({
  standalone: true,
  imports: [CalendarComponent],
  ...
})
export class MyComponent { }
<!-- In your component template -->
<angular-calendar
  [selectedDate]="selectedDate"
  (dateChange)="onDateChange($event)">
</angular-calendar>

Customization

Override Tailwind classes or provide additional props to style and configure:

<angular-calendar
  [selectedDate]="selectedDate"
  calendarClass="bg-white rounded-lg shadow-md"
  [showWeekNumbers]="true">
</angular-calendar>

Angular Standalone Integration

Angular Calendar is built as a standalone component. To use it:

  1. No NgModule needed: Just import the component in your imports: [...] array of any other standalone component, feature, or route.

  2. Tree-shakable: Only pulls in what you use.

  3. Direct integration: Works seamlessly with Angular's new Standalone API.

Example integration:

import { CalendarComponent } from '@iqx-limited/angular-calendar';

@Component({
  standalone: true,
  selector: 'app-dashboard',
  imports: [CalendarComponent],
  template: `<angular-calendar></angular-calendar>`,
})
export class DashboardComponent {}

Angular Version Support

| Package Version | Angular Version | Standalone Support | |--------------------------------------|----------------------|-----------------------| | ^1.0.0 | >=21.0.0 | Partial (experimental)|

Note: For best results, use the latest version with Angular v21+ for optimal standalone and performance benefits.


Development Setup

  1. Clone the repository

    git clone https://github.com/mattfrank48/angular-calendar.git
    cd angular-calendar
  2. Install dependencies

    npm install
  3. Start the development server

    npm start
  4. Run tests

    npm test
  5. Build library

    npm run build

Contribution Guidelines

We welcome contributions! Please follow these steps:

  1. Fork the repository
  2. Create a new branch: git checkout -b feature/my-feature
  3. Make your changes and commit: git commit -am 'Add new feature'
  4. Push to your fork: git push origin feature/my-feature
  5. Open a pull request describing your changes

Adhere to the following code principles:

  • Write clear, maintainable code
  • Use Tailwind utility classes for styling
  • Keep components stateless when possible
  • Cover new code with tests

See CONTRIBUTING.md for more details.


License

This project is licensed under the MIT License.
See LICENSE for details.


Standalone-First Principles

  • No Angular modules required: Use components with minimal setup via the Standalone API.
  • Direct imports everywhere: Integrate the calendar in routes, components, or features without going through NgModules.
  • Tree-shakable and future proof: Designed for the new Angular ecosystem.

Questions?

Open an issue or contact the maintainer.