@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
17 lines (16 loc) • 1.04 kB
TypeScript
import * as React from 'react';
import { FormatColumn } from '../../../AdaptableState/FormatColumnState';
import { AdaptableFormat } from '../../../AdaptableState/Common/AdaptableFormat';
import { ColumnScope } from '../../../AdaptableState/Common/ColumnScope';
import { AdaptableApi } from '../../../Api/AdaptableApi';
export type FormatColumnFormatWizardSectionProps = {
onChange: (data: FormatColumn) => void;
};
export interface FormatColumnFormatWizardState {
DisplayFormat: AdaptableFormat;
NumericFormat?: 'Percent' | 'Thousand' | 'Million' | 'Dollar' | 'Sterling' | undefined;
}
export declare const getFormatColumnFormatSummaryValue: (data: FormatColumn) => string;
export declare const renderFormatColumnFormatSummary: (data: FormatColumn) => React.JSX.Element;
export declare const getFormatDisplayTypeForScope: (scope: ColumnScope, api: AdaptableApi) => 'number' | 'date' | 'text' | undefined;
export declare const FormatColumnFormatWizardSection: (props: FormatColumnFormatWizardSectionProps) => React.JSX.Element;