UNPKG

@adaptabletools/adaptable

Version:

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

10 lines (9 loc) 561 B
import React, { HTMLProps } from 'react'; import { FlashingCellDefinition } from '../../types'; import { FlexProps } from '../../components/Flex'; export declare const FLASHING_CELL_STYLE_PREVIEW_CLASS = "twa:!mt-0 twa:w-[5.5rem] twa:max-w-[5.5rem] twa:shrink-0 twa:!px-1.5 twa:!py-1 twa:text-2 twa:truncate"; export interface FlashingCellStyleProps extends Omit<HTMLProps<HTMLDivElement> & FlexProps, 'data'> { data: FlashingCellDefinition; className?: string; } export declare const FlashingCellStyle: React.FunctionComponent<FlashingCellStyleProps>;