claude-scope 0.5.2 → 0.5.3

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.
@@ -1395,11 +1395,11 @@ var EmptyLineWidget = class extends StdinDataWidget {
1395
1395
  // Fourth line (0-indexed)
1396
1396
  );
1397
1397
  /**
1398
- * Return empty string regardless of data state.
1399
- * The empty line widget doesn't need stdin data to render.
1398
+ * Return a single space to create a blank separator line.
1399
+ * Using a space character instead of empty string ensures the line is visible.
1400
1400
  */
1401
1401
  renderWithData(_data, _context) {
1402
- return "";
1402
+ return " ";
1403
1403
  }
1404
1404
  };
1405
1405
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-scope",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "description": "Claude Code plugin for session status and analytics",
5
5
  "license": "MIT",
6
6
  "type": "module",