[READ-ONLY] Mirror of https://github.com/bombshell-dev/clack. Effortlessly build beautiful command-line apps bomb.sh/docs/clack/basics/getting-started/
cli command-line command-line-app node prompt prompts
5

Configure Feed

Select the types of activity you want to include in your feed.

fix: multiselect colors

Bruno Rocha (Aug 14, 2023, 3:56 PM -0300) 4a1868cc affd0b9d

+7 -3
+7 -3
packages/prompts/src/index.ts
··· 537 537 } else { 538 538 line = opt(option, active ? 'active' : 'inactive'); 539 539 } 540 - return formatTextWithMaxWidth(line); 540 + return formatTextWithMaxWidth(line, { 541 + defaultSymbol: color.yellow(S_BAR), 542 + }); 541 543 }) 542 544 .join('\n'), 543 545 formatTextWithMaxWidth(this.error, { ··· 566 568 } else { 567 569 line = opt(option, active ? 'active' : 'inactive'); 568 570 } 569 - return formatTextWithMaxWidth(line); 571 + return formatTextWithMaxWidth(line, { 572 + defaultSymbol: color.cyan(S_BAR), 573 + }); 570 574 }) 571 575 .join('\n'), 572 - color.gray(S_BAR_END), 576 + color.cyan(S_BAR_END), 573 577 ].join('\n'); 574 578 } 575 579 }