Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100910864
ImageList.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 3, 21:11
Size
1 KB
Mime Type
text/x-java
Expires
Wed, Feb 5, 21:11 (2 d)
Engine
blob
Format
Raw Data
Handle
24054643
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
ImageList.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 { ImageListClasses } from './imageListClasses';
export interface ImageListPropsVariantOverrides {}
export interface ImageListTypeMap<P = {}, D extends React.ElementType = 'ul'> {
props: P & {
/**
* The content of the component, normally `ImageListItem`s.
*/
children: NonNullable<React.ReactNode>;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<ImageListClasses>;
/**
* Number of columns.
* @default 2
*/
cols?: number;
/**
* The gap between items in px.
* @default 4
*/
gap?: number;
/**
* The height of one row in px.
* @default 'auto'
*/
rowHeight?: number | 'auto';
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
/**
* The variant to use.
* @default 'standard'
*/
variant?: OverridableStringUnion<
'masonry' | 'quilted' | 'standard' | 'woven',
ImageListPropsVariantOverrides
>;
};
defaultComponent: D;
}
/**
*
* Demos:
*
* - [Image List](https://mui.com/material-ui/react-image-list/)
*
* API:
*
* - [ImageList API](https://mui.com/material-ui/api/image-list/)
*/
declare const ImageList: OverridableComponent<ImageListTypeMap>;
export type ImageListProps<
D extends React.ElementType = ImageListTypeMap['defaultComponent'],
P = {},
> = OverrideProps<ImageListTypeMap<P, D>, D>;
export default ImageList;
Event Timeline
Log In to Comment