A search field above a list — the first element of the filter bar. It filters, it does not search: it narrows the list on every keystroke, no Search button.
IngotToolbar above a list where records are found by name, code or slug.value: string — The current query. Controlled from outside.onChange: (next: string) => void — The new query on every keystroke. Debouncing belongs to the caller, next to the data — the field cannot know whether a network request rides on it.label: string — A translated aria-label. A placeholder is no substitute for a name — it disappears once filled.placeholder: string — A translated format hint (“Search by name or code…”).disabled: boolean — A disabled field. Defaults to false.ref: React.Ref<HTMLInputElement> — A ref to the field itself — for the keyboard shortcut that jumps into search. Not for focus on mount; that is what autoFocus is for.className: string — A pass-through class on the wrapper — the screen sets the width.testId: string — An anchor for tests — on the input.