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

@rameshbhandari/ad-bs-datepicker

v1.0.3

Published

Angular AD-BS datepicker, datetime picker and Nepali calendar component

Readme

RB AD-BS Datepicker

Angular Datepicker component with support for:

  • Nepali (BS) Calendar
  • English (AD) Calendar
  • Dual Calendar Support
  • Dark & Light Themes
  • Date & DateTime Picker
  • 12/24 Hour Time Format
  • Disable Past/Future Dates

Installation

npm i @rameshbhandari/ad-bs-datepicker

Import Module

import { FormsModule } from '@angular/forms';
import { AdBsDatepicker } from '@rameshbhandari/ad-bs-datepicker';

@NgModule({
  imports: [
    FormsModule,
    RbAdBsDatepickerModule
  ]
})
export class AppModule {}

Demo

Live Demo URL:

https://adbsdatepicker.ramesh-bhandari.com.np/

Basic Usage

<rb-ad-bs-datepicker
  mode="BS"
  theme="dark"
  calendarType="nepali"
  [(ngModel)]="selectedDate">
</rb-ad-bs-datepicker>

Examples


Nepali Calendar (Dark Theme)

Displays Nepali Bikram Sambat (BS) calendar with dark theme.

<rb-ad-bs-datepicker
  mode="BS"
  theme="dark"
  calendarType="nepali"
  [(ngModel)]="selectedDate">
</rb-ad-bs-datepicker>

Nepali Calendar (Light Theme)

<rb-ad-bs-datepicker
  mode="BS"
  theme="light"
  calendarType="nepali"
  [(ngModel)]="selectedDate">
</rb-ad-bs-datepicker>

English Calendar (Dark Theme)

Gregorian AD calendar with dark mode styling.

<rb-ad-bs-datepicker
  mode="AD"
  theme="dark"
  calendarType="english"
  [(ngModel)]="selectedDate">
</rb-ad-bs-datepicker>

English Calendar (Light Theme)

<rb-ad-bs-datepicker
  mode="AD"
  theme="light"
  calendarType="english"
  [(ngModel)]="selectedDate">
</rb-ad-bs-datepicker>

English + Nepali Calendar (Dark Theme)

Displays English dates with Nepali references.

<rb-ad-bs-datepicker
  mode="AD"
  theme="dark"
  calendarType="english-nepali"
  [(ngModel)]="selectedDate">
</rb-ad-bs-datepicker>

English + Nepali Calendar (Light Theme)

<rb-ad-bs-datepicker
  mode="AD"
  theme="light"
  calendarType="english-nepali"
  [(ngModel)]="selectedDate">
</rb-ad-bs-datepicker>

Nepali + English Calendar (Dark Theme)

Primary Nepali calendar with English support.

<rb-ad-bs-datepicker
  mode="BS"
  theme="dark"
  calendarType="nepali-english"
  [(ngModel)]="selectedDate">
</rb-ad-bs-datepicker>

Nepali + English Calendar (Light Theme)

<rb-ad-bs-datepicker
  mode="BS"
  theme="light"
  calendarType="nepali-english"
  [(ngModel)]="selectedDate">
</rb-ad-bs-datepicker>

Disable Date Selection


Disable Future Dates

Useful for DOB or historical records.

<rb-ad-bs-datepicker
  mode="AD"
  theme="dark"
  calendarType="english"
  disable="future"
  [(ngModel)]="selectedDate">
</rb-ad-bs-datepicker>

Disable Past Dates

Useful for booking and scheduling systems.

<rb-ad-bs-datepicker
  mode="BS"
  theme="light"
  calendarType="nepali"
  disable="past"
  [(ngModel)]="selectedDate">
</rb-ad-bs-datepicker>

DateTime Picker


DateTime Picker (12-Hour Format)

<rb-ad-bs-datepicker
  mode="BS"
  theme="light"
  calendarType="nepali"
  pickerType="datetime"
  timeFormat="12"
  [(ngModel)]="selectedDate">
</rb-ad-bs-datepicker>

DateTime Picker (24-Hour Format)

<rb-ad-bs-datepicker
  mode="BS"
  theme="dark"
  calendarType="nepali"
  pickerType="datetime"
  timeFormat="24"
  [showSeconds]="true"
  [(ngModel)]="selectedDate">
</rb-ad-bs-datepicker>

API Reference

| Input | Type | Description | | -------------- | ----------------------- | --------------------------- | | mode | "AD" | "BS" | Calendar mode | | theme | "light" | "dark" | UI theme | | calendarType | string | Calendar display type | | pickerType | "date" | "datetime" | Picker mode | | timeFormat | "12" | "24" | Time format | | disable | "past" | "future" | Disable date selection | | showSeconds | boolean | Show seconds in time picker | | ngModel | any | Two-way binding value |


Supported Calendar Types

| Value | Description | | ---------------- | ----------------------------------- | | nepali | Nepali BS Calendar | | english | English AD Calendar | | english-nepali | English primary with Nepali support | | nepali-english | Nepali primary with English support |


License

MIT License