UNPKG

@adaptabletools/adaptable

Version:

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

15 lines (14 loc) 899 B
import * as React from 'react'; import { StyledColumn } from '../../../../AdaptableState/StyledColumnState'; import { AdaptableApi } from '../../../../types'; export { renderStyledColumnRangesSummary, StyledColumnWizardRangesSection, } from './StyledColumnWizardRangesSection'; export declare const getStyledColumnPercentBarStyleViewValues: (data: StyledColumn) => string[]; /** * Compact summary of the *non-range* style properties of a Percent Bar. */ export declare const renderStyledColumnStyleSummary: (data: StyledColumn, _api?: AdaptableApi) => React.JSX.Element; export declare const renderFormatColumnStyleWizardSummary: (data: StyledColumn) => React.JSX.Element; export interface StyledColumnWizardStyleSectionProps { onChange: (styledColumn: StyledColumn) => void; } export declare const StyledColumnWizardStyleSection: React.FunctionComponent<StyledColumnWizardStyleSectionProps>;