ccperm 1.9.4 → 1.9.5
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/dist/interactive.js +1 -1
- package/dist/renderer.js +1 -1
- package/package.json +1 -1
package/dist/interactive.js
CHANGED
|
@@ -143,7 +143,7 @@ function renderList(state, withPerms, emptyCount) {
|
|
|
143
143
|
const truncName = r.shortName.length > nameWidth ? r.shortName.slice(0, nameWidth - 1) + '…' : r.shortName;
|
|
144
144
|
const typeTag = r.isGlobal ? pad('', 7) : `${colors_js_1.DIM} ${pad(r.fileType, 6)}${colors_js_1.NC}`;
|
|
145
145
|
const marker = isCursor ? `${colors_js_1.CYAN}▸ ` : ' ';
|
|
146
|
-
const nameStyle = isCursor ? `${colors_js_1.BOLD}` :
|
|
146
|
+
const nameStyle = isCursor ? `${colors_js_1.BOLD}` : '';
|
|
147
147
|
const nameCol = `${marker}${nameStyle}${pad(truncName, nameWidth)}${colors_js_1.NC}${typeTag}`;
|
|
148
148
|
const catCols = catsPresent.map((c) => {
|
|
149
149
|
const count = r.groups.get(c) || 0;
|
package/dist/renderer.js
CHANGED
|
@@ -29,7 +29,7 @@ function printCompact(entries, summary) {
|
|
|
29
29
|
const result = withPerms[i];
|
|
30
30
|
const truncName = result.shortName.length > nameWidth ? result.shortName.slice(0, nameWidth - 1) + '…' : result.shortName;
|
|
31
31
|
const typeTag = result.isGlobal ? pad('', 7) : `${colors_js_1.DIM} ${pad(result.fileType, 6)}${colors_js_1.NC}`;
|
|
32
|
-
const nameStyle =
|
|
32
|
+
const nameStyle = '';
|
|
33
33
|
const nameCol = ` ${nameStyle}${pad(truncName, nameWidth)}${colors_js_1.NC}${typeTag}`;
|
|
34
34
|
const catCols = catsPresent.map((c) => {
|
|
35
35
|
const count = result.groups.get(c) || 0;
|