drizzle-cube
Version:
Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.
13 lines (12 loc) • 474 B
TypeScript
import { default as React } from 'react';
import { AnalysisQueryPanelProps } from './types';
/**
* AnalysisQueryPanel displays the right-side query builder with:
* - Query/Chart tab switcher (with multi-query support)
* - Metrics section (measures)
* - Filter section
* - Breakdown section (dimensions)
* - Chart configuration (in Chart tab)
*/
declare const AnalysisQueryPanel: React.NamedExoticComponent<AnalysisQueryPanelProps>;
export default AnalysisQueryPanel;