README.md
March 5, 2026 Β· View on GitHub
Chakra V3 and V2 Support
AutoComplete Version 6+ supports Chakra UI V3. If you are using Chakra UI V2, please continue to use the current choc-autocomplete v5.X documentation here. We will continue to try and support Chakra V2 but will eventually be removed once V3 becomes more widely adopted.
For help migrating from Chakra UI V2 to V3, please see their migration guide
The public API of the AutoComplete components have not changed with this migration.
Known issues with Chakra V3
There is only 1 known display issue with Chakra V3. When using the multiple prop, it is no longer possible to replicate the same styling to the Box wrapper as what the underlying Input is using. We are still looking into ways to resolve this, but neither the Chakra nor next-themes teams have published guidance on this yet.
Install
npm i --save @choc-ui/chakra-autocomplete
#or
yarn add @choc-ui/chakra-autocomplete
Preview
With Mouse

With Keyboard

Usage
Basic Usage
import { Flex, Field } from "@chakra-ui/react";
import {
AutoComplete,
AutoCompleteInput,
AutoCompleteItem,
AutoCompleteList,
} from "@choc-ui/chakra-autocomplete";
function App() {
const countries = [
"nigeria",
"japan",
"india",
"united states",
"south korea",
];
return (
<Flex pt="48" justify="center" align="center" w="full">
<Field.Root w="60">
<Field.Label>Olympics Soccer Winner</Field.Label>
<AutoComplete openOnFocus>
<AutoCompleteInput variant="subtle" />
<AutoCompleteList>
{countries.map((country, cid) => (
<AutoCompleteItem
key={`option-${cid}`}
value={country}
textTransform="capitalize"
>
{country}
</AutoCompleteItem>
))}
</AutoCompleteList>
</AutoComplete>
<Field.HelperText>Who do you support.</Field.HelperText>
</Field.Root>
</Flex>
);
}
export default App;
Creating Groups
You can create groups with the AutoCompleteGroup Component, and add a title with the AutoCompleteGroupTitle component.
import React from "react";
import {
AutoComplete,
AutoCompleteGroup,
AutoCompleteGroupTitle,
AutoCompleteInput,
AutoCompleteItem,
AutoCompleteList,
} from "@choc-ui/chakra-autocomplete";
import { Stack, Text } from "@chakra-ui/react";
export default function App() {
const continents = {
africa: ["nigeria", "south africa"],
asia: ["japan", "south korea"],
europe: ["united kingdom", "russia"],
};
return (
<Stack direction="column">
<Text>Group </Text>
<AutoComplete openOnFocus>
<AutoCompleteInput placeholder="Search..." variant="subtle" />
<AutoCompleteList>
{Object.entries(continents).map(([continent, countries], co_id) => (
<AutoCompleteGroup key={co_id} showDivider>
<AutoCompleteGroupTitle textTransform="capitalize">
{continent}
</AutoCompleteGroupTitle>
{countries.map((country, c_id) => (
<AutoCompleteItem
key={c_id}
value={country}
textTransform="capitalize"
>
{country}
</AutoCompleteItem>
))}
</AutoCompleteGroup>
))}
</AutoCompleteList>
</AutoComplete>
</Stack>
);
}
Accessing the internal state
To access the internal state of the AutoComplete, use a function as children (commonly known as a render prop). You'll get access to the internal state isOpen, with the onOpen and onClose methods.
import {
Flex,
Field,
Icon
} from "@chakra-ui/react";
import * as React from "react";
import {
AutoComplete,
AutoCompleteInput,
AutoCompleteItem,
AutoCompleteList,
} from "@choc-ui/chakra-autocomplete";
import { FiChevronRight, FiChevronDown } from "react-icons/fi";
import { InputGroup } from "./components/ui/input-group";
function App() {
const countries = [
"nigeria",
"japan",
"india",
"united states",
"south korea",
];
return (
<Flex pt="48" justify="center" align="center" w="full">
<Field.Root w="60">
<Field.Label>Olympics Soccer Winner</Field.Label>
<AutoComplete openOnFocus>
{({ isOpen }) => (
<>
<InputGroup
endElement={<Icon>{isOpen ? <FiChevronRight /> : <FiChevronDown />}</Icon>}
>
<AutoCompleteInput variant="subtle" placeholder="Search..." />
</InputGroup>
<AutoCompleteList>
{countries.map((country, cid) => (
<AutoCompleteItem
key={`option-${cid}`}
value={country}
textTransform="capitalize"
>
{country}
</AutoCompleteItem>
))}
</AutoCompleteList>
</>
)}
</AutoComplete>
<Field.HelperText>Who do you support.</Field.HelperText>
</Field.Root>
</Flex>
);
}
export default App;
Custom Rendering
You can Render whatever you want. The AutoComplete Items are regular Chakra Boxes.
import React from "react";
import {
AutoComplete,
AutoCompleteGroup,
AutoCompleteInput,
AutoCompleteItem,
AutoCompleteList,
} from "@choc-ui/chakra-autocomplete";
import { Stack, Text } from "@chakra-ui/react";
import { Avatar } from "./components/ui/avatar";
export default function App() {
const europeans = [
{ name: "Dan Abramov", image: "https://bit.ly/dan-abramov" },
{ name: "Kent Dodds", image: "https://bit.ly/kent-c-dodds" },
{ name: "Ryan Florence", image: "https://bit.ly/ryan-florence" },
];
const nigerians = [
{ name: "Segun Adebayo", image: "https://bit.ly/sage-adebayo" },
{ name: "Prosper Otemuyiwa", image: "https://bit.ly/prosper-baba" },
];
return (
<Stack direction="column">
<Text>Custom Render </Text>
<AutoComplete rollNavigation>
<AutoCompleteInput variant="subtle" placeholder="Search..." />
<AutoCompleteList>
<AutoCompleteGroup title="Nigerians" showDivider>
{nigerians.map((person, oid) => (
<AutoCompleteItem
key={`nigeria-${oid}`}
value={person.name}
textTransform="capitalize"
align="center"
>
<Avatar size="sm" name={person.name} src={person.image} />
<Text ml="4">{person.name}</Text>
</AutoCompleteItem>
))}
</AutoCompleteGroup>
<AutoCompleteGroup title="Europeans" showDivider>
{europeans.map((person, oid) => (
<AutoCompleteItem
key={`europe-${oid}`}
value={person.name}
textTransform="capitalize"
align="center"
>
<Avatar size="sm" name={person.name} src={person.image} />
<Text ml="4">{person.name}</Text>
</AutoCompleteItem>
))}
</AutoCompleteGroup>
</AutoCompleteList>
</AutoComplete>
</Stack>
);
}
Multi Select with Tags
Add the multiple prop to AutoComplete component, the AutoCompleteInput will now expose the tags in it's children function.
The onChange prop now returns an array of the chosen values
Now you can map the tags with the AutoCompleteTag component or any other component of your choice. The label and the onRemove method are now exposed.
Important - With Chakra UI V3, it is no longer possible to replicate the same styling to the Box wrapper as what the underlying Input is using. We are still looking into ways to resolve this, but neither the Chakra nor next-themes teams have published guidance on this yet.
import React from "react";
import {
AutoComplete,
AutoCompleteInput,
AutoCompleteItem,
AutoCompleteList,
AutoCompleteTag,
} from "@choc-ui/chakra-autocomplete";
import { Stack, Text } from "@chakra-ui/react";
export default function App() {
const countries = [
"nigeria",
"japan",
"india",
"united states",
"south korea",
];
return (
<Stack direction="column">
<Text>Multi select with tags</Text>
<AutoComplete openOnFocus multiple onChange={(vals) => console.log(vals)}>
<AutoCompleteInput placeholder="Search..." variant="subtle">
{({ tags }) =>
tags.map((tag, tid) => (
<AutoCompleteTag
key={tid}
label={tag.label}
onRemove={tag.onRemove}
/>
))
}
</AutoCompleteInput>
<AutoCompleteList>
{countries.map((country, cid) => (
<AutoCompleteItem
key={`option-${cid}`}
value={country}
textTransform="capitalize"
_selected={{ bg: "whiteAlpha.50" }}
_focus={{ bg: "whiteAlpha.100" }}
>
{country}
</AutoCompleteItem>
))}
</AutoCompleteList>
</AutoComplete>
</Stack>
);
}

Creatable Items
I know that title hardly expresses the point, but yeah, naming is tough. You might want your users to be able to add extra items when their options are not available in the provided options. e.g. adding a new tag to your Polywork profile.
First add the creatable prop to the AutoComplete component.
Then add the AutoCompleteCreatable component to the bottom of the list. Refer to the references for more info on this component.
import React from "react";
import {
AutoComplete,
AutoCompleteCreatable,
AutoCompleteInput,
AutoCompleteItem,
AutoCompleteList,
AutoCompleteTag,
} from "@choc-ui/chakra-autocomplete";
import { Stack, Text } from "@chakra-ui/react";
export default function App() {
const options = ["apple", "appoint", "zap", "cap", "japan"];
return (
<Stack direction="column">
<Text>Creatable </Text>
<AutoComplete multiple rollNavigation creatable>
<AutoCompleteInput
variant="subtle"
placeholder="Search basic..."
autoFocus
>
{({ tags }) =>
tags.map((tag, tid) => (
<AutoCompleteTag
key={tid}
label={tag.value}
onRemove={tag.onRemove}
disabled={tag.label === "japan"}
/>
))
}
</AutoCompleteInput>
<AutoCompleteList>
{options.map((option, oid) => (
<AutoCompleteItem
key={`option-${oid}`}
value={option}
textTransform="capitalize"
>
{option}
</AutoCompleteItem>
))}
<AutoCompleteCreatable />
</AutoCompleteList>
</AutoComplete>
</Stack>
);
}
Loading State
Need to pull data from API, but don't want your users to see a blank screen? You can enable the loading state by passing the isLoading prop to AutoComplete. By doing this, 2 other props will be enabled
-
loadingIcononAutoCompleteInputwill display some sort of loading icon on the right side of the input. By default, aSpinnerwill be displayed, but you can pass in any custom element to be rendered -
loadingStateonAutoCompleteListcan display custom loading content whenisLoadingistrue. All content will be rendered in the center of the list. By default, aSpinnerwill be displayed, but you can pass in any custom element to be rendered.
Best practice is to combine setTimeout and useEffect to create a debounce effect. This will prevent un-necessary API calls if your user types relatively quickly.
A working code demo can be found here
Integration with Form Libraries
It is relatively easy to integrate with form libaries such as React Hook Form, Formik, and others. Working examples can be found in the demos folder of this repo. See the Contributing section of this doc on how to clone and set it up for testing.
Does your favorite form library not have a working example? Submit a PR to get it added and help others using this library quickly get up and running.
Autocomplete methods
Assign a ref to the AutoComplete component and call the available methods with:
ref.current?.resetItems();
ref.current?.removeItem(itemValue);
Codesandbox Link Here
API Reference
NB: Feel free to request any additional Prop in Issues.
AutoComplete
Wrapper and Provider for AutoCompleteInput and AutoCompleteList
AutoComplete composes Box so you can pass all Box props to change its style.
NB: None of the props passed to it are required.
| Prop | Type | Description | Default |
| closeOnBlur | boolean | close suggestions when input is blurred | true |
| closeOnSelect | boolean | close suggestions when a suggestions is selected | true when multiple=false, false when multiple=true |
| creatable | boolean | Allow addition of arbitrary values not present in suggestions | false |
| defaultIsOpen | boolean | Suggestions list is open by default | false |
| prefocusFirstItem | boolean | Should prefocus first item intially, on query change, on open, and on filter out of current focused item | true |
| defaultValues | Array | Used to predefine tags, or value for the autocomplete component. Just pass an array of the values | βββ |
| disableFilter | boolean | disables filtering when set to true | false |
| emphasize | boolean | SystemStyleObject | Highlight matching characters in suggestions, you can pass the styles - false | false |
| defaultEmptyStateProps | FlexProps | Props to pass into the `Flex` component when using the default empty state. Does not apply when you supply your own custom `emptyState` | βββ |
| emptyState |
|
render message when no suggestions match query | true |
| filter |
|
custom filter function | βββ |
| focusInputOnSelect | boolean | focus input after a suggestion is selected | true |
| freeSolo | boolean | allow entering of any arbitrary values | false |
| isReadOnly | boolean | Make the component read-only | false |
| isLoading | boolean | Display loading animation on both the input and list elements | false |
| isPortalled | boolean | Determines if the popover content should be rendered in a Portal. Set to false to render content in DOM hierarchy. Useful when rendering inside of a Dialog |
true |
| listAllValuesOnFocus | boolean | Show all suggestions when user focuses the input, while it's not empty. | false |
| matchWidth | boolean | Chakra UI Popover.positioning.sameWidth property to match the popover content's width to the width of the container | true |
| maxSelections | number | limit possible number of tag selections in multiple mode | βββ |
| maxSuggestions | number | limit number of suggestions in list | βββ |
| multiple | boolean | allow tags multi selection | false |
| onChange |
|
function to run whenever autocomplete value(s) changes | βββ |
| onSelectOption |
|
method to call whenever a suggestion is selected | βββ |
| onOptionFocus |
|
method to call whenever a suggestion is focused | βββ |
| onReady |
|
method that exposes variables used in component | βββ |
| onTagRemoved |
|
method to call whenever a tag is removed | βββ |
| openOnFocus | boolean | open suggestions when input is focuses | false |
| placement | Placement | where autocomplete list will display. Accepts standard Floating UI placement values: top, bottom, left, right, or with alignments like top-start, bottom-end, etc. |
bottom |
| restoreOnBlurIfEmpty | boolean | if false, clearing the value of the input field will also clear the selected option | true |
| rollNavigation | boolean | allow keyboard navigation to switch to alternate ends when one end is reached | false |
| selectOnFocus | boolean | select the text in input when it's focused | false |
| shouldRenderSuggestions |
|
function to decide if suggestions should render, e.g. show suggestions only if there are at least two characters in the query value | βββ |
| submitKeys; |
|
A list of KeyboardEvent: key values, except for the "Enter" key, that trigger the click event of the currently selected Item. | βββ |
| suggestWhenEmpty | boolean | show suggestions when input value is empty | false |
| value | any | value of the component in the controlled state | --- |
AutoCompleteTag
Tags for multiple mode
AutoCompleteTag composes Tag so you can pass all Tag props to change its style.
| Prop |
Type | Description | Required | Default |
|---|---|---|---|---|
| disabled |
|
In the event that you need to lock certain tag so that they can't be removed in the interface, you can set the tags disabled. | No |
βββ |
| label |
|
Label that is displayed on the tag | Yes |
βββ |
| onRemove |
|
Method to remove the tag from selected values | Yes |
βββ |
AutoCompleteInput
Input for AutoComplete value.
AutoCompleteInput composes Input so you can pass all Input props to change its style.
| Prop |
Type | Description | Required | Default |
|---|---|---|---|---|
| children |
|
callback that returns
|
No |
βββ |
| ref |
|
provides a ref to the input element so the value can be referenced in additional contexts | No |
βββ |
| hidePlaceholder | boolean | hides the placeholder when children is not an empty array. intended usage for
|
No |
false |
| loadingIcon |
|
Element that will be displayed when isLoading is true | No | Spinner from Chakra-UI |
AutoCompleteList
Wrapper for AutoCompleteGroup and AutoCompleteItem
AutoCompleteList composes Box so you can pass all Box props to change its style.
| Prop |
Type | Description | Required | Default |
|---|---|---|---|---|
| loadingState | React.ReactNode | JSX | Content displayed in list while isLoading is true. Content will be centered | No | Spinner from Chakra-UI with an md size |
AutoCompleteGroup
Wrapper for collections of AutoCompleteItems
AutoCompleteGroup composes Box so you can pass all Box props to change its style.
| Prop |
Type | Description | Required | Default |
|---|---|---|---|---|
| showDivider | boolean | If true, a divider is shown | No | false |
| dividerColor | string | Color for divider, if present | No | inherit |
AutoCompleteItem
This Composes your suggestions
AutoCompleteItem composes Flex so you can pass all Flex props to change its style.
| Prop |
Type | Description | Required | Default |
|---|---|---|---|---|
| getValue | (value:any) => any | A method used to determine the key that holds the value, when the value prop is an object | no |
|
| label | string | The label for the Option | no |
βββ |
| value | string or Object | The value of the Option | yes |
βββ |
| fixed |
|
Make an item visible at all times, regardless of filtering or maxSuggestions | No | βββ |
| _fixed | SystemStyleObject | Styles for fixed Itemm | No |
|
| value | string | The value of the Option | yes |
βββ |
| disabled |
|
Make an item disabled, so it cannot be selected | No | βββ |
| _disabled | SystemStyleObject | Styles for disabled Item(s) | No |
|
| _selected | SystemStyleObject | Styles for selected Item(s) | No |
|
| _focus | SystemStyleObject | Styles for focused Item | No |
|
AutoCompleteCreatable
Used with the AutoComplete component's creatable prop, to allow users enter arbitrary values, not available in the provided options.
AutoCompleteCreatable composes Flex so you can pass all Flex props to change its style.
It also accepts a function as its children prop which is provided with the current inputValue.
| Prop |
Type | Description | Required | Default |
|---|---|---|---|---|
| children |
|
|
No |
βββ |
| alwaysDisplay |
|
When true, |
No |
βββ |
Contribute
- Clone this repository
git clone https://github.com/anubra266/choc-autocomplete.git
- Install all dependencies (with yarn)
yarn
- Install package example dependencies (with yarn)
cd example
yarn
Start the package server, and the example server
# root directory
yarn start
# example directory with (cd example)
yarn dev
Sponsors β¨
Thanks goes to these wonderful people (emoji key):
Contributors β¨
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!