@cryptiklemur/lattice 1.23.2 → 1.23.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.
@@ -30,9 +30,9 @@ function CustomTooltip({ active, payload, label }: { active?: boolean; payload?:
30
30
  }
31
31
 
32
32
  export function CacheEfficiencyChart({ data }: CacheEfficiencyChartProps) {
33
- constfullscreenHeight = useChartFullscreen();
34
- constcolors = getChartColors();
35
- constdisplayData = data.map(function (d) {
33
+ const fullscreenHeight = useChartFullscreen();
34
+ const colors = getChartColors();
35
+ const displayData = data.map(function (d) {
36
36
  return { date: d.date, rate: d.rate * 100 };
37
37
  });
38
38
 
@@ -42,8 +42,8 @@ function CustomTooltip({ active, payload, label }: { active?: boolean; payload?:
42
42
  }
43
43
 
44
44
  export function CostAreaChart({ data }: CostAreaChartProps) {
45
- constfullscreenHeight = useChartFullscreen();
46
- constcolors = getChartColors();
45
+ const fullscreenHeight = useChartFullscreen();
46
+ const colors = getChartColors();
47
47
  return (
48
48
  <ResponsiveContainer width="100%" height={fullscreenHeight || 200}>
49
49
  <AreaChart data={data} margin={{ top: 4, right: 4, left: -15, bottom: 0 }}>
@@ -30,8 +30,8 @@ function CustomTooltip({ active, payload, label }: { active?: boolean; payload?:
30
30
  }
31
31
 
32
32
  export function CostDistributionChart({ data }: CostDistributionChartProps) {
33
- constfullscreenHeight = useChartFullscreen();
34
- constcolors = getChartColors();
33
+ const fullscreenHeight = useChartFullscreen();
34
+ const colors = getChartColors();
35
35
  return (
36
36
  <ResponsiveContainer width="100%" height={fullscreenHeight || 200}>
37
37
  <AreaChart data={data} margin={{ top: 4, right: 4, left: -15, bottom: 0 }}>
@@ -30,8 +30,8 @@ function CustomTooltip({ active, payload, label }: { active?: boolean; payload?:
30
30
  }
31
31
 
32
32
  export function CumulativeCostChart({ data }: CumulativeCostChartProps) {
33
- constfullscreenHeight = useChartFullscreen();
34
- constcolors = getChartColors();
33
+ const fullscreenHeight = useChartFullscreen();
34
+ const colors = getChartColors();
35
35
  return (
36
36
  <ResponsiveContainer width="100%" height={fullscreenHeight || 200}>
37
37
  <AreaChart data={data} margin={{ top: 4, right: 4, left: -15, bottom: 0 }}>
@@ -46,8 +46,8 @@ function formatTokens(v: number): string {
46
46
  }
47
47
 
48
48
  export function TokenFlowChart({ data }: TokenFlowChartProps) {
49
- constfullscreenHeight = useChartFullscreen();
50
- constcolors = getChartColors();
49
+ const fullscreenHeight = useChartFullscreen();
50
+ const colors = getChartColors();
51
51
  return (
52
52
  <ResponsiveContainer width="100%" height={fullscreenHeight || 200}>
53
53
  <AreaChart data={data} margin={{ top: 4, right: 4, left: -15, bottom: 0 }}>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptiklemur/lattice",
3
- "version": "1.23.2",
3
+ "version": "1.23.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>",