🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@inquirer/rawlist

Package Overview
Dependencies
Maintainers
2
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@inquirer/rawlist - npm Package Compare versions

Comparing version
5.2.6
to
5.2.7
+4
-2
dist/index.js

@@ -101,6 +101,8 @@ import { createPrompt, useMemo, useState, useKeypress, usePrefix, isDownKey, isEnterKey, isUpKey, Separator, makeTheme, ValidationError, } from '@inquirer/core';

let next = active;
let nextChoice;
do {
next = (next + offset + choices.length) % choices.length;
} while (!isSelectableChoice(choices[next]));
setValue(choices[next].key);
nextChoice = choices[next];
} while (!isSelectableChoice(nextChoice));
setValue(nextChoice.key);
}

@@ -107,0 +109,0 @@ }

{
"name": "@inquirer/rawlist",
"version": "5.2.6",
"version": "5.2.7",
"description": "Inquirer rawlist prompt",

@@ -70,7 +70,7 @@ "keywords": [

"dependencies": {
"@inquirer/core": "^11.1.7",
"@inquirer/type": "^4.0.4"
"@inquirer/core": "^11.1.8",
"@inquirer/type": "^4.0.5"
},
"devDependencies": {
"typescript": "^5.9.3"
"typescript": "^6.0.2"
},

@@ -90,3 +90,3 @@ "peerDependencies": {

"types": "./dist/index.d.ts",
"gitHead": "b218fcc4afe888a58957aa78c9a032f9bd2d60cb"
"gitHead": "e68fe01d65359e083581c48c4a18cd8f97d88842"
}