Breaking change
TextFieldsProps is now : MuiTextFieldProps | ((index: number) => MuiTextFieldProps)
Now, you can add differents aria-label, aria-describeby, etc... depending on the index of the textfield in order to improve accessibility.
Example:
<MuiColorInput TextFieldsProps={{ size: 'small' }} /> <MuiColorInput TextFieldsProps={index => ({ size: 'small', placeholder: String(index) })} /> Chore
- Update deps