You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have checked if this feature request is not already reported
Description
Request for announcement of weekday along with the date in screen reader(voice-over). Currently, it announces the date only.
Proposed solution
I checked through the code and saw that while giving the aria-label in component we are evaluating the label that should be announced. For that formatLongDate function, we are not specifying weekDay as long in formatting options. We need to add support for that.
Screen.Recording.2024-11-26.at.1.44.31.PM.1.mov
Alternatives
No response
Additional information
Without weekday option(Current behaviour)
const date = newDate('2023-12-02');
const formatter = newIntl.DateTimeFormat('en-US', formatLongDateOptions);
console.log(formatter.format(date)); // Output: "December 2, 2023" (in the U.S. English locale)
Before you start - checklist
Description
Request for announcement of weekday along with the date in screen reader(voice-over). Currently, it announces the date only.
Proposed solution
I checked through the code and saw that while giving the aria-label in component we are evaluating the label that should be announced. For that formatLongDate function, we are not specifying weekDay as long in formatting options. We need to add support for that.
Screen.Recording.2024-11-26.at.1.44.31.PM.1.mov
Alternatives
No response
Additional information
Without weekday option(Current behaviour)
With weekday option(Proposed behaviour)
The text was updated successfully, but these errors were encountered: