UNPKG

@adaptabletools/adaptable

Version:

Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

13 lines (12 loc) 790 B
import * as React from 'react'; import { StyledColumn } from '../../../AdaptableState/StyledColumnState'; import type { AdaptableApi } from '../../../types'; export declare const renderStyledColumnScopeSummary: (data: StyledColumn, api: AdaptableApi) => React.JSX.Element; /** Used by the styled column list view (one-line "Rows: Data, Group, …"). */ export declare const collectIncludedRowKindLabels: (styledColumn: StyledColumn) => string[]; export declare const isValidStyledColumnScope: (data: StyledColumn, api: AdaptableApi) => true | string; export type StyledColumnWizardScopeSectionProps = { onChange: (data: StyledColumn) => void; isNew: boolean; }; export declare const StyledColumnWizardScopeSection: (props: StyledColumnWizardScopeSectionProps) => React.JSX.Element;