React suite inputpicker and pagination component. accessibility

97 Views Asked by At

Inputpicker and pagination contain multiple input field.While putting aria-label tag, those component are not being accessible. enter image description here

 <InputPicker
    role="combobox"
    id={id}
    {...rest}
    data={options as ISelectOption[]}
    id={id}     
  
  />
<label htmlFor={id} className="floating-label">
    {placeholder}
  </label>

Is there a workaround for this issue?

0

There are 0 best solutions below