@cryptiklemur/lattice 1.24.2 → 1.24.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.
@@ -25,7 +25,7 @@ export function PeriodSelector({ value, onChange }: PeriodSelectorProps) {
25
25
  aria-checked={isActive}
26
26
  onClick={function () { onChange(period.value); }}
27
27
  className={[
28
- "min-h-[44px] min-w-[36px] px-3 py-2.5 sm:px-2.5 sm:py-1 rounded-md border text-[10px] font-mono font-bold uppercase tracking-widest transition-colors",
28
+ "px-2.5 py-1 rounded-md border text-[10px] font-mono font-bold uppercase tracking-widest transition-colors cursor-pointer",
29
29
  isActive
30
30
  ? "bg-primary/15 text-primary border-primary/30"
31
31
  : "text-base-content/35 border-base-content/8 hover:text-base-content/60 hover:border-base-content/20",
@@ -271,6 +271,12 @@ html, body {
271
271
  .select-sm {
272
272
  min-width: unset;
273
273
  }
274
+
275
+ [role="radiogroup"] > button {
276
+ min-height: 44px;
277
+ min-width: 36px;
278
+ padding: 10px 12px;
279
+ }
274
280
  }
275
281
 
276
282
  /* Neutralize DaisyUI 5's root scroll lock for the drawer.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptiklemur/lattice",
3
- "version": "1.24.2",
3
+ "version": "1.24.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>",