UNPKG

react-day-picker

Version:

Customizable Date Picker for React

20 lines 640 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.labelGridcell = labelGridcell; const DateLib_js_1 = require("../classes/DateLib.js"); /** * The label for the day gridcell when the calendar is not interactive. * * @group Labels * @see https://daypicker.dev/docs/translation#aria-labels */ function labelGridcell(date, /** The modifiers for the day. */ 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