@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
21 lines (20 loc) • 1.08 kB
TypeScript
import * as React from 'react';
import { StyledColumn } from '../../../AdaptableState/StyledColumnState';
/**
* The title displayed in the wizard header. Switches from "Styled
* Column" to the specific type ("Gradient Column", "Percent Bar
* Column", …) once a type has been picked, so the user always knows
* which kind of column they're configuring.
*/
export declare const getStyledColumnWizardTitle: (data: StyledColumn) => string;
export declare const renderStyledColumnSettingsSummary: (data: StyledColumn) => React.JSX.Element;
/**
* Backwards-compatible export: the wizard previously imported
* `renderStyledColumnTypeSummary`. The settings step now also covers Name,
* but to keep external imports happy we re-export under the old alias.
*/
export declare const renderStyledColumnTypeSummary: (data: StyledColumn) => React.JSX.Element;
export interface StyledColumnWizardTypeSectionProps {
onChange: (styledColumn: StyledColumn) => void;
}
export declare const StyledColumnWizardTypeSection: React.FunctionComponent<StyledColumnWizardTypeSectionProps>;