Releases: SBoudrias/Inquirer.js
Releases · SBoudrias/Inquirer.js
[email protected]
- Fix #1555:
when
behaviour changed unexpectedly when returning a falsy value.
[email protected]
No technical breaking changes; but we changed the style of the question prefix
once the answer is provided. Once a question is answer, the prefix becomes a tick mark (previously it was the same ?
as when the prompt is idle.)
This is theme-able, and so can be overwritten to with theme.prefix
.
@inquirer/[email protected]
No technical breaking changes; but we changed the style of the question prefix
once the answer is provided. Once a question is answer, the prefix becomes a tick mark (previously it was the same ?
as when the prompt is idle.)
This is theme-able, and so can be overwritten to with theme.prefix
.
@inquirer/[email protected]
theme.prefix
can now be defined per status:{ idle: string; done: string; }
theme.prefix
changed the defaultprefix.done
style to a tick mark (previously was the same?
as when idle.)theme.message
now takes a second argument representing the status of the prompt;(message: string, status: 'idle' | 'loading' | 'done') => string
- Bump dependencies & an internal refactor of exit handlers.
[email protected]
- Fix the
filter
option not working. - The
signal: AbortSignal
didn't work with class based prompts (OSS plugins.) Now it should work consistently with legacy style prompts.
[email protected]
- Fix
expand
prompt being broken if a Separator was in thechoices
array.
@inquirer/[email protected]
- Add support for
Separator
in thechoices
array.
[email protected]
- Includes various fixes & new features to the different built-in prompts
- Fix: Major rework of the Typescript types. Hoping to reduce the amount of finicky type errors (or wrong types) you might've ran into.
@inquirer/[email protected]
- Choices can now be an array of string.
- Includes
@inquirer/[email protected]
adding support for{ signal: AbortSignal }
in the context options to programatically cancel a prompt.
@inquirer/[email protected]
- Search now support autocomplete like behaviours - See documentation
- Search results can now be an array of string.
- Includes
@inquirer/[email protected]
adding support for{ signal: AbortSignal }
in the context options to programatically cancel a prompt. - Fix: help tip now doesn't render if results aren't paginated or if there's no results.