drizzle-cube
Version:
Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.
12 lines (11 loc) • 408 B
TypeScript
import { default as React } from 'react';
import { SimpleFilter, CubeMeta } from '../../types';
interface FilterValuePopoverProps {
filter: SimpleFilter;
schema: CubeMeta | null;
onValuesChange: (values: any[]) => void;
onClose: () => void;
anchorRef: React.RefObject<HTMLElement>;
}
declare const FilterValuePopover: React.FC<FilterValuePopoverProps>;
export default FilterValuePopover;