Cell.d.ts 1.1 KB

12345678910111213
  1. /// <reference types="react" />
  2. import { TableColumnBase } from './types';
  3. export declare const CellBase: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
  4. headCell?: boolean | undefined;
  5. noPadding?: boolean | undefined;
  6. }>> & string;
  7. export type CellProps = Pick<TableColumnBase, 'button' | 'grow' | 'maxWidth' | 'minWidth' | 'width' | 'right' | 'center' | 'compact' | 'hide' | 'allowOverflow'>;
  8. export declare const CellExtended: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<Omit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "headCell" | "noPadding"> & {
  9. headCell?: boolean | undefined;
  10. noPadding?: boolean | undefined;
  11. }, "ref"> & {
  12. ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
  13. }, CellProps>> & string;