@progress/kendo-react-dateinputs v9.4.1
@progress/kendo-react-labels v9.4.1
When using TimePicker with a manually defined Label component as such:
<Label
id="time-picker-label"
editorId="time-picker"
...
>
TimePickerLabel
</Label>
<TimePicker
ariaLabelledBy="time-picker-label"
id="time-picker"
/>
The generated HTML rendered to the DOM includes a span which has the ID attached to the TimePicker component, as well as the input control element which bears the same ID. This poses a screen-reader accessibility issue given that the label element's "for" value needs a unique ID.
Is this a known issue, and has it been resolved in a later version, or is there a plan to resolve this?