mirror of
https://github.com/temetro/temetro.git
synced 2026-08-10 18:49:29 +00:00
321a6298a4
- Pharmacy: the sidebar entry now expands into Pharmacy + a new Inventory page (searchable medication stock with derived in-stock/low/out availability, backed by /api/inventory). Fix the dispensing-queue "Expiring" badge so it only flags courses ending within the next 7 days, not ones already elapsed. - Lab "Add analysis result": the patient picker no longer lists patients until you type and supports arrow-key + Enter selection; the test field offers a catalog of common analyses with an Advanced option (custom analysis + ref range); submitted results now show immediately in a Recent results feed. - Analysis: add a Live panel (real-time line chart) and replace the flat trend sparklines with bklit-ui area + bar charts (installed from the @bklit shadcn registry; chart CSS variables wired into the theme for light and dark). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
24 lines
813 B
TypeScript
24 lines
813 B
TypeScript
import { isValidElement, type ReactElement } from "react";
|
|
|
|
/** Marker on wrapper components whose single child should inherit clip classification. */
|
|
export const CHART_CLIP_PASSTHROUGH = "__chartClipPassthrough" as const;
|
|
|
|
export function isChartClipPassthrough(type: unknown): boolean {
|
|
return (
|
|
typeof type === "function" &&
|
|
(type as { [CHART_CLIP_PASSTHROUGH]?: boolean })[CHART_CLIP_PASSTHROUGH] ===
|
|
true
|
|
);
|
|
}
|
|
|
|
/** Unwrap visibility wrappers so `Grid` / axes stay outside the series clip. */
|
|
export function resolveChartChildElement(child: ReactElement): ReactElement {
|
|
if (isChartClipPassthrough(child.type)) {
|
|
const inner = (child.props as { children?: unknown }).children;
|
|
if (isValidElement(inner)) {
|
|
return resolveChartChildElement(inner);
|
|
}
|
|
}
|
|
return child;
|
|
}
|