Dropdown selection with keyboard navigation.
import { Select } from 'nikcli-tui';
new Select({ parent: screen, options: ['One','Two','Three'] });
npm run tsx:core-gallery
/
Esc
npm i nikcli-tui
new Select({ parent: screen, top: 1, left: 2, width: 24, options: ['One','Two','Three'], onSelect: (i, v) => console.log(i, v) });
new Select({ parent: screen, top: 1, left: 30, width: 24, options: ['alpha','beta','gamma'], searchable: true, placeholder: 'Pick one' });
placeholder
maxHeight