@cluesmith/codev 1.5.28 → 1.6.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cluesmith/codev",
3
- "version": "1.5.28",
3
+ "version": "1.6.0",
4
4
  "description": "Codev CLI - AI-assisted software development framework",
5
5
  "type": "module",
6
6
  "bin": {
@@ -182,6 +182,16 @@
182
182
  color: var(--text-primary);
183
183
  }
184
184
 
185
+ .dashboard-section-header .header-actions .btn-create {
186
+ color: var(--accent);
187
+ font-weight: 500;
188
+ border-style: dashed;
189
+ }
190
+
191
+ .dashboard-section-header .header-actions .btn-create:hover {
192
+ border-color: var(--accent);
193
+ }
194
+
185
195
  .dashboard-section-content {
186
196
  flex: 1;
187
197
  overflow-y: auto;
@@ -128,7 +128,7 @@ function renderDashboardTabContent() {
128
128
  <div class="dashboard-section-header" onclick="toggleSection('files')">
129
129
  <h3><span class="collapse-icon">▼</span> Files</h3>
130
130
  <div class="header-actions" onclick="event.stopPropagation()">
131
- <button onclick="showCreateFileDialog()" title="Create New File">+</button>
131
+ <button class="btn-create" onclick="showCreateFileDialog()" title="Create New File">+</button>
132
132
  <button onclick="refreshFilesTree()" title="Refresh">↻</button>
133
133
  <button onclick="collapseAllFolders()" title="Collapse All">⊟</button>
134
134
  <button onclick="expandAllFolders()" title="Expand All">⊞</button>