@useloops/design-system 1.4.313 → 1.4.314
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/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1322,6 +1322,7 @@ declare const IconButtonGroup: FunctionComponent<IconButtonGroupProps>;
|
|
|
1322
1322
|
|
|
1323
1323
|
interface ImageProps extends LazyLoadImageProps {
|
|
1324
1324
|
containerSx?: SxProps<Theme>;
|
|
1325
|
+
src?: string;
|
|
1325
1326
|
}
|
|
1326
1327
|
declare const Image: FunctionComponent<ImageProps>;
|
|
1327
1328
|
|
|
@@ -1770,7 +1771,7 @@ interface AssetItemProps extends BoxProps {
|
|
|
1770
1771
|
cover?: boolean;
|
|
1771
1772
|
mediaType: 'image' | 'video';
|
|
1772
1773
|
loading?: boolean;
|
|
1773
|
-
menuItems
|
|
1774
|
+
menuItems?: MenuProps['menuItems'];
|
|
1774
1775
|
slotProps?: {
|
|
1775
1776
|
menu?: Partial<Omit<MenuProps, 'trigger' | 'menuItems'>>;
|
|
1776
1777
|
};
|