The Kendo React components seem to have adopted a floating label as their standard. While I think that's a good idea, I do have a question about compatibility between these components and Material-UI.
One of the capabilities that Material-UI text fields provides is the ability to have the label continue to float even if the content of the text field is null. It accomplishes this by passing setting the shrink property to true in the InputLabelProps. For example.
<TextField
...
InputLabelProp={{
shrink: true,
}}
/>
Is there any way to achieve this behavior in the Kendo React components? Or, if not, are they any plans to add this functionality to a future version?
Thanks