airbnb/rheostat

Aria-labels can't be added to slider buttons

ccveer opened this issue · 3 comments

For compliance, I need to add aria-labels to the slider buttons in an implementation like this one: http://localhost:9001/?path=/story/slider--rtl-multiple-handle. There doesn't seem to be a way to do this currently.

rfx91 commented

Running into the same issue.

A workaround for this is to modify the defaultProps.aria-label on the DefaultHandle component like this.

// Workaround to add aria-label to Rheostat DefaultHandle
Rheostat.defaultProps.handle.defaultProps['aria-label'] = 'Slider handle';

+1
I would love to see this fix as well!