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

@itzsa/nepali-datepicker

v0.3.2

Published

Nepali (Bikram Sambat) date, datetime, and range pickers for React — AD↔BS via @itzsa/bs-date

Readme

@itzsa/nepali-datepicker

React Nepali (Bikram Sambat) date pickers — calendar select, editable YYYY-MM-DD input, and date range — plus pure AD ↔ BS helpers.

For headless convert / arithmetic / holidays without UI, use @itzsa/bs-date (docs).

Install

pnpm add @itzsa/nepali-datepicker
@import "@itzsa/nepali-datepicker/styles.css";

Components

Calendar picker

import { NepaliDatePicker } from "@itzsa/nepali-datepicker";

<NepaliDatePicker value={date} onChange={setDate} locale="ne" />

Editable input (type + calendar)

import { EditableNepaliDatePicker, isCompleteBsDate } from "@itzsa/nepali-datepicker";

<EditableNepaliDatePicker value={date} onChange={setDate} placeholder="YYYY-MM-DD" />

Digits are auto-masked to YYYY-MM-DD. Use isCompleteBsDate(value) before submit.

Date & time

import { NepaliDateTimePicker } from "@itzsa/nepali-datepicker";

<NepaliDateTimePicker
  value={dateTime}
  onChange={setDateTime}
  locale="ne"
  minuteStep={1}
  displayFormat="time-date-single-no-bs"
  minDateTime="2080-01-01 00:00"
  maxDateTime="2090-12-30 23:59"
/>

Canonical value: YYYY-MM-DD HH:mm (optional seconds with withSeconds). minuteStep defaults to 1 (every minute).

Live Nepali clock

import { NepaliLiveClock } from "@itzsa/nepali-datepicker";

<NepaliLiveClock format="time-date-two-line-seconds" locale="ne" />
<NepaliLiveClock format="dmyw" />
<NepaliLiveClock format="date-only" bsPrefix={false} />

Presets: time-date-two-line, time-date-two-line-seconds, time-date-single, time-date-single-no-bs, time-only, date-only, dmyw, date-only-no-bs, time-date-bare. Or format once with formatNepaliDateTimeDisplay(parts, format).

Date range

import { NepaliDateRangePicker } from "@itzsa/nepali-datepicker";

<NepaliDateRangePicker
  value={range}
  onChange={setRange}
  numberOfMonths={2}
  locale="ne"
/>

value is { from?: string; to?: string } (ASCII BS dates).

Helpers

AD ↔ BS conversion is powered by @itzsa/bs-date (docs). The datepicker keeps the familiar (year, month, day) → DateParts API:

import { adToBs, bsToAd, todayBs, diffBsDays } from "@itzsa/nepali-datepicker";

bsToAd(2080, 10, 15); // { year: 2024, month: 1, day: 29 }
adToBs(2025, 4, 14);  // { year: 2082, month: 1, day: 1 }

For headless apps (no React), depend on @itzsa/bs-date directly.

Calendar data: BS 1970–2100 (shared with @itzsa/bs-date).

Styling via props

<NepaliDatePicker
  value={date}
  onChange={setDate}
  vars={{ accent: "#0f766e", radius: "12px" }}
  classNames={{ input: "h-10", popover: "shadow-lg" }}
/>

Validation

import { validateBsDate, isCompleteBsDate } from "@itzsa/nepali-datepicker";

validateBsDate(2082, 1, 15); // { ok: true }
isCompleteBsDate("2082-04"); // false — still typing

You do not need the jQuery plugin’s compressed calendar codec — month lengths and AD↔BS come from @itzsa/bs-date.

Docs

https://itzsa.acharya-suman.com.np/nepali-datepicker

License

MIT