This component no longer exists. It was in Wednesday UI’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-13 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Autocomplete Disabled Item Demo
wednesday-ui/autocomplete-disabled-item-demoRemovedComponent
A demo of the autocomplete disabled item
Install it
npx shadcn@latest add https://ui.ednesdayw.com/r/autocomplete-disabled-item-demo.jsonSource
1"use client";23import {4 Autocomplete,5 AutocompleteContent,6 AutocompleteEmpty,7 AutocompleteInput,8 AutocompleteItem,9} from "@/components/ui/autocomplete";10import Image from "next/image";11import { useState } from "react";1213const TOKENS = [14 {15 value: "USDT",16 disabled: false,17 },18 {19 value: "USDC",20 disabled: true,21 },22 {23 value: "USDe",24 disabled: false,25 },26 {27 value: "USDS",28 disabled: false,29 },30];3132export const AutocompleteDisabledItemExample = () => {33 const inputVariants = ["default", "faded", "bordered", "underline"] as const;3435 return (36 <div className="flex flex-col gap-4 w-full max-w-72">37 {inputVariants.map((variant) => (38 <TokenAutocomplete key={variant} variant={variant} />39 ))}40 </div>41 );42};4344const TokenAutocomplete = ({45 variant,46}: {47 variant: "default" | "faded" | "bordered" | "underline";48}) => {49 const [token, setToken] = useState("");50 return (51 <Autocomplete52 key={variant}53 value={token}54 onChange={setToken}55 size="md"56 variant={variant}57 >58 <AutocompleteInput59 placeholder="Select a token"60 className={variant !== "underline" ? "rounded-2xl" : ""}61 startContent={62 token && (63 <Image64 src={`/tokens/${token}.svg`}65 alt={token}66 width={24}67 height={24}68 className="rounded-full"69 />70 )71 }72 />73 <AutocompleteContent>74 {TOKENS.map(({ value, disabled }) => (75 <AutocompleteItem76 key={value}77 value={value}78 label={value}79 disabled={disabled}80 >81 <div className="flex items-center gap-1.5">82 <Image83 src={`/tokens/${value}.svg`}84 alt={value}85 width={24}86 height={24}87 className="rounded-full"88 />89 <span>{value}</span>90 </div>91 </AutocompleteItem>92 ))}93 <AutocompleteEmpty>No results.</AutocompleteEmpty>94 </AutocompleteContent>95 </Autocomplete>96 );97};
What it pulls in
Other registry items
