claude-scope 0.5.2 → 0.5.4

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 Braille Pattern Blank to create a visible empty separator line.
1399
+ * U+2800 occupies cell width but appears blank, ensuring the line renders.
1400
1400
  */
1401
1401
  renderWithData(_data, _context) {
1402
- return "";
1402
+ return "\u2800";
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.4",
4
4
  "description": "Claude Code plugin for session status and analytics",
5
5
  "license": "MIT",
6
6
  "type": "module",