Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
766 B
Text
19 lines
766 B
Text
import { DateLib, type DateLibOptions } from "../classes/DateLib.js";
|
|
/**
|
|
* Generates the ARIA label for the month grid, which is announced when entering
|
|
* the grid.
|
|
*
|
|
* @defaultValue `LLLL y` (e.g., "November 2022").
|
|
* @param date - The date representing the month.
|
|
* @param options - Optional configuration for the date formatting library.
|
|
* @param dateLib - An optional instance of the date formatting library.
|
|
* @returns The ARIA label for the month grid.
|
|
* @group Labels
|
|
* @see https://daypicker.dev/docs/translation#aria-labels
|
|
*/
|
|
export declare function labelGrid(date: Date, options?: DateLibOptions, dateLib?: DateLib): string;
|
|
/**
|
|
* @ignore
|
|
* @deprecated Use {@link labelGrid} instead.
|
|
*/
|
|
export declare const labelCaption: typeof labelGrid;
|