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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@arjentienkamp/ngx-mat-calendar

v0.0.54

Published

This component displays a calendar in your Angular (Material) project.

Downloads

109

Readme

Angular Calendar Component

This component displays a calendar in your Angular (Material) project.

Demo

Live demo

Features

  • Display a day/week/month calendar with your events
  • Navigate between days/weeks/months, jump to today
  • Use a custom component for rendering events
  • Uses colors of your Material theme
  • Keyboard shortcuts
  • Call a function on event click
  • Call a function on add button click

Requirements

  • Angular 13+ (tested on Angular 13) + Angular Material + Typescript
  • Angular Material Theme within your app (https://material.angular.io)

Installation and minimal setup

npm install @arjentienkamp/ngx-mat-calendar

Import the module:

@NgModule({
    imports: [
        NgxMatCalendarModule
    ]
})

Include the global SCSS file in your Angular app:

@import '../node_modules/@arjentienkamp/ngx-mat-calendar/src/lib/styles/_styles.scss';

Material basics

If you have not done this already, make sure to include the styles from Angular Material to your app's stylesheet, and also include the Roboto and Material Icons fonts in your app's index.html (alternatively, read how to setup Angular Material in your project here):

<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">

Also make sure the <body> tag has the mat-typoghrapy class:

<body class="mat-typography">

Calendar setup

Initiate default options:

this.calendarOptions = new CalendarOptions();

Or, change default options:

this.calendarOptions = new CalendarOptions({
    enableAddEventButton: false,
    view: WEEK
    // see CalendarOptions class for full list of options
});

Add the component to the template:

<ngx-mat-calendar
    [options]="calendarOptions"
    [events]="events"
    [selectedDate]="date"
    (eventClick)="handleEventClick($event)"
    (dateChange)="handleDateChange($event)"
    (addButtonClick)="handleAddButtonClick()">
</ngx-mat-calendar>

Inputs

| Property | Description | Type | Required | |-----------------|-----------------------------------------------------|---------------------------------|----------| | options | options have to be passed here | CalendarOptions | true | | events | array of events (i.e from API or other datasource) | CalendarEvent[] | true | | selectedDate | the date for initiating the calendar | Date | true |

Outputs

| Property | Description | Type | |-----------------|-----------------------------------------------------|-------------------------------| | eventClick | emits when event is clicked | EventEmitter<CalendarEvent> | | dateChange | emits on date change | EventEmitter<Date> | | addButtonClick | emits on add button click | EventEmitter<any> |

Todo

  • Unit tests
  • CalendarEvent class extendable for custom render component
  • Localization
  • Responsive

NPM package

NPM

Changelog

Changelog

License

GNU General Public License - Arjen Tienkamp