Skip to content

Commit aeb782b

Browse files
committed
build: bump v9.11.0
Signed-off-by: gpbl <[email protected]>
1 parent 0e7c7ab commit aeb782b

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-day-picker",
3-
"version": "9.10.0",
3+
"version": "9.11.0",
44
"description": "Customizable Date Picker for React",
55
"author": "Giampaolo Bellavite <[email protected]>",
66
"homepage": "https://daypicker.dev",

src/classes/DateLib.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,11 @@ export class DateLib {
185185
return DateLib.yearFirstLocales.has(code) ? "year-first" : "month-first";
186186
}
187187

188-
/** Formats the month/year pair respecting locale conventions. */
188+
/**
189+
* Formats the month/year pair respecting locale conventions.
190+
*
191+
* @since 9.11.0
192+
*/
189193
formatMonthYear(date: Date): string {
190194
const { locale, timeZone, numerals } = this.options;
191195
const localeCode = locale?.code;

src/types/props.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ export interface PropsBase {
399399
/**
400400
* The aria-labelledby attribute to add to the container element.
401401
*
402-
* @since 9.10.1
402+
* @since 9.11.0
403403
* @see https://daypicker.dev/guides/accessibility
404404
*/
405405
"aria-labelledby"?: string;

0 commit comments

Comments
 (0)