Inline Input
Inline text input with keyboard commit and cancel support. Install Inline Input from the VLLNT UI registry with the shadcn CLI.
Inline text input with keyboard commit and cancel support. Part of the form family in VLLNT UI, it ships as a machine-readable registry entry — copy the source directly into your app with the shadcn CLI and own it, no runtime dependency on a component library.
Preview
Switch between light and dark to inspect the embedded Storybook preview.
Installation
Add Inline Input to your project with the shadcn CLI. The source lands in your codebase, ready to adapt:
pnpm dlx shadcn@latest add https://ui.vllnt.ai/r/inline-input.jsonSource
"use client";
import type { KeyboardEvent } from "react";
import { cn } from "../../lib/utils";
import { Input } from "../input/input";
export type InlineInputProps = {
className?: string;
/** Called when user presses Escape or blurs without changes. */
onCancel?: () => void;
/** Called when the input value changes. */
onChange: (value: string) => void;
/** Called when user presses Enter or blurs with changes. */
onCommit: (value: string) => void;
/** Current input value. */
value: string;
};
/**
* Inline input for editing text with keyboard support.
* - Enter: commits the value
* - Escape: cancels editing
* - Blur: commits the value
*/
export function InlineInput({
className,
onCancel,
onChange,
onCommit,
value,
}: InlineInputProps) {
const handleKeyDown = (event: KeyboardEvent<HTMLInputElement>) => {
if (event.key === "Enter") {
event.preventDefault();
onCommit(value);
} else if (event.key === "Escape") {
event.preventDefault();
onCancel?.();
}
};
return (
<Input
autoFocus // eslint-disable-line jsx-a11y/no-autofocus
className={cn("flex-1 h-7 text-sm", className)}
onBlur={() => {
onCommit(value);
}}
onChange={(event) => {
onChange(event.target.value);
}}
onClick={(event) => {
event.stopPropagation();
}}
onKeyDown={handleKeyDown}
value={value}
/>
);
}
Stories
Explore every variant and state in the interactive Storybook:
Preview
Switch between light and dark to inspect the embedded Storybook preview.