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.
- package/dist/adapters/hono/index.js +7 -7
- package/dist/client/charts.js +1 -1
- package/dist/client/chunks/{charts-Dm25kuUn.js → charts-BM1k01Jw.js} +1066 -914
- package/dist/client/chunks/charts-BM1k01Jw.js.map +1 -0
- package/dist/client/components/DataHistogram.d.ts +3 -1
- package/dist/client/components.js +4773 -4670
- package/dist/client/components.js.map +1 -1
- package/dist/client/index.js +1 -1
- package/dist/client/types.d.ts +1 -0
- package/dist/client/utils/targetUtils.d.ts +36 -0
- package/dist/client-bundle-stats.html +1 -1
- package/package.json +12 -7
- package/dist/client/chunks/charts-Dm25kuUn.js.map +0 -1
|
@@ -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 {};
|