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) • 579 B
TypeScript
import { ColorPalette } from '../utils/colorPalettes';
import { DashboardConfig } from '../types';
interface DashboardGridProps {
config: DashboardConfig;
editable?: boolean;
onConfigChange?: (config: DashboardConfig) => void;
onPortletRefresh?: (portletId: string) => void;
onSave?: (config: DashboardConfig) => Promise<void> | void;
colorPalette?: ColorPalette;
}
export default function DashboardGrid({ config, editable, onConfigChange, onPortletRefresh, onSave, colorPalette }: DashboardGridProps): import("react/jsx-runtime").JSX.Element;
export {};