Overlay modal dialog for focused interactions.
import { Modal } from 'nikcli-tui';
new Modal({ parent: screen, title: 'Action', content: 'Hello', closable: true });
npm run tsx:core-gallery
npm i nikcli-tui
const m = new Modal({ parent: screen, title: 'Confirm', content: 'Are you sure?', closable: true }); m.show();
const modal = new Modal({ parent: screen, title: 'Action' }); setTimeout(() => modal.close(), 1200);