Inquirer.js Versions Save

A collection of common interactive command line user interfaces.

[email protected]

3 weeks ago
  • editor prompt: Fixed compatibility issue between default and waitUserInput options. #1405

@inquirer/[email protected]

3 weeks ago
  • makeTheme now performs deep merges of the theme objects.

@inquirer/[email protected]

1 month ago
  • [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/[email protected]

1 month ago
  • Fix: breaking change wrongly removed the Separator export.

@inquirer/[email protected]

1 month ago
  • Help tip behaviors are now customizable through theme options.

@inquirer/[email protected]

1 month ago
  • Help tip behaviors are now customizable through theme options.

@inquirer/[email protected]

1 month ago
  • [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/[email protected]

1 month ago
  • [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/[email protected]

1 month ago
  • Fork of figures to get new features and CJS support. We plan on maintaining it ourselves for now.

@inquirer/[email protected]

1 month ago
  • On windows, we will now use unicode characters whenever possible