blun-king-cli 9.1.175 → 9.1.176
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/blun.mjs +2 -2
- package/package.json +1 -1
package/blun.mjs
CHANGED
|
@@ -414246,10 +414246,10 @@ var ChoicePickerComponent = class extends Container {
|
|
|
414246
414246
|
lines.push(line);
|
|
414247
414247
|
if (opt.description !== void 0 && opt.description.length > 0) {
|
|
414248
414248
|
const descriptionWidth = Math.max(1, width - 4);
|
|
414249
|
-
const descriptionColor = isSelected && opt.descriptionTone !== void 0 ? opt.descriptionTone : "
|
|
414249
|
+
const descriptionColor = isSelected && opt.descriptionTone !== void 0 ? opt.descriptionTone : "textDim";
|
|
414250
414250
|
for (const descLine of wrapDescription$1(opt.description, descriptionWidth)) lines.push(currentTheme.fg(descriptionColor, ` ${descLine}`));
|
|
414251
414251
|
}
|
|
414252
|
-
if (this.opts.spaced
|
|
414252
|
+
if (this.opts.spaced !== false && i < view.page.end - 1) lines.push("");
|
|
414253
414253
|
}
|
|
414254
414254
|
lines.push("");
|
|
414255
414255
|
if (view.page.pageCount > 1) lines.push(currentTheme.fg("textMuted", ` ${uiText("common.pageCount", {
|