pi-agent-toolkit 0.3.0 → 0.3.1
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.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -919,7 +919,7 @@ var SELECT_ALL = "__all__";
|
|
|
919
919
|
async function selectComponents(message, components) {
|
|
920
920
|
if (components.length === 0) return [];
|
|
921
921
|
const result = await p3.multiselect({
|
|
922
|
-
message,
|
|
922
|
+
message: `${message} ${pc.dim("(space = toggle, enter = confirm, enter with none = skip)")}`,
|
|
923
923
|
options: [
|
|
924
924
|
{ value: SELECT_ALL, label: "* Select all", hint: `all ${components.length} items` },
|
|
925
925
|
...components.map((c) => ({
|