@useloops/design-system 1.4.403 → 1.4.405
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 +4 -4
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1959,7 +1959,7 @@ 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
1965
|
}
|
|
@@ -2026,6 +2026,7 @@ interface TopNumber {
|
|
|
2026
2026
|
interface ExtendedTestStatusProps {
|
|
2027
2027
|
status: TestStatusProps['status'];
|
|
2028
2028
|
segments: TopNumber[];
|
|
2029
|
+
loading?: boolean;
|
|
2029
2030
|
}
|
|
2030
2031
|
declare const ExtendedTestStatus: FunctionComponent<ExtendedTestStatusProps>;
|
|
2031
2032
|
|