Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib/components/SearchInput.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
clearLabel?: string;
/** The underlying input element (bindable) — e.g. for app shortcut
* handlers that focus the search field. */
inputEl?: HTMLInputElement;
inputEl?: HTMLInputElement | undefined;
class?: string;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/TextInput.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
/** Trailing adornment inside the border (icon, clear button, kbd). */
suffix?: Snippet;
/** The underlying input element (bindable) — for focus management. */
inputEl?: HTMLInputElement;
inputEl?: HTMLInputElement | undefined;
class?: string;
}

Expand Down
Loading