Components
HeroUI v3 Autocomplete is a searchable select that filters a ListBox of options as you type, supporting single and multiple selection with removable tags, grouped sections, disabled options, descriptions, form validation, controlled state, custom trigger values with avatars, and full-width layouts inside a Surface. Built on the real @heroui/react package with @heroui/styles, it composes with SearchField, ListBox, TagGroup, Label, Description, FieldError and useFilter. A thin re-export of the upstream component so consumers install and render the genuine HeroUI primitive.
npx shadcn@latest add https://21st.dev/r/hero_ui/heroui-autocompleteLoading preview...
"use client"
import type { Key } from "@heroui/react"
import {
EmptyState,
Label,
ListBox,
SearchField,
Tag,
TagGroup,
useFilter,
} from "@heroui/react"
import { useState } from "react"
import { Autocomplete } from "@/components/ui/heroui-autocomplete"
export function Default() {
const { contains } = useFilter({ sensitivity: "base" })
const [selectedKeys, setSelectedKeys] = useState<Key[]>([])
const items = [
{ id: "florida", name: "Florida" },
{ id: "delaware", name: "Delaware" },
{ id: "california", name: "California" },
{ id: "texas", name: "Texas" },
{ id: "new-york", name: "New York" },
{ id: "washington", name: "Washington" },
]
const onRemoveTags = (keys: Set<Key>) => {
setSelectedKeys((prev) => prev.filter((key) => !keys.has(key)))
}
return (
<Autocomplete
className="w-[256px]"
placeholder="Select states"
selectionMode="multiple"
value={selectedKeys}
onChange={(keys: Key | Key[] | null) => setSelectedKeys(keys as Key[])}
>
<Label>States to Visit</Label>
<Autocomplete.Trigger>
<Autocomplete.Value>
{({ defaultChildren, isPlaceholder, state }: any) => {
if (isPlaceholder || state.selectedItems.length === 0) {
return defaultChildren
}
const selectedItemsKeys = state.selectedItems.map((item: any) => item.key)
return (
<TagGroup size="sm" onRemove={onRemoveTags}>
<TagGroup.List>
{selectedItemsKeys.map((selectedItemKey: Key) => {
const item = items.find((s) => s.id === selectedItemKey)
if (!item) return null
return (
<Tag key={item.id} id={item.id}>
{item.name}
</Tag>
)
})}
</TagGroup.List>
</TagGroup>
)
}}
</Autocomplete.Value>
<Autocomplete.Indicator />
</Autocomplete.Trigger>
<Autocomplete.Popover>
<Autocomplete.Filter filter={contains}>
<SearchField autoFocus name="search" variant="secondary">
<SearchField.Group>
<SearchField.SearchIcon />
<SearchField.Input placeholder="Search..." />
<SearchField.ClearButton />
</SearchField.Group>
</SearchField>
<ListBox renderEmptyState={() => <EmptyState>No results found</EmptyState>}>
{items.map((item) => (
<ListBox.Item key={item.id} id={item.id} textValue={item.name}>
{item.name}
<ListBox.ItemIndicator />
</ListBox.Item>
))}
</ListBox>
</Autocomplete.Filter>
</Autocomplete.Popover>
</Autocomplete>
)
}
export default Default
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...