@cryptiklemur/lattice 1.20.3 → 1.21.0
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.
|
@@ -12,6 +12,7 @@ import { clearSession } from "../../stores/session";
|
|
|
12
12
|
import { useOnline } from "../../hooks/useOnline";
|
|
13
13
|
import { openTab, openSessionTab, getWorkspaceStore } from "../../stores/workspace";
|
|
14
14
|
import { getSidebarStore, goToAnalytics } from "../../stores/sidebar";
|
|
15
|
+
import { setAnalyticsScope } from "../../stores/analytics";
|
|
15
16
|
import { ProjectRail } from "./ProjectRail";
|
|
16
17
|
import { SessionList } from "./SessionList";
|
|
17
18
|
import { UserIsland } from "./UserIsland";
|
|
@@ -267,6 +268,17 @@ export function Sidebar({ onSessionSelect }: { onSessionSelect?: () => void }) {
|
|
|
267
268
|
</span>
|
|
268
269
|
</div>
|
|
269
270
|
<div className="flex-1 overflow-auto px-4 py-3 pb-16">
|
|
271
|
+
<button
|
|
272
|
+
type="button"
|
|
273
|
+
onClick={function () {
|
|
274
|
+
setAnalyticsScope("global");
|
|
275
|
+
openTab("analytics");
|
|
276
|
+
}}
|
|
277
|
+
className="flex items-center gap-2 w-full px-2 py-1.5 mb-2 rounded-lg text-[11px] text-base-content/40 hover:text-base-content/70 hover:bg-base-300/30 transition-colors"
|
|
278
|
+
>
|
|
279
|
+
<BarChart3 size={12} />
|
|
280
|
+
<span className="font-mono tracking-wide">Global Analytics</span>
|
|
281
|
+
</button>
|
|
270
282
|
<SectionLabel label="Projects" />
|
|
271
283
|
<div className="text-[12px] text-base-content/40 px-4">
|
|
272
284
|
Select a project from the rail to view sessions.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cryptiklemur/lattice",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.0",
|
|
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>",
|