mirror of
https://github.com/cursor/plugins.git
synced 2026-09-14 20:00:00 +08:00
0877f223a0
- Add complete plugin structure following boilerplate pattern - Include Nord-inspired color palette with semantic color mappings - Add 6 chart component templates: Pie, Bar, StackedArea, Comparison, DualAxis, Heatmap - Include shared utilities for data transformation and filtering - Add Highcharts best practices and accessibility rules - Add chart-builder agent for generating visualizations - Include comprehensive skill documentation with usage examples Co-authored-by: kniparko <kniparko@anysphere.co>
24 lines
853 B
TypeScript
24 lines
853 B
TypeScript
/**
|
|
* Analytics Visualization Components
|
|
*
|
|
* Export all chart components for easy importing.
|
|
*/
|
|
|
|
export { CategoryPieChart } from "./PieChart";
|
|
export type { PieChartData, PieChartProps } from "./PieChart";
|
|
|
|
export { CategoriesBarChart } from "./BarChart";
|
|
export type { BarChartData, BarChartProps } from "./BarChart";
|
|
|
|
export { DailyCategoriesChart } from "./StackedAreaChart";
|
|
export type { DailyCategoryData, StackedAreaChartProps } from "./StackedAreaChart";
|
|
|
|
export { ComparisonBarChart } from "./ComparisonChart";
|
|
export type { ComparisonData, ComparisonChartProps } from "./ComparisonChart";
|
|
|
|
export { DualAxisChart } from "./DualAxisChart";
|
|
export type { DualAxisData, DualAxisChartProps } from "./DualAxisChart";
|
|
|
|
export { ContributionHeatmap } from "./HeatmapChart";
|
|
export type { HeatmapData, HeatmapChartProps } from "./HeatmapChart";
|