@cryptiklemur/lattice 1.24.0 → 1.24.1

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.
@@ -67,9 +67,9 @@ export function AnalyticsView() {
67
67
 
68
68
  return (
69
69
  <div className="flex flex-col h-full overflow-hidden bg-base-100 bg-lattice-grid">
70
- <div className="flex items-center justify-between px-2 sm:px-4 min-h-10 sm:min-h-12 border-b border-base-300 flex-shrink-0">
70
+ <div className="flex items-center justify-between px-4 py-3 border-b border-base-300 flex-shrink-0">
71
71
  <div className="flex items-center gap-2.5">
72
- <h1 className="text-[17px] font-mono font-bold text-base-content">Analytics</h1>
72
+ <h1 className="text-[13px] font-mono font-bold text-base-content/90">Analytics</h1>
73
73
  {analytics.loading && analytics.data && (
74
74
  <span className="w-3.5 h-3.5 border-2 border-base-content/15 border-t-primary/60 rounded-full animate-spin" />
75
75
  )}
@@ -95,12 +95,12 @@ export function getChartColors(): ChartColors {
95
95
  var contentRaw = css("--color-base-content");
96
96
 
97
97
  var tickFill = contentRaw
98
- ? "oklch(" + contentRaw + " / 0.3)"
99
- : "oklch(0.9 0.02 280 / 0.3)";
98
+ ? "oklch(" + contentRaw + " / 0.5)"
99
+ : "oklch(0.9 0.02 280 / 0.5)";
100
100
 
101
101
  var gridStroke = contentRaw
102
- ? "oklch(" + contentRaw + " / 0.06)"
103
- : "oklch(0.9 0.02 280 / 0.06)";
102
+ ? "oklch(" + contentRaw + " / 0.12)"
103
+ : "oklch(0.9 0.02 280 / 0.12)";
104
104
 
105
105
  _cache = {
106
106
  primary,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptiklemur/lattice",
3
- "version": "1.24.0",
3
+ "version": "1.24.1",
4
4
  "description": "Multi-machine agentic dashboard for Claude Code. Monitor sessions, manage MCP servers and skills, orchestrate across mesh-networked nodes.",
5
5
  "license": "MIT",
6
6
  "author": "Aaron Scherer <me@aaronscherer.me>",