UNPKG

378 BPlain TextView Raw
1import type { LabelOptions } from "../lib/dateLib.js";
2
3/**
4 * The ARIA label for the week number cell (the first cell in the row).
5 *
6 * @defaultValue `Week ${weekNumber}`
7 * @group Labels
8 * @see https://daypicker.dev/docs/translation#aria-labels
9 */
10export function labelWeekNumber(
11 weekNumber: number,
12 options?: LabelOptions
13): string {
14 return `Week ${weekNumber}`;
15}