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