UNPKG

react-day-picker

Version:

Customizable Date Picker for React

23 lines 917 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.labelGridcell = labelGridcell; const DateLib_js_1 = require("../classes/DateLib.js"); /** * Generates the label for a day grid cell when the calendar is not interactive. * * @param date - The date to format. * @param modifiers - Optional modifiers providing context for the day. * @param options - Optional configuration for the date formatting library. * @param dateLib - An optional instance of the date formatting library. * @returns The label for the day grid cell. * @group Labels * @see https://daypicker.dev/docs/translation#aria-labels */ function labelGridcell(date, modifiers, options, dateLib) { let label = (dateLib ?? new DateLib_js_1.DateLib(options)).format(date, "PPPP"); if (modifiers?.today) { label = `Today, ${label}`; } return label; } //# sourceMappingURL=labelGridcell.js.map