Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
},
"changesets": [
"afraid-socks-deny",
"bright-hornets-destroy",
"calm-trains-camp",
"curvy-seals-sit",
"dirty-papayas-happen",
"empty-buses-wonder",
"famous-turkeys-burn",
Expand All @@ -20,9 +23,16 @@
"hot-turkeys-knock",
"legal-bags-tie",
"lemon-monkeys-help",
"mean-mice-train",
"mean-turkeys-help",
"mean-years-remain",
"moody-baboons-greet",
"nasty-parrots-laugh",
"orange-deers-battle",
"short-taxis-cross",
"slimy-roses-own",
"strong-ravens-greet",
"sweet-deers-smell",
"tall-cows-fold",
"thin-socks-travel"
]
Expand Down
16 changes: 16 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @clack/core

## 1.0.0-alpha.1

### Minor Changes

- 7bc3301: Prompts now have a `userInput` stored separately from their `value`.
- 2837845: Adds suggestion and path prompts
- df4eea1: Remove `suggestion` prompt and change `path` prompt to be an autocomplete prompt.

### Patch Changes

- bfe0dd3: Prevents placeholder from being used as input value in text prompts
- 34f52fe: Validates initial values immediately when using text prompts with initialValue and validate props.
- 94fee2a: Changes `placeholder` to 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

## 1.0.0-alpha.0

### Major Changes
Expand Down
7 changes: 5 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clack/core",
"version": "1.0.0-alpha.0",
"version": "1.0.0-alpha.1",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
Expand All @@ -21,7 +21,10 @@
"url": "https://github.com/bombshell-dev/clack/issues"
},
"homepage": "https://github.com/bombshell-dev/clack/tree/main/packages/core#readme",
"files": ["dist", "CHANGELOG.md"],
"files": [
"dist",
"CHANGELOG.md"
],
"keywords": [
"ask",
"clack",
Expand Down
24 changes: 24 additions & 0 deletions packages/prompts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @clack/prompts

## 1.0.0-alpha.1

### Minor Changes

- 7bc3301: Prompts now have a `userInput` stored separately from their `value`.
- 2837845: Adds suggestion and path prompts
- 9e5bc6c: Add support for signals in prompts, allowing them to be aborted.
- df4eea1: Remove `suggestion` prompt and change `path` prompt to be an autocomplete prompt.
- 9bd8072: Add a `required` option to autocomplete multiselect.

### Patch Changes

- bfe0dd3: Prevents placeholder from being used as input value in text prompts
- 94fee2a: Changes `placeholder` to be a visual hint rather than a tabbable value.
- Updated dependencies [bfe0dd3]
- Updated dependencies [7bc3301]
- Updated dependencies [2837845]
- Updated dependencies [34f52fe]
- Updated dependencies [94fee2a]
- Updated dependencies [4f6b3c2]
- Updated dependencies [df4eea1]
- Updated dependencies [8ead5d3]
- @clack/[email protected]

## 1.0.0-alpha.0

### Major Changes
Expand Down
7 changes: 5 additions & 2 deletions packages/prompts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clack/prompts",
"version": "1.0.0-alpha.0",
"version": "1.0.0-alpha.1",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
Expand All @@ -21,7 +21,10 @@
"url": "https://github.com/bombshell-dev/clack/issues"
},
"homepage": "https://github.com/bombshell-dev/clack/tree/main/packages/prompts#readme",
"files": ["dist", "CHANGELOG.md"],
"files": [
"dist",
"CHANGELOG.md"
],
"author": {
"name": "Nate Moore",
"email": "[email protected]",
Expand Down