MikaelEdebro / vue-airbnb-style-datepicker

A VueJs datepicker with a similar look and functionality as the popular AirBnb datepicker.
https://mikaeledebro.gitbooks.io/vue-airbnb-style-datepicker/
MIT License
505 stars 105 forks source link

Start & end selected aria labels #149

Closed sikhote closed 2 years ago

sikhote commented 2 years ago

This allows more descriptive ARIA labels when using the date picker in range mode. Previously, it would only say Selected., but now it uses the following:

selectedStartDate: date => `Selected ${date} as your start date.`,
selectedEndDate: date => `Selected ${date} as your end date.`,

The existing label is still used when not in range mode.

Notes: