@alpic-ai/ui 0.0.0-dev.g37dab1d → 0.0.0-dev.g380fab7

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.
Files changed (109) hide show
  1. package/dist/components/accordion-card.d.mts +5 -5
  2. package/dist/components/accordion.d.mts +5 -5
  3. package/dist/components/alert.d.mts +8 -8
  4. package/dist/components/area-chart.d.mts +62 -0
  5. package/dist/components/area-chart.mjs +269 -0
  6. package/dist/components/attachment-tile.d.mts +1 -1
  7. package/dist/components/avatar.d.mts +7 -7
  8. package/dist/components/badge.d.mts +1 -1
  9. package/dist/components/bar-chart.d.mts +48 -0
  10. package/dist/components/bar-chart.mjs +245 -0
  11. package/dist/components/bar-list.d.mts +28 -0
  12. package/dist/components/bar-list.mjs +98 -0
  13. package/dist/components/breadcrumb.d.mts +10 -10
  14. package/dist/components/button.d.mts +5 -5
  15. package/dist/components/card.d.mts +9 -9
  16. package/dist/components/chart-card.d.mts +25 -0
  17. package/dist/components/chart-card.mjs +48 -0
  18. package/dist/components/chart-container.d.mts +20 -0
  19. package/dist/components/chart-container.mjs +37 -0
  20. package/dist/components/chart-legend.d.mts +16 -0
  21. package/dist/components/chart-legend.mjs +26 -0
  22. package/dist/components/chart-tooltip.d.mts +33 -0
  23. package/dist/components/chart-tooltip.mjs +52 -0
  24. package/dist/components/checkbox.d.mts +2 -2
  25. package/dist/components/collapsible.d.mts +4 -4
  26. package/dist/components/combobox.d.mts +10 -10
  27. package/dist/components/command.d.mts +9 -9
  28. package/dist/components/copyable.d.mts +2 -2
  29. package/dist/components/description-list.d.mts +5 -5
  30. package/dist/components/dialog.d.mts +13 -13
  31. package/dist/components/donut-chart.d.mts +46 -0
  32. package/dist/components/donut-chart.mjs +185 -0
  33. package/dist/components/dropdown-menu.d.mts +17 -17
  34. package/dist/components/form.d.mts +18 -18
  35. package/dist/components/form.mjs +6 -6
  36. package/dist/components/github-button.d.mts +1 -1
  37. package/dist/components/grid-fx.d.mts +13 -0
  38. package/dist/components/grid-fx.mjs +188 -0
  39. package/dist/components/heatmap-chart.d.mts +40 -0
  40. package/dist/components/heatmap-chart.mjs +198 -0
  41. package/dist/components/input-group.d.mts +4 -4
  42. package/dist/components/input.d.mts +4 -4
  43. package/dist/components/input.mjs +2 -2
  44. package/dist/components/label.d.mts +2 -2
  45. package/dist/components/line-chart.d.mts +55 -0
  46. package/dist/components/line-chart.mjs +211 -0
  47. package/dist/components/page-loader.d.mts +1 -1
  48. package/dist/components/pagination.d.mts +3 -3
  49. package/dist/components/popover.d.mts +5 -5
  50. package/dist/components/radio-group.d.mts +3 -3
  51. package/dist/components/scroll-area.d.mts +3 -3
  52. package/dist/components/select.d.mts +9 -9
  53. package/dist/components/separator.d.mts +2 -2
  54. package/dist/components/sheet.d.mts +11 -11
  55. package/dist/components/shimmer-text.d.mts +3 -1
  56. package/dist/components/sidebar.d.mts +33 -33
  57. package/dist/components/sidebar.mjs +10 -10
  58. package/dist/components/skeleton.d.mts +1 -1
  59. package/dist/components/sonner.d.mts +5 -5
  60. package/dist/components/spinner.d.mts +2 -2
  61. package/dist/components/stat.d.mts +30 -0
  62. package/dist/components/stat.mjs +107 -0
  63. package/dist/components/status-dot.d.mts +1 -1
  64. package/dist/components/switch.d.mts +2 -2
  65. package/dist/components/table.d.mts +10 -10
  66. package/dist/components/tabs.d.mts +10 -10
  67. package/dist/components/tag.d.mts +3 -3
  68. package/dist/components/task-progress.d.mts +1 -1
  69. package/dist/components/textarea.d.mts +3 -3
  70. package/dist/components/textarea.mjs +2 -2
  71. package/dist/components/toggle-group.d.mts +3 -3
  72. package/dist/components/toggle-group.mjs +3 -3
  73. package/dist/components/tooltip.d.mts +5 -5
  74. package/dist/components/typography.d.mts +4 -4
  75. package/dist/components/wizard.d.mts +4 -4
  76. package/dist/hooks/use-chart-theme.d.mts +18 -0
  77. package/dist/hooks/use-chart-theme.mjs +57 -0
  78. package/dist/hooks/use-mobile.mjs +3 -3
  79. package/dist/hooks/use-reduced-motion.d.mts +4 -0
  80. package/dist/hooks/use-reduced-motion.mjs +16 -0
  81. package/dist/lib/chart-palette.d.mts +4 -0
  82. package/dist/lib/chart-palette.mjs +95 -0
  83. package/dist/lib/chart.d.mts +14 -0
  84. package/dist/lib/chart.mjs +27 -0
  85. package/package.json +30 -29
  86. package/src/components/area-chart.tsx +339 -0
  87. package/src/components/bar-chart.tsx +300 -0
  88. package/src/components/bar-list.tsx +150 -0
  89. package/src/components/chart-card.tsx +63 -0
  90. package/src/components/chart-container.tsx +49 -0
  91. package/src/components/chart-legend.tsx +41 -0
  92. package/src/components/chart-tooltip.tsx +93 -0
  93. package/src/components/donut-chart.tsx +217 -0
  94. package/src/components/grid-fx.tsx +238 -0
  95. package/src/components/heatmap-chart.tsx +287 -0
  96. package/src/components/line-chart.tsx +264 -0
  97. package/src/components/stat.tsx +109 -0
  98. package/src/hooks/use-chart-theme.ts +75 -0
  99. package/src/hooks/use-reduced-motion.ts +17 -0
  100. package/src/lib/chart-palette.ts +110 -0
  101. package/src/lib/chart.ts +56 -0
  102. package/src/stories/area-chart.stories.tsx +200 -0
  103. package/src/stories/bar-chart.stories.tsx +169 -0
  104. package/src/stories/bar-list.stories.tsx +85 -0
  105. package/src/stories/donut-chart.stories.tsx +112 -0
  106. package/src/stories/heatmap-chart.stories.tsx +107 -0
  107. package/src/stories/line-chart.stories.tsx +146 -0
  108. package/src/stories/stat.stories.tsx +64 -0
  109. package/src/styles/tokens.css +63 -0
@@ -0,0 +1,264 @@
1
+ "use client";
2
+
3
+ import * as React from "react";
4
+ import {
5
+ CartesianGrid,
6
+ LabelList,
7
+ Line,
8
+ LineChart as RechartsLineChart,
9
+ ReferenceArea,
10
+ ReferenceDot,
11
+ ReferenceLine,
12
+ ResponsiveContainer,
13
+ Tooltip,
14
+ XAxis,
15
+ YAxis,
16
+ } from "recharts";
17
+
18
+ import { useReducedMotion } from "../hooks/use-reduced-motion";
19
+ import { type ChartSeries, resolveSeries } from "../lib/chart";
20
+ import type { ChartPaletteName } from "../lib/chart-palette";
21
+ import { cn } from "../lib/cn";
22
+ import type { ChartMarker } from "./area-chart";
23
+ import { useChartContext } from "./chart-container";
24
+ import { ChartLegend } from "./chart-legend";
25
+ import { ChartTooltipContent } from "./chart-tooltip";
26
+
27
+ const CURVE_TYPE = { monotone: "monotone", linear: "linear", step: "stepAfter" } as const;
28
+
29
+ export interface LineChartProps {
30
+ data: ReadonlyArray<Record<string, string | number | null | undefined>>;
31
+ index: string;
32
+ series: ChartSeries[];
33
+ curve?: keyof typeof CURVE_TYPE;
34
+ legend?: boolean;
35
+ valueFlags?: boolean;
36
+ dots?: boolean;
37
+ height?: number;
38
+ yAxisWidth?: number;
39
+ palette?: ChartPaletteName;
40
+ referenceLine?: { y: number; label?: string; band?: boolean };
41
+ markers?: ChartMarker[];
42
+ lastValueLabel?: boolean;
43
+ loading?: boolean;
44
+ valueFormatter?: (value: number) => string;
45
+ labelFormatter?: (label: string | number) => string;
46
+ className?: string;
47
+ }
48
+
49
+ function LineChart({
50
+ data,
51
+ index,
52
+ series,
53
+ curve = "monotone",
54
+ legend = false,
55
+ valueFlags = false,
56
+ dots = false,
57
+ height = 200,
58
+ yAxisWidth = 48,
59
+ palette,
60
+ referenceLine,
61
+ markers,
62
+ lastValueLabel = false,
63
+ loading = false,
64
+ valueFormatter = (value) => value.toLocaleString("en-US"),
65
+ labelFormatter,
66
+ className,
67
+ }: LineChartProps) {
68
+ const { palette: paletteColors, theme } = useChartContext(palette);
69
+ const reducedMotion = useReducedMotion();
70
+ const animated = !reducedMotion;
71
+
72
+ const resolved = resolveSeries(series, paletteColors, theme);
73
+
74
+ const numericMax = React.useMemo(() => {
75
+ let max = 0;
76
+ for (const row of data) {
77
+ for (const entry of series) {
78
+ const value = Number(row[entry.key]);
79
+ if (Number.isFinite(value) && value > max) {
80
+ max = value;
81
+ }
82
+ }
83
+ }
84
+ return max;
85
+ }, [data, series]);
86
+
87
+ const curveType = CURVE_TYPE[curve];
88
+ const margin = { top: markers?.length ? 18 : 8, right: lastValueLabel ? 56 : 8, bottom: 2, left: 0 };
89
+
90
+ const axis = {
91
+ stroke: theme.border,
92
+ tick: { fill: theme.axisForeground, fontSize: 10, fontFamily: theme.fontMono },
93
+ tickLine: false as const,
94
+ axisLine: { stroke: theme.border, strokeOpacity: 0.6 },
95
+ };
96
+
97
+ const legendItems = resolved.map((entry) => ({ name: entry.name, color: entry.color, dashed: entry.dashed }));
98
+
99
+ const activeDotFor = (entry: (typeof resolved)[number]) =>
100
+ valueFlags
101
+ ? (dotProps: { cx?: number; cy?: number; value?: number | string }) => {
102
+ if (dotProps.cx == null || dotProps.cy == null) {
103
+ return <g />;
104
+ }
105
+ return (
106
+ <g>
107
+ <circle
108
+ cx={dotProps.cx}
109
+ cy={dotProps.cy}
110
+ r={3.5}
111
+ fill={entry.color}
112
+ stroke={theme.card}
113
+ strokeWidth={2}
114
+ />
115
+ <text
116
+ x={dotProps.cx}
117
+ y={dotProps.cy - 8}
118
+ textAnchor="middle"
119
+ fill={entry.color}
120
+ fontFamily={theme.fontMono}
121
+ fontSize={10}
122
+ style={{ fontVariantNumeric: "tabular-nums" }}
123
+ >
124
+ {valueFormatter(Number(dotProps.value ?? 0))}
125
+ </text>
126
+ </g>
127
+ );
128
+ }
129
+ : { r: 3.5, fill: entry.color, stroke: theme.card, strokeWidth: 2 };
130
+
131
+ const renderLastLabel =
132
+ (color: string) =>
133
+ (props: {
134
+ x?: string | number;
135
+ y?: string | number;
136
+ value?: string | number | boolean | Array<string | number | boolean> | null;
137
+ index?: number;
138
+ }) => {
139
+ if (props.index !== data.length - 1 || props.x == null || props.y == null) {
140
+ return null;
141
+ }
142
+ return (
143
+ <text
144
+ x={Number(props.x) + 6}
145
+ y={Number(props.y)}
146
+ dy={3}
147
+ fill={color}
148
+ fontFamily={theme.fontMono}
149
+ fontSize={10}
150
+ textAnchor="start"
151
+ style={{ fontVariantNumeric: "tabular-nums" }}
152
+ >
153
+ {valueFormatter(Number(props.value ?? 0))}
154
+ </text>
155
+ );
156
+ };
157
+
158
+ const isEmpty = data.length === 0 || resolved.length === 0;
159
+
160
+ return (
161
+ <div data-slot="line-chart" className={cn("flex w-full flex-col gap-3", className)}>
162
+ <div className="w-full" style={{ height }}>
163
+ {loading ? (
164
+ <div className="flex h-full items-center justify-center gap-2.5 font-mono text-quaternary-foreground text-text-xs">
165
+ <span className="size-4 animate-spin rounded-full border-2 border-border border-t-foreground" />
166
+ loading…
167
+ </div>
168
+ ) : isEmpty ? (
169
+ <div className="flex h-full items-center justify-center rounded-lg border border-border border-dashed font-mono text-quaternary-foreground text-text-xs">
170
+ no data in range
171
+ </div>
172
+ ) : (
173
+ <ResponsiveContainer width="100%" height="100%">
174
+ <RechartsLineChart data={data as Record<string, string | number>[]} margin={margin}>
175
+ <CartesianGrid vertical={false} stroke={theme.grid} strokeDasharray="2 4" />
176
+ <XAxis dataKey={index} {...axis} interval="preserveStartEnd" minTickGap={44} />
177
+ <YAxis {...axis} width={yAxisWidth} tickFormatter={(value: number) => valueFormatter(value)} />
178
+ <Tooltip
179
+ offset={12}
180
+ allowEscapeViewBox={{ x: false, y: false }}
181
+ cursor={{ stroke: theme.axisForeground, strokeWidth: 1, strokeDasharray: "3 3" }}
182
+ content={<ChartTooltipContent valueFormatter={valueFormatter} labelFormatter={labelFormatter} />}
183
+ />
184
+ {referenceLine?.band && (
185
+ <ReferenceArea
186
+ y1={referenceLine.y}
187
+ y2={numericMax}
188
+ fill={theme.warning}
189
+ fillOpacity={0.06}
190
+ ifOverflow="extendDomain"
191
+ />
192
+ )}
193
+ {referenceLine && (
194
+ <ReferenceLine
195
+ y={referenceLine.y}
196
+ stroke={theme.warning}
197
+ strokeDasharray="4 4"
198
+ strokeOpacity={0.6}
199
+ label={
200
+ referenceLine.label
201
+ ? {
202
+ value: referenceLine.label,
203
+ fill: theme.warning,
204
+ fontSize: 9,
205
+ fontFamily: theme.fontMono,
206
+ position: "insideBottomRight",
207
+ }
208
+ : undefined
209
+ }
210
+ />
211
+ )}
212
+
213
+ {resolved.map((entry) => (
214
+ <Line
215
+ key={entry.key}
216
+ type={curveType}
217
+ dataKey={entry.key}
218
+ name={entry.name}
219
+ stroke={entry.color}
220
+ strokeWidth={entry.dashed ? 2 : 1.8}
221
+ strokeDasharray={entry.dashed ? "5 3" : undefined}
222
+ dot={dots ? { r: 2.5, fill: entry.color, strokeWidth: 0 } : false}
223
+ activeDot={activeDotFor(entry)}
224
+ isAnimationActive={animated}
225
+ animationDuration={650}
226
+ animationEasing="ease-out"
227
+ >
228
+ {lastValueLabel && <LabelList dataKey={entry.key} content={renderLastLabel(entry.color)} />}
229
+ </Line>
230
+ ))}
231
+
232
+ {markers?.map((marker) => (
233
+ <ReferenceDot
234
+ key={`${marker.x}-${marker.y}`}
235
+ x={marker.x}
236
+ y={marker.y}
237
+ r={3.5}
238
+ fill={marker.color ?? theme.foreground}
239
+ stroke={theme.card}
240
+ strokeWidth={2}
241
+ label={
242
+ marker.label
243
+ ? {
244
+ value: marker.label,
245
+ fill: marker.color ?? theme.foreground,
246
+ fontSize: 9,
247
+ fontFamily: theme.fontMono,
248
+ position: "top",
249
+ }
250
+ : undefined
251
+ }
252
+ />
253
+ ))}
254
+ </RechartsLineChart>
255
+ </ResponsiveContainer>
256
+ )}
257
+ </div>
258
+
259
+ {legend && !isEmpty && <ChartLegend items={legendItems} style={{ paddingLeft: yAxisWidth }} />}
260
+ </div>
261
+ );
262
+ }
263
+
264
+ export { LineChart };
@@ -0,0 +1,109 @@
1
+ "use client";
2
+
3
+ import { cva, type VariantProps } from "class-variance-authority";
4
+ import { ArrowDown, ArrowUp } from "lucide-react";
5
+ import * as React from "react";
6
+ import { Area, AreaChart, ResponsiveContainer } from "recharts";
7
+
8
+ import { cn } from "../lib/cn";
9
+ import { useChartContext } from "./chart-container";
10
+
11
+ const statDeltaVariants = cva(
12
+ "inline-flex items-center gap-0.5 rounded-md px-1.5 py-0.5 font-mono text-[11px] font-medium leading-none",
13
+ {
14
+ variants: {
15
+ sentiment: {
16
+ positive: "text-success bg-success/12",
17
+ negative: "text-destructive bg-destructive/12",
18
+ },
19
+ },
20
+ defaultVariants: { sentiment: "positive" },
21
+ },
22
+ );
23
+
24
+ export interface StatDelta {
25
+ value: number;
26
+ direction: "up" | "down";
27
+ invert?: boolean;
28
+ label?: React.ReactNode;
29
+ }
30
+
31
+ export interface StatProps extends React.ComponentProps<"div"> {
32
+ value: React.ReactNode;
33
+ unit?: string;
34
+ delta?: StatDelta;
35
+ sparkline?: number[] | Array<{ value: number }>;
36
+ }
37
+
38
+ const toSparkData = (sparkline: StatProps["sparkline"]) =>
39
+ (sparkline ?? []).map((point, index) =>
40
+ typeof point === "number" ? { index, value: point } : { index, value: point.value },
41
+ );
42
+
43
+ function Stat({ value, unit, delta, sparkline, className, ...props }: StatProps) {
44
+ const { palette } = useChartContext();
45
+ const gradientId = React.useId().replace(/:/g, "");
46
+ const sparkData = React.useMemo(() => toSparkData(sparkline), [sparkline]);
47
+ // biome-ignore lint/style/noNonNullAssertion: palettes are never empty
48
+ const sparkColor = palette[0]!;
49
+
50
+ const sentiment =
51
+ delta && (delta.invert ? delta.direction === "down" : delta.direction === "up") ? "positive" : "negative";
52
+
53
+ return (
54
+ <div data-slot="stat" className={cn("flex flex-col gap-2.5", className)} {...props}>
55
+ <div className="flex items-baseline gap-3">
56
+ <span className="type-display-sm font-bold leading-none tracking-tight tabular-nums text-foreground">
57
+ {value}
58
+ </span>
59
+ {unit && <span className="font-mono text-[11px] leading-none text-quaternary-foreground mb-0.5">{unit}</span>}
60
+ {delta && (
61
+ <DeltaPill sentiment={sentiment} className="mb-0.5">
62
+ {delta.direction === "up" ? <ArrowUp className="size-3" /> : <ArrowDown className="size-3" />}
63
+ {delta.label ?? `${delta.value}%`}
64
+ </DeltaPill>
65
+ )}
66
+ </div>
67
+ {sparkData.length > 0 && (
68
+ <div className="h-9 w-full">
69
+ <ResponsiveContainer width="100%" height="100%">
70
+ <AreaChart data={sparkData} margin={{ top: 4, right: 2, bottom: 0, left: 2 }}>
71
+ <defs>
72
+ <linearGradient id={gradientId} x1="0" y1="0" x2="0" y2="1">
73
+ <stop offset="0%" stopColor={sparkColor} stopOpacity={0.4} />
74
+ <stop offset="100%" stopColor={sparkColor} stopOpacity={0} />
75
+ </linearGradient>
76
+ </defs>
77
+ <Area
78
+ type="monotone"
79
+ dataKey="value"
80
+ stroke={sparkColor}
81
+ strokeWidth={1.6}
82
+ fill={`url(#${gradientId})`}
83
+ isAnimationActive={false}
84
+ dot={({ cx, cy, index }) => {
85
+ const isLast = index === sparkData.length - 1;
86
+ return isLast && cx != null && cy != null ? (
87
+ <circle key={index} cx={cx} cy={cy} r={2.5} fill={sparkColor} />
88
+ ) : (
89
+ <g key={index} />
90
+ );
91
+ }}
92
+ />
93
+ </AreaChart>
94
+ </ResponsiveContainer>
95
+ </div>
96
+ )}
97
+ </div>
98
+ );
99
+ }
100
+
101
+ function DeltaPill({
102
+ sentiment,
103
+ className,
104
+ ...props
105
+ }: React.ComponentProps<"span"> & VariantProps<typeof statDeltaVariants>) {
106
+ return <span className={cn(statDeltaVariants({ sentiment }), className)} {...props} />;
107
+ }
108
+
109
+ export { Stat, statDeltaVariants };
@@ -0,0 +1,75 @@
1
+ "use client";
2
+
3
+ import * as React from "react";
4
+
5
+ // Recharts draws to SVG/canvas and cannot read CSS custom properties, so resolve to hex and re-read on .dark toggle.
6
+ export interface ChartTheme {
7
+ foreground: string;
8
+ mutedForeground: string;
9
+ axisForeground: string;
10
+ grid: string;
11
+ border: string;
12
+ card: string;
13
+ popover: string;
14
+ destructive: string;
15
+ warning: string;
16
+ success: string;
17
+ fontMono: string;
18
+ isDark: boolean;
19
+ }
20
+
21
+ const TOKEN_MAP: Record<Exclude<keyof ChartTheme, "isDark">, string> = {
22
+ foreground: "--color-foreground",
23
+ mutedForeground: "--color-muted-foreground",
24
+ axisForeground: "--color-quaternary-foreground",
25
+ grid: "--color-sidebar-border",
26
+ border: "--color-border",
27
+ card: "--color-card",
28
+ popover: "--color-popover",
29
+ destructive: "--color-destructive",
30
+ warning: "--color-warning",
31
+ success: "--color-success",
32
+ fontMono: "--font-mono",
33
+ };
34
+
35
+ const FALLBACK: ChartTheme = {
36
+ foreground: "#121e1e",
37
+ mutedForeground: "#3a4848",
38
+ axisForeground: "#6f7f7f",
39
+ grid: "#e3eaea",
40
+ border: "#acb8b8",
41
+ card: "#f8fafa",
42
+ popover: "#ffffff",
43
+ destructive: "#d92d20",
44
+ warning: "#dc6803",
45
+ success: "#079455",
46
+ fontMono: "ui-monospace, SFMono-Regular, Menlo, Consolas, monospace",
47
+ isDark: false,
48
+ };
49
+
50
+ const readTheme = (): ChartTheme => {
51
+ if (typeof window === "undefined") {
52
+ return FALLBACK;
53
+ }
54
+ const styles = window.getComputedStyle(document.documentElement);
55
+ const entries = Object.entries(TOKEN_MAP).map(([key, token]) => {
56
+ const value = styles.getPropertyValue(token).trim();
57
+ return [key, value || FALLBACK[key as keyof ChartTheme]] as const;
58
+ });
59
+ const colors = Object.fromEntries(entries) as unknown as Omit<ChartTheme, "isDark">;
60
+ return { ...colors, isDark: document.documentElement.classList.contains("dark") };
61
+ };
62
+
63
+ export function useChartTheme() {
64
+ const [theme, setTheme] = React.useState<ChartTheme>(readTheme);
65
+
66
+ React.useEffect(() => {
67
+ const update = () => setTheme(readTheme());
68
+ update();
69
+ const observer = new MutationObserver(update);
70
+ observer.observe(document.documentElement, { attributes: true, attributeFilter: ["class"] });
71
+ return () => observer.disconnect();
72
+ }, []);
73
+
74
+ return theme;
75
+ }
@@ -0,0 +1,17 @@
1
+ "use client";
2
+
3
+ import * as React from "react";
4
+
5
+ export function useReducedMotion() {
6
+ const [reduced, setReduced] = React.useState(false);
7
+
8
+ React.useEffect(() => {
9
+ const query = window.matchMedia("(prefers-reduced-motion: reduce)");
10
+ const update = () => setReduced(query.matches);
11
+ update();
12
+ query.addEventListener("change", update);
13
+ return () => query.removeEventListener("change", update);
14
+ }, []);
15
+
16
+ return reduced;
17
+ }
@@ -0,0 +1,110 @@
1
+ /**
2
+ * Chart palettes — the locked "paired system" from the analytics-v2 design.
3
+ *
4
+ * These are charting-API color values (consumed by Recharts at draw time, which
5
+ * cannot read CSS custom properties), so per the design-system rules they live
6
+ * as documented hex constants rather than `--color-*` tokens. They are
7
+ * theme-independent: the same series colors read on light and dark canvases.
8
+ * Only the chrome (grid, axis text, tooltip surface, semantic colors) is
9
+ * theme-aware — see `useChartTheme`.
10
+ *
11
+ * Rules baked in:
12
+ * - Pink leads (index 0) — never buried, fixing the V1 "pink last" bug.
13
+ * - Adjacent dashboard cards alternate lead palette (magenta / cyan) — the
14
+ * page decides which to pass; the component just receives one.
15
+ */
16
+
17
+ export const MAGENTA_PALETTE = [
18
+ "#e90060",
19
+ "#ff7eb6",
20
+ "#9b5de5",
21
+ "#5b8def",
22
+ "#36c5f0",
23
+ "#6eece7",
24
+ "#d98a3d",
25
+ "#2bb6a3",
26
+ ] as const;
27
+
28
+ export const CYAN_PALETTE = [
29
+ "#17b8cf",
30
+ "#41ddc9",
31
+ "#3f8ff0",
32
+ "#8b6cf0",
33
+ "#c46bf0",
34
+ "#ff7eb6",
35
+ "#e90060",
36
+ "#c98be0",
37
+ ] as const;
38
+
39
+ export type ChartPaletteName = "magenta" | "cyan";
40
+
41
+ export const CHART_PALETTES: Record<ChartPaletteName, readonly string[]> = {
42
+ magenta: MAGENTA_PALETTE,
43
+ cyan: CYAN_PALETTE,
44
+ };
45
+
46
+ export const heatRampMagenta = (empty: string) => [empty, "#5b0a31", "#a3034a", "#e90060", "#ff7eb6"];
47
+ export const heatRampMint = (empty: string) => [empty, "#0c4a52", "#17b8cf", "#41ddc9", "#6eece7"];
48
+
49
+ // Empty heat cell — the only theme-dependent charting value, so it travels as a
50
+ // light/dark pair rather than a `--color-*` token (heatmaps draw to SVG fills).
51
+ export const HEAT_EMPTY = { light: "#eef3f3", dark: "#102222" } as const;
52
+
53
+ const HEAT_RAMPS: Record<ChartPaletteName, (empty: string) => string[]> = {
54
+ magenta: heatRampMagenta,
55
+ cyan: heatRampMint,
56
+ };
57
+
58
+ export const heatRamp = (palette: ChartPaletteName, empty: string) => HEAT_RAMPS[palette](empty);
59
+
60
+ const hexToRgb = (hex: string) => {
61
+ const value = Number.parseInt(hex.slice(1), 16);
62
+ return [(value >> 16) & 255, (value >> 8) & 255, value & 255] as const;
63
+ };
64
+
65
+ export const luminance = (hex: string) => {
66
+ const linear = hexToRgb(hex).map((channel) => {
67
+ const normalized = channel / 255;
68
+ return normalized <= 0.03928 ? normalized / 12.92 : ((normalized + 0.055) / 1.055) ** 2.4;
69
+ });
70
+ // biome-ignore lint/style/noNonNullAssertion: hexToRgb always yields 3 channels
71
+ return 0.2126 * linear[0]! + 0.7152 * linear[1]! + 0.0722 * linear[2]!;
72
+ };
73
+
74
+ export const paletteColor = (palette: readonly string[], index: number) => {
75
+ // biome-ignore lint/style/noNonNullAssertion: modulo guarantees a valid index
76
+ return palette[((index % palette.length) + palette.length) % palette.length]!;
77
+ };
78
+
79
+ const RAMP_ENDS: Record<ChartPaletteName, readonly [string, string]> = {
80
+ magenta: ["#e90060", "#ff7eb6"],
81
+ cyan: ["#17b8cf", "#6eece7"],
82
+ };
83
+
84
+ const mixHex = (from: string, to: string, fraction: number) => {
85
+ const [fromR, fromG, fromB] = hexToRgb(from);
86
+ const [toR, toG, toB] = hexToRgb(to);
87
+ const ratio = Math.min(1, Math.max(0, fraction));
88
+ const channel = (start: number, end: number) => Math.round(start + (end - start) * ratio);
89
+ return `#${[channel(fromR, toR), channel(fromG, toG), channel(fromB, toB)]
90
+ .map((value) => value.toString(16).padStart(2, "0"))
91
+ .join("")}`;
92
+ };
93
+
94
+ export const rampColor = (palette: ChartPaletteName, fraction: number) => {
95
+ const [from, to] = RAMP_ENDS[palette];
96
+ return mixHex(from, to, fraction);
97
+ };
98
+
99
+ /**
100
+ * Interpolate continuously across a multi-stop heat ramp (e.g. `heatRampMagenta`),
101
+ * so a normalized 0..1 value reads as a smooth single-hue gradient rather than
102
+ * the five discrete bands.
103
+ */
104
+ export const heatColor = (stops: readonly string[], fraction: number) => {
105
+ const clamped = Math.min(1, Math.max(0, fraction));
106
+ const segment = (stops.length - 1) * clamped;
107
+ const lowerIndex = Math.min(stops.length - 2, Math.floor(segment));
108
+ // biome-ignore lint/style/noNonNullAssertion: lowerIndex is clamped to a valid pair
109
+ return mixHex(stops[lowerIndex]!, stops[lowerIndex + 1]!, segment - lowerIndex);
110
+ };
@@ -0,0 +1,56 @@
1
+ import type { ChartTheme } from "../hooks/use-chart-theme";
2
+ import { luminance, paletteColor } from "./chart-palette";
3
+
4
+ /**
5
+ * Declarative description of one plotted series. The same shape drives area,
6
+ * line and bar charts — what differs is how each chart renders it.
7
+ */
8
+ export interface ChartSeries {
9
+ key: string;
10
+ name?: string;
11
+ color?: string;
12
+ semantic?: "error" | "warning" | "success";
13
+ dashed?: boolean;
14
+ }
15
+
16
+ export interface ResolvedSeries extends ChartSeries {
17
+ name: string;
18
+ color: string;
19
+ }
20
+
21
+ export const formatShare = (fraction: number) => `${(fraction * 100).toFixed(fraction >= 0.1 ? 0 : 1)}%`;
22
+
23
+ const semanticColor = (theme: ChartTheme, semantic: NonNullable<ChartSeries["semantic"]>) => {
24
+ if (semantic === "error") {
25
+ return theme.destructive;
26
+ }
27
+ if (semantic === "warning") {
28
+ return theme.warning;
29
+ }
30
+ return theme.success;
31
+ };
32
+
33
+ /**
34
+ * Resolve each series to a concrete color and name. Color precedence:
35
+ * explicit `color` → `semantic` token → palette slot by declared index (so the
36
+ * lead series keeps the lead color even after the bands are reordered).
37
+ */
38
+ export const resolveSeries = (
39
+ series: readonly ChartSeries[],
40
+ palette: readonly string[],
41
+ theme: ChartTheme,
42
+ ): ResolvedSeries[] =>
43
+ series.map((entry, index) => ({
44
+ ...entry,
45
+ name: entry.name ?? entry.key,
46
+ color: entry.color ?? (entry.semantic ? semanticColor(theme, entry.semantic) : paletteColor(palette, index)),
47
+ }));
48
+
49
+ /**
50
+ * Stacked bands read cleanest as a vertical gradient: darkest at the baseline,
51
+ * lightest at the top edge. Sorting by luminance enforces that for any palette
52
+ * (this is what fixed the "muddy cyan" stack in the lab). Render order maps to
53
+ * stack order in Recharts — first entry sits at the bottom.
54
+ */
55
+ export const orderByLuminance = (series: ResolvedSeries[]) =>
56
+ [...series].sort((lower, upper) => luminance(lower.color) - luminance(upper.color));