drizzle-cube 0.1.24 → 0.1.25

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/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  **Drizzle ORM-first semantic layer with Cube.js compatibility**
4
4
 
5
+ <img width="1262" height="976" alt="color_1" src="https://github.com/user-attachments/assets/653bd6b4-ba55-4a60-a8d1-cb14e47e6aa6" />
6
+
5
7
  Transform your Drizzle schema into a powerful, type-safe analytics platform with SQL injection protection and full TypeScript support.
6
8
 
7
9
  📖 **[Documentation](https://www.drizzle-cube.dev/)**
@@ -187,4 +189,4 @@ MIT © [Clifton Cunningham](https://github.com/cliftonc)
187
189
 
188
190
  ---
189
191
 
190
- **Built with ❤️ for the Drizzle ORM community**
192
+ **Built with ❤️ for the Drizzle ORM community**
@@ -15,9 +15,11 @@ interface DataHistogramProps {
15
15
  formatValue?: (value: number) => string;
16
16
  /** Width of the histogram to match text above */
17
17
  width?: number;
18
+ /** Whether to show average indicator line (default: true) */
19
+ showAverageIndicator?: boolean;
18
20
  }
19
21
  /**
20
22
  * Reusable histogram component that shows the distribution of actual data values
21
23
  */
22
- export default function DataHistogram({ values, min, max, color, bucketCount, height, formatValue, width }: DataHistogramProps): import("react/jsx-runtime").JSX.Element;
24
+ export default function DataHistogram({ values, min, max, color, bucketCount, height, formatValue, width, showAverageIndicator }: DataHistogramProps): import("react/jsx-runtime").JSX.Element;
23
25
  export {};