@cryptiklemur/lattice 1.10.2 → 1.10.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.
@@ -144,10 +144,8 @@ export function ChartCard(props: ChartCardProps) {
144
144
  </button>
145
145
  </div>
146
146
  </div>
147
- <div className="flex-1 p-6 overflow-auto min-h-0 [&_.recharts-wrapper]:!h-full [&_.recharts-responsive-container]:!h-full">
148
- <div style={{ height: "100%" }}>
149
- {props.children}
150
- </div>
147
+ <div className="flex-1 p-6 overflow-auto min-h-0 fullscreen-chart-container">
148
+ {props.children}
151
149
  </div>
152
150
  </div>
153
151
  </div>
@@ -207,6 +207,21 @@ html, body {
207
207
  }
208
208
  }
209
209
 
210
+ .fullscreen-chart-container {
211
+ display: flex;
212
+ flex-direction: column;
213
+ }
214
+
215
+ .fullscreen-chart-container > * {
216
+ flex: 1;
217
+ min-height: 0;
218
+ }
219
+
220
+ .fullscreen-chart-container .recharts-responsive-container {
221
+ height: 100% !important;
222
+ min-height: 0 !important;
223
+ }
224
+
210
225
  @keyframes pulse {
211
226
  0%, 80%, 100% { opacity: 0.2; transform: scale(0.8); }
212
227
  40% { opacity: 1; transform: scale(1); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptiklemur/lattice",
3
- "version": "1.10.2",
3
+ "version": "1.10.3",
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>",