This component no longer exists. It was in diceui/base’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.
editable-autosize-demo
diceui-base/editable-autosize-demoRemovedExample
diceui/base publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/sadmann7/diceui/HEAD/docs/public/r/styles/base-vega/editable-autosize-demo.jsonSource
1import { Button } from "@/registry/bases/base/ui/button";2import {3 Editable,4 EditableArea,5 EditableCancel,6 EditableInput,7 EditableLabel,8 EditablePreview,9 EditableSubmit,10 EditableToolbar,11} from "@/registry/bases/base/ui/editable";1213export default function EditableAutosizeDemo() {14 return (15 <Editable16 defaultValue="Adjust the size of the input with the text inside."17 autosize18 >19 <EditableLabel>Autosize editable</EditableLabel>20 <EditableArea>21 <EditablePreview className="whitespace-pre-wrap" />22 <EditableInput />23 </EditableArea>24 <EditableToolbar>25 <EditableSubmit render={<Button size="sm" />}>Save</EditableSubmit>26 <EditableCancel render={<Button variant="outline" size="sm" />}>27 Cancel28 </EditableCancel>29 </EditableToolbar>30 </Editable>31 );32}
What it pulls in
Other registry items
