UNPKG

react-day-picker

Version:

Customizable Date Picker for React

31 lines 949 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.labelDay = void 0; exports.labelDayButton = labelDayButton; const DateLib_js_1 = require("../classes/DateLib.js"); /** * The ARIA label for the day button. * * Use the `modifiers` argument to add additional context to the label, e.g. * when a day is selected or is today. * * @defaultValue The formatted date. * @group Labels * @see https://daypicker.dev/docs/translation#aria-labels */ function labelDayButton(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}`; if (modifiers.selected) label = `${label}, selected`; return label; } /** * @ignore * @deprecated Use `labelDayButton` instead. */ exports.labelDay = labelDayButton; //# sourceMappingURL=labelDayButton.js.map