@polderlabs/bizar 6.3.0 → 7.0.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.
Files changed (245) hide show
  1. package/.claude/hooks/sessionend-recall.mjs +3 -3
  2. package/.claude/hooks/worker-suggest.mjs +110 -0
  3. package/.claude/settings.json +9 -0
  4. package/bizar-dash/dist/assets/{EnvVarsSection-B58aiJiE.js → EnvVarsSection-CW6fWKds.js} +3 -3
  5. package/bizar-dash/dist/assets/{EnvVarsSection-B58aiJiE.js.map → EnvVarsSection-CW6fWKds.js.map} +1 -1
  6. package/bizar-dash/dist/assets/MobileChat-D7zRhU9K.js +1 -0
  7. package/bizar-dash/dist/assets/{MobileChat-BJrqwVDd.js.map → MobileChat-D7zRhU9K.js.map} +1 -1
  8. package/bizar-dash/dist/assets/MobileSettings-K-sNsn_r.js +1 -0
  9. package/bizar-dash/dist/assets/{MobileSettings-CEQNJNLJ.js.map → MobileSettings-K-sNsn_r.js.map} +1 -1
  10. package/bizar-dash/dist/assets/{Toast-Cpl6-E63.js → Toast-WTxc3m2g.js} +1 -1
  11. package/bizar-dash/dist/assets/{Toast-Cpl6-E63.js.map → Toast-WTxc3m2g.js.map} +1 -1
  12. package/bizar-dash/dist/assets/flow-BpU0-gK2.js +1 -0
  13. package/bizar-dash/dist/assets/flow-BpU0-gK2.js.map +1 -0
  14. package/bizar-dash/dist/assets/fuzzy-l0sNRNKZ.js +1 -0
  15. package/bizar-dash/dist/assets/fuzzy-l0sNRNKZ.js.map +1 -0
  16. package/bizar-dash/dist/assets/{icons-Do5N2jmX.js → icons-B0AKnYI3.js} +98 -103
  17. package/bizar-dash/dist/assets/icons-B0AKnYI3.js.map +1 -0
  18. package/bizar-dash/dist/assets/main-C-Md3DaY.css +1 -0
  19. package/bizar-dash/dist/assets/main-CO8fIxQK.js +18 -0
  20. package/bizar-dash/dist/assets/main-CO8fIxQK.js.map +1 -0
  21. package/bizar-dash/dist/assets/markdown-w2bDDkAH.js +1 -0
  22. package/bizar-dash/dist/assets/{markdown-tOLaD6nm.js.map → markdown-w2bDDkAH.js.map} +1 -1
  23. package/bizar-dash/dist/assets/mobile-DXYCA0hC.js +1 -0
  24. package/bizar-dash/dist/assets/{mobile-DYCHcUpq.js.map → mobile-DXYCA0hC.js.map} +1 -1
  25. package/bizar-dash/dist/assets/mobile-layout-DSmtNPja.js +2 -0
  26. package/bizar-dash/dist/assets/mobile-layout-DSmtNPja.js.map +1 -0
  27. package/bizar-dash/dist/assets/react-vendor-BnuhLJ6X.css +1 -0
  28. package/bizar-dash/dist/assets/react-vendor-D3pra6w-.js +46 -0
  29. package/bizar-dash/dist/assets/react-vendor-D3pra6w-.js.map +1 -0
  30. package/bizar-dash/dist/assets/useSlashCommands-3DFLOfpk.js +2 -0
  31. package/bizar-dash/dist/assets/useSlashCommands-3DFLOfpk.js.map +1 -0
  32. package/bizar-dash/dist/assets/vendor-Di7Cp-rw.js +45 -0
  33. package/bizar-dash/dist/assets/vendor-Di7Cp-rw.js.map +1 -0
  34. package/bizar-dash/dist/index.html +12 -10
  35. package/bizar-dash/dist/mobile.html +7 -4
  36. package/bizar-dash/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -1
  37. package/bizar-dash/src/server/api.mjs +11 -0
  38. package/bizar-dash/src/server/memory-consolidator.mjs +218 -0
  39. package/bizar-dash/src/server/memory-distillation.mjs +296 -0
  40. package/bizar-dash/src/server/routes/distill.mjs +129 -0
  41. package/bizar-dash/src/server/routes/goal-planner.mjs +236 -0
  42. package/bizar-dash/src/web/App.tsx +4 -0
  43. package/bizar-dash/src/web/components/Tag.tsx +18 -5
  44. package/bizar-dash/src/web/components/Topbar.tsx +3 -0
  45. package/bizar-dash/src/web/components/agents/CommunicationLog.tsx +126 -0
  46. package/bizar-dash/src/web/components/agents/DependencyGraph.tsx +163 -0
  47. package/bizar-dash/src/web/components/agents/QualityGates.tsx +123 -0
  48. package/bizar-dash/src/web/components/agents/RealTimeEventLog.tsx +127 -0
  49. package/bizar-dash/src/web/components/agents/RoutingDecisions.test.tsx +148 -0
  50. package/bizar-dash/src/web/components/agents/RoutingDecisions.tsx +160 -0
  51. package/bizar-dash/src/web/components/goals/GoalInput.tsx +86 -0
  52. package/bizar-dash/src/web/components/goals/PlanVisualization.tsx +111 -0
  53. package/bizar-dash/src/web/lib/goapPlanner.ts +614 -0
  54. package/bizar-dash/src/web/lib/types.ts +25 -0
  55. package/bizar-dash/src/web/styles/agents-redesign.css +311 -0
  56. package/bizar-dash/src/web/styles/main.css +251 -0
  57. package/bizar-dash/src/web/styles/tasks-redesign.css +231 -0
  58. package/bizar-dash/src/web/ui/controls/Button.tsx +77 -0
  59. package/bizar-dash/src/web/ui/controls/Checkbox.tsx +95 -0
  60. package/bizar-dash/src/web/ui/controls/IconButton.tsx +66 -0
  61. package/bizar-dash/src/web/ui/controls/Kbd.tsx +24 -0
  62. package/bizar-dash/src/web/ui/controls/NumberInput.tsx +77 -0
  63. package/bizar-dash/src/web/ui/controls/RadioGroup.tsx +109 -0
  64. package/bizar-dash/src/web/ui/controls/SearchInput.tsx +91 -0
  65. package/bizar-dash/src/web/ui/controls/Select.tsx +92 -0
  66. package/bizar-dash/src/web/ui/controls/Slider.tsx +70 -0
  67. package/bizar-dash/src/web/ui/controls/TextInput.tsx +67 -0
  68. package/bizar-dash/src/web/ui/controls/Toggle.tsx +79 -0
  69. package/bizar-dash/src/web/ui/controls/controls.css +454 -0
  70. package/bizar-dash/src/web/ui/controls/index.ts +33 -0
  71. package/bizar-dash/src/web/ui/data/BarChart.tsx +60 -0
  72. package/bizar-dash/src/web/ui/data/DataTable.tsx +216 -0
  73. package/bizar-dash/src/web/ui/data/EmptyState.tsx +60 -0
  74. package/bizar-dash/src/web/ui/data/ErrorState.tsx +56 -0
  75. package/bizar-dash/src/web/ui/data/KeyValueList.tsx +106 -0
  76. package/bizar-dash/src/web/ui/data/LoadingState.tsx +65 -0
  77. package/bizar-dash/src/web/ui/data/Sparkline.tsx +87 -0
  78. package/bizar-dash/src/web/ui/data/StatTile.tsx +87 -0
  79. package/bizar-dash/src/web/ui/data/data.css +535 -0
  80. package/bizar-dash/src/web/ui/data/index.ts +31 -0
  81. package/bizar-dash/src/web/ui/feedback/Badge.tsx +49 -0
  82. package/bizar-dash/src/web/ui/feedback/Dialog.tsx +209 -0
  83. package/bizar-dash/src/web/ui/feedback/ProgressBar.tsx +69 -0
  84. package/bizar-dash/src/web/ui/feedback/StatusDot.tsx +50 -0
  85. package/bizar-dash/src/web/ui/feedback/Toast.tsx +200 -0
  86. package/bizar-dash/src/web/ui/feedback/Tooltip.tsx +126 -0
  87. package/bizar-dash/src/web/ui/feedback/feedback.css +314 -0
  88. package/bizar-dash/src/web/ui/feedback/index.ts +43 -0
  89. package/bizar-dash/src/web/ui/index.ts +56 -0
  90. package/bizar-dash/src/web/ui/layout/AppShell.tsx +51 -0
  91. package/bizar-dash/src/web/ui/layout/Breadcrumbs.tsx +97 -0
  92. package/bizar-dash/src/web/ui/layout/Panel.tsx +73 -0
  93. package/bizar-dash/src/web/ui/layout/PanelHeader.tsx +39 -0
  94. package/bizar-dash/src/web/ui/layout/Sidebar.tsx +131 -0
  95. package/bizar-dash/src/web/ui/layout/Tabs.tsx +133 -0
  96. package/bizar-dash/src/web/ui/layout/Topbar.tsx +42 -0
  97. package/bizar-dash/src/web/ui/layout/index.ts +33 -0
  98. package/bizar-dash/src/web/ui/layout/layout.css +413 -0
  99. package/bizar-dash/src/web/ui/navigation/CommandPalette.tsx +199 -0
  100. package/bizar-dash/src/web/ui/navigation/NavGroup.tsx +95 -0
  101. package/bizar-dash/src/web/ui/navigation/NavLink.tsx +93 -0
  102. package/bizar-dash/src/web/ui/navigation/index.ts +17 -0
  103. package/bizar-dash/src/web/ui/navigation/navigation.css +343 -0
  104. package/bizar-dash/src/web/ui/primitives/Box.tsx +91 -0
  105. package/bizar-dash/src/web/ui/primitives/Grid.tsx +49 -0
  106. package/bizar-dash/src/web/ui/primitives/Inline.tsx +55 -0
  107. package/bizar-dash/src/web/ui/primitives/Separator.tsx +46 -0
  108. package/bizar-dash/src/web/ui/primitives/Stack.tsx +54 -0
  109. package/bizar-dash/src/web/ui/primitives/VisuallyHidden.tsx +26 -0
  110. package/bizar-dash/src/web/ui/primitives/index.ts +23 -0
  111. package/bizar-dash/src/web/ui/primitives/primitives.css +183 -0
  112. package/bizar-dash/src/web/ui/styles/globals.css +86 -0
  113. package/bizar-dash/src/web/ui/styles/reset.css +125 -0
  114. package/bizar-dash/src/web/ui/styles/tokens.css +195 -0
  115. package/bizar-dash/src/web/ui/theme/ThemeProvider.tsx +142 -0
  116. package/bizar-dash/src/web/ui/theme/tokens.ts +131 -0
  117. package/bizar-dash/src/web/ui/theme/useTheme.ts +22 -0
  118. package/bizar-dash/src/web/ui/utils/cx.ts +42 -0
  119. package/bizar-dash/src/web/views/Agents.tsx +506 -266
  120. package/bizar-dash/src/web/views/GoalPlanner.tsx +158 -0
  121. package/bizar-dash/src/web/views/Overview.tsx +996 -448
  122. package/bizar-dash/src/web/views/Tasks.tsx +277 -273
  123. package/bizar-dash/tests/communication-log.test.tsx +67 -0
  124. package/bizar-dash/tests/dep-graph.test.tsx +40 -0
  125. package/bizar-dash/tests/event-log.test.tsx +61 -0
  126. package/bizar-dash/tests/goal-input.test.tsx +72 -0
  127. package/bizar-dash/tests/goap-planner.test.ts +68 -0
  128. package/bizar-dash/tests/quality-gates.test.tsx +59 -0
  129. package/bizar-dash/tests/setup.ts +31 -1
  130. package/bizar-dash/tests/ui/controls/Button.test.tsx +50 -0
  131. package/bizar-dash/tests/ui/controls/Checkbox.test.tsx +44 -0
  132. package/bizar-dash/tests/ui/controls/IconButton.test.tsx +37 -0
  133. package/bizar-dash/tests/ui/controls/Kbd.test.tsx +39 -0
  134. package/bizar-dash/tests/ui/controls/NumberInput.test.tsx +56 -0
  135. package/bizar-dash/tests/ui/controls/RadioGroup.test.tsx +58 -0
  136. package/bizar-dash/tests/ui/controls/SearchInput.test.tsx +52 -0
  137. package/bizar-dash/tests/ui/controls/Select.test.tsx +66 -0
  138. package/bizar-dash/tests/ui/controls/Slider.test.tsx +41 -0
  139. package/bizar-dash/tests/ui/controls/TextInput.test.tsx +44 -0
  140. package/bizar-dash/tests/ui/controls/Toggle.test.tsx +39 -0
  141. package/bizar-dash/tests/ui/data/BarChart.test.tsx +55 -0
  142. package/bizar-dash/tests/ui/data/DataTable.test.tsx +112 -0
  143. package/bizar-dash/tests/ui/data/EmptyState.test.tsx +57 -0
  144. package/bizar-dash/tests/ui/data/ErrorState.test.tsx +47 -0
  145. package/bizar-dash/tests/ui/data/KeyValueList.test.tsx +59 -0
  146. package/bizar-dash/tests/ui/data/LoadingState.test.tsx +37 -0
  147. package/bizar-dash/tests/ui/data/Sparkline.test.tsx +56 -0
  148. package/bizar-dash/tests/ui/data/StatTile.test.tsx +69 -0
  149. package/bizar-dash/tests/ui/feedback/Badge.test.tsx +41 -0
  150. package/bizar-dash/tests/ui/feedback/Dialog.test.tsx +99 -0
  151. package/bizar-dash/tests/ui/feedback/ProgressBar.test.tsx +66 -0
  152. package/bizar-dash/tests/ui/feedback/StatusDot.test.tsx +41 -0
  153. package/bizar-dash/tests/ui/feedback/Toast.test.tsx +124 -0
  154. package/bizar-dash/tests/ui/feedback/Tooltip.test.tsx +102 -0
  155. package/bizar-dash/tests/ui/layout/AppShell.test.tsx +50 -0
  156. package/bizar-dash/tests/ui/layout/Breadcrumbs.test.tsx +85 -0
  157. package/bizar-dash/tests/ui/layout/Panel.test.tsx +52 -0
  158. package/bizar-dash/tests/ui/layout/PanelHeader.test.tsx +32 -0
  159. package/bizar-dash/tests/ui/layout/Sidebar.test.tsx +95 -0
  160. package/bizar-dash/tests/ui/layout/Tabs.test.tsx +87 -0
  161. package/bizar-dash/tests/ui/layout/Topbar.test.tsx +41 -0
  162. package/bizar-dash/tests/ui/navigation/CommandPalette.test.tsx +105 -0
  163. package/bizar-dash/tests/ui/navigation/NavGroup.test.tsx +55 -0
  164. package/bizar-dash/tests/ui/navigation/NavLink.test.tsx +61 -0
  165. package/bizar-dash/tests/ui/primitives/Box.test.tsx +49 -0
  166. package/bizar-dash/tests/ui/primitives/Grid.test.tsx +37 -0
  167. package/bizar-dash/tests/ui/primitives/Inline.test.tsx +33 -0
  168. package/bizar-dash/tests/ui/primitives/Separator.test.tsx +34 -0
  169. package/bizar-dash/tests/ui/primitives/Stack.test.tsx +45 -0
  170. package/bizar-dash/tests/ui/primitives/VisuallyHidden.test.tsx +27 -0
  171. package/bizar-dash/tests/views/Agents.test.tsx +359 -0
  172. package/bizar-dash/tests/views/Overview.test.tsx +413 -0
  173. package/bizar-dash/tests/views/Tasks.test.tsx +250 -0
  174. package/bizar-dash/vitest.config.ts +3 -1
  175. package/cli/__tests__/cost-gate.test.mjs +301 -0
  176. package/cli/__tests__/feature-list-bridge.test.mjs +371 -0
  177. package/cli/bin.mjs +38 -0
  178. package/cli/commands/claim.mjs +282 -0
  179. package/cli/commands/cost.mjs +279 -0
  180. package/cli/cost-gate.mjs +501 -0
  181. package/cli/feature-list-bridge.mjs +400 -0
  182. package/cli/memory-constants.mjs +17 -0
  183. package/cli/worker-dispatcher.mjs +259 -0
  184. package/cli/worker-dispatcher.test.mjs +204 -0
  185. package/config/trigger-patterns.json +186 -0
  186. package/package.json +2 -2
  187. package/packages/sdk/package.json +1 -1
  188. package/packages/sdk/src/agent-registry.ts +304 -0
  189. package/packages/sdk/src/consensus/byzantine.ts +587 -0
  190. package/packages/sdk/src/consensus/index.ts +147 -0
  191. package/packages/sdk/src/consensus/queen.ts +173 -0
  192. package/packages/sdk/src/consensus/types.ts +199 -0
  193. package/packages/sdk/src/federation/audit.ts +156 -0
  194. package/packages/sdk/src/federation/budget.ts +269 -0
  195. package/packages/sdk/src/federation/envelope.ts +144 -0
  196. package/packages/sdk/src/federation/hmac.ts +160 -0
  197. package/packages/sdk/src/federation/index.ts +443 -0
  198. package/packages/sdk/src/federation/pii.ts +241 -0
  199. package/packages/sdk/src/federation/policy.ts +112 -0
  200. package/packages/sdk/src/federation/trust.ts +146 -0
  201. package/packages/sdk/src/index.ts +67 -0
  202. package/packages/sdk/src/mcp/server.ts +351 -1
  203. package/packages/sdk/src/router/codemod-intent.ts +125 -0
  204. package/packages/sdk/src/router/index.ts +247 -0
  205. package/packages/sdk/src/router/memory-distillation-shim.mjs +18 -0
  206. package/packages/sdk/src/router/memory-distillation.ts +249 -0
  207. package/packages/sdk/src/router/model-router.ts +235 -0
  208. package/packages/sdk/src/router/q-learning-router.ts +304 -0
  209. package/packages/sdk/src/swarm-topology.ts +279 -0
  210. package/packages/sdk/tests/agent-registry.test.ts +285 -0
  211. package/packages/sdk/tests/consensus.test.ts +376 -0
  212. package/packages/sdk/tests/federation/audit.test.ts +164 -0
  213. package/packages/sdk/tests/federation/budget.test.ts +189 -0
  214. package/packages/sdk/tests/federation/envelope.test.ts +120 -0
  215. package/packages/sdk/tests/federation/hmac.test.ts +194 -0
  216. package/packages/sdk/tests/federation/orchestrator.test.ts +176 -0
  217. package/packages/sdk/tests/federation/pii.test.ts +106 -0
  218. package/packages/sdk/tests/federation/policy.test.ts +140 -0
  219. package/packages/sdk/tests/federation/trust.test.ts +124 -0
  220. package/packages/sdk/tests/mcp-tools.test.ts +204 -0
  221. package/packages/sdk/tests/memory-distillation.test.mjs +186 -0
  222. package/packages/sdk/tests/model-router.test.mjs +108 -0
  223. package/packages/sdk/tests/q-learning-router.test.mjs +100 -0
  224. package/packages/sdk/tests/router-orchestrator.test.mjs +172 -0
  225. package/packages/sdk/tests/router.test.mjs +91 -0
  226. package/packages/sdk/tests/sdk.test.mjs +26 -2
  227. package/packages/sdk/tests/swarm-topology.test.ts +258 -0
  228. package/scripts/bh-full-e2e.mjs +11 -15
  229. package/bizar-dash/dist/assets/MobileChat-BJrqwVDd.js +0 -1
  230. package/bizar-dash/dist/assets/MobileSettings-CEQNJNLJ.js +0 -1
  231. package/bizar-dash/dist/assets/icons-Do5N2jmX.js.map +0 -1
  232. package/bizar-dash/dist/assets/main-IvfQAOfy.js +0 -18
  233. package/bizar-dash/dist/assets/main-IvfQAOfy.js.map +0 -1
  234. package/bizar-dash/dist/assets/main-ietCEg_R.css +0 -1
  235. package/bizar-dash/dist/assets/markdown-tOLaD6nm.js +0 -1
  236. package/bizar-dash/dist/assets/mobile-DYCHcUpq.js +0 -1
  237. package/bizar-dash/dist/assets/mobile-layout-CBHjpwsb.js +0 -2
  238. package/bizar-dash/dist/assets/mobile-layout-CBHjpwsb.js.map +0 -1
  239. package/bizar-dash/dist/assets/react-vendor-Dn4wqh4Z.js +0 -40
  240. package/bizar-dash/dist/assets/react-vendor-Dn4wqh4Z.js.map +0 -1
  241. package/bizar-dash/dist/assets/useSlashCommands-Bd7_FA6U.js +0 -2
  242. package/bizar-dash/dist/assets/useSlashCommands-Bd7_FA6U.js.map +0 -1
  243. package/bizar-dash/dist/assets/vendor-C843201K.js +0 -29
  244. package/bizar-dash/dist/assets/vendor-C843201K.js.map +0 -1
  245. package/packages/sdk/package-lock.json +0 -32
@@ -0,0 +1,216 @@
1
+ /*
2
+ * DataTable.tsx — Sortable data table (Wave 2B).
3
+ *
4
+ * The most complex data component. Sticky header, click-to-sort columns,
5
+ * controlled/uncontrolled sort state, custom cell renderers, empty and
6
+ * loading states, optional compact row padding. Sort logic uses the column's
7
+ * `accessor` (or falls back to identity) and handles string vs numeric
8
+ * comparison correctly. Click-to-select rows via onRowClick. The table is a
9
+ * two-element scroll container so the sticky header stays pinned even on
10
+ * vertically-long data sets inside a constrained card.
11
+ */
12
+
13
+ import {
14
+ useMemo,
15
+ useState,
16
+ type CSSProperties,
17
+ type ReactNode,
18
+ } from 'react';
19
+ import { ArrowDown, ArrowUp, ChevronsUpDown } from 'lucide-react';
20
+ import { cx } from '../utils/cx';
21
+
22
+ export type DataTableColumn<T> = {
23
+ key: string;
24
+ header: string;
25
+ width?: string | number;
26
+ align?: 'left' | 'right' | 'center';
27
+ sortable?: boolean;
28
+ render?: (row: T) => ReactNode;
29
+ accessor?: (row: T) => string | number;
30
+ };
31
+
32
+ export type DataTableSort = {
33
+ key: string;
34
+ direction: 'asc' | 'desc';
35
+ };
36
+
37
+ export type DataTableProps<T> = {
38
+ columns: Array<DataTableColumn<T>>;
39
+ data: T[];
40
+ rowKey: (row: T) => string;
41
+ onRowClick?: (row: T) => void;
42
+ sort?: DataTableSort | null;
43
+ onSortChange?: (sort: DataTableSort | null) => void;
44
+ empty?: ReactNode;
45
+ loading?: boolean;
46
+ compact?: boolean;
47
+ className?: string;
48
+ };
49
+
50
+ function defaultAccessor<T>(row: T): string | number {
51
+ // Fall back to identity when an accessor isn't provided. T may be any
52
+ // shape, so we use a best-effort cast.
53
+ if (row == null) return '';
54
+ if (typeof row === 'string' || typeof row === 'number') return row;
55
+ return String(row);
56
+ }
57
+
58
+ function compareValues(a: string | number, b: string | number): number {
59
+ if (typeof a === 'number' && typeof b === 'number') return a - b;
60
+ return String(a).localeCompare(String(b));
61
+ }
62
+
63
+ export function DataTable<T>({
64
+ columns,
65
+ data,
66
+ rowKey,
67
+ onRowClick,
68
+ sort: controlledSort,
69
+ onSortChange,
70
+ empty,
71
+ loading = false,
72
+ compact = false,
73
+ className,
74
+ }: DataTableProps<T>): React.JSX.Element {
75
+ const [internalSort, setInternalSort] = useState<DataTableSort | null>(null);
76
+ const sort = controlledSort ?? internalSort;
77
+
78
+ const sortedData = useMemo(() => {
79
+ if (!sort) return data;
80
+ const col = columns.find((c) => c.key === sort.key);
81
+ if (!col) return data;
82
+ const accessor = col.accessor ?? defaultAccessor;
83
+ const copy = [...data];
84
+ copy.sort((a, b) => {
85
+ const cmp = compareValues(accessor(a), accessor(b));
86
+ return sort.direction === 'asc' ? cmp : -cmp;
87
+ });
88
+ return copy;
89
+ }, [data, columns, sort]);
90
+
91
+ const handleSort = (key: string): void => {
92
+ const next: DataTableSort | null =
93
+ !sort || sort.key !== key
94
+ ? { key, direction: 'asc' }
95
+ : sort.direction === 'asc'
96
+ ? { key, direction: 'desc' }
97
+ : null;
98
+ if (controlledSort === undefined) {
99
+ setInternalSort(next);
100
+ }
101
+ onSortChange?.(next);
102
+ };
103
+
104
+ const renderBody = (): ReactNode => {
105
+ if (loading) {
106
+ const skeletonCols = columns.length;
107
+ return (
108
+ <>
109
+ {Array.from({ length: 3 }).map((_, i) => (
110
+ <tr key={`skel-${i}`} className="bd-data-table__skeleton-row">
111
+ {Array.from({ length: skeletonCols }).map((__, j) => (
112
+ <td key={`skel-${i}-${j}`}>
113
+ <div className="bd-data-table__skeleton" />
114
+ </td>
115
+ ))}
116
+ </tr>
117
+ ))}
118
+ </>
119
+ );
120
+ }
121
+ if (sortedData.length === 0) {
122
+ return (
123
+ <tr>
124
+ <td colSpan={columns.length} className="bd-data-table__empty">
125
+ {empty ?? 'No data'}
126
+ </td>
127
+ </tr>
128
+ );
129
+ }
130
+ return sortedData.map((row) => (
131
+ <tr
132
+ key={rowKey(row)}
133
+ className={cx(onRowClick && 'bd-data-table__row--clickable')}
134
+ onClick={onRowClick ? () => onRowClick(row) : undefined}
135
+ >
136
+ {columns.map((col) => (
137
+ <td
138
+ key={col.key}
139
+ className={cx(
140
+ 'bd-data-table__td',
141
+ col.align === 'right' && 'bd-data-table__td--right',
142
+ col.align === 'center' && 'bd-data-table__td--center',
143
+ )}
144
+ >
145
+ {col.render
146
+ ? col.render(row)
147
+ : String(col.accessor ? col.accessor(row) : '')}
148
+ </td>
149
+ ))}
150
+ </tr>
151
+ ));
152
+ };
153
+
154
+ return (
155
+ <div
156
+ className={cx(
157
+ 'bd-data-table',
158
+ compact && 'bd-data-table--compact',
159
+ className,
160
+ )}
161
+ >
162
+ <div className="bd-data-table__scroll">
163
+ <table className="bd-data-table__table">
164
+ <thead className="bd-data-table__thead">
165
+ <tr className="bd-data-table__tr">
166
+ {columns.map((col) => {
167
+ const isSorted = sort?.key === col.key;
168
+ const style: CSSProperties | undefined =
169
+ col.width !== undefined
170
+ ? { width: col.width }
171
+ : undefined;
172
+ return (
173
+ <th
174
+ key={col.key}
175
+ style={style}
176
+ className={cx(
177
+ 'bd-data-table__th',
178
+ col.align === 'right' && 'bd-data-table__th--right',
179
+ col.align === 'center' && 'bd-data-table__th--center',
180
+ col.sortable && 'bd-data-table__th--sortable',
181
+ isSorted && 'bd-data-table__th--sorted',
182
+ )}
183
+ onClick={col.sortable ? () => handleSort(col.key) : undefined}
184
+ aria-sort={
185
+ isSorted
186
+ ? sort!.direction === 'asc'
187
+ ? 'ascending'
188
+ : 'descending'
189
+ : undefined
190
+ }
191
+ >
192
+ {col.header}
193
+ {col.sortable && (
194
+ <span className="bd-data-table__sort-icon">
195
+ {isSorted ? (
196
+ sort!.direction === 'asc' ? (
197
+ <ArrowUp size={12} aria-hidden="true" />
198
+ ) : (
199
+ <ArrowDown size={12} aria-hidden="true" />
200
+ )
201
+ ) : (
202
+ <ChevronsUpDown size={12} aria-hidden="true" />
203
+ )}
204
+ </span>
205
+ )}
206
+ </th>
207
+ );
208
+ })}
209
+ </tr>
210
+ </thead>
211
+ <tbody className="bd-data-table__tbody">{renderBody()}</tbody>
212
+ </table>
213
+ </div>
214
+ </div>
215
+ );
216
+ }
@@ -0,0 +1,60 @@
1
+ /*
2
+ * EmptyState.tsx — Friendly empty-state placeholder (Wave 2B).
3
+ *
4
+ * Replaces the legacy components/EmptyState.tsx with a smaller, opinions-on
5
+ * shape: title is the only required field, optional description paragraph,
6
+ * default icon is a sad-cloud lucide glyph (drops in if no icon is passed),
7
+ * and an optional single-action button whose whole row is a labelled ghost
8
+ * CTA. `inline` mode removes the centred padding for use inside dense cards.
9
+ */
10
+
11
+ import type { ReactNode } from 'react';
12
+ import { Cloud } from 'lucide-react';
13
+ import { cx } from '../utils/cx';
14
+
15
+ export type EmptyStateProps = {
16
+ title: string;
17
+ description?: ReactNode;
18
+ icon?: ReactNode;
19
+ action?: { label: string; onClick: () => void };
20
+ inline?: boolean;
21
+ className?: string;
22
+ };
23
+
24
+ export function EmptyState({
25
+ title,
26
+ description,
27
+ icon,
28
+ action,
29
+ inline = false,
30
+ className,
31
+ }: EmptyStateProps): React.JSX.Element {
32
+ return (
33
+ <div
34
+ className={cx(
35
+ 'bd-state',
36
+ inline && 'bd-state--inline',
37
+ className,
38
+ )}
39
+ >
40
+ {icon !== null && (
41
+ <div className="bd-state__icon" aria-hidden="true">
42
+ {icon ?? <Cloud size={32} />}
43
+ </div>
44
+ )}
45
+ <div className="bd-state__title">{title}</div>
46
+ {description && (
47
+ <div className="bd-state__description">{description}</div>
48
+ )}
49
+ {action && (
50
+ <button
51
+ type="button"
52
+ className="bd-state__action bd-state__action--ghost"
53
+ onClick={action.onClick}
54
+ >
55
+ {action.label}
56
+ </button>
57
+ )}
58
+ </div>
59
+ );
60
+ }
@@ -0,0 +1,56 @@
1
+ /*
2
+ * ErrorState.tsx — Inline error block for data contexts (Wave 2B).
3
+ *
4
+ * Compact, actionable error display. Shows a danger-coloured error string
5
+ * (stringified if an Error object is passed) inside a subtle tinted box so
6
+ * the eye finds it without breaking the layout. Optional `onRetry` adds a
7
+ * primary "Try again" CTA button.
8
+ */
9
+
10
+ import { AlertTriangle } from 'lucide-react';
11
+ import { cx } from '../utils/cx';
12
+
13
+ export type ErrorStateProps = {
14
+ title?: string;
15
+ error: Error | string;
16
+ onRetry?: () => void;
17
+ inline?: boolean;
18
+ className?: string;
19
+ };
20
+
21
+ function stringifyError(err: Error | string): string {
22
+ if (typeof err === 'string') return err;
23
+ if (err.message) return err.message;
24
+ return err.name || 'Unknown error';
25
+ }
26
+
27
+ export function ErrorState({
28
+ title = 'Something went wrong',
29
+ error,
30
+ onRetry,
31
+ inline = false,
32
+ className,
33
+ }: ErrorStateProps): React.JSX.Element {
34
+ const message = stringifyError(error);
35
+ return (
36
+ <div
37
+ className={cx('bd-state', inline && 'bd-state--inline', className)}
38
+ role="alert"
39
+ >
40
+ <div className="bd-state__icon" aria-hidden="true">
41
+ <AlertTriangle size={28} />
42
+ </div>
43
+ <div className="bd-state__title">{title}</div>
44
+ <div className="bd-state__error">{message}</div>
45
+ {onRetry && (
46
+ <button
47
+ type="button"
48
+ className="bd-state__action"
49
+ onClick={onRetry}
50
+ >
51
+ Try again
52
+ </button>
53
+ )}
54
+ </div>
55
+ );
56
+ }
@@ -0,0 +1,106 @@
1
+ /*
2
+ * KeyValueList.tsx — Definition-list style rows (Wave 2B).
3
+ *
4
+ * Renders label/value pairs in either a definition-grid (horizontal, two
5
+ * columns) or stacked (vertical, label above value) layout. Each value can
6
+ * be opt-in mono-font and/or copyable — `copyable` adds a small icon button
7
+ * that copies `String(value)` to the clipboard and briefly switches to a
8
+ * checkmark so the action is confirmed. The whole item is keyboard-focusable
9
+ * for screen-reader users.
10
+ */
11
+
12
+ import {
13
+ useCallback,
14
+ useEffect,
15
+ useRef,
16
+ useState,
17
+ type ReactNode,
18
+ } from 'react';
19
+ import { Check, Copy } from 'lucide-react';
20
+ import { cx } from '../utils/cx';
21
+
22
+ export type KeyValueItem = {
23
+ key: string;
24
+ label: string;
25
+ value: ReactNode;
26
+ mono?: boolean;
27
+ copyable?: boolean;
28
+ };
29
+
30
+ export type KeyValueListProps = {
31
+ items: KeyValueItem[];
32
+ orientation?: 'horizontal' | 'vertical';
33
+ className?: string;
34
+ };
35
+
36
+ function CopyButton({ text }: { text: string }): React.JSX.Element {
37
+ const [done, setDone] = useState(false);
38
+ const timer = useRef<ReturnType<typeof setTimeout> | null>(null);
39
+
40
+ useEffect(
41
+ () => () => {
42
+ if (timer.current) clearTimeout(timer.current);
43
+ },
44
+ [],
45
+ );
46
+
47
+ const onClick = useCallback(() => {
48
+ if (typeof navigator === 'undefined' || !navigator.clipboard) return;
49
+ navigator.clipboard
50
+ .writeText(text)
51
+ .then(() => {
52
+ setDone(true);
53
+ if (timer.current) clearTimeout(timer.current);
54
+ timer.current = setTimeout(() => setDone(false), 1500);
55
+ })
56
+ .catch(() => {
57
+ // ignore — clipboard may be unavailable in private mode
58
+ });
59
+ }, [text]);
60
+
61
+ return (
62
+ <button
63
+ type="button"
64
+ className={cx('bd-kv-list__copy', done && 'bd-kv-list__copy--done')}
65
+ aria-label={done ? 'Copied' : 'Copy to clipboard'}
66
+ onClick={onClick}
67
+ >
68
+ {done ? <Check size={12} /> : <Copy size={12} />}
69
+ </button>
70
+ );
71
+ }
72
+
73
+ export function KeyValueList({
74
+ items,
75
+ orientation = 'horizontal',
76
+ className,
77
+ }: KeyValueListProps): React.JSX.Element {
78
+ return (
79
+ <dl
80
+ className={cx(
81
+ 'bd-kv-list',
82
+ orientation === 'horizontal'
83
+ ? 'bd-kv-list--horizontal'
84
+ : 'bd-kv-list--vertical',
85
+ className,
86
+ )}
87
+ >
88
+ {items.map((item) => (
89
+ <div key={item.key} className="bd-kv-list__row">
90
+ <dt className="bd-kv-list__label">{item.label}</dt>
91
+ <dd
92
+ className={cx(
93
+ 'bd-kv-list__value',
94
+ item.mono && 'bd-kv-list__value--mono',
95
+ )}
96
+ >
97
+ <span>{item.value}</span>
98
+ {item.copyable && (
99
+ <CopyButton text={String(item.value)} />
100
+ )}
101
+ </dd>
102
+ </div>
103
+ ))}
104
+ </dl>
105
+ );
106
+ }
@@ -0,0 +1,65 @@
1
+ /*
2
+ * LoadingState.tsx — Placeholder for in-flight data (Wave 2B).
3
+ *
4
+ * Two modes: when `rows` is set, renders N skeleton bars (use inside cards
5
+ * and detail panels); otherwise renders a centred spinner with an optional
6
+ * label. Skeleton bars use a shimmer animation that picks up the active
7
+ * theme via the token-driven gradient — no per-mode flag needed.
8
+ */
9
+
10
+ import { cx } from '../utils/cx';
11
+
12
+ export type LoadingStateProps = {
13
+ label?: string;
14
+ rows?: number;
15
+ inline?: boolean;
16
+ className?: string;
17
+ };
18
+
19
+ export function LoadingState({
20
+ label,
21
+ rows = 3,
22
+ inline = false,
23
+ className,
24
+ }: LoadingStateProps): React.JSX.Element {
25
+ if (rows > 0) {
26
+ return (
27
+ <div
28
+ className={cx(
29
+ 'bd-state',
30
+ inline && 'bd-state--inline',
31
+ className,
32
+ )}
33
+ role="status"
34
+ aria-live="polite"
35
+ aria-label={label ?? 'Loading'}
36
+ >
37
+ <div className="bd-skeleton-row" aria-hidden="true">
38
+ {Array.from({ length: rows }).map((_, i) => (
39
+ <div key={i} className="bd-skeleton-row__bar" />
40
+ ))}
41
+ </div>
42
+ {label && <div className="bd-state__label">{label}</div>}
43
+ </div>
44
+ );
45
+ }
46
+
47
+ return (
48
+ <div
49
+ className={cx(
50
+ 'bd-state',
51
+ inline && 'bd-state--inline',
52
+ className,
53
+ )}
54
+ role="status"
55
+ aria-live="polite"
56
+ aria-label={label ?? 'Loading'}
57
+ >
58
+ <div
59
+ className={cx('bd-spinner', inline && 'bd-spinner--inline')}
60
+ aria-hidden="true"
61
+ />
62
+ {label && <div className="bd-state__label">{label}</div>}
63
+ </div>
64
+ );
65
+ }
@@ -0,0 +1,87 @@
1
+ /*
2
+ * Sparkline.tsx — Tiny inline SVG line chart (Wave 2B).
3
+ *
4
+ * No axes, no labels, no legend — purely a visual trend strip. Auto-scales
5
+ * any numeric input to its own min/max so a flat-line series still draws a
6
+ * line at mid-height. Renders a soft fill below the line for warmth. Uses
7
+ * CSS variables (var(--chart-1) / var(--accent-subtle) by default) so it
8
+ * picks up theme changes automatically.
9
+ */
10
+
11
+ export type SparklineProps = {
12
+ data: number[];
13
+ width?: number;
14
+ height?: number;
15
+ stroke?: string;
16
+ fill?: string;
17
+ ariaLabel?: string;
18
+ className?: string;
19
+ };
20
+
21
+ function buildPath(
22
+ data: number[],
23
+ width: number,
24
+ height: number,
25
+ padY: number,
26
+ ): { line: string; area: string; min: number; max: number } {
27
+ if (data.length === 0) {
28
+ return { line: '', area: '', min: 0, max: 0 };
29
+ }
30
+ // Single point or flat-line series → draw at mid-height.
31
+ const min = Math.min(...data);
32
+ const max = Math.max(...data);
33
+ const range = max - min || 1;
34
+ const innerH = height - padY * 2;
35
+ const innerW = width;
36
+ const stepX = data.length > 1 ? innerW / (data.length - 1) : 0;
37
+
38
+ const points = data.map((v, i) => {
39
+ const x = i * stepX;
40
+ const y = padY + innerH - ((v - min) / range) * innerH;
41
+ return [x, y] as const;
42
+ });
43
+
44
+ const line = points
45
+ .map(([x, y], i) => `${i === 0 ? 'M' : 'L'}${x.toFixed(2)},${y.toFixed(2)}`)
46
+ .join(' ');
47
+
48
+ const last = points[points.length - 1];
49
+ const first = points[0];
50
+ const area =
51
+ `${line} L${last[0].toFixed(2)},${(height - padY).toFixed(2)} ` +
52
+ `L${first[0].toFixed(2)},${(height - padY).toFixed(2)} Z`;
53
+
54
+ return { line, area, min, max };
55
+ }
56
+
57
+ export function Sparkline({
58
+ data,
59
+ width = 80,
60
+ height = 24,
61
+ stroke = 'var(--chart-1)',
62
+ fill = 'var(--accent-subtle)',
63
+ ariaLabel,
64
+ className,
65
+ }: SparklineProps): React.JSX.Element {
66
+ const padY = 2;
67
+ const { line, area } = buildPath(data, width, height, padY);
68
+
69
+ return (
70
+ <svg
71
+ role="img"
72
+ aria-label={ariaLabel ?? `Sparkline of ${data.length} values`}
73
+ className={className}
74
+ width={width}
75
+ height={height}
76
+ viewBox={`0 0 ${width} ${height}`}
77
+ preserveAspectRatio="none"
78
+ >
79
+ {data.length > 0 && (
80
+ <>
81
+ <path className="bd-sparkline__fill" d={area} fill={fill} />
82
+ <path className="bd-sparkline__line" d={line} stroke={stroke} />
83
+ </>
84
+ )}
85
+ </svg>
86
+ );
87
+ }
@@ -0,0 +1,87 @@
1
+ /*
2
+ * StatTile.tsx — KPI tile for the dashboard hero row (Wave 2B).
3
+ *
4
+ * Compact [icon] [label/value/delta] layout. Whole tile becomes a clickable
5
+ * surface when `href` is supplied (renders an <a>); otherwise a plain <div>.
6
+ * Value uses font-mono + tabular-nums so a row of tiles stays column-aligned
7
+ * even when digit counts change (12 vs 1234). Loading state replaces the
8
+ * value with a shimmer skeleton; everything else stays put.
9
+ */
10
+
11
+ import type { HTMLAttributes, ReactNode } from 'react';
12
+ import { ArrowDown, ArrowUp } from 'lucide-react';
13
+ import { cx } from '../utils/cx';
14
+
15
+ export type StatTileProps = HTMLAttributes<HTMLElement> & {
16
+ label: string;
17
+ value: string | number;
18
+ unit?: string;
19
+ delta?: { value: number; direction: 'up' | 'down' };
20
+ icon?: ReactNode;
21
+ href?: string;
22
+ loading?: boolean;
23
+ className?: string;
24
+ };
25
+
26
+ export function StatTile({
27
+ label,
28
+ value,
29
+ unit,
30
+ delta,
31
+ icon,
32
+ href,
33
+ loading = false,
34
+ className,
35
+ ...rest
36
+ }: StatTileProps): React.JSX.Element {
37
+ const Tag = href ? 'a' : 'div';
38
+ // When rendering an <a>, only forward anchor-safe attrs. When rendering a
39
+ // <div>, forward all HTMLAttributes. The intersection avoids TS complaints
40
+ // about ref / event-handler types that differ between the two tags.
41
+ const forwarded = href
42
+ ? ({ href, ...rest } as HTMLAttributes<HTMLElement>)
43
+ : (rest as HTMLAttributes<HTMLElement>);
44
+
45
+ return (
46
+ <Tag
47
+ {...forwarded}
48
+ className={cx(
49
+ 'bd-stat-tile',
50
+ href && 'bd-stat-tile--clickable',
51
+ className,
52
+ )}
53
+ >
54
+ {icon && <div className="bd-stat-tile__icon">{icon}</div>}
55
+ <div className="bd-stat-tile__body">
56
+ <div className="bd-stat-tile__label">{label}</div>
57
+ <div className="bd-stat-tile__value-row">
58
+ {loading ? (
59
+ <div className="bd-stat-tile__skeleton" aria-hidden="true" />
60
+ ) : (
61
+ <>
62
+ <span className="bd-stat-tile__value">{value}</span>
63
+ {unit && <span className="bd-stat-tile__unit">{unit}</span>}
64
+ </>
65
+ )}
66
+ </div>
67
+ {delta && !loading && (
68
+ <div
69
+ className={cx(
70
+ 'bd-stat-tile__delta',
71
+ delta.direction === 'up' && 'bd-stat-tile__delta--up',
72
+ delta.direction === 'down' && 'bd-stat-tile__delta--down',
73
+ )}
74
+ aria-label={`${delta.direction === 'up' ? 'up' : 'down'} ${delta.value}`}
75
+ >
76
+ {delta.direction === 'up' ? (
77
+ <ArrowUp size={12} aria-hidden="true" />
78
+ ) : (
79
+ <ArrowDown size={12} aria-hidden="true" />
80
+ )}
81
+ <span>{delta.value}</span>
82
+ </div>
83
+ )}
84
+ </div>
85
+ </Tag>
86
+ );
87
+ }