@telicent-oss/ds 0.10.4-rc3 → 0.11.0-rc3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ds.js +898 -897
- package/dist/ds.umd.cjs +69 -69
- package/dist/src/v1/components/data-display/List/List.d.ts +5 -0
- package/package.json +1 -1
|
@@ -3,8 +3,13 @@ import { ListProps as MUIListProps } from '@mui/material/List';
|
|
|
3
3
|
import { ListItemProps as MUIListItemProps } from '@mui/material/ListItem';
|
|
4
4
|
import { ListItemButtonProps as MUIListItemButtonProps } from '@mui/material/ListItemButton';
|
|
5
5
|
import { ListItemIconProps as MUIListItemIconProps } from '@mui/material/ListItemIcon';
|
|
6
|
+
import { ListItemTextProps as MUIListItemTextProps } from '@mui/material/ListItemText';
|
|
6
7
|
|
|
7
8
|
export declare const List: React.FC<MUIListProps>;
|
|
8
9
|
export declare const ListItem: React.FC<MUIListItemProps>;
|
|
9
10
|
export declare const ListItemButton: React.FC<MUIListItemButtonProps>;
|
|
10
11
|
export declare const ListItemIcon: React.FC<MUIListItemIconProps>;
|
|
12
|
+
interface ListItemTextProps extends Omit<MUIListItemTextProps, "primaryTypographyProps" | "secondaryTypographyProps" | "sx"> {
|
|
13
|
+
}
|
|
14
|
+
export declare const ListItemText: React.FC<ListItemTextProps>;
|
|
15
|
+
export {};
|