What the difference between inputStyle="floating" and inlinePlaceholder={true} ?
When I do
<Input ref="state" type="text" name="state" inlinePlaceholder={true} placeholder="State" description="Your state as it appears on your credit card." />
<Input ref="state" type="text" name="state" inputStyle="floating" placeholder="State" description="Your state as it appears on your credit card." />
The looks the same

The difference is that
inlinePlaceholder={true} leaves input placeholder
inputStyle="floating" adds <span class="mui-input-placeholder" data-reactid=".0.2.0.0.1.0.1.6.1">State</span> but on focus just hide it
So the behaviour and looks the same
May leave one option remove inlinePlaceholder prop ?
Or it has some benefits ?
What the difference between
inputStyle="floating"andinlinePlaceholder={true}?When I do
The looks the same

The difference is that
inlinePlaceholder={true}leaves input placeholderinputStyle="floating" adds
<span class="mui-input-placeholder" data-reactid=".0.2.0.0.1.0.1.6.1">State</span>but on focus just hide itSo the behaviour and looks the same
May leave one option remove inlinePlaceholder prop ?
Or it has some benefits ?