UNPKG

@mui/x-data-grid-premium

Version:

The Premium plan edition of the MUI X Data Grid Components.

25 lines 961 B
import * as React from 'react'; import type { FieldTransferObject } from "./GridChartsPanelDataBody.js"; import type { GridChartsIntegrationSection } from "../../../hooks/features/chartsIntegration/gridChartsIntegrationInterfaces.js"; type GridChartsPanelDataFieldProps = { children: React.ReactNode; field: string; section: GridChartsIntegrationSection; blockedSections?: string[]; dimensionsLabel: string; valuesLabel: string; disabled?: boolean; selected?: boolean; onChange?: (field: string, section: GridChartsIntegrationSection) => void; onDragStart: (field: string, section: GridChartsIntegrationSection) => void; onDragEnd: () => void; }; export declare function AggregationSelect({ aggFunc, field }: { aggFunc: string; field: FieldTransferObject['field']; }): React.JSX.Element | null; declare function GridChartsPanelDataField(props: GridChartsPanelDataFieldProps): React.JSX.Element; export { GridChartsPanelDataField };