@inquirer/prompts 7.9.0 → 7.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +13 -10
  2. package/package.json +15 -14
package/README.md CHANGED
@@ -15,16 +15,6 @@ Give it a try in your own terminal!
15
15
  npx @inquirer/demo@latest
16
16
  ```
17
17
 
18
- # Special Thanks
19
-
20
- <div align="center" markdown="1">
21
-
22
- [![Graphite](https://github.com/user-attachments/assets/53db40ca-2254-481a-a094-6597f8716e29)](https://graphite.dev/?utm_source=npmjs&utm_medium=repo&utm_campaign=inquirerjs)<br>
23
-
24
- ### [Graphite is the AI developer productivity platform helping teams on GitHub ship higher quality software, faster](https://graphite.dev/?utm_source=npmjs&utm_medium=repo&utm_campaign=inquirerjs)
25
-
26
- </div>
27
-
28
18
  # Installation
29
19
 
30
20
  <table>
@@ -519,6 +509,19 @@ A sortable checkbox prompt that maintains the order of selection. Perfect for pr
519
509
  (Linting, formatting, and analysis)
520
510
  ```
521
511
 
512
+ [**Checkbox Plus Plus Prompt**](https://github.com/behnamazimi/inquirer-checkbox-plus-plus)<br/>
513
+ A modern multiselect checkbox prompt with search and filter capabilities, highlighting, autocomplete, and improved UX. Supports both ESM and CommonJS and is compatible with @inquirer/core v10+.
514
+
515
+ ```
516
+ ? Select colors [searching: "re"]
517
+ ❯ ◉ The red color
518
+ ◯ The green color
519
+ ◉ The purple color
520
+ ◯ The orange color
521
+
522
+ ↑↓ navigate • space de/select • type search • 2 selected • ⏎ submit
523
+ ```
524
+
522
525
  # License
523
526
 
524
527
  Copyright (c) 2023 Simon Boudrias (twitter: [@vaxilart](https://twitter.com/Vaxilart))<br/>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inquirer/prompts",
3
- "version": "7.9.0",
3
+ "version": "7.10.0",
4
4
  "description": "Inquirer prompts, combined in a single package",
5
5
  "keywords": [
6
6
  "answer",
@@ -76,21 +76,22 @@
76
76
  "tsc": "tshy"
77
77
  },
78
78
  "dependencies": {
79
- "@inquirer/checkbox": "^4.3.0",
80
- "@inquirer/confirm": "^5.1.19",
81
- "@inquirer/editor": "^4.2.21",
82
- "@inquirer/expand": "^4.0.21",
83
- "@inquirer/input": "^4.2.5",
84
- "@inquirer/number": "^3.0.21",
85
- "@inquirer/password": "^4.0.21",
86
- "@inquirer/rawlist": "^4.1.9",
87
- "@inquirer/search": "^3.2.0",
88
- "@inquirer/select": "^4.4.0"
79
+ "@inquirer/checkbox": "^4.3.1",
80
+ "@inquirer/confirm": "^5.1.20",
81
+ "@inquirer/editor": "^4.2.22",
82
+ "@inquirer/expand": "^4.0.22",
83
+ "@inquirer/input": "^4.3.0",
84
+ "@inquirer/number": "^3.0.22",
85
+ "@inquirer/password": "^4.0.22",
86
+ "@inquirer/rawlist": "^4.1.10",
87
+ "@inquirer/search": "^3.2.1",
88
+ "@inquirer/select": "^4.4.1"
89
89
  },
90
90
  "devDependencies": {
91
91
  "@arethetypeswrong/cli": "^0.18.2",
92
- "@inquirer/type": "^3.0.9",
93
- "tshy": "^3.0.2"
92
+ "@inquirer/type": "^3.0.10",
93
+ "@repo/tsconfig": "0.0.0",
94
+ "tshy": "^3.0.3"
94
95
  },
95
96
  "engines": {
96
97
  "node": ">=18"
@@ -115,5 +116,5 @@
115
116
  "publishConfig": {
116
117
  "access": "public"
117
118
  },
118
- "gitHead": "87cb01e67a25983bdaf0d74a7685915c0afb5f23"
119
+ "gitHead": "6881993e517e76fa891b72e1f5086fd11f7676ac"
119
120
  }