@yemi33/minions 0.1.106 → 0.1.108
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/CHANGELOG.md +10 -0
- package/dashboard/js/render-kb.js +4 -1
- package/dashboard/styles.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -162,7 +162,10 @@ async function kbOpenItem(category, file) {
|
|
|
162
162
|
const content = await fetch('/api/knowledge/' + category + '/' + encodeURIComponent(file)).then(r => r.text());
|
|
163
163
|
const display = content.replace(/^---[\s\S]*?---\n*/m, '');
|
|
164
164
|
document.getElementById('modal-title').textContent = file;
|
|
165
|
-
document.getElementById('modal-body')
|
|
165
|
+
const modalBody = document.getElementById('modal-body');
|
|
166
|
+
modalBody.innerHTML = '<div style="font-size:12px;line-height:1.6">' + renderMd(display) + '</div>';
|
|
167
|
+
modalBody.style.fontFamily = "'Segoe UI', system-ui, sans-serif";
|
|
168
|
+
modalBody.style.whiteSpace = 'normal';
|
|
166
169
|
_modalDocContext = { title: file, content: display, selection: '' };
|
|
167
170
|
_modalFilePath = 'knowledge/' + category + '/' + file; showModalQa();
|
|
168
171
|
// Clear notification badge when opening this document
|
package/dashboard/styles.css
CHANGED
|
@@ -188,7 +188,7 @@
|
|
|
188
188
|
.prd-item-priority.low { background: rgba(139,148,158,0.15); color: var(--muted); }
|
|
189
189
|
.prd-project-badge { font-size: var(--text-xs); padding: var(--space-1) 5px; border-radius: var(--radius-md); background: rgba(56,139,253,0.12); color: var(--blue); border: 1px solid rgba(56,139,253,0.25); white-space: nowrap; }
|
|
190
190
|
|
|
191
|
-
.notes-preview { max-height: 400px; overflow-y: auto; font-size: var(--text-md); line-height: 1.6; color: var(--muted); font-family:
|
|
191
|
+
.notes-preview { max-height: 400px; overflow-y: auto; font-size: var(--text-md); line-height: 1.6; color: var(--muted); font-family: 'Segoe UI', system-ui, sans-serif; white-space: normal; word-wrap: break-word; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-6) var(--space-7); cursor: pointer; transition: border-color var(--transition-base); }
|
|
192
192
|
.notes-preview:hover { border-color: var(--blue); }
|
|
193
193
|
.inbox-item { background: var(--surface2); border: 1px solid var(--border); border-left: 3px solid var(--purple); border-radius: var(--radius-sm); padding: var(--space-5) var(--space-6); cursor: pointer; }
|
|
194
194
|
.inbox-item:hover { border-color: var(--blue); border-left-color: var(--blue); }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.108",
|
|
4
4
|
"description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
|
|
5
5
|
"bin": {
|
|
6
6
|
"minions": "bin/minions.js"
|