| 17 | * Input component - single-line text input with horizontal scrolling |
| 18 | */ |
| 19 | export class Input implements Component, Focusable { |
| 20 | private value: string = ""; |
| 21 | private cursor: number = 0; // Cursor position in the value |
| 22 | public onSubmit?: (value: string) => void; |
nothing calls this directly
no outgoing calls
no test coverage detected