/** Charts entry — `@godxjp/ui/charts`. */ export { LineChart } from "./line-chart.js"; export type { LineChartProp, LineChartProps } from "./line-chart.js"; export { BarChart } from "./bar-chart.js"; export type { BarChartProp, BarChartProps } from "./bar-chart.js"; /** * Dependency-free compact trend. Consumers without recharts should use the isolated * `@godxjp/ui/charts/compact-bar-trend` entry so this barrel does not link peer-backed charts. */ export { CompactBarTrend } from "./compact-bar-trend.js"; export type { CompactBarTrendProp, CompactBarTrendProps } from "./compact-bar-trend.js"; export { AreaChart } from "./area-chart.js"; export type { AreaChartProp, AreaChartProps } from "./area-chart.js"; export { PieChart } from "./pie-chart.js"; export type { PieChartProp, PieChartProps } from "./pie-chart.js"; export type { ChartSeriesProp, ChartDatum } from "../../props/components/charts.prop.js"; export { CHART_COLORS } from "./chart-frame.js";