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
- (0, renderer_js_1.renderOption)(option, false, index === selectedIndex, prefix);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cli-menu-kit",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A lightweight, customizable CLI menu system with keyboard shortcuts and real-time rendering",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",