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

@nikkaktus24/ion-range-calendar

v19.2.3

Published

ion-range-calendar is an Ionic Angular range calendar with slots functionality

Readme

Ion Range Calendar

NPM version MIT License

Note: This package adds slots functionality to the original ion-range-calendar. For standard calendar functionality without slots, please use the original package: @googlproxer/ion-range-calendar.

  • Supports date range.
  • Supports multi date.
  • Supports predefined slots - Select from predefined date ranges.
  • Supports HTML components.
  • Disable weekdays or weekends.
  • Setting days event.
  • Setting localization.
  • Material design.

Supports

  • "@ionic/angular": ">=8.2.0"

Breaking changes 19.0.0

Since the conversion from traditional @Input to Signal input, the Modal version requires useSetInputAPI to be set to true, see As Modal for more details.

Usage

Installation

 npm i @googlproxer/ion-range-calendar date-fns @date-fns/tz

Import module

import { Component } from '@angular/core';
import { IonRangeCalendarComponent } from '@googlproxer/ion-range-calendar';

@Component({
  ...,
  imports: [
    IonRangeCalendarComponent
  ]
})
export class AppComponent {}

As Component

Basic

<ion-range-calendar [(ngModel)]="date" (ionChange)="onChange($event)" [type]="type" [format]="'yyyy-MM-dd'">
</ion-range-calendar>
import { Component } from '@angular/core';
import { IonRangeCalendarComponent } from '@googlproxer/ion-range-calendar';

@Component({
  selector: 'page-home',
  templateUrl: 'home.html',
  standalone: true,
  imports: [
    IonRangeCalendarComponent
  ]
})
export class HomePage {
  date: string;
  type: 'string'; // 'string' | 'js-date' | 'time' | 'object'
  constructor() { }

  onChange($event) {
    console.log($event);
  }
  ...
}

Date range

<ion-range-calendar [(ngModel)]="dateRange" [options]="optionsRange" [type]="type" [format]="'yyyy-MM-dd'">
</ion-range-calendar>
import { Component } from '@angular/core';
import { CalendarComponentOptions, IonRangeCalendarComponent } from '@googlproxer/ion-range-calendar';

@Component({
  selector: 'page-home',
  templateUrl: 'home.html',
  standalone: true,
  imports: [
    IonRangeCalendarComponent
  ]
})
export class HomePage {
  dateRange: { from: string; to: string; };
  type: 'string'; // 'string' | 'js-date' | 'time' | 'object'
  optionsRange: CalendarComponentOptions = {
    pickMode: 'range'
  };

  constructor() { }
  ...
}

Multi Date

<ion-range-calendar [(ngModel)]="dateMulti" [options]="optionsMulti" [type]="type" [format]="'yyyy-MM-dd'">
</ion-range-calendar>
import { Component } from '@angular/core';
import { CalendarComponentOptions, IonRangeCalendarComponent } from '@googlproxer/ion-range-calendar';

@Component({
  selector: 'page-home',
  templateUrl: 'home.html',
  standalone: true,
  imports: [
    IonRangeCalendarComponent
  ]
})
export class HomePage {
  dateMulti: string[];
  type: 'string'; // 'string' | 'js-date' | 'time' | 'object'
  optionsMulti: CalendarComponentOptions = {
    pickMode: 'multi'
  };

  constructor() { }
  ...
}

Predefined Slots

Use slots pick mode to allow users to select from predefined date ranges.

<ion-range-calendar [(ngModel)]="selectedSlot" [options]="optionsSlots" [type]="type" [format]="'yyyy-MM-dd'">
</ion-range-calendar>
import { Component } from '@angular/core';
import { CalendarComponentOptions, IonRangeCalendarComponent, SlotRange } from '@googlproxer/ion-range-calendar';

@Component({
  selector: 'page-home',
  templateUrl: 'home.html',
  standalone: true,
  imports: [
    IonRangeCalendarComponent
  ]
})
export class HomePage {
  selectedSlot: { from: string; to: string; };
  type: 'string'; // 'string' | 'js-date' | 'time' | 'object'
  
  optionsSlots: CalendarComponentOptions = {
    pickMode: 'slots',
    slots: [
      {
        from: new Date(2024, 0, 1), // January 1, 2024
        to: new Date(2024, 0, 7)    // January 7, 2024
      },
      {
        from: new Date(2024, 0, 15), // January 15, 2024
        to: new Date(2024, 0, 21)    // January 21, 2024
      },
      {
        from: new Date(2024, 1, 1), // February 1, 2024
        to: new Date(2024, 1, 14)   // February 14, 2024
      }
    ]
  };

  constructor() { }
  ...
}

Input Properties

| Name | Type | Default | Description | | -------- | -------------------------- | ------------ | ---------------------- | | options | CalendarComponentOptions | null | options | | format | string | 'yyyy-MM-dd' | date-fns format string | | type | string | 'string' | value type | | readonly | boolean | false | readonly |

Output Properties

| Name | Type | Description | | -------------- | -------------- | -------------------------- | | ionChange | EventEmitter | event for model change | | monthChange | EventEmitter | event for month change | | select | EventEmitter | event for day select | | selectStart | EventEmitter | event for day select | | selectEnd | EventEmitter | event for day select |

CalendarComponentOptions

| Name | Type | Default | Description | | ----------------- | ------------------------- | -------------------------------------------------------------------------------------- | ------------------------------------------------- | | from | Date or number | new Date() | start date | | to | Date or number | 0 (Infinite) | end date | | color | string | 'primary' | 'primary', 'secondary', 'danger', 'light', 'dark' | | pickMode | string | single | 'multi', 'range', 'single', 'slots' | | slots | Array<SlotRange> | [] | predefined date range slots for 'slots' mode | | showToggleButtons | boolean | true | show toggle buttons | | showMonthPicker | boolean | true | show month picker | | monthPickerFormat | Array<string> | ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC'] | month picker format | | defaultTitle | string | '' | default title in days | | defaultSubtitle | string | '' | default subtitle in days | | disableWeeks | Array<number> | [] | week to be disabled (0-6) | | monthFormat | string | 'MMM yyyy' | month title format | | weekdays | Array<string> | ['S', 'M', 'T', 'W', 'T', 'F', 'S'] | weeks text | | weekStart | number | 0 (0 or 1) | set week start day | | daysConfig | Array<DaysConfig> | [] | days configuration | | maxRange | number | 0 | The maximum range of the selection in days |

As Modal

In order to use the modal, you will need to set useSetInputAPI: true in you Application bootstrapping.

/** main.ts */
import { enableProdMode } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';

import { AppComponent } from './app/app.component';
import { environment } from './environments/environment';

import { provideIonicAngular } from '@ionic/angular/standalone';

if (environment.production) {
  enableProdMode();
}

bootstrapApplication(AppComponent, {
  providers: [
    provideIonicAngular({
      useSetInputAPI: true, //  required for input signals on controller based modals.
    })
  ]
})
  .catch(err => console.error(err));

If you are still using NgModule , you can use the provideIonicAngular function to provide the IonicAngular module.

import { NgModule } from '@angular/core';
import { provideIonicAngular } from '@ionic/angular/standalone';
import { AppComponent } from './app.component';

@NgModule({
  ...,
  bootstrap: [AppComponent],
  providers: [
    provideIonicAngular({
      useSetInputAPI: true, //  required for input signals on controller based modals.
    })
  ]
})
export class AppModule {}

Basic Modal

Import ion-range-calendar in component controller.

import { Component } from '@angular/core';
import { ModalController } from '@ionic/angular/standalone';
import {
  CalendarModal,
  CalendarModalOptions,
  DayConfig,
  CalendarResult
} from '@googlproxer/ion-range-calendar';

@Component({
  selector: 'page-home',
  templateUrl: 'home.html'
})
export class HomePage {
  constructor(public modalCtrl: ModalController) {}

  openCalendar() {
    const options: CalendarModalOptions = {
      title: 'BASIC'
    };

    const myCalendar = await this.modalCtrl.create({
      component: CalendarModal,
      componentProps: { options }
    });

    myCalendar.present();

    const event = await myCalendar.onDidDismiss();
    const date: CalendarResult = event.data;
    console.log(date);
  }
}

Date range Modal

Set pickMode to 'range'.

openCalendar() {
  const options: CalendarModalOptions = {
    pickMode: 'range',
    title: 'RANGE'
  };

  const myCalendar = await this.modalCtrl.create({
    component: CalendarModal,
    componentProps: { options }
  });

  myCalendar.present();

  const event = await myCalendar.onDidDismiss();
  const date = event.data;
  const from: CalendarResult = date.from;
  const to: CalendarResult = date.to;

  console.log(date, from, to);
}

Multi Date Modal

Set pickMode to 'multi'.

openCalendar() {
  const options = {
    pickMode: 'multi',
    title: 'MULTI'
  };

  const myCalendar = await this.modalCtrl.create({
    component: CalendarModal,
    componentProps: { options }
  });

  myCalendar.present();

  const event = await myCalendar.onDidDismiss();
  const date: CalendarResult = event.data;
  console.log(date);
}

Slots Modal

Set pickMode to 'slots' to allow users to select from predefined date ranges.

openCalendar() {
  const options: CalendarModalOptions = {
    pickMode: 'slots',
    title: 'SELECT SLOT',
    slots: [
      {
        from: new Date(2024, 0, 1), // January 1, 2024
        to: new Date(2024, 0, 7)    // January 7, 2024
      },
      {
        from: new Date(2024, 0, 15), // January 15, 2024
        to: new Date(2024, 0, 21)    // January 21, 2024
      },
      {
        from: new Date(2024, 1, 1), // February 1, 2024
        to: new Date(2024, 1, 14)   // February 14, 2024
      }
    ]
  };

  const myCalendar = await this.modalCtrl.create({
    component: CalendarModal,
    componentProps: { options }
  });

  myCalendar.present();

  const event = await myCalendar.onDidDismiss();
  const date = event.data;
  const from: CalendarResult = date.from;
  const to: CalendarResult = date.to;

  console.log(date, from, to);
}

Disable weeks

Use index eg: [0, 6] denote Sunday and Saturday.

openCalendar() {
  const options: CalendarModalOptions = {
    disableWeeks: [0, 6]
  };

  const myCalendar = await this.modalCtrl.create({
    component: CalendarModal,
    componentProps: { options }
  });

  myCalendar.present();

  const event = await myCalendar.onDidDismiss();
  const date: CalendarResult = event.data;
  console.log(date);
}

Localization

your root module

import { NgModule, LOCALE_ID } from '@angular/core';
...

@NgModule({
  ...
  providers: [{ provide: LOCALE_ID, useValue: "zh-CN" }]
})

...
openCalendar() {
  const options: CalendarModalOptions = {
    monthFormat: 'yyyy 年 MM 月 ',
    weekdays: ['天', '一', '二', '三', '四', '五', '六'],
    weekStart: 1,
    defaultDate: new Date()
  };

  const myCalendar = await this.modalCtrl.create({
    component: CalendarModal,
    componentProps: { options }
  });

  myCalendar.present();

  const event = await myCalendar.onDidDismiss();
  const date: CalendarResult = event.data;
  console.log(date);
}

Days config

Configure one day.

openCalendar() {
  let _daysConfig: DayConfig[] = [];
  for (let i = 0; i < 31; i++) {
    _daysConfig.push({
      date: new Date(2017, 0, i + 1),
      subTitle: `$${i + 1}`
    })
  }

  const options: CalendarModalOptions = {
    from: new Date(2017, 0, 1),
    to: new Date(2017, 11.1),
    daysConfig: _daysConfig
  };

  const myCalendar = await this.modalCtrl.create({
    component: CalendarModal,
    componentProps: { options }
  });

  myCalendar.present();

  const event = await myCalendar.onDidDismiss();
  const date: CalendarResult = event.data;
  console.log(date);
}

Content Projection (Slots)

The calendar modal supports content projection using Angular's ng-content directive.

Sub-header Slot

You can project custom content into the modal's sub-header area using the [sub-header] selector:

<ion-modal [isOpen]="isModalOpen">
  <ng-template>
    <calendar-modal [options]="options">
      <div sub-header>
        <ion-item>
          <ion-label>Custom sub-header content</ion-label>
        </ion-item>
      </div>
    </calendar-modal>
  </ng-template>
</ion-modal>
import { Component } from '@angular/core';
import { ModalController } from '@ionic/angular/standalone';
import { CalendarModal, CalendarModalOptions } from '@googlproxer/ion-range-calendar';

@Component({
  selector: 'page-home',
  templateUrl: 'home.html'
})
export class HomePage {
  constructor(public modalCtrl: ModalController) {}

  async openCalendar() {
    const options: CalendarModalOptions = {
      title: 'Custom Calendar'
    };

    const myCalendar = await this.modalCtrl.create({
      component: CalendarModal,
      componentProps: { options }
    });

    // Add custom sub-header content
    myCalendar.appendChild(document.createElement('div'));

    myCalendar.present();
  }
}

API

Modal Options

| Name | Type | Default | Description | | ------------------------- | -------------------------- | ------------------------------------- | ---------------------------------------------------------- | | from | Date or number | new Date() | start date | | to | Date or number | 0 (Infinite) | end date | | title | string | 'CALENDAR' | title | | color | string | 'primary' | 'primary', 'secondary', 'danger', 'light', 'dark' | | defaultScrollTo | Date | undefined | let the view scroll to the default date | | initialDate | Date | undefined | initial date data, applies to single | | defaultDate | Date | undefined | default date data, applies to single | | initialDates | Array<Date> | undefined | initial dates data, applies to multi | | defaultDates | Array<Date> | undefined | default dates data, applies to multi | | initialDateRange | { from: Date, to: Date } | undefined | initial date-range data, applies to range | | defaultDateRange | { from: Date, to: Date } | undefined | default date-range data, applies to range | | defaultTitle | string | '' | default title in days | | defaultSubtitle | string | '' | default subtitle in days | | cssClass | string | '' | Additional classes for custom styles, separated by spaces. | | canBackwardsSelected | boolean | false | Allow selection to any date before to | | pickMode | string | single | 'multi', 'range', 'single', 'slots' | | slots | Array<SlotRange> | [] | predefined date range slots for 'slots' mode | | initialSlot | SlotRange or null | undefined | initial slot data, applies to slots | | defaultSlot | SlotRange or null | undefined | default slot data, applies to slots | | disableWeeks | Array<number> | [] | week to be disabled (0-6) | | closeLabel | string | CANCEL | cancel button label | | doneLabel | string | DONE | done button label | | clearLabel | string | null | clear button label | | closeIcon | boolean | false | show cancel button icon | | doneIcon | boolean | false | show done button icon | | monthFormat | string | 'MMM yyyy' | month title format | | weekdays | Array<string> | ['S', 'M', 'T', 'W', 'T', 'F', 'S'] | weeks text | | weekStart | number | 0 (0 or 1) | set week start day | | daysConfig | Array<DaysConfig> | [] | days configuration | | step | number | 12 | month load stepping interval to when scroll | | defaultEndDateToStartDate | boolean | false | makes the end date optional, will default it to the start | | maxRange | number | 0 | The maximum range of the selection in days | | clearResetsToDefault | boolean | false | clear button resets to default date |

onDidDismiss Output { data } = event

| pickMode | Type | | -------- | -------------------------------------------------------- | | single | { date: CalendarResult } | | range | { from: CalendarResult, to: CalendarResult } | | multi | Array<CalendarResult> | | slots | { from: CalendarResult, to: CalendarResult } |

onDidDismiss Output { role } = event

| Value | Description | | ---------- | ------------------------------------ | | 'cancel' | dismissed by click the cancel button | | 'done' | dismissed by click the done button | | 'backdrop' | dismissed by click the backdrop |

DaysConfig

| Name | Type | Default | Description | | -------- | --------- | --------- | ------------------------------------- | | cssClass | string | '' | separated by spaces | | date | Date | required | configured days | | marked | boolean | false | highlight color | | disable | boolean | false | disable | | title | string | undefined | displayed title eg: 'today' | | subTitle | string | undefined | subTitle subTitle eg: 'New Year\'s' |

SlotRange

| Name | Type | Description | | ---- | ---------------------- | -------------------------------- | | from | Date or string or number | The start date of the slot range | | to | Date or string or number | The end date of the slot range |

CalendarResult

| Name | Type | Notes | | ------- | -------- | -------------------- | | time | number | unix milliseconds | | unix | number | unix seconds | | dateObj | Date | JS Date | | string | string | format: yyyy-MM-dd | | years | number | year | | months | number | month | | date | number | day |