Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101441372
Table.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Feb 10, 12:36
Size
1 KB
Mime Type
text/x-java
Expires
Wed, Feb 12, 12:36 (2 d)
Engine
blob
Format
Raw Data
Handle
24147237
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
Table.d.ts
View Options
import * as React from 'react';
import { SxProps } from '@mui/system';
import { OverridableStringUnion } from '@mui/types';
import { Theme } from '..';
import { OverridableComponent, OverrideProps } from '../OverridableComponent';
import { TableClasses } from './tableClasses';
export interface TablePropsSizeOverrides {}
export interface TableTypeMap<P = {}, D extends React.ElementType = 'table'> {
props: P & {
/**
* The content of the table, normally `TableHead` and `TableBody`.
*/
children?: React.ReactNode;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<TableClasses>;
/**
* Allows TableCells to inherit padding of the Table.
* @default 'normal'
*/
padding?: 'normal' | 'checkbox' | 'none';
/**
* Allows TableCells to inherit size of the Table.
* @default 'medium'
*/
size?: OverridableStringUnion<'small' | 'medium', TablePropsSizeOverrides>;
/**
* Set the header sticky.
*
* ⚠️ It doesn't work with IE11.
* @default false
*/
stickyHeader?: boolean;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
};
defaultComponent: D;
}
/**
*
* Demos:
*
* - [Table](https://mui.com/material-ui/react-table/)
*
* API:
*
* - [Table API](https://mui.com/material-ui/api/table/)
*/
declare const Table: OverridableComponent<TableTypeMap>;
export type TableProps<
D extends React.ElementType = TableTypeMap['defaultComponent'],
P = {},
> = OverrideProps<TableTypeMap<P, D>, D>;
export default Table;
Event Timeline
Log In to Comment