DateTime can be set as clearable with the clearable prop, while for the rest of the inputs (Autocomplete, TextField, DynamicField) it's called isClearable.
The required property, that can be passed directly to other inputs, has to be passed through inputProps (inputProps={{ required: true }}).
This means we have to be constantly aware of these differences and bugs happen more often, which they recently did. The input apis should be aligned.
Latest version
Description
DateTime can be set as clearable with the
clearable
prop, while for the rest of the inputs (Autocomplete
,TextField
,DynamicField
) it's calledisClearable
.The
required
property, that can be passed directly to other inputs, has to be passed throughinputProps
(inputProps={{ required: true }}
).This means we have to be constantly aware of these differences and bugs happen more often, which they recently did. The input apis should be aligned.