cli-menu-kit 0.1.0 → 0.1.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.
|
@@ -50,7 +50,8 @@ async function showRadioMenu(config) {
|
|
|
50
50
|
// Extract number prefix if exists
|
|
51
51
|
const match = option.match(/^(\d+)\.\s*/);
|
|
52
52
|
const prefix = match ? '' : `${index + 1}. `;
|
|
53
|
-
|
|
53
|
+
// For radio menus, don't show selection indicator (pass undefined instead of false)
|
|
54
|
+
(0, renderer_js_1.renderOption)(option, undefined, index === selectedIndex, prefix);
|
|
54
55
|
lineCount++;
|
|
55
56
|
});
|
|
56
57
|
break;
|
package/package.json
CHANGED