Releases: bombshell-dev/clack
@clack/prompts@1.0.0
Major Changes
-
c713fd5: The package is now distributed as ESM-only. In
v0releases, the package was dual-published as CJS and ESM.For existing CJS projects using Node v20+, please see Node's guide on Loading ECMAScript modules using
require().
Minor Changes
-
415410b: This adds a custom filter function to autocompleteMultiselect. It could be used, for example, to support fuzzy searching logic.
-
7bc3301: Prompts now have a
userInputstored separately from theirvalue. -
8409f2c: feat: add styleFrame option for spinner
-
2837845: Adds suggestion and path prompts
-
99c3530: Adds
formatoption to the note prompt to allow formatting of individual lines -
0aaee4c: Added new
taskLogprompt for log output which is cleared on success -
729bbb6: Add support for customizable spinner cancel and error messages. Users can now customize these messages either per spinner instance or globally via the
updateSettingsfunction to support multilingual CLIs.This update also improves the architecture by exposing the core settings to the prompts package, enabling more consistent default message handling across the codebase.
// Per-instance customization const spinner = prompts.spinner({ cancelMessage: "Operación cancelada", // "Operation cancelled" in Spanish errorMessage: "Se produjo un error", // "An error occurred" in Spanish }); // Global customization via updateSettings prompts.updateSettings({ messages: { cancel: "Operación cancelada", // "Operation cancelled" in Spanish error: "Se produjo un error", // "An error occurred" in Spanish }, }); // Settings can now be accessed directly console.log(prompts.settings.messages.cancel); // "Operación cancelada" // Direct options take priority over global settings const spinner = prompts.spinner({ cancelMessage: "Cancelled", // This will be used instead of the global setting });
-
44df9af: Adds a new
groupSpacingoption to grouped multi-select prompts. If set to an integer greater than 0, it will add that number of new lines between each group. -
55645c2: Support wrapping autocomplete and select prompts.
-
9e5bc6c: Add support for signals in prompts, allowing them to be aborted.
-
f2c2b89: Adds
AutocompletePromptto core with comprehensive tests and implement bothautocompleteandautocomplete-multiselectcomponents in prompts package. -
38019c7: Updates the API for stopping spinners and progress bars to be clearer
Previously, both the spinner and progress bar components used a single
stopmethod that accepted a code to indicate success, cancellation, or error. This update separates these into distinct methods:stop(),cancel(), anderror():const spinner = prompts.spinner(); spinner.start(); // Cancelling a spinner - spinner.stop(undefined, 1); + spinner.cancel(); // Stopping with an error - spinner.stop(undefined, 2); + spinner.error();
As before, you can pass a message to each method to customize the output displayed:
spinner.cancel("Operation cancelled by user"); progressBar.error("An error occurred during processing");
-
c45b9fb: Adds support for detecting spinner cancellation via CTRL+C. This allows for graceful handling of user interruptions during long-running operations.
-
f10071e: Using the
groupmethod, task logs can now have groups which themselves can have scrolling windows of logs. -
df4eea1: Remove
suggestionprompt and changepathprompt to be an autocomplete prompt. -
76fd17f: Added new
boxprompt for rendering boxed text, similar a note. -
9a09318: Adds new
progressprompt to display a progess-bar -
1604f97: Add
clearOnErroroption to password prompt to automatically clear input when validation fails -
9bd8072: Add a
requiredoption to autocomplete multiselect. -
19558b9: Added support for custom frames in spinner prompt
Patch Changes
- 46dc0a4: Fixes multiselect only shows hints on the first item in the options list. Now correctly shows hints for all selected options with hint property.
- aea4573: Clamp scrolling windows to 5 rows.
- bfe0dd3: Prevents placeholder from being used as input value in text prompts
- 55eb280: Fix placeholder rendering when using autocomplete.
- 4d1d83b: Fixes rendering of multi-line messages and options in select prompt.
- 6176ced: Add withGuide support to note prompt
- 7b009df: Fix spinner clearing too many lines upwards when non-wrapping.
- 43aed55: Change styling of disabled multi-select options to have strikethrough.
- 17342d2: Exposes a new
SpinnerResulttype to describe the return type ofspinner - 282b39e: Wrap spinner output to allow for multi-line/wrapped messages.
- 2feaebb: Fix duplicated logs when scrolling through options with multiline messages by calculating
rowPaddingdynamically based on actual rendered lines instead of using a hardcoded value. - 69681ea: Strip destructive ANSI codes from task log messages.
- b0fa7d8: Add support for wrapped messages in multi line prompts
- 9999adf: fix note component overflow bug
- 6868c1c: Adds a new
selectableGroupsboolean to the group multi-select prompt. UsingselectableGroups: falsewill disable the ability to select a top-level group, but still allow every child to be selected individually. - 7df841d: Removed all trailing space in prompt output and fixed various padding rendering bugs.
- 2839c66: fix(note): hard wrap text to column limit
- 7a556ad: Updates all prompts to accept a custom
outputandinputstream - 17d3650: Use a default import for picocolors to avoid run time errors in some environments.
- 7cc8a55: Messages passed to the
stopmethod of a spinner no longer have dots stripped. - b103ad3: Allow disabled options in multi-select and select prompts.
- 71b5029: Add missing nullish checks around values.
- 1a45f93: Switched from wrap-ansi to fast-wrap-ansi
- f952592: Fixes missing guide when rendering empty log lines.
- 372b526: Add
clearmethod to spinner for stopping and clearing. - d25f6d0: fix(note, box): handle CJK correctly
- 94fee2a: Changes
placeholderto be a visual hint rather than a tabbable value. - 7530af0: Fixes wrapping of cancelled and success messages of select prompt
- 4c89dd7: chore: use more accurate type to replace any in group select
- 0b852e1: Handle
stopcalls on spinners which have not yet been started. - 42adff8: fix: add missing guide line in autocomplete-multiselect
- 8e2e30a: fix: fix autocomplete bar color when validate
- 2048eb1: Fix spinner's dots behavior with custom frames
- acc4c3a: Add a new
withGuideoption to all prompts to disable the default clack border - 9b92161: Show symbol when withGuide is true for log messages
- 68dbf9b: select-key: Fixed wrapping and added new
caseSensitiveoption - 09e596c: refactor(progress): remove unnecessary return statement in start function
- 2310b43: Allow custom writables as output stream.
- ae84dd0: Update key binding text to show tab/space when navigating, and tab otherwise.
- Updated dependency on
@clack/coreto1.0.0
@clack/core@1.0.0
Major Changes
-
c713fd5: The package is now distributed as ESM-only. In
v0releases, the package was dual-published as CJS and ESM.For existing CJS projects using Node v20+, please see Node's guide on Loading ECMAScript modules using
require().
Minor Changes
-
7bc3301: Prompts now have a
userInputstored separately from theirvalue. -
2837845: Adds suggestion and path prompts
-
729bbb6: Add support for customizable spinner cancel and error messages. Users can now customize these messages either per spinner instance or globally via the
updateSettingsfunction to support multilingual CLIs.This update also improves the architecture by exposing the core settings to the prompts package, enabling more consistent default message handling across the codebase.
// Per-instance customization const spinner = prompts.spinner({ cancelMessage: "Operación cancelada", // "Operation cancelled" in Spanish errorMessage: "Se produjo un error", // "An error occurred" in Spanish }); // Global customization via updateSettings prompts.updateSettings({ messages: { cancel: "Operación cancelada", // "Operation cancelled" in Spanish error: "Se produjo un error", // "An error occurred" in Spanish }, }); // Settings can now be accessed directly console.log(prompts.settings.messages.cancel); // "Operación cancelada" // Direct options take priority over global settings const spinner = prompts.spinner({ cancelMessage: "Cancelled", // This will be used instead of the global setting });
-
55645c2: Support wrapping autocomplete and select prompts.
-
f2c2b89: Adds
AutocompletePromptto core with comprehensive tests and implement bothautocompleteandautocomplete-multiselectcomponents in prompts package. -
df4eea1: Remove
suggestionprompt and changepathprompt to be an autocomplete prompt. -
1604f97: Add
clearOnErroroption to password prompt to automatically clear input when validation fails
Patch Changes
- 0718b07: fix: export
*Optionstypes for prompts. - bfe0dd3: Prevents placeholder from being used as input value in text prompts
- 6868c1c: Adds a new
selectableGroupsboolean to the group multi-select prompt. UsingselectableGroups: falsewill disable the ability to select a top-level group, but still allow every child to be selected individually. - 7df841d: Removed all trailing space in prompt output and fixed various padding rendering bugs.
- a4f5034: Fixes an edge case for placeholder values. Previously, when pressing
enteron an empty prompt, placeholder values would be ignored. Now, placeholder values are treated as the prompt value. - b103ad3: Allow disabled options in multi-select and select prompts.
- 71b5029: Add missing nullish checks around values.
- a36292b: Fix "TTY initialization failed: uv_tty_init returned EBADF (bad file descriptor)" error happening on Windows for non-tty terminals.
- 1a45f93: Switched from wrap-ansi to fast-wrap-ansi
- 4ba2d78: Support short terminal windows when re-rendering by accounting for off-screen lines
- 34f52fe: Validates initial values immediately when using text prompts with initialValue and validate props.
- 94fee2a: Changes
placeholderto be a visual hint rather than a tabbable value. - 4f6b3c2: Set initial values of auto complete prompt to first option when multiple is false.
- 8ead5d3: Avoid passing initial values to core when using auto complete prompt
- acc4c3a: Add a new
withGuideoption to all prompts to disable the default clack border - 68dbf9b: select-key: Fixed wrapping and added new
caseSensitiveoption - 2310b43: Allow custom writables as output stream.
- d98e033: add invert selection for multiselect prompt
@clack/prompts@1.0.0-alpha.10
Minor Changes
- 415410b: This adds a custom filter function to autocompleteMultiselect. It could be used, for example, to support fuzzy searching logic.
Patch Changes
@clack/core@1.0.0-alpha.8
Patch Changes
- 68dbf9b: select-key: Fixed wrapping and added new
caseSensitiveoption
@clack/prompts@1.0.0-alpha.9
@clack/prompts@1.0.0-alpha.8
Patch Changes
- 43aed55: Change styling of disabled multi-select options to have strikethrough.
- 2feaebb: Fix duplicated logs when scrolling through options with multiline messages by calculating
rowPaddingdynamically based on actual rendered lines instead of using a hardcoded value. - 42adff8: fix: add missing guide line in autocomplete-multiselect
- 8e2e30a: fix: fix autocomplete bar color when validate
- 9b92161: Show symbol when withGuide is true for log messages
@clack/prompts@1.0.0-alpha.7
Minor Changes
-
38019c7: Updates the API for stopping spinners and progress bars to be clearer
Previously, both the spinner and progress bar components used a single
stopmethod that accepted a code to indicate success, cancellation, or error. This update separates these into distinct methods:stop(),cancel(), anderror():const spinner = prompts.spinner(); spinner.start(); // Cancelling a spinner - spinner.stop(undefined, 1); + spinner.cancel(); // Stopping with an error - spinner.stop(undefined, 2); + spinner.error();
As before, you can pass a message to each method to customize the output displayed:
spinner.cancel("Operation cancelled by user"); progressBar.error("An error occurred during processing");
Patch Changes
- 4d1d83b: Fixes rendering of multi-line messages and options in select prompt.
- 6176ced: Add withGuide support to note prompt
- 69681ea: Strip destructive ANSI codes from task log messages.
- b0fa7d8: Add support for wrapped messages in multi line prompts
- 7530af0: Fixes wrapping of cancelled and success messages of select prompt
- acc4c3a: Add a new
withGuideoption to all prompts to disable the default clack border - Updated dependencies [0718b07]
- Updated dependencies [4ba2d78]
- Updated dependencies [acc4c3a]
- @clack/core@1.0.0-alpha.7
@clack/core@1.0.0-alpha.7
@clack/prompts@1.0.0-alpha.6
@clack/core@1.0.0-alpha.6
Patch Changes
- b103ad3: Allow disabled options in multi-select and select prompts.