UNPKG

@adaptabletools/adaptable

Version:

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

14 lines (13 loc) 472 B
import * as React from 'react'; import { FlexProps } from 'rebass'; type EllipsisContainerProps = { direction: 'horizontal' | 'vertical'; count: number; allowWrap?: boolean; renderItem: (index: number, count: number) => React.ReactElement; renderEllipsis?: ({ remaining }: { remaining: number; }) => React.ReactElement; }; export declare const EllipsisContainer: (props: EllipsisContainerProps & FlexProps) => React.JSX.Element; export {};