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

irani-calendar

v1.0.2

Published

A modern, customizable Persian (Jalali) calendar and date picker for React

Readme

🇮🇷 Irani Calendar

یک کامپوننت تقویم ایرانی (شمسی/جلالی) زیبا، سبک و قابل تنظیم برای React.

Irani Calendar License Downloads


📸 Screenshots

Screen1 Screen2 Screen3


🚀 نصب

npm install irani-calendar

یا:

yarn add irani-calendar

📦 استفاده

import React, { useState } from 'react';
import IraniCalendar from 'irani-calendar';
import 'irani-calendar/src/JalaliDatePicker.css';

function App() {
  const [selectedDate, setSelectedDate] = useState('');

  const handleDateChange = (date) => {
    setSelectedDate(date);
    console.log('تاریخ انتخاب شده:', date);
  };

  return (
    <div style={{ padding: '20px', maxWidth: '300px' }}>
      <IraniCalendar
        value={selectedDate}
        onChange={handleDateChange}
        placeholder="تاریخ را انتخاب کنید"
        outputFormat="jalali"
      />
    </div>
  );
}

export default App;

✨ ویژگی‌ها

  • 📅 نمایش تقویم شمسی ایرانی
  • 🎨 طراحی مدرن و واکنش‌گرا
  • ⚡ عملکرد سریع و بهینه
  • 🛠 قابل تنظیم و توسعه‌پذیر
  • 📱 مناسب برای موبایل
  • 🌙 پشتیبانی از محدودیت تاریخ
  • 🔄 تبدیل خودکار بین تقویم‌ها

📚 مستندات

Props

| Prop | Type | Default | توضیح | |------------------|----------|------------------|-------| | value | string | "" | تاریخ انتخاب شده | | onChange | function | required | تابعی که هنگام تغییر تاریخ اجرا می‌شود | | placeholder | string | "انتخاب تاریخ" | متن placeholder | | className | string | "" | کلاس اضافه برای CSS | | disabled | boolean | false | غیرفعال بودن پیکر | | minDate | string | null | حداقل تاریخ (مثال: 1402/01/01) | | maxDate | string | null | حداکثر تاریخ (مثال: 1402/12/29) | | showTodayButton | boolean | true | نمایش دکمه «امروز» | | showClearButton | boolean | true | نمایش دکمه پاک کردن | | outputFormat | string | "jalali" | خروجی تاریخ (jalali یا gregorian) |


📅 فرمت تاریخ

  • شمسی: 1402/01/15
  • میلادی: 2023-04-04

🎯 مثال‌های پیشرفته

// با محدودیت تاریخ
<IraniCalendar
  value={selectedDate}
  onChange={setSelectedDate}
  minDate="1402/01/01"
  maxDate="1402/12/29"
  placeholder="بین 1402/01/01 تا 1402/12/29 انتخاب کنید"
/>

// غیرفعال
<IraniCalendar
  value={selectedDate}
  onChange={setSelectedDate}
  disabled={true}
/>

// خروجی میلادی
<IraniCalendar
  value={selectedDate}
  onChange={setSelectedDate}
  outputFormat="gregorian"
/>

// بدون دکمه امروز و پاک کردن
<IraniCalendar
  value={selectedDate}
  onChange={setSelectedDate}
  showTodayButton={false}
  showClearButton={false}
/>

🛠 توسعه

# کلون کردن ریپازیتوری
git clone https://github.com/mahdiAsadollahi/irani-calendar.git
cd irani-calendar

# نصب وابستگی‌ها
npm install

# تست محلی
npm pack

🤝 مشارکت

اگر می‌خواهید در توسعه این پروژه مشارکت کنید:

  1. ریپازیتوری را fork کنید
  2. یک branch جدید بسازید:
    git checkout -b feature/amazing-feature
  3. تغییرات را commit کنید:
    git commit -m "Add some amazing feature"
  4. به branch خود push کنید:
    git push origin feature/amazing-feature
  5. Pull Request ثبت کنید

🐞 گزارش مشکل

اگر مشکلی وجود دارد، لطفاً در بخش Issues گزارش دهید.


📄 مجوز

این پروژه تحت مجوز MIT منتشر شده است.


⭐ حمایت

اگر این پکیج برای شما مفید بود، با ⭐ زدن از آن حمایت کنید!