@useloops/design-system 1.4.458 → 1.4.460
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/esm/index.js +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1995,13 +1995,15 @@ interface CommentCardProps {
|
|
|
1995
1995
|
moreMenuItems?: MenuProps['menuItems'];
|
|
1996
1996
|
moreMenuState?: MenuProps['state'];
|
|
1997
1997
|
onClick?: () => void;
|
|
1998
|
-
onCopyPress?: (element: HTMLElement) => void;
|
|
1999
1998
|
onFavouritePress?: () => void;
|
|
2000
1999
|
onMorePress?: () => void;
|
|
2001
2000
|
original: string;
|
|
2002
2001
|
sentimentScore: number;
|
|
2003
2002
|
translation?: string;
|
|
2004
2003
|
translationError?: string;
|
|
2004
|
+
slotProps?: {
|
|
2005
|
+
menu?: MenuProps['slotProps'];
|
|
2006
|
+
};
|
|
2005
2007
|
}
|
|
2006
2008
|
|
|
2007
2009
|
declare const CommentCard: FunctionComponent<CommentCardProps>;
|