@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
43 lines (42 loc) • 1.71 kB
TypeScript
import { BoxProps, ElementProps, Factory, MantineSize, MantineSpacing, StylesApiProps } from '../../core';
import { ListItem, ListItemStylesNames } from './ListItem/ListItem';
export type ListStylesNames = 'root' | ListItemStylesNames;
export type ListCssVariables = {
root: '--list-fz' | '--list-lh' | '--list-spacing';
};
export interface ListProps extends BoxProps, StylesApiProps<ListFactory>, ElementProps<'ul', 'type'> {
/** `List.Item` components only */
children?: React.ReactNode;
/** List type: `ol` or `ul`, `'unordered'` by default */
type?: 'ordered' | 'unordered';
/** Determines whether list items should be offset with padding, `false` by default */
withPadding?: boolean;
/** Controls `font-size` and `line-height`, `'md'` by default */
size?: MantineSize;
/** Icon that replaces list item dot */
icon?: React.ReactNode;
/** Key of `theme.spacing` or any valid CSS value to set spacing between items, `0` by default */
spacing?: MantineSpacing;
/** Determines whether items must be centered with their icon, `false` by default */
center?: boolean;
/** Controls `list-style-type`, by default inferred from `type` */
listStyleType?: React.CSSProperties['listStyleType'];
}
export type ListFactory = Factory<{
props: ListProps;
ref: HTMLUListElement;
stylesNames: ListStylesNames;
vars: ListCssVariables;
staticComponents: {
Item: typeof ListItem;
};
}>;
export declare const List: import("../../core").MantineComponent<{
props: ListProps;
ref: HTMLUListElement;
stylesNames: ListStylesNames;
vars: ListCssVariables;
staticComponents: {
Item: typeof ListItem;
};
}>;