Releases: SBoudrias/Inquirer.js
Releases · SBoudrias/Inquirer.js
@inquirer/rawlist@2.3.0
- Choices can now be an array of string.
- Includes
@inquirer/core@9.1.0
adding support for{ signal: AbortSignal }
in the context options to programatically cancel a prompt.
@inquirer/expand@2.2.0
- [Typescript]
value
is now generic and will be inferred from the values passed in. - [Typescript] Enforce the use of valid
key
in the choice array. - Fix: rendering of selected values once prompt is done.
- Includes
@inquirer/core@9.1.0
adding support for{ signal: AbortSignal }
in the context options to programatically cancel a prompt.
@inquirer/core@9.1.0
- Adds support for
{ signal: AbortSignal }
in the context options to programatically cancel a prompt. This is now released to all built-in prompts.
@inquirer/checkbox@2.5.0
- Each choice can now provide a
description
(like for theselect
andsearch
prompts) choices
can now be an array of string.- Includes
@inquirer/core@9.1.0
adding support for{ signal: AbortSignal }
in the context options to programatically cancel a prompt.
@inquirer/core@9.0.10
- Fix a memory leak in the core. A warning would appear once the same prompt is repeated > 10 times.
The fix is released in all other packages through a patch version.
@inquirer/core@9.0.9
- Improve rendering performance (should reduce appearance of screen flickering)
The improvement is released in all other packages through a patch version.
@inquirer/core@9.0.8
- Fix issue where hooks cleanup would wait until all timeouts resolve before triggering. Now hooks cleanup functions are run immediately when the user press
ctrl+c
or send other exit signals.
@inquirer/number@1.0.7
- Fix support for decimal numbers
@inquirer/core@9.0.7
- Enforce
useEffect
cleanup functions should only run once.
@inquirer/rawlist@2.2.0
- Add support for
short
property on rawlist choices.