Search input with optional suggestions.
import { SearchBox } from 'nikcli-tui';
new SearchBox({ parent: screen, label: 'Search' });
npm run tsx:core-gallery
npm i nikcli-tui
new SearchBox({ parent: screen, top: 1, left: 2, width: 40, onSearch: v => console.log('search:', v) });
const sb = new SearchBox({ parent: screen, top: 1, left: 2, width: 50, value: 'init', onChange: v => console.log(v) }); sb.setValue('hello');