Skip to content

Releases: SBoudrias/Inquirer.js

@inquirer/core@8.1.0

26 Apr 15:34
Compare
Choose a tag to compare
  • [Typescript] useState doesn't require a default value anymore; in which case it'll default to undefined
  • [Typescript] useRef doesn't require a default value anymore; in which case it'll default to undefined

Examples:

const [value, setValue] = useState<number>();
// value: number | undefined;

const [value, setValue] = useState<number>(1);
// value: number;

@inquirer/prompts@5.0.1

16 Apr 15:07
Compare
Choose a tag to compare
  • Fix: breaking change wrongly removed the Separator export.

inquirer@9.2.18

12 Apr 18:50
Compare
Choose a tag to compare
  • On windows, we will now use unicode characters whenever possible

@inquirer/select@2.3.0

12 Apr 19:13
Compare
Choose a tag to compare
  • Help tip behaviors are now customizable through theme options.

@inquirer/prompts@5.0.0

12 Apr 19:12
Compare
Choose a tag to compare
  • [Breaking #1384] @inquirer/core isn't exported from @inquirer/prompts anymore. If you want to create custom prompts, import from the core package. This decision was made to disambiguate what breaks in each package - with prompts re-exporting core, any core breaking change (no matter how minor) caused a major version bump. Now only prompts interfaces breaking changes will be major on prompts. We're hoping this will simplify your usage of @inquirer/* packages.

@inquirer/prompts@4.3.3

12 Apr 18:51
Compare
Choose a tag to compare
  • On windows, we will now use unicode characters whenever possible

@inquirer/figures@1.0.0

12 Apr 18:52
Compare
Choose a tag to compare
  • Fork of figures to get new features and CJS support. We plan on maintaining it ourselves for now.

@inquirer/core@8.0.0

12 Apr 19:10
Compare
Choose a tag to compare
  • [Breaking] usePagination() doesn't return help tips anymore (and also doesn't take a theme argument anymore.) Help tips are now solely the responsibility of prompt implementation.

@inquirer/checkbox@2.3.0

12 Apr 19:12
Compare
Choose a tag to compare
  • Help tip behaviors are now customizable through theme options.

@inquirer/prompts@4.3.2

05 Apr 14:58
Compare
Choose a tag to compare
  • Performance improvements (less flickering mainly noticeable on select/checkbox)