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
There is significant inconsistency in how various components apply class attributes. For example, consider the following code:
<div class="grid grid-12 gap-2"> <Input label="Input" class="col-span-12" /> <Input label="Input 2" class="col-span-6" /> <Input label="Input 3" class="col-span-6" /> <Autocomplete label="Autocomplete" :options="[ { label: 'One', value: '1' }, { label: 'Two', value: '2' }, ]" class="col-span-6" /> <DatePicker label="Date Picker" :formatValue="(val) => val" class="col-span-6" /> </div>
This produces a layout that looks like this:
The expected behavior would be for the Autocomplete and DatePicker components to behave the same way that Input components do.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is significant inconsistency in how various components apply class attributes. For example, consider the following code:
This produces a layout that looks like this:
The expected behavior would be for the Autocomplete and DatePicker components to behave the same way that Input components do.
The text was updated successfully, but these errors were encountered: