logo
DocsIntroduction

Introduction

nepali-bs-calendar-react is a React library for building Nepali Bikram Sambat calendar experiences in modern applications.

It is designed for teams that need BS date input, calendar display, and date picker behavior without building calendar logic from scratch.

What is nepali-bs-calendar-react

The library provides reusable React components for Nepali calendar interfaces. It can be used in admin dashboards, financial systems, education systems, HR systems, public portals, and internal tools where Nepali dates are required.

Whats new in v0.2.0

Optimizations for lookup functions that are used for date conversions.

Why use it

Use this package when your application needs a calendar UI that understands Nepali BS date workflows. Instead of manually creating date grids, input behavior, and selection events, you can integrate a ready component and customize the surrounding UI.

Key features

  • Bikram Sambat calendar support
  • React component API
  • TypeScript-friendly usage
  • Customizable styling
  • Date picker usage patterns
  • Modern documentation and examples

Example

Preview

Interactive Demo

Baisakh 2076
Sun
Mon
Tue
Wed
Thu
Fri
Sat
 TSXimport { Calendar } from 'nepali-bs-calendar-react'

export default function Demo() {
  return <Calendar onChange={(date) => console.log(date)} />
}