claude-code-templates 1.5.9 → 1.5.10

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/analytics.js +14 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-templates",
3
- "version": "1.5.9",
3
+ "version": "1.5.10",
4
4
  "description": "CLI tool to setup Claude Code configurations with framework-specific commands, automation hooks and MCP Servers for your projects",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/analytics.js CHANGED
@@ -804,9 +804,11 @@ async function createWebDashboard() {
804
804
  .session-id {
805
805
  color: #d57455;
806
806
  font-family: monospace;
807
+ }
808
+
809
+ .session-id-container {
807
810
  display: flex;
808
- align-items: center;
809
- flex-wrap: wrap;
811
+ flex-direction: column;
810
812
  gap: 4px;
811
813
  }
812
814
 
@@ -868,16 +870,16 @@ async function createWebDashboard() {
868
870
  display: flex;
869
871
  gap: 2px;
870
872
  align-items: center;
871
- margin-left: 4px;
872
873
  flex-wrap: wrap;
873
874
  }
874
875
 
875
876
  .status-square {
876
- width: 8px;
877
- height: 8px;
878
- border-radius: 1px;
877
+ width: 10px;
878
+ height: 10px;
879
+ border-radius: 2px;
879
880
  cursor: help;
880
881
  position: relative;
882
+ flex-shrink: 0;
881
883
  }
882
884
 
883
885
  .status-square.success {
@@ -1275,10 +1277,12 @@ async function createWebDashboard() {
1275
1277
 
1276
1278
  tableBody.innerHTML = filteredConversations.map(conv => \`
1277
1279
  <tr onclick="showSessionDetail('\${conv.id}')" style="cursor: pointer;">
1278
- <td class="session-id">
1279
- \${conv.id.substring(0, 8)}...
1280
- <div class="status-squares">
1281
- \${generateStatusSquaresHTML(conv.statusSquares || [])}
1280
+ <td>
1281
+ <div class="session-id-container">
1282
+ <div class="session-id">\${conv.id.substring(0, 8)}...</div>
1283
+ <div class="status-squares">
1284
+ \${generateStatusSquaresHTML(conv.statusSquares || [])}
1285
+ </div>
1282
1286
  </div>
1283
1287
  </td>
1284
1288
  <td class="session-project">\${conv.project}</td>