drizzle-cube 0.1.28 → 0.1.30

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.
@@ -17,9 +17,11 @@ interface DataHistogramProps {
17
17
  width?: number;
18
18
  /** Whether to show average indicator line (default: true) */
19
19
  showAverageIndicator?: boolean;
20
+ /** Target value to show as green line */
21
+ targetValue?: number;
20
22
  }
21
23
  /**
22
24
  * Reusable histogram component that shows the distribution of actual data values
23
25
  */
24
- export default function DataHistogram({ values, min, max, color, bucketCount, height, formatValue, width, showAverageIndicator }: DataHistogramProps): import("react/jsx-runtime").JSX.Element;
26
+ export default function DataHistogram({ values, min, max, color, bucketCount, height, formatValue, width, showAverageIndicator, targetValue }: DataHistogramProps): import("react/jsx-runtime").JSX.Element;
25
27
  export {};