@cryptiklemur/lattice 1.24.4 → 1.24.6
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.
- package/client/src/components/analytics/AnalyticsView.tsx +1 -1
- package/client/src/components/analytics/PeriodSelector.tsx +1 -1
- package/client/src/components/chat/ChatView.tsx +1 -1
- package/client/src/components/sidebar/SettingsSidebar.tsx +1 -1
- package/client/src/components/sidebar/Sidebar.tsx +2 -2
- package/package.json +1 -1
|
@@ -67,7 +67,7 @@ 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-4
|
|
70
|
+
<div className="flex items-center justify-between px-4 h-11 border-b border-base-300 flex-shrink-0">
|
|
71
71
|
<div className="flex items-center gap-2.5">
|
|
72
72
|
<h1 className="text-[13px] font-mono font-bold text-base-content/90">Analytics</h1>
|
|
73
73
|
{analytics.loading && analytics.data && (
|
|
@@ -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
|
-
"px-2
|
|
28
|
+
"px-2 py-0.5 rounded 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",
|
|
@@ -419,7 +419,7 @@ export function ChatView({ sessionId: tabSessionId, projectSlug: tabProjectSlug
|
|
|
419
419
|
return (
|
|
420
420
|
<div className="flex flex-col h-full w-full bg-base-100 overflow-hidden relative">
|
|
421
421
|
<div className="bg-base-100 border-b border-base-300 flex-shrink-0 px-2 sm:px-4">
|
|
422
|
-
<div className="flex items-center
|
|
422
|
+
<div className="flex items-center h-11 gap-1.5">
|
|
423
423
|
<button
|
|
424
424
|
className="btn btn-ghost btn-sm btn-square lg:hidden"
|
|
425
425
|
aria-label="Toggle sidebar"
|
|
@@ -90,7 +90,7 @@ export function SettingsSidebar({ projectName, onBack }: SettingsSidebarProps) {
|
|
|
90
90
|
|
|
91
91
|
return (
|
|
92
92
|
<div className="flex flex-col h-full w-full overflow-hidden bg-base-200">
|
|
93
|
-
<div className="px-4
|
|
93
|
+
<div className="px-4 h-11 border-b border-base-300 flex-shrink-0 flex items-center">
|
|
94
94
|
<span className="text-[13px] font-mono font-bold text-base-content">{headerLabel}</span>
|
|
95
95
|
</div>
|
|
96
96
|
|
|
@@ -261,7 +261,7 @@ export function Sidebar({ onSessionSelect }: { onSessionSelect?: () => void }) {
|
|
|
261
261
|
<>
|
|
262
262
|
{sidebar.activeView.type === "dashboard" ? (
|
|
263
263
|
<>
|
|
264
|
-
<div className="px-4
|
|
264
|
+
<div className="px-4 h-11 border-b border-base-300 flex-shrink-0 flex items-center gap-2">
|
|
265
265
|
<LatticeLogomark size={18} />
|
|
266
266
|
<span className="text-[13px] font-mono font-bold text-base-content/90">
|
|
267
267
|
Lattice
|
|
@@ -327,7 +327,7 @@ export function Sidebar({ onSessionSelect }: { onSessionSelect?: () => void }) {
|
|
|
327
327
|
onClick={sidebar.toggleProjectDropdown}
|
|
328
328
|
aria-label="Switch project"
|
|
329
329
|
aria-expanded={sidebar.projectDropdownOpen}
|
|
330
|
-
className="w-full px-4
|
|
330
|
+
className="w-full px-4 h-11 border-b border-base-300 flex-shrink-0 flex items-center justify-between cursor-pointer hover:bg-base-300/30 transition-colors text-left"
|
|
331
331
|
>
|
|
332
332
|
<span className="text-[13px] font-mono font-bold text-base-content/90">
|
|
333
333
|
{activeProject?.title ?? "No Project"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cryptiklemur/lattice",
|
|
3
|
-
"version": "1.24.
|
|
3
|
+
"version": "1.24.6",
|
|
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>",
|