Skip to content
New issue

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

feat(Autocomplete): add support for disabled attribute #117

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/components/Autocomplete.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<button
class="flex h-7 w-full items-center justify-between gap-2 rounded bg-gray-100 px-2 py-1 transition-colors hover:bg-gray-200 focus:ring-2 focus:ring-gray-400"
:class="{ 'bg-gray-200': isComboboxOpen }"
krantheman marked this conversation as resolved.
Show resolved Hide resolved
:disabled="isDisabled"
@click="() => togglePopover()"
>
<div class="flex items-center">
Expand Down Expand Up @@ -120,7 +121,7 @@ import FeatherIcon from './FeatherIcon.vue'

export default {
name: 'Autocomplete',
props: ['modelValue', 'options', 'placeholder'],
props: ['modelValue', 'options', 'placeholder', 'isDisabled'],
krantheman marked this conversation as resolved.
Show resolved Hide resolved
emits: ['update:modelValue', 'update:query', 'change'],
components: {
Popover,
Expand Down