UNPKG

react-day-picker

Version:

Customizable Date Picker for React

81 lines 3.38 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.getDateLib = exports.enUS = exports.faIR = void 0; exports.DayPicker = DayPicker; const react_1 = __importDefault(require("react")); const dateFnsJalali = __importStar(require("date-fns-jalali")); const locales = __importStar(require("date-fns-jalali/locale")); const index_js_1 = require("./index.js"); exports.faIR = locales.faIR; exports.enUS = locales.enUS; /** * Renders the Persian calendar using the DayPicker component. * * @defaultValue * - `locale`: `faIR` * - `dir`: `rtl` * - `dateLib`: `jalaliDateLib` from `date-fns-jalali` * - `numerals`: `arabext` (Eastern Arabic-Indic) * @param props - The props for the Persian calendar, including locale, text * direction, date library, and numeral system. * @returns The Persian calendar component. * @see https://daypicker.dev/docs/localization#persian-calendar */ function DayPicker(props) { const dateLib = (0, exports.getDateLib)({ locale: props.locale, weekStartsOn: props.broadcastCalendar ? 1 : props.weekStartsOn, firstWeekContainsDate: props.firstWeekContainsDate, useAdditionalWeekYearTokens: props.useAdditionalWeekYearTokens, useAdditionalDayOfYearTokens: props.useAdditionalDayOfYearTokens, timeZone: props.timeZone }); return (react_1.default.createElement(index_js_1.DayPicker, { ...props, locale: props.locale ?? exports.faIR, numerals: props.numerals ?? "arabext", dir: props.dir ?? "rtl", dateLib: dateLib })); } /** * Returns the date library used in the Persian calendar. * * @param options - Optional configuration for the date library. * @returns The date library instance. */ const getDateLib = (options) => { return new index_js_1.DateLib(options, dateFnsJalali); }; exports.getDateLib = getDateLib; //# sourceMappingURL=persian.js.map