Open mkmoisen opened 6 months ago
Describe the bug The <Select> will respect style and required, for example:
<Select>
style
required
<Select required style="width: 100%"> ... </Select>
However, <Autocomplete> does not.
<Autocomplete>
Would you please add support for these?
The following work around isn't very convenient and is too verbose:
<script> let value = null; let text = null; </script> <Autocomplete bind:value={value} bind:text={text} options={['foo', 'bar', 'baz']} style="width: 100% > <Textfield bind:value={text} label="Pick one" required style="width: 100%" /> </Autocomplete>
Describe the bug The
<Select>
will respectstyle
andrequired
, for example:However,
<Autocomplete>
does not.Would you please add support for these?
The following work around isn't very convenient and is too verbose: