@useloops/design-system 1.4.404 → 1.4.406
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 +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1959,9 +1959,11 @@ interface CommentCardProps {
|
|
|
1959
1959
|
isActive?: boolean;
|
|
1960
1960
|
moreMenuItems?: MenuProps['menuItems'];
|
|
1961
1961
|
onFavouritePress?: () => void;
|
|
1962
|
-
onCopyPress?: () => void;
|
|
1962
|
+
onCopyPress?: (element: HTMLElement) => void;
|
|
1963
1963
|
onMorePress?: () => void;
|
|
1964
1964
|
onClick?: () => void;
|
|
1965
|
+
copyLoading?: boolean;
|
|
1966
|
+
favouriteLoading?: boolean;
|
|
1965
1967
|
}
|
|
1966
1968
|
declare const CommentCard: FunctionComponent<CommentCardProps>;
|
|
1967
1969
|
|