We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: