UNPKG

@adaptabletools/adaptable

Version:

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

16 lines (15 loc) 839 B
import * as React from 'react'; import { BoxProps } from 'rebass'; import { AdaptableStyle } from '../../../types'; import { FlashingCellDefinition } from '../../../../types'; type FlashingAlertStyleWizardSectionProps = { flashingAlert?: FlashingCellDefinition; onStyleChange: (styleName: 'UpChangeStyle' | 'DownChangeStyle' | 'NeutralChangeStyle', style: AdaptableStyle) => void; }; export declare const FlashingAlertStyleWizardSection: (props: FlashingAlertStyleWizardSectionProps) => React.JSX.Element; export interface FlashingCellStyleProps extends Omit<BoxProps, 'data'> { data: FlashingCellDefinition; } export declare const FlashingCellStyle: React.FunctionComponent<FlashingCellStyleProps>; export declare const renderFlashingAlertStyleSummary: (flashingAlert: FlashingCellDefinition) => React.JSX.Element; export {};